mirror of
https://github.com/MariaDB/server.git
synced 2025-02-11 07:55:36 +01:00
14 lines
330 B
Text
14 lines
330 B
Text
![]() |
connection node_2;
|
||
|
connection node_1;
|
||
|
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY) ENGINE=InnoDB;
|
||
|
SET SESSION wsrep_trx_fragment_size = 1;
|
||
|
CHECK TABLE t1;
|
||
|
Table Op Msg_type Msg_text
|
||
|
test.t1 check status OK
|
||
|
START TRANSACTION;
|
||
|
INSERT INTO t1 VALUES (1);
|
||
|
CHECK TABLE t1;
|
||
|
Table Op Msg_type Msg_text
|
||
|
test.t1 check status OK
|
||
|
DROP TABLE t1;
|