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
d03b39aa
Commit
d03b39aa
authored
Aug 14, 2006
by
kostja@bodhi.local
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a test case (proper clean up).
parent
91e94d78
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
mysql-test/r/mysqldump.result
mysql-test/r/mysqldump.result
+2
-2
mysql-test/t/mysqldump.test
mysql-test/t/mysqldump.test
+2
-2
No files found.
mysql-test/r/mysqldump.result
View file @
d03b39aa
...
@@ -2876,7 +2876,7 @@ drop view v1;
...
@@ -2876,7 +2876,7 @@ drop view v1;
drop table t1;
drop table t1;
drop database mysqldump_dbb;
drop database mysqldump_dbb;
use test;
use test;
create user mysqltest_1;
create user mysqltest_1
@localhost
;
create table t1(a int, b varchar(34));
create table t1(a int, b varchar(34));
reset master;
reset master;
mysqldump: Couldn't execute 'FLUSH TABLES': Access denied; you need the RELOAD privilege for this operation (1227)
mysqldump: Couldn't execute 'FLUSH TABLES': Access denied; you need the RELOAD privilege for this operation (1227)
...
@@ -2891,4 +2891,4 @@ CREATE TABLE `t1` (
...
@@ -2891,4 +2891,4 @@ CREATE TABLE `t1` (
`b` varchar(34) default NULL
`b` varchar(34) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
drop table t1;
drop table t1;
drop user mysqltest_1;
drop user mysqltest_1
@localhost
;
mysql-test/t/mysqldump.test
View file @
d03b39aa
...
@@ -1273,7 +1273,7 @@ drop database mysqldump_dbb;
...
@@ -1273,7 +1273,7 @@ drop database mysqldump_dbb;
use
test
;
use
test
;
# Create user without sufficient privs to perform the requested operation
# Create user without sufficient privs to perform the requested operation
create
user
mysqltest_1
;
create
user
mysqltest_1
@
localhost
;
create
table
t1
(
a
int
,
b
varchar
(
34
));
create
table
t1
(
a
int
,
b
varchar
(
34
));
# To get consistent output, reset the master, starts over from first log
# To get consistent output, reset the master, starts over from first log
...
@@ -1308,4 +1308,4 @@ grant REPLICATION CLIENT on *.* to mysqltest_1@localhost;
...
@@ -1308,4 +1308,4 @@ grant REPLICATION CLIENT on *.* to mysqltest_1@localhost;
# Clean up
# Clean up
drop
table
t1
;
drop
table
t1
;
drop
user
mysqltest_1
;
drop
user
mysqltest_1
@
localhost
;
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