mirror of
https://github.com/MariaDB/server.git
synced 2025-02-15 18:05:32 +01:00
17 lines
374 B
Text
17 lines
374 B
Text
connection node_1;
|
|
connection node_2;
|
|
connection node_1;
|
|
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY) ENGINE=InnoDB;
|
|
connection node_2;
|
|
disconnect node_2;
|
|
connection node_1;
|
|
Suspending node_2 ...
|
|
INSERT INTO t1 VALUES (1);
|
|
Got one of the listed errors
|
|
Resuming node_2 ...
|
|
INSERT INTO t1 VALUES (1);
|
|
connection node_2a;
|
|
SELECT COUNT(*) = 1 FROM t1;
|
|
COUNT(*) = 1
|
|
1
|
|
DROP TABLE t1;
|