mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
7 lines
250 B
SQL
7 lines
250 B
SQL
-- 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;
|