Skip to content

Commit e40a2e6

Browse files
committed
WIP: Partial fix of planning_topk_hll (second part is a legitimate failure)
1 parent a6a366d commit e40a2e6

File tree

1 file changed

+13
-13
lines changed
  • rust/cubestore/cubestore-sql-tests/src

1 file changed

+13
-13
lines changed

rust/cubestore/cubestore-sql-tests/src/tests.rs

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4168,19 +4168,19 @@ async fn planning_topk_hll(service: Box<dyn SqlClient>) {
41684168
show_hints.show_filters = true;
41694169
assert_eq!(
41704170
pp_phys_plan(p.worker.as_ref()),
4171-
"Projection, [url, CARDINALITY(MERGE(Data.hits)@1):hits]\
4172-
\n AggregateTopK, limit: 3\
4173-
\n Worker\
4174-
\n Sort\
4175-
\n FullInplaceAggregate\
4176-
\n MergeSort\
4177-
\n Union\
4178-
\n MergeSort\
4179-
\n Scan, index: default:1:[1]:sort_on[url], fields: *\
4180-
\n Empty\
4181-
\n MergeSort\
4182-
\n Scan, index: default:2:[2]:sort_on[url], fields: *\
4183-
\n Empty"
4171+
"Projection, [url, cardinality(merge(Data.hits)@1):hits]\
4172+
\n AggregateTopKExec\
4173+
\n Worker\
4174+
\n Sort\
4175+
\n SortedSingleAggregate\
4176+
\n MergeSort\
4177+
\n Union\
4178+
\n Scan, index: default:1:[1]:sort_on[url], fields: *\
4179+
\n Sort\
4180+
\n Empty\
4181+
\n Scan, index: default:2:[2]:sort_on[url], fields: *\
4182+
\n Sort\
4183+
\n Empty"
41844184
);
41854185

41864186
let p = service

0 commit comments

Comments
 (0)