You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-11-28 20:23:58 +03:00
move mtr suites here
This commit is contained in:
10
mtr/basic/r/mcs149_window_function_bit_and.result
Normal file
10
mtr/basic/r/mcs149_window_function_bit_and.result
Normal file
@@ -0,0 +1,10 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user