mirror of
https://github.com/MariaDB/server.git
synced 2025-02-07 06:12:18 +01:00
12 lines
416 B
Text
12 lines
416 B
Text
connection node_2;
|
|
connection node_1;
|
|
connection node_1;
|
|
SET SESSION wsrep_sync_wait = 0;
|
|
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY AUTO_INCREMENT, f2 CHAR(255)) ENGINE=InnoDB;
|
|
SET SESSION wsrep_trx_fragment_size = 64;
|
|
SET SESSION innodb_lock_wait_timeout = 1000;
|
|
connection node_2;
|
|
SET SESSION wsrep_sync_wait = 0;
|
|
SET SESSION wsrep_trx_fragment_size = 64;
|
|
SET SESSION innodb_lock_wait_timeout = 1000;
|
|
DROP TABLE t1;
|