1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00
Files
mariadb/mysql-test/suite/galera/t/enforce_storage_engine2.test
Nirbhay Choubey 6bb6f30ff9 MDEV-9312: storage engine not enforced during galera cluster replication
Perform a post initialization of plugin-related variables
of wsrep threads after their global counterparts have been
initialized.
2016-11-07 11:53:56 -05:00

21 lines
406 B
Plaintext

--source include/galera_cluster.inc
--source include/have_innodb.inc
--echo #
--echo # MDEV-9312: storage engine not enforced during galera cluster
--echo # replication
--echo #
--connection node_1
CREATE TABLE t1(i INT) ENGINE=INNODB;
CREATE TABLE t2(i INT) ENGINE=MYISAM;
--connection node_2
SHOW TABLES;
SHOW CREATE TABLE t1;
SHOW CREATE TABLE t2;
# Cleanup
DROP TABLE t1, t2;
--echo # End of tests