mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
17 lines
518 B
Text
17 lines
518 B
Text
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';
|