mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 07:01:59 +00:00
Add testcases for arrayElement
This commit is contained in:
parent
1fcf198cec
commit
899d88459a
@ -0,0 +1,13 @@
|
||||
DROP TABLE IF EXISTS test;
|
||||
CREATE TABLE test (`key` UInt32, `arr` ALIAS [1, 2], `xx` MATERIALIZED arr[1]) ENGINE = MergeTree PARTITION BY tuple() ORDER BY tuple();
|
||||
DROP TABLE test;
|
||||
|
||||
CREATE TABLE test (`key` UInt32, `arr` Array(UInt32) ALIAS [1, 2], `xx` MATERIALIZED arr[1]) ENGINE = MergeTree PARTITION BY tuple() ORDER BY tuple();
|
||||
DROP TABLE test;
|
||||
|
||||
CREATE TABLE test (`key` UInt32, `arr` Array(UInt32) ALIAS [1, 2], `xx` UInt32 MATERIALIZED arr[1]) ENGINE = MergeTree PARTITION BY tuple() ORDER BY tuple();
|
||||
DROP TABLE test;
|
||||
|
||||
CREATE TABLE test (`key` UInt32, `arr` ALIAS [1, 2]) ENGINE = MergeTree PARTITION BY tuple() ORDER BY tuple();
|
||||
ALTER TABLE test ADD COLUMN `xx` UInt32 MATERIALIZED arr[1];
|
||||
DROP TABLE test;
|
Loading…
Reference in New Issue
Block a user