diff options
author | unknown <monty@mysql.com> | 2004-05-05 21:24:21 +0300 |
---|---|---|
committer | unknown <monty@mysql.com> | 2004-05-05 21:24:21 +0300 |
commit | a18b96b1a4f599eaa28fbcc4162d08c1c05cac3d (patch) | |
tree | 7237dcd91649e057a85eb3caca141f3df5892db8 /mysql-test/r/rpl_multi_delete2.result | |
parent | 3b887983bfc19585825ec528a80118f2c93f2b04 (diff) | |
download | mariadb-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.result | 8 |
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; |