mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-08 09:38:26 +08:00
fix: 相同表判断错误问题,关闭 https://gitee.com/mybatis-flex/mybatis-flex/issues/I9R151。
This commit is contained in:
parent
913fea7c28
commit
1347c49cdf
@ -96,11 +96,8 @@ public class QueryTable implements CloneSupport<QueryTable> {
|
|||||||
if (this == table) {
|
if (this == table) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (StringUtil.isNotBlank(alias)
|
return Objects.equals(name, table.name)
|
||||||
&& StringUtil.isNotBlank(table.alias)) {
|
&& Objects.equals(alias, table.alias);
|
||||||
return Objects.equals(alias, table.alias);
|
|
||||||
}
|
|
||||||
return Objects.equals(name, table.name);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Object[] getValueArray() {
|
Object[] getValueArray() {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user