fix a mysql-5.5.50 merge: mysqlcheck

quote identifiers correctly
This commit is contained in:
Sergei Golubchik 2016-06-20 16:12:54 +02:00
commit a482e76e65
3 changed files with 12 additions and 2 deletions

View file

@ -350,3 +350,8 @@ create table t1(a int);
--exec $MYSQL_CHECK --process-views --check-upgrade --auto-repair test
drop view v1;
drop table t1;
create table `#mysql50#t1``1` (a int) engine=myisam;
--exec $MYSQL_CHECK --fix-table-names --databases test
show tables;
drop table `t1``1`;