mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
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.
This commit is contained in:
@ -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
|
||||
|
@ -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
|
||||
|
Reference in New Issue
Block a user