Skip to content

Commit

Permalink
remove children() from InSubquery
Browse files Browse the repository at this point in the history
  • Loading branch information
englefly committed Nov 27, 2024
1 parent 900bf91 commit 1a600af
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,10 @@ public InSubquery withChildren(List<Expression> children) {
return new InSubquery(children.get(0), (ListQuery) children.get(1), correlateSlots, typeCoercionExpr, isNot);
}

@Override
public List<Expression> children() {
return Lists.newArrayList(compareExpr, listQuery);
}
// @Override
// public List<Expression> children() {
// return Lists.newArrayList(compareExpr, listQuery);
// }

@Override
public boolean equals(Object o) {
Expand Down

0 comments on commit 1a600af

Please sign in to comment.