mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Galera4
This commit is contained in:
committed by
Sergey Vojtovich
parent
382115b992
commit
36a2a185fe
@@ -1,9 +1,15 @@
|
||||
connection node_2;
|
||||
connection node_1;
|
||||
# On node_2
|
||||
connection node_2;
|
||||
SET GLOBAL wsrep_on=OFF;
|
||||
RESET MASTER;
|
||||
SET GLOBAL wsrep_on=ON;
|
||||
# On node_1
|
||||
connection node_1;
|
||||
SET GLOBAL wsrep_on=OFF;
|
||||
RESET MASTER;
|
||||
SET GLOBAL wsrep_on=ON;
|
||||
CREATE TABLE t1(i INT)ENGINE=INNODB;
|
||||
INSERT INTO t1 VALUES(1);
|
||||
DELETE FROM t1 WHERE i = 1;
|
||||
@@ -68,6 +74,4 @@ mysqld-bin.000001 # Table_map 2 # table_id: # (test.t1)
|
||||
mysqld-bin.000001 # Delete_rows_v1 2 # table_id: # flags: STMT_END_F
|
||||
mysqld-bin.000001 # Xid 2 # COMMIT /* xid= */
|
||||
DROP TABLE t1;
|
||||
disconnect node_2;
|
||||
disconnect node_1;
|
||||
# End of test
|
||||
|
Reference in New Issue
Block a user