diff options
author | unknown <joerg@mysql.com> | 2005-11-28 17:26:56 +0100 |
---|---|---|
committer | unknown <joerg@mysql.com> | 2005-11-28 17:26:56 +0100 |
commit | 3ca35996883fc3d3907e17b5501ae7b7b154b0b8 (patch) | |
tree | a18a4bf44045ae091213962a4875c13bc5e809ff /mysql-test | |
parent | e4aa37b996ac67040024e04997cd020459bbefb9 (diff) | |
parent | e5d5af987278651f184e4c500cfae30864338210 (diff) | |
download | mariadb-git-3ca35996883fc3d3907e17b5501ae7b7b154b0b8.tar.gz |
Merge jbruehe@bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/M50/mysql-5.0
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/t/alter_table.test | 2 |
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; |