Skip to content

Commit 13d73b6

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent 5b57d5c commit 13d73b6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineFilters.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,9 @@ private static LogicalPlan pushDownPastJoin(Filter filter, Join join, FoldContex
172172
// Split the filter condition in 3 parts.
173173
// For InlineJoin we use a scoping that allows pushing down filters either to right side only or to both sides.
174174
// For the rest of the joins we use the standard scoping:
175-
// - filters scoped to the left
176-
// - filters scoped to the right
177-
// - filter that requires both sides to be evaluated
175+
// - filters scoped to the left
176+
// - filters scoped to the right
177+
// - filter that requires both sides to be evaluated
178178
ScopedFilter scoped = join instanceof InlineJoin
179179
? scopeInlineStatsFilter(Predicates.splitAnd(filter.condition()), left, right)
180180
: scopeFilter(Predicates.splitAnd(filter.condition()), left, right);

0 commit comments

Comments
 (0)