Details
-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 5.5, 10.0, 10.1, 10.2
-
Component/s: Scripts & Clients
-
Labels: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`; |