Skip to content

Commit

Permalink
fix bugs
Browse files Browse the repository at this point in the history
Signed-off-by: shuming.li <[email protected]>
  • Loading branch information
LiShuMing committed Dec 16, 2024
1 parent 77510dc commit 8cfa74f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -210,10 +210,10 @@ private LogicalScanOperator getExternalTableCompensatePlan(LogicalScanOperator s
optimizerContext.getColumnRefFactory());
predicates.add(predicate);
}
externalPredicates.add(Utils.compoundAnd(predicates));
}
externalExtraPredicate = Utils.compoundOr(externalPredicates);
externalPredicates.add(Utils.compoundAnd(predicates));
}
externalExtraPredicate = Utils.compoundOr(externalPredicates);
}
}
if (externalExtraPredicate == null) {
Expand Down

0 comments on commit 8cfa74f

Please sign in to comment.