Skip to content

Commit 48c99ad

Browse files
committed
WIP: Fixed spurious formatting difference in planning_inplace_aggregate2
1 parent 3ea1e22 commit 48c99ad

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
);

0 commit comments

Comments
 (0)