mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
Add tests
This commit is contained in:
parent
10156f1f56
commit
a1104644d9
@ -0,0 +1,2 @@
|
||||
['aa','ss']
|
||||
['aa','ss']
|
@ -0,0 +1,16 @@
|
||||
DROP TABLE IF EXISTS test.agg_over_nullable;
|
||||
CREATE TABLE test.agg_over_nullable (
|
||||
partition Date,
|
||||
timestamp DateTime,
|
||||
user_id Nullable(UInt32),
|
||||
description Nullable(String)
|
||||
) ENGINE = MergeTree(partition, timestamp, 8192);
|
||||
|
||||
INSERT INTO test.agg_over_nullable(partition, timestamp, user_id, description) VALUES(now(), now(), 1, 'ss');
|
||||
INSERT INTO test.agg_over_nullable(partition, timestamp, user_id, description) VALUES(now(), now(), 1, NULL);
|
||||
INSERT INTO test.agg_over_nullable(partition, timestamp, user_id, description) VALUES(now(), now(), 1, 'aa');
|
||||
|
||||
SELECT groupUniqArray(description) FROM test.agg_over_nullable;
|
||||
SELECT topK(3)(description) FROM test.agg_over_nullable;
|
||||
|
||||
DROP TABLE test.agg_over_nullable;
|
Loading…
Reference in New Issue
Block a user