ClickHouse/dbms/tests/queries/0_stateless/00465_nullable_default.sql
2017-06-16 21:08:19 +03:00

6 lines
215 B
SQL

DROP TABLE IF EXISTS test.nullable;
CREATE TABLE test.nullable (id Nullable(UInt32), cat String) ENGINE = Log;
INSERT INTO test.nullable (cat) VALUES ('test');
SELECT * FROM test.nullable;
DROP TABLE test.nullable;