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/PushExpressionToLoadIT.java
+22-16Lines changed: 22 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -372,7 +372,8 @@ public void testVHammingToBit() throws IOException {
Copy file name to clipboardExpand all lines: x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LocalLogicalPlanOptimizerTests.java
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1927,7 +1927,8 @@ public void testReductionPlanForTopNWithPushedDownFunctions() {
1927
1927
// Eval[[$$dense_vector$V_DOT_PRODUCT$1451583510{f$}#1110 AS score#1085]]
1928
1928
vareval = as(topN.child(), Eval.class);
1929
1929
assertThat(eval.fields(), hasSize(1));
1930
-
varscoreAlias = eval.fields().stream()
1930
+
varscoreAlias = eval.fields()
1931
+
.stream()
1931
1932
.filter(f -> f.name().equals("score"))
1932
1933
.findFirst()
1933
1934
.orElseThrow(() -> newAssertionError("Field 'score' not found in eval"));
0 commit comments