From 6c624147d300f253b530dfbc4fdb1b20b6551a8c Mon Sep 17 00:00:00 2001 From: Luigi Dell'Aquila Date: Fri, 14 Feb 2025 15:48:47 +0100 Subject: [PATCH] ES|QL: disable mixed cluster CSV tests that require source field mapping --- .../xpack/esql/qa/mixed/MixedClusterEsqlSpecIT.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/x-pack/plugin/esql/qa/server/mixed-cluster/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/mixed/MixedClusterEsqlSpecIT.java b/x-pack/plugin/esql/qa/server/mixed-cluster/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/mixed/MixedClusterEsqlSpecIT.java index e12598a3dc031..cd68c5411005d 100644 --- a/x-pack/plugin/esql/qa/server/mixed-cluster/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/mixed/MixedClusterEsqlSpecIT.java +++ b/x-pack/plugin/esql/qa/server/mixed-cluster/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/mixed/MixedClusterEsqlSpecIT.java @@ -21,7 +21,6 @@ import static org.elasticsearch.xpack.esql.CsvTestUtils.isEnabled; import static org.elasticsearch.xpack.esql.action.EsqlCapabilities.Cap.JOIN_LOOKUP_V12; -import static org.elasticsearch.xpack.esql.action.EsqlCapabilities.Cap.SOURCE_FIELD_MAPPING; public class MixedClusterEsqlSpecIT extends EsqlSpecTestCase { @ClassRule @@ -93,7 +92,7 @@ protected boolean supportsIndexModeLookup() throws IOException { @Override protected boolean supportsSourceFieldMapping() throws IOException { - return hasCapabilities(List.of(SOURCE_FIELD_MAPPING.capabilityName())); + return false; } @Override