fix insert

This commit is contained in:
alexeypavlenko 2022-01-17 23:06:56 +02:00
parent 4cc1e25d45
commit 06b08b0e3a

View File

@ -9,7 +9,7 @@ CREATE TABLE test_nested_default
ENGINE = MergeTree()
ORDER BY id;
INSERT INTO test_nested_default(`id`, `with_dot.array.string`) VALUES('id', ['str1', 'str2']);
INSERT INTO test_nested_default(`id`, `with_dot.array`) VALUES('id', ['str1', 'str2']);
SELECT * FROM test_nested_default;
DROP TABLE test_nested_default;