You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
record new test results
This commit is contained in:
committed by
Leonid Fedorov
parent
1dc794d4db
commit
e8b7442afa
@ -20,7 +20,7 @@ ERROR HY000: Internal error: CAL0001: Alter table Failed: Changing the datatype
|
|||||||
ALTER TABLE t1 CHANGE COLUMN c2 c2new CHAR(1);
|
ALTER TABLE t1 CHANGE COLUMN c2 c2new CHAR(1);
|
||||||
ALTER TABLE t1 CHANGE COLUMN c2new c2 CHAR(1);
|
ALTER TABLE t1 CHANGE COLUMN c2new c2 CHAR(1);
|
||||||
ALTER TABLE t1 DROP COLUMN IF EXISTS c11;
|
ALTER TABLE t1 DROP COLUMN IF EXISTS c11;
|
||||||
ERROR 42000: The storage engine for the table doesn't support The syntax or the data type(s) is not supported by Columnstore. Please check the Columnstore syntax guide for supported syntax or data types.
|
ERROR 42000: The storage engine for the table doesn't support The syntax drop column if exists is not supported by Columnstore. Please check the Columnstore syntax guide for supported syntax or data types.
|
||||||
ALTER TABLE t1 DROP COLUMN c11;
|
ALTER TABLE t1 DROP COLUMN c11;
|
||||||
ALTER TABLE t1 DROP COLUMN IF EXISTS c11;
|
ALTER TABLE t1 DROP COLUMN IF EXISTS c11;
|
||||||
Warnings:
|
Warnings:
|
||||||
|
@ -25,7 +25,7 @@ t3 CREATE TABLE `t3` (
|
|||||||
CREATE TABLE t4(col1 INT PRIMARY KEY AUTO_INCREMENT)ENGINE=Columnstore;
|
CREATE TABLE t4(col1 INT PRIMARY KEY AUTO_INCREMENT)ENGINE=Columnstore;
|
||||||
ERROR 42000: Too many keys specified; max 0 keys allowed
|
ERROR 42000: Too many keys specified; max 0 keys allowed
|
||||||
CREATE TABLE t4(col1 INT )MAX_ROWS=10, ENGINE=Columnstore;
|
CREATE TABLE t4(col1 INT )MAX_ROWS=10, ENGINE=Columnstore;
|
||||||
ERROR 42000: The storage engine for the table doesn't support The syntax or the data type(s) is not supported by Columnstore. Please check the Columnstore syntax guide for supported syntax or data types.
|
ERROR 42000: The storage engine for the table doesn't support The syntax min_rows/max_rows is not supported by Columnstore. Please check the Columnstore syntax guide for supported syntax or data types.
|
||||||
CREATE TABLE t5(col1 INT )MIN_ROWS=10, ENGINE=Columnstore;
|
CREATE TABLE t5(col1 INT )MIN_ROWS=10, ENGINE=Columnstore;
|
||||||
ERROR 42000: The storage engine for the table doesn't support The syntax or the data type(s) is not supported by Columnstore. Please check the Columnstore syntax guide for supported syntax or data types.
|
ERROR 42000: The storage engine for the table doesn't support The syntax min_rows/max_rows is not supported by Columnstore. Please check the Columnstore syntax guide for supported syntax or data types.
|
||||||
DROP DATABASE mcs8_db;
|
DROP DATABASE mcs8_db;
|
||||||
|
@ -20,7 +20,7 @@ ERROR 42000: Too many keys specified; max 0 keys allowed
|
|||||||
CREATE TABLE t7(col1 INT UNIQUE)ENGINE=Columnstore;
|
CREATE TABLE t7(col1 INT UNIQUE)ENGINE=Columnstore;
|
||||||
ERROR 42000: Too many keys specified; max 0 keys allowed
|
ERROR 42000: Too many keys specified; max 0 keys allowed
|
||||||
CREATE TABLE t8(col1 INT)MIN_ROWS=10, ENGINE=Columnstore;
|
CREATE TABLE t8(col1 INT)MIN_ROWS=10, ENGINE=Columnstore;
|
||||||
ERROR 42000: The storage engine for the table doesn't support The syntax or the data type(s) is not supported by Columnstore. Please check the Columnstore syntax guide for supported syntax or data types.
|
ERROR 42000: The storage engine for the table doesn't support The syntax min_rows/max_rows is not supported by Columnstore. Please check the Columnstore syntax guide for supported syntax or data types.
|
||||||
CREATE TABLE t9(col1 INT)MAX_ROWS=1000, ENGINE=Columnstore;
|
CREATE TABLE t9(col1 INT)MAX_ROWS=1000, ENGINE=Columnstore;
|
||||||
ERROR 42000: The storage engine for the table doesn't support The syntax or the data type(s) is not supported by Columnstore. Please check the Columnstore syntax guide for supported syntax or data types.
|
ERROR 42000: The storage engine for the table doesn't support The syntax min_rows/max_rows is not supported by Columnstore. Please check the Columnstore syntax guide for supported syntax or data types.
|
||||||
DROP DATABASE mcs9_db;
|
DROP DATABASE mcs9_db;
|
||||||
|
Reference in New Issue
Block a user