From f78d0531d229c0eb6b1a12db7c11d8572b7588be Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 27 Feb 2006 13:27:25 -0800 Subject: [PATCH] another cleanup patch for removing tables before tests start. mysql-test/extra/binlog_tests/insert_select-binlog.test: Fixing isssues with preexisting tables mysql-test/r/binlog_stm_insert_select.result: new results --- mysql-test/extra/binlog_tests/insert_select-binlog.test | 4 ++++ mysql-test/r/binlog_stm_insert_select.result | 1 + 2 files changed, 5 insertions(+) diff --git a/mysql-test/extra/binlog_tests/insert_select-binlog.test b/mysql-test/extra/binlog_tests/insert_select-binlog.test index d4041f86ab5..a665dfda2b0 100644 --- a/mysql-test/extra/binlog_tests/insert_select-binlog.test +++ b/mysql-test/extra/binlog_tests/insert_select-binlog.test @@ -1,6 +1,10 @@ # Embedded server doesn't support binlog -- source include/not_embedded.inc +--disable_warnings +drop table if exists t1,t2; +--enable_warnings + # Check if a partly-completed INSERT SELECT in a MyISAM table goes into the # binlog diff --git a/mysql-test/r/binlog_stm_insert_select.result b/mysql-test/r/binlog_stm_insert_select.result index 35e328a769c..646a76b254d 100644 --- a/mysql-test/r/binlog_stm_insert_select.result +++ b/mysql-test/r/binlog_stm_insert_select.result @@ -1,3 +1,4 @@ +drop table if exists t1,t2; create table t1(a int, unique(a)); insert into t1 values(2); create table t2(a int);