mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-29 19:12:03 +00:00
18 lines
499 B
SQL
18 lines
499 B
SQL
DROP TABLE IF EXISTS TESTTABLE;
|
|
|
|
CREATE TABLE TESTTABLE (
|
|
_id UInt64, pt String, attr_list Array(String)
|
|
) ENGINE = MergeTree() PARTITION BY (pt) ORDER BY tuple();
|
|
|
|
INSERT INTO TESTTABLE values (0,'0',['1']), (1,'1',['1']);
|
|
|
|
SET max_threads = 1;
|
|
|
|
-- There is a bug which is fixed in new analyzer.
|
|
SET max_bytes_before_external_sort = 0;
|
|
|
|
SELECT attr, _id, arrayFilter(x -> (x IN (select '1')), attr_list) z
|
|
FROM TESTTABLE ARRAY JOIN z AS attr ORDER BY _id LIMIT 3 BY attr;
|
|
|
|
DROP TABLE TESTTABLE;
|