Added failing test with clearing all columns

This commit is contained in:
Alexey Milovidov 2020-07-10 08:58:16 +03:00
parent c16d8e094b
commit a4c68a47d5
2 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
DROP TABLE IF EXISTS test;
CREATE TABLE test (x UInt8) ENGINE = MergeTree ORDER BY tuple();
INSERT INTO test (x) VALUES (1), (2), (3);
ALTER TABLE test CLEAR COLUMN x;
DROP TABLE test;