File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
rust/cubestore/cubestore-sql-tests/src Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3122,7 +3122,7 @@ async fn planning_inplace_aggregate2(service: Box<dyn SqlClient>) {
31223122 AND (`day` >= to_timestamp('2021-01-01T00:00:00.000') \
31233123 AND `day` <= to_timestamp('2021-01-02T23:59:59.999')) \
31243124 GROUP BY 1 \
3125- ORDER BY 2 DESC \
3125+ ORDER BY 2 DESC NULLS LAST \
31263126 LIMIT 10",
31273127 )
31283128 . await
@@ -3133,7 +3133,7 @@ async fn planning_inplace_aggregate2(service: Box<dyn SqlClient>) {
31333133 verbose. show_sort_by = true ;
31343134 assert_eq ! (
31353135 pp_phys_plan_ext( p. router. as_ref( ) , & verbose) ,
3136- "Projection, [url, SUM (Data.hits)@1:hits]\
3136+ "Projection, [url, sum (Data.hits)@1:hits]\
31373137 \n AggregateTopK, limit: 10, sortBy: [2 desc null last]\
31383138 \n ClusterSend, partitions: [[1, 2]], sort_order: [1]"
31393139 ) ;
You can’t perform that action at this time.
0 commit comments