mirror of
https://github.com/MariaDB/server.git
synced 2025-02-04 21:02:17 +01:00
27 lines
824 B
Text
27 lines
824 B
Text
connection node_2;
|
|
connection node_1;
|
|
CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB;
|
|
INSERT INTO t1 VALUES (1);
|
|
SELECT WSREP_SYNC_WAIT_UPTO_GTID(NULL);
|
|
ERROR HY000: Incorrect arguments to wsrep_sync_wait_upto_gtid
|
|
SELECT WSREP_SYNC_WAIT_UPTO_GTID('a');
|
|
ERROR HY000: Could not parse GTID list
|
|
SELECT WSREP_SYNC_WAIT_UPTO_GTID(2);
|
|
ERROR HY000: Could not parse GTID list
|
|
SELECT WSREP_SYNC_WAIT_UPTO_GTID('1-1-1,1-1-2');
|
|
ERROR HY000: Incorrect arguments to wsrep_sync_wait_upto_gtid
|
|
WSREP_SYNC_WAIT_UPTO
|
|
1
|
|
WSREP_SYNC_WAIT_UPTO
|
|
1
|
|
ERROR HY000: Lock wait timeout exceeded; try restarting transaction
|
|
connection node_2;
|
|
connection node_1;
|
|
INSERT INTO t1 VALUES (2);
|
|
connection node_2;
|
|
WSREP_SYNC_WAIT_UPTO
|
|
1
|
|
connection node_1;
|
|
DROP TABLE t1;
|
|
connection node_2;
|
|
CALL mtr.add_suppression("Ignoring server id .* for non bootstrap node");
|