summaryrefslogtreecommitdiff
path: root/mysql-test/r/rpl_multi_delete2.result
diff options
context:
space:
mode:
authorunknown <monty@mysql.com>2004-05-05 21:24:21 +0300
committerunknown <monty@mysql.com>2004-05-05 21:24:21 +0300
commita18b96b1a4f599eaa28fbcc4162d08c1c05cac3d (patch)
tree7237dcd91649e057a85eb3caca141f3df5892db8 /mysql-test/r/rpl_multi_delete2.result
parent3b887983bfc19585825ec528a80118f2c93f2b04 (diff)
downloadmariadb-git-a18b96b1a4f599eaa28fbcc4162d08c1c05cac3d.tar.gz
after merge fixes
client/mysqldump.c: Fixed problem with multiple tables (--skip-quote didn't work properly for second table) myisam/myisamchk.c: after merge fix
Diffstat (limited to 'mysql-test/r/rpl_multi_delete2.result')
-rw-r--r--mysql-test/r/rpl_multi_delete2.result8
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/r/rpl_multi_delete2.result b/mysql-test/r/rpl_multi_delete2.result
index 8b6d87801fe..c6c088111fc 100644
--- a/mysql-test/r/rpl_multi_delete2.result
+++ b/mysql-test/r/rpl_multi_delete2.result
@@ -1,9 +1,9 @@
-slave stop;
+stop slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
reset master;
reset slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
-slave start;
+start slave;
create table t1 (a int);
create table t2 (a int);
insert into t1 values (1);
@@ -15,7 +15,7 @@ select * from t2;
a
1
select * from t1;
-Table 'test.t1' doesn't exist
+ERROR 42S02: Table 'test.t1' doesn't exist
select * from t2;
-Table 'test.t2' doesn't exist
+ERROR 42S02: Table 'test.t2' doesn't exist
drop table t1,t2;