We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4e964e commit df01f81Copy full SHA for df01f81
x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java
@@ -2331,6 +2331,8 @@ public void testVerifierOnMissingReferences() {
2331
}
2332
2333
public void testVerifierOnMissingReferencesWithBinaryPlans() throws Exception {
2334
+ assumeTrue("Requires LOOKUP JOIN", EsqlCapabilities.Cap.JOIN_LOOKUP_V5.isEnabled());
2335
+
2336
// Do not assert serialization:
2337
// This will have a LookupJoinExec, which is not serializable because it doesn't leave the coordinator.
2338
var plan = physicalPlan("""
0 commit comments