From 7d9861ecd4c32abe1fbae9cb00b7e35a90a5070d Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 28 Nov 2005 17:07:54 +0100 Subject: [PATCH] mysql-test/t/alter_table.test Care for case-insignificant platforms (Mac OS X, Windows). mysql-test/t/alter_table.test: Care for case-insignificant platforms (Mac OS X, Windows). --- mysql-test/t/alter_table.test | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mysql-test/t/alter_table.test b/mysql-test/t/alter_table.test index bae94656125..f559f52181b 100644 --- a/mysql-test/t/alter_table.test +++ b/mysql-test/t/alter_table.test @@ -340,7 +340,9 @@ drop table t1; # # BUG 12207 alter table ... discard table space on MyISAM table causes ERROR 2013 (HY000) # +# Some platforms (Mac OS X, Windows) will send the error message using small letters. CREATE TABLE T12207(a int) ENGINE=MYISAM; +--replace_result t12207 T12207 --error 1031 ALTER TABLE T12207 DISCARD TABLESPACE; DROP TABLE T12207;