mirror of
https://github.com/MariaDB/server.git
synced 2025-09-16 16:42:28 +03:00
16 lines
455 B
Plaintext
16 lines
455 B
Plaintext
connection node_2;
|
|
connection node_1;
|
|
connection node_1;
|
|
CREATE TABLE ten (f1 INTEGER) ENGINE=InnoDB;
|
|
INSERT INTO ten VALUES (1), (2), (3), (4), (5), (6), (7), (8), (9), (10);
|
|
SET SESSION wsrep_trx_fragment_size = 1;
|
|
CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB;
|
|
INSERT INTO t1 SELECT 1 FROM ten AS a1, ten AS a2, ten AS a3, ten AS a4;
|
|
connection node_2;
|
|
SELECT COUNT(*) = 10000 FROM t1;
|
|
COUNT(*) = 10000
|
|
1
|
|
connection node_1;
|
|
DROP TABLE t1;
|
|
DROP TABLE ten;
|