Added test [#CLICKHOUSE-2754]

This commit is contained in:
Alexey Milovidov 2018-02-18 00:26:22 +03:00
parent fb0920ff98
commit 2cf73473f7
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,8 @@
hello
world
hello \N
world \N
hello \N
world \N
hello 0
world 0

View File

@ -0,0 +1,13 @@
DROP TABLE IF EXISTS test.nullable;
CREATE TABLE test.nullable (x String) ENGINE = MergeTree ORDER BY x;
INSERT INTO test.nullable VALUES ('hello'), ('world');
SELECT * FROM test.nullable;
ALTER TABLE test.nullable ADD COLUMN n Nullable(UInt64);
SELECT * FROM test.nullable;
ALTER TABLE test.nullable DROP COLUMN n;
ALTER TABLE test.nullable ADD COLUMN n Nullable(UInt64) DEFAULT NULL;
SELECT * FROM test.nullable;
ALTER TABLE test.nullable DROP COLUMN n;
ALTER TABLE test.nullable ADD COLUMN n Nullable(UInt64) DEFAULT 0;
SELECT * FROM test.nullable;
DROP TABLE test.nullable;