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 0fc0922 commit f2b146eCopy full SHA for f2b146e
x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java
@@ -259,6 +259,10 @@ public final void test() throws Throwable {
259
testCase.requiredCapabilities,
260
everyItem(in(EsqlCapabilities.capabilities(true)))
261
);
262
+ assumeTrue(
263
+ "Capability not supported in this build",
264
+ EsqlCapabilities.capabilities(false).containsAll(testCase.requiredCapabilities)
265
+ );
266
} else {
267
for (EsqlCapabilities.Cap c : EsqlCapabilities.Cap.values()) {
268
if (false == c.isEnabled()) {
0 commit comments