ClickHouse/dbms/tests/queries/0_stateless/00531_aggregate_over_nullable.sql

17 lines
717 B
MySQL
Raw Normal View History

2017-12-14 09:02:12 +00:00
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;