Skip to content

Commit 9ac82df

Browse files
alex-spiesViggoC
authored andcommitted
ESQL: Un-skip testPartiallyPushableSort after fixing elastic#114515 (elastic#128522) (elastic#128918)
Co-authored-by: ViggoC <[email protected]>
1 parent 024c9bd commit 9ac82df

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/physical/local/PushTopNToSourceTests.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,6 @@ public void testSimpleSortEvalSumLiteralAndField() {
193193
assertNoPushdownSort(query.asTimeSeries(), "for time series index mode");
194194
}
195195

196-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/114515")
197196
public void testPartiallyPushableSort() {
198197
// FROM index | EVAL sum = 1 + integer | SORT integer, sum, field | LIMIT 10
199198
var query = from("index").eval("sum", b -> b.add(b.i(1), b.field("integer"))).sort("integer").sort("sum").sort("field").limit(10);

0 commit comments

Comments
 (0)