mirror of
https://github.com/MariaDB/server.git
synced 2025-02-09 23:24:11 +01:00
19 lines
556 B
Text
19 lines
556 B
Text
connection node_2;
|
|
connection node_1;
|
|
connection node_1;
|
|
SET SESSION binlog_format = 'STATEMENT';
|
|
Warnings:
|
|
Warning 1105 MariaDB Galera and flashback do not support binlog format: STATEMENT
|
|
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY) ENGINE=InnoDB;
|
|
INSERT INTO t1 VALUES (1);
|
|
SET SESSION binlog_format = 'MIXED';
|
|
Warnings:
|
|
Warning 1105 MariaDB Galera and flashback do not support binlog format: MIXED
|
|
INSERT INTO t1 VALUES (2);
|
|
connection node_2;
|
|
SELECT COUNT(*) = 2 FROM t1;
|
|
COUNT(*) = 2
|
|
1
|
|
DROP TABLE t1;
|
|
connection node_1;
|
|
SET GLOBAL binlog_format = 'ROW';
|