From 5b54fcab6ad8e1b0cb154c69d653eb33f8af2f4d Mon Sep 17 00:00:00 2001 From: "mronstrom@mysql.com" <> Date: Wed, 1 Jun 2005 17:36:21 +0200 Subject: [PATCH] Renamed bugs.test to default.test Moved enabling of warnings to ensure that no warnings are generated when this test case is executed on a clone where InnoDB is not activated. This would fail the test case in those clones otherwise. --- mysql-test/r/{bugs.result => default.result} | 0 mysql-test/t/{bugs.test => default.test} | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename mysql-test/r/{bugs.result => default.result} (100%) rename mysql-test/t/{bugs.test => default.test} (100%) diff --git a/mysql-test/r/bugs.result b/mysql-test/r/default.result similarity index 100% rename from mysql-test/r/bugs.result rename to mysql-test/r/default.result diff --git a/mysql-test/t/bugs.test b/mysql-test/t/default.test similarity index 100% rename from mysql-test/t/bugs.test rename to mysql-test/t/default.test index 3b842c06561..42620a27b66 100644 --- a/mysql-test/t/bugs.test +++ b/mysql-test/t/default.test @@ -4,7 +4,6 @@ --disable_warnings drop table if exists t1,t2,t3,t4,t5,t6; drop database if exists mysqltest; ---enable_warnings # # Bug 10838 @@ -39,6 +38,7 @@ CREATE TABLE t1 (a varchar(30) binary NOT NULL DEFAULT ' ', a1 varchar(30) binary NOT NULL DEFAULT ' ', b1 tinyblob NULL) ENGINE=InnoDB DEFAULT CHARACTER SET = latin1 COLLATE latin1_bin; +--enable_warnings SHOW CREATE TABLE t1; INSERT into t1 (b) values ('1');