mirror of
https://github.com/MariaDB/server.git
synced 2025-01-15 19:42:28 +01:00
MDEV-8578: fix galera test
This commit is contained in:
parent
d29611afa1
commit
9b3413c71f
2 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@ connection node_1;
|
|||
SET @@enforce_storage_engine=INNODB;
|
||||
CREATE TABLE t1(i INT) ENGINE=INNODB;
|
||||
CREATE TABLE t2(i INT) ENGINE=MYISAM;
|
||||
ERROR 42000: Unknown storage engine 'MyISAM'
|
||||
ERROR HY000: The MariaDB server is running with the NO_ENGINE_SUBSTITUTION option so it cannot execute this statement
|
||||
INSERT INTO t1 VALUES(1);
|
||||
connection node_2;
|
||||
SHOW TABLES;
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
--connection node_1
|
||||
SET @@enforce_storage_engine=INNODB;
|
||||
CREATE TABLE t1(i INT) ENGINE=INNODB;
|
||||
--error ER_UNKNOWN_STORAGE_ENGINE
|
||||
--error ER_OPTION_PREVENTS_STATEMENT
|
||||
CREATE TABLE t2(i INT) ENGINE=MYISAM;
|
||||
|
||||
INSERT INTO t1 VALUES(1);
|
||||
|
|
Loading…
Reference in a new issue