summaryrefslogtreecommitdiff
path: root/mysql-test/t/alter_table.test
diff options
context:
space:
mode:
authorunknown <joerg@mysql.com>2005-12-05 16:42:28 +0100
committerunknown <joerg@mysql.com>2005-12-05 16:42:28 +0100
commit9f92419e672f01e6bece91f3490976456a09e6f4 (patch)
tree168200becdd03e6fce7b016e7d4f424a16afd3c4 /mysql-test/t/alter_table.test
parentd447f881db2a439049c8ce9e4e80dfd10c83ffa6 (diff)
parente7bfd24264f9fb9d9c0e80fadb1ec87e0d8d1dcf (diff)
downloadmariadb-git-9f92419e672f01e6bece91f3490976456a09e6f4.tar.gz
Merge jbruehe@bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/M50/mysql-5.0 mysql-test/t/alter_table.test: Auto merged
Diffstat (limited to 'mysql-test/t/alter_table.test')
-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 3878b55da11..f4245abfe86 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;