Skip to content

Commit b89b86d

Browse files
authored
Adjust generated pushdown query for IndexOrDocValuesQuery (#128434)
1 parent 940bea7 commit b89b86d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

muted-tests.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -474,9 +474,6 @@ tests:
474474
- class: org.elasticsearch.packaging.test.TemporaryDirectoryConfigTests
475475
method: test21AcceptsCustomPathInDocker
476476
issue: https://github.com/elastic/elasticsearch/issues/128114
477-
- class: org.elasticsearch.xpack.esql.qa.single_node.PushQueriesIT
478-
method: testEqualityAndOther {semantic_text}
479-
issue: https://github.com/elastic/elasticsearch/issues/128414
480477
- class: org.elasticsearch.xpack.ml.integration.InferenceIngestIT
481478
method: testPipelineIngestWithModelAliases
482479
issue: https://github.com/elastic/elasticsearch/issues/128417

x-pack/plugin/esql/qa/server/single-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/single_node/PushQueriesIT.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,10 @@ public void testEqualityAndOther() throws IOException {
151151
* single_value_match is here because there are extra documents hiding in the index
152152
* that don't have the `foo` field.
153153
*/
154-
List.of("#foo:[1 TO 1] #single_value_match(foo) #FieldExistsQuery [field=_primary_term]", "foo:[1 TO 1]");
154+
List.of(
155+
"#foo:[1 TO 1] #single_value_match(foo) #FieldExistsQuery [field=_primary_term]",
156+
"#foo:[1 TO 1] #FieldExistsQuery [field=_primary_term]"
157+
);
155158
default -> throw new UnsupportedOperationException("unknown type [" + type + "]");
156159
};
157160
boolean filterInCompute = switch (type) {

0 commit comments

Comments
 (0)