From 83d8979ca28da67a054fff6c8f9e127e38f26ecb Mon Sep 17 00:00:00 2001 From: "bar@mysql.com" <> Date: Fri, 30 Dec 2005 14:55:56 +0400 Subject: [PATCH] backup.result, backup.test: t4 was not dropped, which made the "backup" test fail if one of the previous tests using t4 (e.g. "archive") failed. --- mysql-test/r/backup.result | 2 +- mysql-test/t/backup.test | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mysql-test/r/backup.result b/mysql-test/r/backup.result index c7b4b1c4155..96df7c2da06 100644 --- a/mysql-test/r/backup.result +++ b/mysql-test/r/backup.result @@ -1,5 +1,5 @@ set SQL_LOG_BIN=0; -drop table if exists t1, t2, t3; +drop table if exists t1, t2, t3, t4; create table t4(n int); backup table t4 to '../bogus'; Table Op Msg_type Msg_text diff --git a/mysql-test/t/backup.test b/mysql-test/t/backup.test index 40a9fa73b60..7ab3433c7ed 100644 --- a/mysql-test/t/backup.test +++ b/mysql-test/t/backup.test @@ -7,7 +7,7 @@ connect (con2,localhost,root,,); connection con1; set SQL_LOG_BIN=0; --disable_warnings -drop table if exists t1, t2, t3; +drop table if exists t1, t2, t3, t4; --enable_warnings create table t4(n int); --replace_result ": 1" ": X" ": 2" ": X" ": 22" ": X" ": 23" ": X" $MYSQL_TEST_DIR MYSQL_TEST_DIR