1
0
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:
mariadb-RomanNavrotskiy
2021-01-29 16:09:44 +02:00
parent 86a32c2bc3
commit 73b4147cf3
1672 changed files with 1017242 additions and 13 deletions

View 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;