mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
7 lines
320 B
SQL
7 lines
320 B
SQL
DROP TABLE IF EXISTS test_graphite;
|
|
create table test_graphite (key UInt32, Path String, Time DateTime('UTC'), Value UInt8, Version UInt32, col UInt64)
|
|
engine = GraphiteMergeTree('graphite_rollup') order by key;
|
|
|
|
INSERT INTO test_graphite (key) VALUES (0); -- { serverError BAD_ARGUMENTS }
|
|
DROP TABLE test_graphite;
|