mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Perform a post initialization of plugin-related variables of wsrep threads after their global counterparts have been initialized.
21 lines
406 B
Plaintext
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
|