You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: x-pack/plugin/esql/qa/server/single-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/single_node/PushQueriesIT.java
+26-9Lines changed: 26 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -52,31 +52,48 @@ public void testPushEqualityOnDefaults() throws IOException {
Copy file name to clipboardExpand all lines: x-pack/plugin/esql/qa/testFixtures/src/main/resources/string.csv-spec
+37Lines changed: 37 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2332,3 +2332,40 @@ warning:Line 2:9: java.lang.IllegalArgumentException: single-value function enco
2332
2332
@timestamp:date | message:text
2333
2333
2023-10-23T13:55:01.546Z|More than one hundred characters long so it isn't indexed by the sub keyword field with ignore_above:100
2334
2334
;
2335
+
2336
+
mvStringNotEquals
2337
+
FROM mv_text
2338
+
| WHERE message != "Connected to 10.1.0.2"
2339
+
| KEEP @timestamp, message
2340
+
;
2341
+
warning:Line 2:9: evaluation of [message != \"Connected to 10.1.0.2\"] failed, treating result as null. Only first 20 failures recorded.
2342
+
warning:Line 2:9: java.lang.IllegalArgumentException: single-value function encountered multi-value
2343
+
2344
+
@timestamp:date | message:text
2345
+
2023-10-23T13:55:01.544Z|Connected to 10.1.0.1
2346
+
2023-10-23T13:55:01.546Z|More than one hundred characters long so it isn't indexed by the sub keyword field with ignore_above:100
2347
+
;
2348
+
2349
+
mvStringNotEqualsFound
2350
+
FROM mv_text
2351
+
| WHERE message != "Connected to 10.1.0.1"
2352
+
| KEEP @timestamp, message
2353
+
;
2354
+
warning:Line 2:9: evaluation of [message != \"Connected to 10.1.0.1\"] failed, treating result as null. Only first 20 failures recorded.
2355
+
warning:Line 2:9: java.lang.IllegalArgumentException: single-value function encountered multi-value
2356
+
2357
+
@timestamp:date | message:text
2358
+
2023-10-23T13:55:01.546Z|More than one hundred characters long so it isn't indexed by the sub keyword field with ignore_above:100
2359
+
;
2360
+
2361
+
mvStringNotEqualsLong
2362
+
FROM mv_text
2363
+
| WHERE message != "More than one hundred characters long so it isn't indexed by the sub keyword field with ignore_above:100"
2364
+
| KEEP @timestamp, message
2365
+
;
2366
+
warning:Line 2:9: evaluation of [message != \"More than one hundred characters long so it isn't indexed by the sub keyword field with ignore_above:100\"] failed, treating result as null. Only first 20 failures recorded.
2367
+
warning:Line 2:9: java.lang.IllegalArgumentException: single-value function encountered multi-value
Copy file name to clipboardExpand all lines: x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/predicate/operator/comparison/Equals.java
0 commit comments