Skip to content

Commit aa1a6d9

Browse files
authored
[8.x] ESQL: Disable LOOKUP JOIN physical optimizer test on release (#118754)
* Disable test on release builds * Unmute
1 parent 3080975 commit aa1a6d9

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

muted-tests.yml

-3
Original file line numberDiff line numberDiff line change
@@ -461,9 +461,6 @@ tests:
461461
- class: org.elasticsearch.xpack.application.HuggingFaceServiceUpgradeIT
462462
method: testElser {upgradedNodes=1}
463463
issue: https://github.com./elastic/elasticsearch/issues/118127
464-
- class: org.elasticsearch.xpack.esql.optimizer.PhysicalPlanOptimizerTests
465-
method: testVerifierOnMissingReferencesWithBinaryPlans {default}
466-
issue: https://github.com./elastic/elasticsearch/issues/118707
467464
- class: org.elasticsearch.xpack.application.CohereServiceUpgradeIT
468465
method: testCohereEmbeddings {upgradedNodes=1}
469466
issue: https://github.com./elastic/elasticsearch/issues/116974

x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java

+2
Original file line numberDiff line numberDiff line change
@@ -2329,6 +2329,8 @@ public void testVerifierOnMissingReferences() {
23292329
}
23302330

23312331
public void testVerifierOnMissingReferencesWithBinaryPlans() throws Exception {
2332+
assumeTrue("Requires LOOKUP JOIN", EsqlCapabilities.Cap.JOIN_LOOKUP_V5.isEnabled());
2333+
23322334
// Do not assert serialization:
23332335
// This will have a LookupJoinExec, which is not serializable because it doesn't leave the coordinator.
23342336
var plan = physicalPlan("""

0 commit comments

Comments
 (0)