DROP DATABASE IF EXISTS mcs149_db; CREATE DATABASE mcs149_db; USE mcs149_db; CREATE TABLE t1 (a CHAR(1), b INT)ENGINE=Columnstore; INSERT INTO t1 VALUES ('', NULL),('a', 12),('a', 13),('b', 14),('b', 15),('b', 16),('b', 17),('b', 18),('a', 19); SELECT a, b, BIT_AND(b) OVER(PARTITION BY a) FROM t1; ERROR HY000: Internal error: IDB-9018: Window Function 'BIT_AND' is currently not supported in Columnstore. SELECT a, b, BIT_AND(b) OVER(ORDER BY a) FROM t1; ERROR HY000: Internal error: IDB-9018: Window Function 'BIT_AND' is currently not supported in Columnstore. DROP DATABASE mcs149_db;