This commit is contained in:
Alexey Milovidov 2018-04-05 23:29:19 +03:00
parent 83b72b578d
commit 7d69a3363f
2 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1 @@
2017-09-10 ['a','b']

View File

@ -0,0 +1,6 @@
USE test;
DROP TABLE IF EXISTS test;
CREATE TABLE test (date Date, keys Array(Nullable(String))) ENGINE = MergeTree(date, date, 1);
INSERT INTO test VALUES ('2017-09-10', ['a', 'b']);
SELECT * FROM test LIMIT 1;
DROP TABLE test;