ClickHouse/tests/queries/0_stateless/02508_bad_graphite.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
320 B
MySQL
Raw Normal View History

2022-12-18 07:00:32 +00:00
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;