From 1c9daabb67df4d23d9ffc4179b12550130e2e543 Mon Sep 17 00:00:00 2001 From: mariadb-KirillPerov <102637268+KirillPerov@users.noreply.github.com> Date: Mon, 7 Nov 2022 00:57:32 +0600 Subject: [PATCH] Update mcs118_charset_negative.test --- mysql-test/columnstore/basic/t/mcs118_charset_negative.test | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mysql-test/columnstore/basic/t/mcs118_charset_negative.test b/mysql-test/columnstore/basic/t/mcs118_charset_negative.test index d488a3b72..6b64b131f 100644 --- a/mysql-test/columnstore/basic/t/mcs118_charset_negative.test +++ b/mysql-test/columnstore/basic/t/mcs118_charset_negative.test @@ -15,6 +15,7 @@ CREATE TABLE t1 (a VARCHAR(10) CHARACTER SET latin1, b VARCHAR(10) CHARACTER SET --replace_regex /COLLATE latin1_swedish_ci // /COLLATE utf8mb3_general_ci // / COLLATE=latin5_turkish_ci// SHOW CREATE TABLE t1; +--disable_warnings --disable_abort_on_error --replace_regex /ERROR 42000/ERROR HY000/ /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./Conflicting declarations: 'CHARACTER SET utf8mb3' and 'CHARACTER SET latin1'/ ALTER TABLE t1 CONVERT TO CHARACTER SET utf8, CHARACTER SET latin1; @@ -27,6 +28,7 @@ ALTER TABLE t1 CONVERT TO CHARACTER SET latin1, CHARACTER SET DEFAULT; --replace_regex /ERROR 42000/ERROR HY000/ /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./Conflicting declarations: 'CHARACTER SET latin5' and 'CHARACTER SET utf8mb3'/ ALTER TABLE t1 CONVERT TO CHARACTER SET DEFAULT, CHARACTER SET utf8; --enable_abort_on_error +--enable_warnings # Clean UP DROP DATABASE mcs118_db;