mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-08 01:28:24 +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) {
|
||||
return true;
|
||||
}
|
||||
if (StringUtil.isNotBlank(alias)
|
||||
&& StringUtil.isNotBlank(table.alias)) {
|
||||
return Objects.equals(alias, table.alias);
|
||||
}
|
||||
return Objects.equals(name, table.name);
|
||||
return Objects.equals(name, table.name)
|
||||
&& Objects.equals(alias, table.alias);
|
||||
}
|
||||
|
||||
Object[] getValueArray() {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user