summaryrefslogtreecommitdiff
path: root/mysql-test/r/mysqlcheck.result
diff options
context:
space:
mode:
authorSergei Golubchik <sergii@pisem.net>2015-01-29 18:26:07 +0100
committerSergei Golubchik <sergii@pisem.net>2015-01-29 18:26:07 +0100
commit27439ee6eaf86ba0d6c84439819664962e061e7d (patch)
treeb6a0100c77617928402fece076ca585aee99e1e9 /mysql-test/r/mysqlcheck.result
parent1e227b8f2c8b5305878b422c33c366fcab762d61 (diff)
parent5f63c9c067c59102d5d707c6ff086ece60edae9e (diff)
downloadmariadb-git-27439ee6eaf86ba0d6c84439819664962e061e7d.tar.gz
5.5 merge
Diffstat (limited to 'mysql-test/r/mysqlcheck.result')
-rw-r--r--mysql-test/r/mysqlcheck.result11
1 files changed, 9 insertions, 2 deletions
diff --git a/mysql-test/r/mysqlcheck.result b/mysql-test/r/mysqlcheck.result
index ba9ab47ea95..2d4a053b3a2 100644
--- a/mysql-test/r/mysqlcheck.result
+++ b/mysql-test/r/mysqlcheck.result
@@ -1,6 +1,6 @@
call mtr.add_suppression("Invalid .old.. table or database name");
-DROP TABLE IF EXISTS t1, `t``1`, `t 1`;
-drop view if exists v1;
+DROP TABLE IF EXISTS t1, `t``1`, `t 1`, test.`t.1`, v1;
+drop view if exists t1, `t``1`, `t 1`, test.`t.1`, v1;
drop database if exists client_test_db;
mtr.global_suppressions OK
mtr.test_suppressions OK
@@ -340,3 +340,10 @@ CHECK TABLE bug47205 FOR UPGRADE;
Table Op Msg_type Msg_text
test.bug47205 check status OK
DROP TABLE bug47205;
+#
+#MDEV-6128:[PATCH] mysqlcheck wrongly escapes '.' in table names
+#
+CREATE TABLE test.`t.1` (id int);
+mysqlcheck test t.1
+test.t.1 OK
+drop table test.`t.1`;