summaryrefslogtreecommitdiff
path: root/mysql-test/t/alter_table.test
diff options
context:
space:
mode:
authorunknown <joerg@mysql.com>2005-11-28 17:07:54 +0100
committerunknown <joerg@mysql.com>2005-11-28 17:07:54 +0100
commit7d9861ecd4c32abe1fbae9cb00b7e35a90a5070d (patch)
tree72102c7419d022432c8f807bf0348374f1c05651 /mysql-test/t/alter_table.test
parent97bfd41fe1382ff33a9fc458c0bd092342b217e5 (diff)
downloadmariadb-git-7d9861ecd4c32abe1fbae9cb00b7e35a90a5070d.tar.gz
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).
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 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;