Skip to content

Commit df01f81

Browse files
authored
Disable test on release builds (#118752)
Fix #118707 I plan to manually backport this to un-mute the test on 8.x.
1 parent c4e964e commit df01f81

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2331,6 +2331,8 @@ public void testVerifierOnMissingReferences() {
23312331
}
23322332

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

0 commit comments

Comments
 (0)