mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 07:01:59 +00:00
Added a test from Alexey Ilyukhov @livace
This commit is contained in:
parent
1e9c96776a
commit
750b73084a
@ -0,0 +1,2 @@
|
||||
[(123,456),(789,234)] [(567,890)]
|
||||
[] [(11,22),(33,44),(55,66)]
|
9
tests/queries/0_stateless/01255_geo_types_livace.sql
Normal file
9
tests/queries/0_stateless/01255_geo_types_livace.sql
Normal 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;
|
Loading…
Reference in New Issue
Block a user