Skip to content

Commit

Permalink
ESQL: Fix writing for LOOKUP status
Browse files Browse the repository at this point in the history
This fixes writing the `status` of the LOOKUP operator. It just wasn't
registered.

Closes elastic#119086
  • Loading branch information
nik9000 committed Dec 26, 2024
1 parent 3c84517 commit 6b4f4ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 0 additions & 2 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -277,8 +277,6 @@ tests:
issue: https://github.com/elastic/elasticsearch/issues/115727
- class: org.elasticsearch.xpack.security.authc.kerberos.KerberosAuthenticationIT
issue: https://github.com/elastic/elasticsearch/issues/118414
- class: org.elasticsearch.xpack.esql.qa.multi_node.EsqlClientYamlIT
issue: https://github.com/elastic/elasticsearch/issues/119086
- class: org.elasticsearch.smoketest.DocsClientYamlTestSuiteIT
method: test {yaml=reference/search/search-your-data/retrievers-examples/line_98}
issue: https://github.com/elastic/elasticsearch/issues/119155
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
import org.elasticsearch.xpack.esql.action.RestEsqlGetAsyncResultAction;
import org.elasticsearch.xpack.esql.action.RestEsqlQueryAction;
import org.elasticsearch.xpack.esql.enrich.EnrichLookupOperator;
import org.elasticsearch.xpack.esql.enrich.LookupFromIndexOperator;
import org.elasticsearch.xpack.esql.execution.PlanExecutor;
import org.elasticsearch.xpack.esql.expression.ExpressionWritables;
import org.elasticsearch.xpack.esql.plan.PlanWritables;
Expand Down Expand Up @@ -192,6 +193,7 @@ public List<NamedWriteableRegistry.Entry> getNamedWriteables() {
entries.add(SingleValueQuery.ENTRY);
entries.add(AsyncOperator.Status.ENTRY);
entries.add(EnrichLookupOperator.Status.ENTRY);
entries.add(LookupFromIndexOperator.Status.ENTRY);

entries.addAll(BlockWritables.getNamedWriteables());
entries.addAll(ExpressionWritables.getNamedWriteables());
Expand Down

0 comments on commit 6b4f4ec

Please sign in to comment.