mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
22 lines
842 B
SQL
22 lines
842 B
SQL
DROP TABLE IF EXISTS t_subcolumns_local;
|
|
DROP TABLE IF EXISTS t_subcolumns_dist;
|
|
|
|
CREATE TABLE t_subcolumns_local (arr Array(UInt32), n Nullable(String), t Tuple(s1 String, s2 String))
|
|
ENGINE = MergeTree ORDER BY tuple();
|
|
|
|
CREATE TABLE t_subcolumns_dist AS t_subcolumns_local ENGINE = Distributed(test_cluster_two_shards, currentDatabase(), t_subcolumns_local);
|
|
|
|
INSERT INTO t_subcolumns_local VALUES ([1, 2, 3], 'aaa', ('bbb', 'ccc'));
|
|
|
|
SELECT arr.size0, n.null, t.s1, t.s2 FROM t_subcolumns_dist;
|
|
|
|
DROP TABLE t_subcolumns_local;
|
|
|
|
-- StripeLog doesn't support subcolumns.
|
|
CREATE TABLE t_subcolumns_local (arr Array(UInt32), n Nullable(String), t Tuple(s1 String, s2 String)) ENGINE = StripeLog;
|
|
|
|
SELECT arr.size0, n.null, t.s1, t.s2 FROM t_subcolumns_dist; -- { serverError 47 }
|
|
|
|
DROP TABLE t_subcolumns_local;
|
|
DROP TABLE t_subcolumns_dist;
|