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 0bfbe47 commit 99f4421Copy full SHA for 99f4421
x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java
@@ -307,6 +307,10 @@ public final void test() throws Throwable {
307
"can't use KNN function in csv tests",
308
testCase.requiredCapabilities.contains(EsqlCapabilities.Cap.KNN_FUNCTION_V3.capabilityName())
309
);
310
+ assumeFalse(
311
+ "can't use TEXT_EMBEDDING function in csv tests",
312
+ testCase.requiredCapabilities.contains(EsqlCapabilities.Cap.TEXT_EMBEDDING_FUNCTION.capabilityName())
313
+ );
314
assumeFalse(
315
"lookup join disabled for csv tests",
316
testCase.requiredCapabilities.contains(EsqlCapabilities.Cap.JOIN_LOOKUP_V12.capabilityName())
0 commit comments