Skip to content

Commit cb4d29d

Browse files
committed
fix method name
1 parent 96d00c2 commit cb4d29d

File tree

1 file changed

+2
-2
lines changed
  • x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis

1 file changed

+2
-2
lines changed

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1122,10 +1122,10 @@ private static class ResolveForkFunctions extends ParameterizedAnalyzerRule<Logi
11221122

11231123
@Override
11241124
protected LogicalPlan rule(LogicalPlan plan, AnalyzerContext context) {
1125-
return plan.transformUp(Fork.class, fork -> addImplicitLimitToForkSubQueries(fork, context));
1125+
return plan.transformUp(Fork.class, fork -> resolveFunctionsInForkSubQueries(fork, context));
11261126
}
11271127

1128-
private LogicalPlan addImplicitLimitToForkSubQueries(Fork fork, AnalyzerContext ctx) {
1128+
private LogicalPlan resolveFunctionsInForkSubQueries(Fork fork, AnalyzerContext ctx) {
11291129
List<LogicalPlan> newSubPlans = new ArrayList<>();
11301130
for (var subPlan : fork.subPlans()) {
11311131
newSubPlans.add(resolveFunctions.apply(subPlan, ctx));

0 commit comments

Comments
 (0)