Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangstar333 committed Dec 29, 2023
1 parent 0a98764 commit c548ee1
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,11 +184,11 @@ public List<Rule> buildRules() {
}
Expression childExpr = filter.getConjuncts().iterator().next()
.children().get(0);
if (childExpr instanceof SlotReference) {
return ((SlotReference) childExpr).getColumn().get()
.isDeleteSignColumn();
}
return false;
if (childExpr instanceof SlotReference) {
return ((SlotReference) childExpr).getColumn().get()
.isDeleteSignColumn();
}
return false;
}))
)
.when(agg -> enablePushDownMinMaxOnUnique())
Expand Down

0 comments on commit c548ee1

Please sign in to comment.