Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
fe757e00
Commit
fe757e00
authored
Aug 14, 2015
by
Nirbhay Choubey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for some failing tests.
parent
c18e0dab
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
2 deletions
+11
-2
mysql-test/r/innodb_load_xa_with_wsrep.result
mysql-test/r/innodb_load_xa_with_wsrep.result
+2
-0
mysql-test/suite/galera/suite.pm
mysql-test/suite/galera/suite.pm
+1
-1
mysql-test/suite/innodb/r/innodb_uninstall.result
mysql-test/suite/innodb/r/innodb_uninstall.result
+4
-0
mysql-test/suite/wsrep/suite.pm
mysql-test/suite/wsrep/suite.pm
+1
-1
mysql-test/t/innodb_load_xa_with_wsrep.test
mysql-test/t/innodb_load_xa_with_wsrep.test
+3
-0
No files found.
mysql-test/r/innodb_load_xa_with_wsrep.result
View file @
fe757e00
...
...
@@ -16,3 +16,5 @@ mysqld-bin.000001 # Query # # use `test`; insert t1 values (2)
mysqld-bin.000001 # Xid # # COMMIT /* XID */
drop table t1;
uninstall plugin innodb;
Warnings:
Warning 1620 Plugin is busy and will be uninstalled on shutdown
mysql-test/suite/galera/suite.pm
View file @
fe757e00
...
...
@@ -33,7 +33,7 @@ push @::global_suppressions,
qr(WSREP: last inactive check more than .* skipping check)
,
qr(WSREP: SQL statement was ineffective)
,
qr(WSREP: Releasing seqno [0-9]* before [0-9]* was assigned.)
,
qr|WSREP: access file\(gvwstate.dat\) failed\(No such file or directory\)|
,
qr|WSREP: access file\(
.*
gvwstate.dat\) failed\(No such file or directory\)|
,
);
...
...
mysql-test/suite/innodb/r/innodb_uninstall.result
View file @
fe757e00
install plugin innodb soname 'ha_innodb';
Warnings:
Warning 1105 Cannot enable tc-log at run-time. XA features of InnoDB are disabled
create table t1(a int not null primary key) engine=innodb;
begin;
insert into t1 values(1);
...
...
@@ -11,6 +13,8 @@ Warnings:
Warning 1620 Plugin is busy and will be uninstalled on shutdown
drop table t1;
install plugin innodb soname 'ha_innodb';
Warnings:
Warning 1105 Cannot enable tc-log at run-time. XA features of InnoDB are disabled
create table t2(a int not null primary key) engine=innodb;
insert into t2 values(1);
drop table t2;
...
...
mysql-test/suite/wsrep/suite.pm
View file @
fe757e00
...
...
@@ -27,7 +27,7 @@ push @::global_suppressions,
qr(WSREP: Could not open saved state file for reading: )
,
qr(WSREP: option --wsrep-casual-reads is deprecated)
,
qr(WSREP: --wsrep-casual-reads=ON takes precedence over --wsrep-sync-wait=0)
,
qr|WSREP: access file\(gvwstate.dat\) failed\(No such file or directory\)|
,
qr|WSREP: access file\(
.*
gvwstate.dat\) failed\(No such file or directory\)|
,
);
$ENV
{
PATH
}
=
"
$epath
:
$ENV
{PATH}
";
...
...
mysql-test/t/innodb_load_xa_with_wsrep.test
View file @
fe757e00
...
...
@@ -17,3 +17,6 @@ commit;
--
source
include
/
show_binlog_events
.
inc
drop
table
t1
;
uninstall
plugin
innodb
;
--
source
include
/
restart_mysqld
.
inc
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment