File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 ));
You can’t perform that action at this time.
0 commit comments