Skip to content

Commit d1fd89a

Browse files
committed
Fix query push test
The single value query is rewritten away. Closes #135333
1 parent 48f38e5 commit d1fd89a

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

muted-tests.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -405,9 +405,6 @@ tests:
405405
- class: org.elasticsearch.xpack.test.rest.XPackRestIT
406406
method: test {p0=analytics/nested_top_metrics_sort/terms order by top metrics numeric not null integer values}
407407
issue: https://github.com/elastic/elasticsearch/issues/135162
408-
- class: org.elasticsearch.xpack.esql.qa.single_node.PushQueriesIT
409-
method: testEqualityAndOther {SEMANTIC_TEXT_WITH_KEYWORD}
410-
issue: https://github.com/elastic/elasticsearch/issues/135333
411408
- class: org.elasticsearch.search.sort.FieldSortIT
412409
method: testSortMixedFieldTypes
413410
issue: https://github.com/elastic/elasticsearch/issues/129445

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ public void testEqualityAndOther() throws IOException {
181181
* single_value_match is here because there are extra documents hiding in the index
182182
* that don't have the `foo` field.
183183
*/
184-
List.of("#FieldExistsQuery [field=foo] #single_value_match(foo)", "foo:[1 TO 1]");
184+
List.of("FieldExistsQuery [field=foo]", "foo:[1 TO 1]");
185185
};
186186
ComputeSignature dataNodeSignature = switch (type) {
187187
case AUTO, CONSTANT_KEYWORD, KEYWORD, TEXT_WITH_KEYWORD -> ComputeSignature.FILTER_IN_QUERY;

0 commit comments

Comments
 (0)