You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
Updated MTR cases for new output from the 'show create table' command
This commit is contained in:
@ -13,7 +13,7 @@ Table Create Table
|
||||
to!@#$%^&*$#,()[].;:+-|/%^<>=!&|@\ CREATE TABLE `to!@#$%^&*$#,()[].;:+-|/%^<>=!&|@\` (
|
||||
`i` int(11) DEFAULT NULL,
|
||||
`t` text DEFAULT NULL
|
||||
) ENGINE=Columnstore DEFAULT CHARSET=latin1
|
||||
) ENGINE=Columnstore DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci
|
||||
drop table `to!@#$%^&*$#,()[].;:+-|/%^<>=!&|@\`;
|
||||
show create table `to!@#$%^&*$#,()[].;:+-|/%^<>=!&|@\`;
|
||||
ERROR 42S02: Table 'tpch1.to!@#$%^&*$#,()[].;:+-|/%^<>=!&|@\' doesn't exist
|
||||
|
@ -14,7 +14,7 @@ Table Create Table
|
||||
to!@#$%^&*$#,()[].;:+-|/%^<>=!&|@\ CREATE TABLE "to!@#$%^&*$#,()[].;:+-|/%^<>=!&|@\" (
|
||||
"some" int(11) DEFAULT NULL,
|
||||
"t" text DEFAULT NULL
|
||||
) ENGINE=Columnstore DEFAULT CHARSET=latin1
|
||||
) ENGINE=Columnstore DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci
|
||||
drop table "to!@#$%^&*$#,()[].;:+-|/%^<>=!&|@\";
|
||||
show create table "to!@#$%^&*$#,()[].;:+-|/%^<>=!&|@\";
|
||||
ERROR 42S02: Table 'tpch1.to!@#$%^&*$#,()[].;:+-|/%^<>=!&|@\' doesn't exist
|
||||
|
@ -13,7 +13,7 @@ Table Create Table
|
||||
z k CREATE TABLE `z k` (
|
||||
`a b` int(11) DEFAULT NULL,
|
||||
`c300_500_18 REF NOx` text DEFAULT NULL
|
||||
) ENGINE=Columnstore DEFAULT CHARSET=latin1
|
||||
) ENGINE=Columnstore DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci
|
||||
drop table tpch1.`z k`;
|
||||
show create table `z k`;
|
||||
ERROR 42S02: Table 'tpch1.z k' doesn't exist
|
||||
|
@ -21,7 +21,7 @@ Table Create Table
|
||||
cs3 CREATE TABLE `cs3` (
|
||||
`i` int(11) DEFAULT NULL,
|
||||
`t` text DEFAULT NULL
|
||||
) ENGINE=Columnstore DEFAULT CHARSET=utf8mb3
|
||||
) ENGINE=Columnstore DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci
|
||||
delete from `test023_cs3`.`cs3` where i = 1;
|
||||
update `test023_cs3`.`cs3` set i = 5 where i = 10;
|
||||
select * from `test023_cs3`.`cs3`;
|
||||
|
@ -22,7 +22,7 @@ Table Create Table
|
||||
cs3 CREATE TABLE "cs3" (
|
||||
"i" int(11) DEFAULT NULL,
|
||||
"t" text DEFAULT NULL
|
||||
) ENGINE=Columnstore DEFAULT CHARSET=utf8mb3
|
||||
) ENGINE=Columnstore DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci
|
||||
delete from "test023_cs3"."cs3" where i = 1;
|
||||
update "test023_cs3"."cs3" set i = 5 where i = 10;
|
||||
select * from "test023_cs3"."cs3";
|
||||
|
@ -25,7 +25,7 @@ Table Create Table
|
||||
cs3 CREATE TABLE `cs3` (
|
||||
`i` int(11) DEFAULT NULL,
|
||||
`t` text DEFAULT NULL
|
||||
) ENGINE=Columnstore DEFAULT CHARSET=utf8mb3
|
||||
) ENGINE=Columnstore DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci
|
||||
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=utf8mb3
|
||||
) ENGINE=Columnstore DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci
|
||||
drop table `test023_cs3`.`cs3`;
|
||||
show create table `test023_cs3`.`cs3`;
|
||||
ERROR 42S02: Table 'test023_cs3.cs3' doesn't exist
|
||||
|
Reference in New Issue
Block a user