ClickHouse/tests/queries/0_stateless/00564_initial_column_values_with_default_expression.sql
Ivan 97f2a2213e
Move all folders inside /dbms one level up (#9974)
* Move some code outside dbms/src folder
* Fix paths
2020-04-02 02:51:21 +03:00

14 lines
512 B
SQL

DROP TABLE IF EXISTS test;
CREATE TABLE IF NOT EXISTS test( id UInt32, track UInt8, codec String, content String, rdate Date DEFAULT '2018-02-03', track_id String DEFAULT concat(concat(concat(toString(track), '-'), codec), content) ) ENGINE=MergeTree(rdate, (id, track_id), 8192);
INSERT INTO test(id, track, codec) VALUES(1, 0, 'h264');
SELECT * FROM test ORDER BY id;
INSERT INTO test(id, track, codec, content) VALUES(2, 0, 'h264', 'CONTENT');
SELECT * FROM test ORDER BY id;
DROP TABLE IF EXISTS test;