From fcf53d9dc8135d0d8c85eeec2a9c552202076e93 Mon Sep 17 00:00:00 2001 From: Brent Gardner Date: Fri, 4 Oct 2024 11:57:42 -0600 Subject: [PATCH] fix test --- datafusion/sqllogictest/test_files/aggregates_topk.slt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/datafusion/sqllogictest/test_files/aggregates_topk.slt b/datafusion/sqllogictest/test_files/aggregates_topk.slt index 4367da8c94de..4562bbc1ac69 100644 --- a/datafusion/sqllogictest/test_files/aggregates_topk.slt +++ b/datafusion/sqllogictest/test_files/aggregates_topk.slt @@ -57,8 +57,7 @@ query TI select * from (select trace_id, MAX(timestamp) max_ts from traces t group by trace_id) where trace_id != 'a' order by max_ts desc limit 3; ---- c 4 -b 3 -NULL 0 +a 1 query TI select trace_id, MAX(timestamp) from traces group by trace_id order by MAX(timestamp) desc limit 4;