mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 16:12:01 +00:00
Added a test just in case
This commit is contained in:
parent
33b38a9f7b
commit
d4721fea69
@ -0,0 +1 @@
|
||||
\N World
|
@ -0,0 +1,6 @@
|
||||
-- Check that "null as default" applies only if type is not Nullable.
|
||||
|
||||
SET input_format_null_as_default = 1;
|
||||
CREATE TEMPORARY TABLE t (x Nullable(String) DEFAULT 'Hello', y String DEFAULT 'World');
|
||||
INSERT INTO t VALUES (NULL, NULL);
|
||||
SELECT * FROM t;
|
Loading…
Reference in New Issue
Block a user