Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,14 @@ private void testPushQuery(String value, String esqlQuery, String luceneQuery, b
matcher = matcher.item("ProjectOperator").item("ExchangeSinkOperator");
assertMap(sig, matcher);
}
case "node_reduce" -> assertMap(sig, matchesList().item("ExchangeSourceOperator").item("ExchangeSinkOperator"));
case "node_reduce" -> {
if (sig.contains("LimitOperator")) {
// TODO figure out why this is sometimes here and sometimes not
assertMap(sig, matchesList().item("ExchangeSourceOperator").item("LimitOperator").item("ExchangeSinkOperator"));
} else {
assertMap(sig, matchesList().item("ExchangeSourceOperator").item("ExchangeSinkOperator"));
}
}
case "final" -> assertMap(
sig,
matchesList().item("ExchangeSourceOperator").item("LimitOperator").item("ProjectOperator").item("OutputOperator")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2337,6 +2337,7 @@ mvStringNotEquals
FROM mv_text
| WHERE message != "Connected to 10.1.0.2"
| KEEP @timestamp, message
| SORT @timestamp ASC
;
warning:Line 2:9: evaluation of [message != \"Connected to 10.1.0.2\"] failed, treating result as null. Only first 20 failures recorded.
warning:Line 2:9: java.lang.IllegalArgumentException: single-value function encountered multi-value
Expand Down