dbms: added test [#METR-10894].

This commit is contained in:
Alexey Milovidov 2014-06-06 21:19:40 +04:00
parent 5a8e9a517c
commit 100da1547e
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,21 @@
DROP TABLE IF EXISTS test.stored_aggregates;
CREATE TABLE test.stored_aggregates
(
d Date,
Uniq AggregateFunction(uniq, UInt64)
)
ENGINE = AggregatingMergeTree(d, d, 8192);
INSERT INTO test.stored_aggregates
SELECT
toDate('2014-06-01') AS d,
uniqState(number) AS Uniq
FROM
(
SELECT * FROM system.numbers LIMIT 1000
);
SELECT uniqMerge(Uniq) FROM test.stored_aggregates;
DROP TABLE test.stored_aggregates;