Skip to content

Commit c6a0cbd

Browse files
author
Nirbhay Choubey
committed
Merge branch '5.5-galera' into 10.0-galera
2 parents 5cf737c + fe757e0 commit c6a0cbd

File tree

5 files changed

+11
-2
lines changed

5 files changed

+11
-2
lines changed

mysql-test/r/innodb_load_xa_with_wsrep.result

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,5 @@ mysqld-bin.000001 # Query # # use `test`; insert t1 values (2)
1717
mysqld-bin.000001 # Xid # # COMMIT /* XID */
1818
drop table t1;
1919
uninstall plugin innodb;
20+
Warnings:
21+
Warning 1620 Plugin is busy and will be uninstalled on shutdown

mysql-test/suite/galera/suite.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ push @::global_suppressions,
3333
qr(WSREP: last inactive check more than .* skipping check),
3434
qr(WSREP: SQL statement was ineffective),
3535
qr(WSREP: Releasing seqno [0-9]* before [0-9]* was assigned.),
36-
qr|WSREP: access file\(gvwstate.dat\) failed\(No such file or directory\)|,
36+
qr|WSREP: access file\(.*gvwstate.dat\) failed\(No such file or directory\)|,
3737
qr(WSREP: Quorum: No node with complete state),
3838
qr(WSREP: Initial position was provided by configuration or SST, avoiding override),
3939
qr|WSREP: discarding established \(time wait\) .*|,

mysql-test/suite/innodb/r/innodb_uninstall.result

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
install plugin innodb soname 'ha_innodb';
2+
Warnings:
3+
Warning 1105 Cannot enable tc-log at run-time. XA features of InnoDB are disabled
24
create table t1(a int not null primary key) engine=innodb;
35
begin;
46
insert into t1 values(1);
@@ -11,6 +13,8 @@ Warnings:
1113
Warning 1620 Plugin is busy and will be uninstalled on shutdown
1214
drop table t1;
1315
install plugin innodb soname 'ha_innodb';
16+
Warnings:
17+
Warning 1105 Cannot enable tc-log at run-time. XA features of InnoDB are disabled
1418
create table t2(a int not null primary key) engine=innodb;
1519
insert into t2 values(1);
1620
drop table t2;

mysql-test/suite/wsrep/suite.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ push @::global_suppressions,
2727
qr(WSREP: Could not open saved state file for reading: ),
2828
qr(WSREP: option --wsrep-casual-reads is deprecated),
2929
qr(WSREP: --wsrep-casual-reads=ON takes precedence over --wsrep-sync-wait=0),
30-
qr|WSREP: access file\(gvwstate.dat\) failed\(No such file or directory\)|,
30+
qr|WSREP: access file\(.*gvwstate.dat\) failed\(No such file or directory\)|,
3131
);
3232

3333
$ENV{PATH}="$epath:$ENV{PATH}";

mysql-test/t/innodb_load_xa_with_wsrep.test

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,6 @@ commit;
1717
--source include/show_binlog_events.inc
1818
drop table t1;
1919
uninstall plugin innodb;
20+
21+
--source include/restart_mysqld.inc
22+

0 commit comments

Comments
 (0)