mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Better test #2066
This commit is contained in:
parent
afb7127c67
commit
2627a4da2e
@ -1,4 +1,10 @@
|
||||
['Hello','World'] [['a'],['b','c']] [['PU','US'],['OTHER']]
|
||||
['Hello','World'] [['a'],['b','c']] [['PU','US'],['OTHER']]
|
||||
['Hello','World'] [['a'],['b','c']] [['PU','US'],['OTHER']]
|
||||
['GoodBye'] [['1','2']] [['PU','US','OTHER']]
|
||||
['Hello','World'] [['a'],['b','c']] [['PU','US'],['OTHER']]
|
||||
['GoodBye'] [['1','2']] [['PU','US','OTHER']]
|
||||
['Hello','World'] [['a'],['b','c']] [['PU','US'],['OTHER']]
|
||||
['GoodBye'] [['1','2']] [['PU','US','OTHER']]
|
||||
['Hello','World'] [['a'],['b','c']] [['PU','US'],['OTHER']]
|
||||
['Hello','World'] [['a'],['b','c']] [['PU','US'],['OTHER']]
|
||||
['Hello','World'] [['a'],['b','c']] [['PU','US'],['OTHER']]
|
||||
|
@ -20,6 +20,17 @@ ATTACH TABLE nested;
|
||||
|
||||
SELECT * FROM nested;
|
||||
|
||||
INSERT INTO nested VALUES (['GoodBye'], [['1', '2']], [['PU', 'US', 'OTHER']]);
|
||||
|
||||
SELECT * FROM nested ORDER BY column.name;
|
||||
OPTIMIZE TABLE nested PARTITION tuple() FINAL;
|
||||
SELECT * FROM nested ORDER BY column.name;
|
||||
|
||||
DETACH TABLE nested;
|
||||
ATTACH TABLE nested;
|
||||
|
||||
SELECT * FROM nested ORDER BY column.name;
|
||||
|
||||
|
||||
DROP TABLE IF EXISTS nested;
|
||||
CREATE TABLE nested
|
||||
|
Loading…
Reference in New Issue
Block a user