1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

MCOL-4676 ColumnStore MTR tests: missing have_innodb.inc and unpredictable default_storage_engine

This commit is contained in:
Alexander Barkov
2021-04-15 11:53:53 +04:00
parent 257c5f53ee
commit 625af12c63
15 changed files with 23 additions and 12 deletions

View File

@ -30,7 +30,7 @@ cc tinytext character set utf8mb4,
dd text character set utf8mb4,
ee mediumtext character set utf8mb4,
ff longtext character set utf8mb4
) default charset=koi8r;
) default charset=koi8r ENGINE=InnoDB;
create table copy1 like orig;
alter table copy1 engine=columnstore;
create table copy2 like copy1;

View File

@ -152,3 +152,4 @@ i c i2
disconnect addconroot1;
disconnect addconroot2;
DROP DATABASE mcs12_db1;
DROP DATABASE mcs12_db2;

View File

@ -1,3 +1,4 @@
SET default_storage_engine=InnoDB;
DROP USER IF EXISTS user1@test;
DROP USER IF EXISTS 'user2'@'%';
DROP USER IF EXISTS 'user'@'%';
@ -36,6 +37,3 @@ DROP USER 'user'@'%';
DROP USER 'user'@'localhost';
DROP USER 'user'@'127.0.0.1';
SET default_storage_engine=default;
SELECT @@default_storage_engine;
@@default_storage_engine
InnoDB

View File

@ -1,3 +1,4 @@
SET default_storage_engine=InnoDB;
DROP DATABASE IF EXISTS mcs19_db;
DROP USER IF EXISTS 'user'@'localhost';
DROP USER IF EXISTS 'user1'@'localhost';
@ -37,7 +38,7 @@ CREATE DATABASE mcs19_db;
USE mcs19_db;
CREATE DATABASE mcs19_db1;
ERROR 42000: Access denied for user 'user1'@'localhost' to database 'mcs19_db1'
CREATE TABLE t1(col INT);
CREATE TABLE t1(col INT) ENGINE=InnoDB;
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
@ -72,9 +73,6 @@ CREATE TABLE mcs19_db.t1;
ERROR 42000: CREATE command denied to user 'user1'@'localhost' for table 't1'
connection default;
SET default_storage_engine=default;
SELECT @@default_storage_engine;
@@default_storage_engine
InnoDB
DROP DATABASE mcs19_db;
DROP USER 'user'@'localhost';
DROP USER 'user1'@'localhost';