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