summaryrefslogtreecommitdiff
path: root/mysql-test
diff options
context:
space:
mode:
authorunknown <joerg@mysql.com>2005-11-29 17:05:48 +0100
committerunknown <joerg@mysql.com>2005-11-29 17:05:48 +0100
commit4ac451a61d8c13bcadea1a19b5bb544edeff99b9 (patch)
treebda83c4d94926e305cc6f2c381bfeff31876b4e1 /mysql-test
parent63187f29abddf61aa006520a3fa98d37bf78fddc (diff)
parente7bfd24264f9fb9d9c0e80fadb1ec87e0d8d1dcf (diff)
downloadmariadb-git-4ac451a61d8c13bcadea1a19b5bb544edeff99b9.tar.gz
Merge mysql.com:/M50/mysql-5.0 into mysql.com:/M51/merge-5.1
mysql-test/t/alter_table.test: Auto merged
Diffstat (limited to 'mysql-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 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;