From e8b7442afaf009c3f0a3d0c3b25ebc77cef4fa28 Mon Sep 17 00:00:00 2001 From: mariadb-KristinaPavlova Date: Fri, 4 Jul 2025 11:01:21 +0300 Subject: [PATCH] record new test results --- mysql-test/columnstore/basic/r/mcs87_alter_column.result | 2 +- .../basic/r/mcs8_create_table_with_constraints.result | 4 ++-- .../columnstore/basic/r/mcs9_create_table_negative.result | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/mysql-test/columnstore/basic/r/mcs87_alter_column.result b/mysql-test/columnstore/basic/r/mcs87_alter_column.result index f13f73f82..96de5b655 100644 --- a/mysql-test/columnstore/basic/r/mcs87_alter_column.result +++ b/mysql-test/columnstore/basic/r/mcs87_alter_column.result @@ -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 c2new c2 CHAR(1); 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 IF EXISTS c11; Warnings: diff --git a/mysql-test/columnstore/basic/r/mcs8_create_table_with_constraints.result b/mysql-test/columnstore/basic/r/mcs8_create_table_with_constraints.result index 73051249f..a685e672d 100644 --- a/mysql-test/columnstore/basic/r/mcs8_create_table_with_constraints.result +++ b/mysql-test/columnstore/basic/r/mcs8_create_table_with_constraints.result @@ -25,7 +25,7 @@ t3 CREATE TABLE `t3` ( CREATE TABLE t4(col1 INT PRIMARY KEY AUTO_INCREMENT)ENGINE=Columnstore; ERROR 42000: Too many keys specified; max 0 keys allowed 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; -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; diff --git a/mysql-test/columnstore/basic/r/mcs9_create_table_negative.result b/mysql-test/columnstore/basic/r/mcs9_create_table_negative.result index b332d2d3a..ee1fe7a3e 100644 --- a/mysql-test/columnstore/basic/r/mcs9_create_table_negative.result +++ b/mysql-test/columnstore/basic/r/mcs9_create_table_negative.result @@ -20,7 +20,7 @@ ERROR 42000: Too many keys specified; max 0 keys allowed CREATE TABLE t7(col1 INT UNIQUE)ENGINE=Columnstore; ERROR 42000: Too many keys specified; max 0 keys allowed 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; -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;