This commit is contained in:
Sergey Kviatkevich 2023-11-17 00:46:59 +03:00
parent afae432e99
commit d2826c0c12
2 changed files with 0 additions and 1 deletions

View File

@ -1,6 +1,5 @@
DROP TABLE IF EXISTS alter_test;
set allow_deprecated_syntax_for_merge_tree=1;
CREATE TEMPORARY TABLE alter_test (CounterID UInt32, StartDate Date, UserID UInt32, VisitID UInt32, NestedColumn Nested(A UInt8, S String), ToDrop UInt32);
INSERT INTO alter_test VALUES (1, '2014-01-01', 2, 3, [1,2,3], ['a','b','c'], 4);