修复FilterJoinNode.any方法bug

This commit is contained in:
Redkale
2018-08-29 16:06:41 +08:00
parent 750da161eb
commit a4ccea91ad

View File

@@ -99,7 +99,7 @@ public class FilterJoinNode extends FilterNode {
if (this.column == null) this.or = signor;
return this;
}
this.nodes = new FilterNode[]{new FilterJoinNode(node), node};
this.nodes = new FilterNode[]{new FilterJoinNode(this), node};
this.column = null;
this.express = null;
this.itemand = true;