Fix tests

This commit is contained in:
Alexey Milovidov 2022-05-06 00:23:47 +02:00
parent d1b4f6aec3
commit 250efb4b80
2 changed files with 0 additions and 4 deletions

View File

@ -1,8 +1,5 @@
-- fuzzer
SELECT child_key, parent_key, child_key FROM data_02233 GROUP BY parent_key, child_key, child_key ORDER BY child_key, parent_key ASC NULLS LAST SETTINGS max_threads = 1, optimize_aggregation_in_order = 1;
100 10 100
200 20 200
SELECT child_key, parent_key, child_key FROM data_02233 GROUP BY parent_key, child_key, child_key WITH TOTALS ORDER BY child_key, parent_key ASC NULLS LAST SETTINGS max_threads = 1, optimize_aggregation_in_order = 1;
100 10 100
200 20 200

View File

@ -8,5 +8,4 @@ insert into data_02233 values (2, 10, 100, 1000)(2, 20, 200, 2000);
SELECT child_key, parent_key, child_key FROM data_02233 GROUP BY parent_key, child_key, child_key ORDER BY child_key, parent_key ASC NULLS LAST SETTINGS max_threads = 1, optimize_aggregation_in_order = 1;
SELECT child_key, parent_key, child_key FROM data_02233 GROUP BY parent_key, child_key, child_key WITH TOTALS ORDER BY child_key, parent_key ASC NULLS LAST SETTINGS max_threads = 1, optimize_aggregation_in_order = 1;
-- { echoOff }
drop table data_02233;