summaryrefslogtreecommitdiff
path: root/mysql-test/t/create.test
diff options
context:
space:
mode:
authorSergey Glukhov <Sergey.Glukhov@sun.com>2008-12-23 19:33:46 +0400
committerSergey Glukhov <Sergey.Glukhov@sun.com>2008-12-23 19:33:46 +0400
commite6b9fb32a7923169b4dffcf3e9ba4c5700428137 (patch)
treefa78cb23e38d61c3d2351e8dabf8ac06b91cb455 /mysql-test/t/create.test
parent25fc844f5fb143db50dd4356631d433973684891 (diff)
downloadmariadb-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/t/create.test')
-rw-r--r--mysql-test/t/create.test6
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/t/create.test b/mysql-test/t/create.test
index 2eeca1eea90..20a607da826 100644
--- a/mysql-test/t/create.test
+++ b/mysql-test/t/create.test
@@ -1532,5 +1532,11 @@ DROP TABLE t1;
###########################################################################
+#
+# Bug#40104 regression with table names?
+#
+create table `me:i`(id int);
+drop table `me:i`;
+
--echo
--echo End of 5.1 tests