mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Added failing test with clearing all columns
This commit is contained in:
parent
c16d8e094b
commit
a4c68a47d5
5
tests/queries/0_stateless/01388_clear_all_columns.sql
Normal file
5
tests/queries/0_stateless/01388_clear_all_columns.sql
Normal 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;
|
Loading…
Reference in New Issue
Block a user