Add testcases for arrayElement

This commit is contained in:
hexiaoting 2021-04-22 15:13:46 +08:00
parent 1fcf198cec
commit 899d88459a
2 changed files with 13 additions and 0 deletions

View File

@ -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;