ClickHouse/dbms/tests/queries/0_stateless/01030_incorrect_count_summing_merge_tree.reference
Nikita Mikhaylov a4189b85e2 done
2019-11-26 17:57:33 +03:00

79 lines
662 B
Plaintext

-- SummingMergeTree with Nullable column without duplicates.
2018-02-01 00:00:00 1
2018-02-02 00:00:00 2
-- 2 2
2
1
-- 2 2
2
1
-- 2 2
2
2
-- 2 2 2
1
1
1
-- 2 2
2
1
-- SummingMergeTree with Nullable column with duplicates
2018-02-01 00:00:00 4
2018-02-02 00:00:00 6
-- 4 2
4
2
-- 4 2
4
2
-- 4 2
4
2
-- 2 2 2 2
2
2
2
2
-- 2 2
2
2
-- SummingMergeTree without Nullable column without duplicates.
2018-02-01 00:00:00 1
2018-02-02 00:00:00 2
-- 2 2
2
2
-- 2 2
2
2
-- 2 2
2
2
-- 2 2 2
1
1
1
-- 2 2
2
2
-- SummingMergeTree without Nullable column with duplicates.
2018-02-01 00:00:00 4
2018-02-02 00:00:00 6
-- 4 2
4
2
-- 4 2
4
2
-- 4 2
4
2
-- 2 2 2
2
2
2
2
-- 2 2
2
2