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 | e6b9fb32a7923169b4dffcf3e9ba4c5700428137 (patch) | |
tree | fa78cb23e38d61c3d2351e8dabf8ac06b91cb455 /mysql-test/r/create.result | |
parent | 25fc844f5fb143db50dd4356631d433973684891 (diff) | |
download | mariadb-git-e6b9fb32a7923169b4dffcf3e9ba4c5700428137.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.
mysql-test/r/create.result:
test result
mysql-test/t/create.test:
test case
sql/sql_table.cc:
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 |