@@ -987,8 +987,8 @@ from hosts
987
987
| keep description
988
988
| sort description;
989
989
990
- warning:Line 2:9: evaluation of [starts_with(description, \"epsilon\") ] failed, treating result as null. Only first 20 failures recorded.
991
- warning:Line 2:9 : java.lang.IllegalArgumentException: single-value function encountered multi-value
990
+ warningRegex: evaluation of \ [starts_with\ (description, \\\ "epsilon\\\"\)\ ] failed, treating result as null. Only first 20 failures recorded.
991
+ warningRegex : java.lang.IllegalArgumentException: single-value function encountered multi-value
992
992
993
993
description:text
994
994
epsilon gw instance
@@ -1272,8 +1272,8 @@ from hosts
1272
1272
| keep description
1273
1273
| sort description;
1274
1274
1275
- warning:Line 2:9: evaluation of [ends_with(description, \"host\") ] failed, treating result as null. Only first 20 failures recorded.
1276
- warning:Line 2:9 : java.lang.IllegalArgumentException: single-value function encountered multi-value
1275
+ warningRegex: evaluation of \ [ends_with\ (description, \\\ "host\\\"\)\ ] failed, treating result as null. Only first 20 failures recorded.
1276
+ warningRegex : java.lang.IllegalArgumentException: single-value function encountered multi-value
1277
1277
1278
1278
description:text
1279
1279
;
@@ -1294,6 +1294,8 @@ beta | Kubernetes cluster
1294
1294
;
1295
1295
1296
1296
lucenePushdownMultipleIndices
1297
+ required_capability: index_metadata_field
1298
+ required_capability: casting_operator
1297
1299
1298
1300
from airports* metadata _index
1299
1301
| where starts_with(name::keyword, "Sahn") and ends_with(abbrev, "UH")
@@ -1310,6 +1312,7 @@ LUH | Sahnewal | airports_web
1310
1312
;
1311
1313
1312
1314
lucenePushdownOr
1315
+ required_capability: casting_operator
1313
1316
1314
1317
from airports
1315
1318
| where starts_with(name::keyword, "Sahn") or ends_with(abbrev, "UH")
@@ -1323,6 +1326,7 @@ RUH | King Khalid Int'l
1323
1326
;
1324
1327
1325
1328
lucenePushdownMultipleOr
1329
+ required_capability: casting_operator
1326
1330
1327
1331
from airports
1328
1332
| where starts_with(name::keyword, "Sahn") or ends_with(abbrev, "UH") or starts_with(abbrev, "OOL")
@@ -1337,6 +1341,8 @@ RUH | King Khalid Int'l
1337
1341
;
1338
1342
1339
1343
lucenePushdownMultipleAnd
1344
+ required_capability: index_metadata_field
1345
+ required_capability: casting_operator
1340
1346
1341
1347
from airports metadata _index
1342
1348
| where starts_with(name::keyword, "Sahn") and ends_with(abbrev, "UH")
@@ -1349,6 +1355,7 @@ LUH | Sahnewal | airports
1349
1355
;
1350
1356
1351
1357
lucenePushdownMixAndOr
1358
+ required_capability: casting_operator
1352
1359
1353
1360
from airports
1354
1361
| where starts_with(name::keyword, "Sahn") and (starts_with(name::keyword, "Abc") or ends_with(abbrev, "UH"))
@@ -1360,6 +1367,8 @@ LUH | Sahnewal | 9
1360
1367
;
1361
1368
1362
1369
lucenePushdownMixOrAnd
1370
+ required_capability: index_metadata_field
1371
+ required_capability: casting_operator
1363
1372
1364
1373
from airports* metadata _index
1365
1374
| where starts_with(name::keyword, "Sahn") or (starts_with(abbrev, "G") and ends_with(name::keyword, "Falls Int'l"))
0 commit comments