diff options
author | unknown <serg@serg.mylan> | 2004-07-20 11:00:10 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-07-20 11:00:10 +0200 |
commit | 8818cd9b650d043f11b9b057c694d0fccdc3ff97 (patch) | |
tree | 53f056dbc72e4bf029fcef0a458164c907b50c4c /mysql-test/t/rpl_drop.test | |
parent | eee5f15b92f71c74ce315932770a603e4deef477 (diff) | |
download | mariadb-git-8818cd9b650d043f11b9b057c694d0fccdc3ff97.tar.gz |
results fixed after merge
mysql-test/t/create_select_tmp.test:
--disable_warnings
mysql-test/t/rpl_drop.test:
--disable_warnings
Diffstat (limited to 'mysql-test/t/rpl_drop.test')
-rw-r--r-- | mysql-test/t/rpl_drop.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/rpl_drop.test b/mysql-test/t/rpl_drop.test index 6fc2500fc97..ab5b608cab6 100644 --- a/mysql-test/t/rpl_drop.test +++ b/mysql-test/t/rpl_drop.test @@ -1,7 +1,9 @@ # Testcase for BUG#4552 (DROP on two tables, one of which does not # exist, must be binlogged with a non-zero error code) source include/master-slave.inc; +--disable_warnings drop table if exists t1, t2; +--enable_warnings create table t1 (a int); --error 1051; drop table t1, t2; |