1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

Fix charset in MTR

This commit is contained in:
Timofey Turenko
2025-06-18 18:01:51 +03:00
committed by Leonid Fedorov
parent 68f60cd695
commit 38a5a7edec
40 changed files with 92 additions and 5 deletions

View File

@ -1,5 +1,6 @@
DROP DATABASE IF EXISTS MCOL5744;
CREATE DATABASE MCOL5744;
USE MCOL5744;
SET old_mode='';
CREATE TABLE t(x text CHARACTER SET utf8 COLLATE utf8_general_ci) ENGINE=COLUMNSTORE;
SHOW CREATE TABLE t;

View File

@ -497,3 +497,4 @@ DROP TABLE cs2;
DROP TABLE cs3;
DROP TABLE cs4;
DROP TABLE cs5;
DROP DATABASE IF EXISTS test_mcol641_aggregate;

View File

@ -41,7 +41,7 @@ SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`col` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci
) ENGINE=InnoDB
INSERT INTO t1 VALUES(1);
SELECT * FROM t1;
col