This commit is contained in:
zvonand 2023-08-25 17:13:24 +05:00
parent d5f26cece5
commit 6c1312ea0e
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,4 @@
pure nullable result:
qwe
wrapping in LC:
qwe

View File

@ -0,0 +1,17 @@
-- https://github.com/ClickHouse/ClickHouse/issues/50570
DROP TABLE IF EXISTS tnul SYNC;
DROP TABLE IF EXISTS tlc SYNC;
CREATE TABLE tnul (lc Nullable(String)) ENGINE = MergeTree ORDER BY tuple();
INSERT INTO tnul VALUES (NULL), ('qwe');
SELECT 'pure nullable result:';
SELECT lc FROM tnul WHERE notIn(lc, ('rty', 'uiop'));
DROP TABLE tnul SYNC;
CREATE TABLE tlc (lc LowCardinality(Nullable(String))) ENGINE = MergeTree ORDER BY tuple();
INSERT INTO tlc VALUES (NULL), ('qwe');
SELECT 'wrapping in LC:';
SELECT lc FROM tlc WHERE notIn(lc, ('rty', 'uiop'));
DROP TABLE tlc SYNC;