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 577f324 commit eef2ba4Copy full SHA for eef2ba4
x-pack/plugin/esql-core/src/main/java/org/elasticsearch/xpack/esql/core/type/DataType.java
@@ -370,10 +370,7 @@ public static boolean isUnsupported(DataType from) {
370
}
371
372
public static boolean isString(DataType t) {
373
- if (EsqlCorePlugin.SEMANTIC_TEXT_FEATURE_FLAG.isEnabled() && t == SEMANTIC_TEXT) {
374
- return true;
375
- }
376
- return t == KEYWORD || t == TEXT;
+ return t == KEYWORD || t == TEXT || t == SEMANTIC_TEXT;
377
378
379
public static boolean isPrimitiveAndSupported(DataType t) {
0 commit comments