ClickHouse/dbms/tests/queries/0_stateless/00465_nullable_default.sql

6 lines
215 B
MySQL
Raw Normal View History

2017-06-16 18:08:19 +00:00
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;