mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 08:02:02 +00:00
Add a test #20019
This commit is contained in:
parent
22720dd7a4
commit
582ce69ee0
8
tests/queries/0_stateless/01811_filter_by_null.sql
Normal file
8
tests/queries/0_stateless/01811_filter_by_null.sql
Normal file
@ -0,0 +1,8 @@
|
||||
DROP TABLE IF EXISTS test_01344;
|
||||
|
||||
CREATE TABLE test_01344 (x String, INDEX idx (x) TYPE set(10) GRANULARITY 1) ENGINE = MergeTree ORDER BY tuple() SETTINGS min_bytes_for_wide_part = 0;
|
||||
INSERT INTO test_01344 VALUES ('Hello, world');
|
||||
SELECT NULL FROM test_01344 WHERE ignore(1) = NULL;
|
||||
SELECT NULL FROM test_01344 WHERE encrypt(ignore(encrypt(NULL, '0.0001048577', lcm(2, 65537), NULL, inf, NULL), lcm(-2, 1048575)), '-0.0000000001', lcm(NULL, NULL)) = NULL;
|
||||
|
||||
DROP TABLE test_01344;
|
Loading…
Reference in New Issue
Block a user