File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 1010import org .elasticsearch .common .io .stream .StreamOutput ;
1111import org .elasticsearch .xpack .esql .analysis .Analyzer ;
1212import org .elasticsearch .xpack .esql .capabilities .PostAnalysisPlanVerificationAware ;
13+ import org .elasticsearch .xpack .esql .capabilities .TelemetryAware ;
1314import org .elasticsearch .xpack .esql .common .Failure ;
1415import org .elasticsearch .xpack .esql .common .Failures ;
1516import org .elasticsearch .xpack .esql .core .expression .Attribute ;
3233 * A Fork is a n-ary {@code Plan} where each child is a sub plan, e.g.
3334 * {@code FORK [WHERE content:"fox" ] [WHERE content:"dog"] }
3435 */
35- public class Fork extends LogicalPlan implements PostAnalysisPlanVerificationAware {
36+ public class Fork extends LogicalPlan implements PostAnalysisPlanVerificationAware , TelemetryAware {
3637
3738 public static final String FORK_FIELD = "_fork" ;
3839 private final List <Attribute > output ;
You can’t perform that action at this time.
0 commit comments