Commit 7d9861ec authored by unknown's avatar unknown

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).
parent 97bfd41f
...@@ -340,7 +340,9 @@ drop table t1; ...@@ -340,7 +340,9 @@ drop table t1;
# #
# BUG 12207 alter table ... discard table space on MyISAM table causes ERROR 2013 (HY000) # 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; CREATE TABLE T12207(a int) ENGINE=MYISAM;
--replace_result t12207 T12207
--error 1031 --error 1031
ALTER TABLE T12207 DISCARD TABLESPACE; ALTER TABLE T12207 DISCARD TABLESPACE;
DROP TABLE T12207; DROP TABLE T12207;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment