summaryrefslogtreecommitdiff
path: root/mysql-test/r/mysqldump.result
diff options
context:
space:
mode:
authorunknown <kostja@bodhi.local>2006-08-14 19:18:33 +0400
committerunknown <kostja@bodhi.local>2006-08-14 19:18:33 +0400
commit492e7b081168f1922ef6409ebba77dbf30638185 (patch)
tree2c1777f1badada20acb76690d74c924a3dbbd962 /mysql-test/r/mysqldump.result
parent867f736815e1359b22a909bd185e7010da27e5fc (diff)
downloadmariadb-git-492e7b081168f1922ef6409ebba77dbf30638185.tar.gz
Fix a test case (proper clean up).
mysql-test/r/mysqldump.result: Update results. mysql-test/t/mysqldump.test: Fix a bug in the test case that left user mysqltest_1@localhost around (this broke furhter tests).
Diffstat (limited to 'mysql-test/r/mysqldump.result')
-rw-r--r--mysql-test/r/mysqldump.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/mysqldump.result b/mysql-test/r/mysqldump.result
index 4c684be0a3c..6669b33e1bb 100644
--- a/mysql-test/r/mysqldump.result
+++ b/mysql-test/r/mysqldump.result
@@ -2876,7 +2876,7 @@ drop view v1;
drop table t1;
drop database mysqldump_dbb;
use test;
-create user mysqltest_1;
+create user mysqltest_1@localhost;
create table t1(a int, b varchar(34));
reset master;
mysqldump: Couldn't execute 'FLUSH TABLES': Access denied; you need the RELOAD privilege for this operation (1227)
@@ -2891,4 +2891,4 @@ CREATE TABLE `t1` (
`b` varchar(34) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
drop table t1;
-drop user mysqltest_1;
+drop user mysqltest_1@localhost;