We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39caa37 commit cdebea5Copy full SHA for cdebea5
x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/Mapper.java
@@ -120,7 +120,10 @@ private PhysicalPlan mapUnary(UnaryPlan unary) {
120
return unaryExec.child();
121
}
122
123
- // Currently, it's either UnaryExec or LeafExec. Leaf will either resolve to FragmentExec or we'll ignore it.
+ // Here we have the following possibilities:
124
+ // 1. LeafExec - should resolve to FragmentExec or we can ignore it
125
+ // 2. Join - must be remote, and thus will go inside FragmentExec
126
+ // 3. Fork/MergeExec - not currently allowed with remote enrich
127
return f;
128
});
129
0 commit comments