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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
8f6aac81
Commit
8f6aac81
authored
Sep 03, 2015
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix innodb.innodb_uninstall test to cleanup after itself
It caused the following main.innodb_load_xa to fail.
parent
ce8d4d39
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
mysql-test/suite/innodb/r/innodb_uninstall.result
mysql-test/suite/innodb/r/innodb_uninstall.result
+1
-1
mysql-test/suite/innodb/t/innodb_uninstall.test
mysql-test/suite/innodb/t/innodb_uninstall.test
+2
-2
No files found.
mysql-test/suite/innodb/r/innodb_uninstall.result
View file @
8f6aac81
...
...
@@ -11,10 +11,10 @@ sleep(1)
0
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
drop table t1;
create table t2(a int not null primary key) engine=innodb;
insert into t2 values(1);
drop table t2;
...
...
mysql-test/suite/innodb/t/innodb_uninstall.test
View file @
8f6aac81
...
...
@@ -30,8 +30,6 @@ reap;
--
source
include
/
restart_mysqld
.
inc
drop
table
t1
;
#
# Another test that caused hang.
#
...
...
@@ -39,6 +37,8 @@ drop table t1;
connect
(
con1
,
localhost
,
root
);
connection
con1
;
install
plugin
innodb
soname
'ha_innodb'
;
drop
table
t1
;
create
table
t2
(
a
int
not
null
primary
key
)
engine
=
innodb
;
insert
into
t2
values
(
1
);
drop
table
t2
;
...
...
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