diff options
author | Sergei Golubchik <serg@mariadb.org> | 2016-06-20 16:12:54 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2016-06-20 16:12:54 +0200 |
commit | a482e76e65a4fee70479e877929381c86b1ec62f (patch) | |
tree | 3d23214973f765de89606f8f13c26f33da46bec1 /mysql-test/r/mysqlcheck.result | |
parent | 95bf696d2c8ee189a1836b5b0e4ec353aa4bda30 (diff) | |
download | mariadb-git-a482e76e65a4fee70479e877929381c86b1ec62f.tar.gz |
fix a mysql-5.5.50 merge: mysqlcheck
quote identifiers correctly
Diffstat (limited to 'mysql-test/r/mysqlcheck.result')
-rw-r--r-- | mysql-test/r/mysqlcheck.result | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/r/mysqlcheck.result b/mysql-test/r/mysqlcheck.result index c5ba3e7dc79..d2f4745c5f1 100644 --- a/mysql-test/r/mysqlcheck.result +++ b/mysql-test/r/mysqlcheck.result @@ -339,3 +339,8 @@ Repairing views test.v1 OK drop view v1; drop table t1; +create table `#mysql50#t1``1` (a int) engine=myisam; +show tables; +Tables_in_test +t1`1 +drop table `t1``1`; |