ClickHouse/tests/queries/0_stateless/00662_has_nullable.sql

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

8 lines
244 B
MySQL
Raw Normal View History

DROP TABLE IF EXISTS 00662_has_nullable;
CREATE TABLE 00662_has_nullable(a Nullable(UInt64)) ENGINE = Memory;
INSERT INTO 00662_has_nullable VALUES (1), (Null);
SELECT a, has([0, 1], a) FROM 00662_has_nullable;
DROP TABLE 00662_has_nullable;