ClickHouse/tests/queries/0_stateless/01450_set_null_const.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
267 B
MySQL
Raw Normal View History

2020-08-16 07:16:37 +00:00
DROP TABLE IF EXISTS test_mtree;
CREATE TABLE test_mtree (`x` String, INDEX idx x TYPE set(10) GRANULARITY 1) ENGINE = MergeTree ORDER BY tuple();
INSERT INTO test_mtree VALUES ('Hello, world');
SELECT count() FROM test_mtree WHERE x = NULL;
DROP TABLE test_mtree;