Skip to content

Commit 33ef895

Browse files
committed
don't register unserialiazable
1 parent 906ca1a commit 33ef895

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/PlanWritables.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010
import org.elasticsearch.common.io.stream.NamedWriteableRegistry;
1111
import org.elasticsearch.xpack.esql.plan.logical.Aggregate;
12-
import org.elasticsearch.xpack.esql.plan.logical.ChangePoint;
1312
import org.elasticsearch.xpack.esql.plan.logical.Dissect;
1413
import org.elasticsearch.xpack.esql.plan.logical.Enrich;
1514
import org.elasticsearch.xpack.esql.plan.logical.EsRelation;
@@ -28,7 +27,6 @@
2827
import org.elasticsearch.xpack.esql.plan.logical.local.EsqlProject;
2928
import org.elasticsearch.xpack.esql.plan.logical.local.LocalRelation;
3029
import org.elasticsearch.xpack.esql.plan.physical.AggregateExec;
31-
import org.elasticsearch.xpack.esql.plan.physical.ChangePointExec;
3230
import org.elasticsearch.xpack.esql.plan.physical.DissectExec;
3331
import org.elasticsearch.xpack.esql.plan.physical.EnrichExec;
3432
import org.elasticsearch.xpack.esql.plan.physical.EsQueryExec;
@@ -66,7 +64,6 @@ public static List<NamedWriteableRegistry.Entry> getNamedWriteables() {
6664
public static List<NamedWriteableRegistry.Entry> logical() {
6765
return List.of(
6866
Aggregate.ENTRY,
69-
ChangePoint.ENTRY,
7067
Dissect.ENTRY,
7168
Enrich.ENTRY,
7269
EsRelation.ENTRY,
@@ -90,7 +87,6 @@ public static List<NamedWriteableRegistry.Entry> logical() {
9087
public static List<NamedWriteableRegistry.Entry> physical() {
9188
return List.of(
9289
AggregateExec.ENTRY,
93-
ChangePointExec.ENTRY,
9490
DissectExec.ENTRY,
9591
EnrichExec.ENTRY,
9692
EsQueryExec.ENTRY,

0 commit comments

Comments
 (0)