Skip to content

Commit 3456458

Browse files
committed
Merge branch '10.7' into 10.8
2 parents 5ded88e + cb1316b commit 3456458

File tree

5 files changed

+5
-17
lines changed

5 files changed

+5
-17
lines changed

mysql-test/suite/galera/r/galera_myisam_transactions.result

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,7 @@ COUNT(*) = 0
3838
1
3939
DROP TABLE t1, t2, t3;
4040
SET SESSION lock_wait_timeout=2;
41-
SET GLOBAL wsrep_replicate_myisam= ON;
42-
Warnings:
43-
Warning 1287 '@@wsrep_replicate_myisam' is deprecated and will be removed in a future release. Please use '@@wsrep_mode=REPLICATE_MYISAM' instead
41+
SET GLOBAL wsrep_mode = REPLICATE_MYISAM;
4442
CREATE TEMPORARY TABLE t1 (i INT, PRIMARY KEY pk (i)) ENGINE=MyISAM;
4543
Warnings:
4644
Warning 1280 Name 'pk' ignored for PRIMARY key.
@@ -49,6 +47,4 @@ INSERT INTO t1 VALUES(4);
4947
DEALLOCATE PREPARE stmt;
5048
COMMIT;
5149
DROP TABLE t1;
52-
SET GLOBAL wsrep_replicate_myisam=OFF;
53-
Warnings:
54-
Warning 1287 '@@wsrep_replicate_myisam' is deprecated and will be removed in a future release. Please use '@@wsrep_mode=REPLICATE_MYISAM' instead
50+
SET GLOBAL wsrep_mode = DEFAULT;

mysql-test/suite/galera/t/galera_myisam_transactions.test

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ DROP TABLE t1, t2, t3;
3939
# MDEV-25201 : Assertion `thd->wsrep_trx_meta.gtid.seqno == (-1)' failed in int wsrep_to_isolation_begin(THD*, const char*, const char*, const TABLE_LIST*, Alter_info*)
4040
#
4141
SET SESSION lock_wait_timeout=2;
42-
SET GLOBAL wsrep_replicate_myisam= ON;
42+
SET GLOBAL wsrep_mode = REPLICATE_MYISAM;
4343
CREATE TEMPORARY TABLE t1 (i INT, PRIMARY KEY pk (i)) ENGINE=MyISAM;
4444
PREPARE stmt FROM "INSERT INTO t1 (id) SELECT * FROM (SELECT 4 AS i) AS y";
4545
INSERT INTO t1 VALUES(4);
4646
DEALLOCATE PREPARE stmt;
4747
COMMIT;
4848
DROP TABLE t1;
49-
SET GLOBAL wsrep_replicate_myisam=OFF;
49+
SET GLOBAL wsrep_mode = DEFAULT;

mysql-test/suite/galera_3nodes/r/GCF-363.result

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,6 @@ connection node_2;
66
connection node_3;
77
connection node_1;
88
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY, f2 CHAR(1)) ENGINE=InnoDB;
9-
connection node_1;
10-
connection node_1;
11-
connection node_2;
12-
connection node_1;
13-
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY, f2 CHAR(1)) ENGINE=InnoDB;
149
SET GLOBAL wsrep_on=OFF;
1510
INSERT INTO t1 VALUES (1, 'a');
1611
SET GLOBAL wsrep_on=ON;

mysql-test/suite/galera_3nodes/t/GCF-363.test

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
--connection node_1
1717
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY, f2 CHAR(1)) ENGINE=InnoDB;
1818

19-
--connection node_1
20-
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY, f2 CHAR(1)) ENGINE=InnoDB;
21-
2219
SET GLOBAL wsrep_on=OFF;
2320
INSERT INTO t1 VALUES (1, 'a');
2421
SET GLOBAL wsrep_on=ON;

0 commit comments

Comments
 (0)