summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <joerg@mysql.com>2005-11-28 17:09:22 +0100
committerunknown <joerg@mysql.com>2005-11-28 17:09:22 +0100
commitefb60a107142c8d8780d976324dcc04428dd6420 (patch)
treebb95252e4f0bc4c266880c297aeb81db3b102a7d
parent5b1e452da5381fdb4599015dbef32ef3b51bfc42 (diff)
parent7d9861ecd4c32abe1fbae9cb00b7e35a90a5070d (diff)
downloadmariadb-git-efb60a107142c8d8780d976324dcc04428dd6420.tar.gz
Merge mysql.com:/M50/testbugs-5.0 into mysql.com:/M51/clone-5.1
mysql-test/t/alter_table.test: Auto merged
-rw-r--r--mysql-test/t/alter_table.test2
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/alter_table.test b/mysql-test/t/alter_table.test
index fdc835e1852..6a9e482a12b 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;