1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-01 06:46:55 +03:00

Danielmtrupdate2 (#2360)

* Removing extra line in test result

* Default charset has been set to utf8mb3
This commit is contained in:
Daniel Lee
2022-05-05 11:22:29 -04:00
committed by GitHub
parent 554dd67299
commit 73697f1190
4 changed files with 4 additions and 5 deletions

View File

@ -21,7 +21,7 @@ Table Create Table
cs3 CREATE TABLE `cs3` (
`i` int(11) DEFAULT NULL,
`t` text DEFAULT NULL
) ENGINE=Columnstore DEFAULT CHARSET=latin1
) ENGINE=Columnstore DEFAULT CHARSET=utf8mb3
delete from `test023_cs3`.`cs3` where i = 1;
update `test023_cs3`.`cs3` set i = 5 where i = 10;
select * from `test023_cs3`.`cs3`;

View File

@ -22,7 +22,7 @@ Table Create Table
cs3 CREATE TABLE "cs3" (
"i" int(11) DEFAULT NULL,
"t" text DEFAULT NULL
) ENGINE=Columnstore DEFAULT CHARSET=latin1
) ENGINE=Columnstore DEFAULT CHARSET=utf8mb3
delete from "test023_cs3"."cs3" where i = 1;
update "test023_cs3"."cs3" set i = 5 where i = 10;
select * from "test023_cs3"."cs3";

View File

@ -25,7 +25,7 @@ Table Create Table
cs3 CREATE TABLE `cs3` (
`i` int(11) DEFAULT NULL,
`t` text DEFAULT NULL
) ENGINE=Columnstore DEFAULT CHARSET=latin1
) ENGINE=Columnstore DEFAULT CHARSET=utf8mb3
delete from `test023_cs3`.`cs3` where i = 1;
update `test023_cs3`.`cs3` set i = 5 where i = 10;
select * from `test023_cs3`.`cs3`;
@ -41,7 +41,7 @@ cs3 CREATE TABLE `cs3` (
`i` int(11) DEFAULT NULL,
`t` text DEFAULT NULL,
`nt` text DEFAULT NULL
) ENGINE=Columnstore DEFAULT CHARSET=latin1
) ENGINE=Columnstore DEFAULT CHARSET=utf8mb3
drop table `test023_cs3`.`cs3`;
show create table `test023_cs3`.`cs3`;
ERROR 42S02: Table 'test023_cs3.cs3' doesn't exist

View File

@ -3,5 +3,4 @@ CREATE TABLE IF NOT EXISTS mcol2219 (`t (space` int) engine=columnstore;
SELECT column_name FROM information_schema.columnstore_columns WHERE table_name='mcol2219';
column_name
t (space
t (space
DROP TABLE mcol2219;