Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
5.5(EOL), 10.0(EOL), 10.1(EOL), 10.2(EOL)
-
None
Description
create table `a1\``b1` (a int); |
show tables;
|
show create table `a1\``b1`; |
set sql_mode=default; |
--exec $MYSQL_DUMP test > $MYSQLTEST_VARDIR/tmp/bug.sql
|
--exec $MYSQL < $MYSQLTEST_VARDIR/tmp/bug.sql
|
drop table `a1\``b1`; |
this fails, because mysql cannot parse the table name correctly. Fixing that, mysqltest error will show up. Alternatively, this test will do too:
create table `a1\``b1` (a int); |
show create table `a1\``b1`; |
drop table `a1\``b1`; |