mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 11:01:52 +01:00
14 lines
263 B
Text
14 lines
263 B
Text
|
--source include/galera_cluster.inc
|
||
|
--source include/have_innodb.inc
|
||
|
|
||
|
--connection node_2
|
||
|
SET GLOBAL wsrep_slave_threads = 0;
|
||
|
|
||
|
--connection node_1
|
||
|
CREATE TABLE t1 (f1 INT PRIMARY KEY) Engine=InnoDB;
|
||
|
|
||
|
--connection node_1
|
||
|
INSERT INTO t1 VALUES (1);
|
||
|
|
||
|
DROP TABLE t1;
|