Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -498,9 +498,6 @@ tests:
- class: org.elasticsearch.smoketest.SmokeTestIngestWithAllDepsClientYamlTestSuiteIT
method: test {yaml=ingest/100_sampling_with_reroute/Test get sample with multiple reroutes}
issue: https://github.com/elastic/elasticsearch/issues/137457
- class: org.elasticsearch.xpack.esql.qa.single_node.PushQueriesIT
method: testEqualityAndOther {SEMANTIC_TEXT_WITH_KEYWORD}
issue: https://github.com/elastic/elasticsearch/issues/137491
- class: org.elasticsearch.xpack.ilm.CCRIndexLifecycleIT
method: testBasicCCRAndILMIntegration {targetCluster=FOLLOWER}
issue: https://github.com/elastic/elasticsearch/issues/137494
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,10 +178,11 @@ public void testEqualityAndOther() throws IOException {
case CONSTANT_KEYWORD, MATCH_ONLY_TEXT_WITH_KEYWORD -> List.of("*:*");
case SEMANTIC_TEXT_WITH_KEYWORD ->
/*
* single_value_match is here because there are extra documents hiding in the index
* that don't have the `foo` field.
* FieldExistsQuery is because there are extra documents hiding in the index
* that don't have the `foo` field. "*:*" is because sometimes we end up on
* a shard where all `foo = 1`.
*/
List.of("FieldExistsQuery [field=foo]", "foo:[1 TO 1]");
List.of("FieldExistsQuery [field=foo]", "foo:[1 TO 1]", "*:*");
};
ComputeSignature dataNodeSignature = switch (type) {
case AUTO, CONSTANT_KEYWORD, KEYWORD, TEXT_WITH_KEYWORD -> ComputeSignature.FILTER_IN_QUERY;
Expand Down