mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
32 lines
498 B
SQL
32 lines
498 B
SQL
DROP TABLE IF EXISTS tab_00625;
|
|
|
|
CREATE TABLE tab_00625
|
|
(
|
|
date Date,
|
|
key UInt32,
|
|
testMap Nested(
|
|
k UInt16,
|
|
v UInt64)
|
|
)
|
|
ENGINE = SummingMergeTree(date, (date, key), 1);
|
|
|
|
INSERT INTO tab_00625 SELECT
|
|
today(),
|
|
number,
|
|
[toUInt16(number)],
|
|
[number]
|
|
FROM system.numbers
|
|
LIMIT 8190;
|
|
|
|
INSERT INTO tab_00625 SELECT
|
|
today(),
|
|
number + 8190,
|
|
[toUInt16(number)],
|
|
[number + 8190]
|
|
FROM system.numbers
|
|
LIMIT 10;
|
|
|
|
OPTIMIZE TABLE tab_00625;
|
|
|
|
DROP TABLE tab_00625;
|