Add test for 60232

This commit is contained in:
Raúl Marín 2024-02-21 18:31:55 +01:00
parent c1754d3cd1
commit 5c01cc512d
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1 @@
2024-01-01 [2,3]

View File

@ -0,0 +1,18 @@
--https://github.com/ClickHouse/ClickHouse/issues/60232
CREATE TABLE hits
(
`date` Date,
`data` Array(UInt32)
)
ENGINE = MergeTree
PARTITION BY toYYYYMM(date)
ORDER BY date;
INSERT INTO hits values('2024-01-01', [1, 2, 3]);
SELECT
hits.date,
arrayFilter(x -> (x IN (2, 3)), data) AS filtered
FROM hits
WHERE arrayExists(x -> (x IN (2, 3)), data)
SETTINGS allow_experimental_analyzer = 1;