Skip to content

Commit

Permalink
remove file
Browse files Browse the repository at this point in the history
  • Loading branch information
praveenc7 committed Oct 2, 2024
1 parent d03ed38 commit fbf2abd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 78 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -379,8 +379,9 @@ public int getOptimizedMaxInitialResultHolderCapacity() {
for (Predicate predicate : predicateColumns) {
if (predicate.getType() == Predicate.Type.IN || predicate.getType() == Predicate.Type.EQ) {
ExpressionContext lhs = predicate.getLhs();
int size = (predicate.getType() == Predicate.Type.IN) ?
((InPredicate) predicate).getValues().size() : 1;
int size = (predicate.getType() == Predicate.Type.IN)
? ((InPredicate) predicate).getValues().size()
: 1;
predicateSizeMap.merge(lhs, size, Integer::sum);
}
}
Expand Down

This file was deleted.

0 comments on commit fbf2abd

Please sign in to comment.