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
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -150,7 +150,10 @@ public void testEqualityAndOther() throws IOException {
150
150
* single_value_match is here because there are extra documents hiding in the index
151
151
* that don't have the `foo` field.
152
152
*/
153
-
List.of("#(#foo:[1 TO 1] #single_value_match(foo)) #FieldExistsQuery [field=_primary_term]", "foo:[1 TO 1]");
153
+
List.of(
154
+
"#(#foo:[1 TO 1] #single_value_match(foo)) #FieldExistsQuery [field=_primary_term]",
155
+
"#foo:[1 TO 1] #FieldExistsQuery [field=_primary_term]"
156
+
);
154
157
default -> thrownewUnsupportedOperationException("unknown type [" + type + "]");
0 commit comments