diff options
author | Sergey Glukhov <Sergey.Glukhov@sun.com> | 2008-12-23 19:33:46 +0400 |
---|---|---|
committer | Sergey Glukhov <Sergey.Glukhov@sun.com> | 2008-12-23 19:33:46 +0400 |
commit | c61c1a0d60d004914cab1417868ce7a268141b10 (patch) | |
tree | fa78cb23e38d61c3d2351e8dabf8ac06b91cb455 /mysql-test/r/create.result | |
parent | d02d2143b56fba0ecfe7bb5b0e870861bafb2fcd (diff) | |
download | mariadb-git-c61c1a0d60d004914cab1417868ce7a268141b10.tar.gz |
Bug#40104 regression with table names?
On Winodws FN_DEVCHAR is ':' symbol.
There is a check in mysql_create_table_no_lock() func
on FN_DEVCHAR presence but this code is obsolete and
unnecessary. So the fix is to remove unnecessary code.
Diffstat (limited to 'mysql-test/r/create.result')
-rw-r--r-- | mysql-test/r/create.result | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/r/create.result b/mysql-test/r/create.result index 947890d2085..67f81cb4fa5 100644 --- a/mysql-test/r/create.result +++ b/mysql-test/r/create.result @@ -1890,5 +1890,7 @@ c1 c2 DROP TABLE t1; # -- End of Bug#34274 +create table `me:i`(id int); +drop table `me:i`; End of 5.1 tests |