Skip to content

Commit d52dfc5

Browse files
alex-spiesViggoC
andauthored
ESQL: Un-skip testPartiallyPushableSort after fixing #114515 (#128522) (#128918)
Co-authored-by: ViggoC <[email protected]>
1 parent 0efcf12 commit d52dfc5

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)