mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
6 lines
268 B
SQL
6 lines
268 B
SQL
DROP TABLE IF EXISTS test;
|
|
CREATE TABLE test (num UInt64, str String) ENGINE = MergeTree ORDER BY num;
|
|
INSERT INTO test (num) VALUES (1), (2), (10), (15), (23);
|
|
SELECT count(*) FROM test WHERE bitmapContains(bitmapBuild([1, 5, 7, 9]), toUInt32(num));
|
|
DROP TABLE test;
|