summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera/r/MDEV-22708.result
blob: a672ed7be0d0feff6e0c7d10b5053fb09fff5f95 (plain)
1
2
3
4
5
6
7
8
9
10
11
connection node_2;
connection node_1;
SET @wsrep_forced_binlog_format_saved = @@GLOBAL.wsrep_forced_binlog_format;
SET @@GLOBAL.wsrep_forced_binlog_format = STATEMENT;
CREATE TABLE t1(c INT PRIMARY KEY) ENGINE = MyISAM;
INSERT DELAYED INTO t1 VALUES (1),(2),(3);
SELECT SLEEP(1);
SLEEP(1)
0
DROP TABLE t1;
SET @@GLOBAL.wsrep_forced_binlog_format = @wsrep_forced_binlog_format_saved;