Added a test from Alexey Ilyukhov @livace

This commit is contained in:
Alexey Milovidov 2020-04-21 02:56:57 +03:00
parent 1e9c96776a
commit 750b73084a
2 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,2 @@
[(123,456),(789,234)] [(567,890)]
[] [(11,22),(33,44),(55,66)]

View File

@ -0,0 +1,9 @@
DROP TABLE IF EXISTS tutorial;
create table tutorial ( inner_poly Array(Tuple(Int32, Int32)), outer_poly Array(Tuple(Int32, Int32)) ) engine = Log();
SELECT * FROM tutorial;
INSERT INTO tutorial VALUES ([(123, 456), (789, 234)], [(567, 890)]), ([], [(11, 22), (33, 44), (55, 66)]);
SELECT * FROM tutorial;
DROP TABLE tutorial;