File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 7777import org .elasticsearch .xpack .esql .plan .physical .ChangePointExec ;
7878import org .elasticsearch .xpack .esql .plan .physical .HashJoinExec ;
7979import org .elasticsearch .xpack .esql .plan .physical .LocalSourceExec ;
80+ import org .elasticsearch .xpack .esql .plan .physical .MergeExec ;
8081import org .elasticsearch .xpack .esql .plan .physical .OutputExec ;
8182import org .elasticsearch .xpack .esql .plan .physical .PhysicalPlan ;
8283import org .elasticsearch .xpack .esql .planner .LocalExecutionPlanner ;
@@ -279,7 +280,6 @@ public final void test() throws Throwable {
279280 "CSV tests cannot correctly handle the field caps change" ,
280281 testCase .requiredCapabilities .contains (EsqlCapabilities .Cap .SEMANTIC_TEXT_FIELD_CAPS .capabilityName ())
281282 );
282- assumeFalse ("fork disabled for csv tests" , testCase .requiredCapabilities .contains (EsqlCapabilities .Cap .FORK .capabilityName ()));
283283 if (Build .current ().isSnapshot ()) {
284284 assertThat (
285285 "Capability is not included in the enabled list capabilities on a snapshot build. Spelling mistake?" ,
@@ -566,7 +566,9 @@ private Throwable reworkException(Throwable th) {
566566
567567 // Asserts that the serialization and deserialization of the plan creates an equivalent plan.
568568 private void opportunisticallyAssertPlanSerialization (PhysicalPlan plan ) {
569- if (plan .anyMatch (p -> p instanceof LocalSourceExec || p instanceof HashJoinExec || p instanceof ChangePointExec )) {
569+ if (plan .anyMatch (
570+ p -> p instanceof LocalSourceExec || p instanceof HashJoinExec || p instanceof ChangePointExec || p instanceof MergeExec
571+ )) {
570572 return ;
571573 }
572574 SerializationTestUtils .assertSerialization (plan , configuration );
You can’t perform that action at this time.
0 commit comments