diff options
author | unknown <bar@mysql.com/bar.myoffice.izhnet.ru> | 2007-06-15 11:53:46 +0500 |
---|---|---|
committer | unknown <bar@mysql.com/bar.myoffice.izhnet.ru> | 2007-06-15 11:53:46 +0500 |
commit | a0091f64747abad47f3ea1ac103837c9a02eb168 (patch) | |
tree | f03474540b5a5cd0ed4906796c4ab5b3385a1f82 /mysql-test/t/show_check.test | |
parent | 1805b34e040e21e2a2ca45bfb96e7f7b1b080287 (diff) | |
download | mariadb-git-a0091f64747abad47f3ea1ac103837c9a02eb168.tar.gz |
Additional fix for bug N26402:
An attempt to open file with name '????????.frm'
can produce different errors:
- ER_NO_SUCH_TABLE on Unix
- ER_FILE_NOT_FOUND on Windows
because QUESTION MARK has special meaning on Windows.
Make sure that any of these two errors happens.
mysql-test/r/show_check.result:
Additional fix for bug N26402
mysql-test/t/show_check.test:
Additional fix for bug N26402
Diffstat (limited to 'mysql-test/t/show_check.test')
-rw-r--r-- | mysql-test/t/show_check.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/show_check.test b/mysql-test/t/show_check.test index 3aeb92ac203..8d41399df70 100644 --- a/mysql-test/t/show_check.test +++ b/mysql-test/t/show_check.test @@ -596,7 +596,7 @@ set names latin1; # # Bug#26402 Server crashes with old-style named table # ---error ER_NO_SUCH_TABLE +--error ER_NO_SUCH_TABLE,ER_FILE_NOT_FOUND show columns from `#mysql50#????????`; --echo End of 5.1 tests |