summaryrefslogtreecommitdiff
path: root/mysql-test/r/mysqlcheck.result
diff options
context:
space:
mode:
authorJim Winstead <jimw@mysql.com>2009-05-20 18:31:10 -0700
committerJim Winstead <jimw@mysql.com>2009-05-20 18:31:10 -0700
commitf0f4efd77e3eb7d62176396b5ccf53d7a7029c85 (patch)
tree8bbcf7fdd84e32f5d82edf7346379e4db4e0a539 /mysql-test/r/mysqlcheck.result
parentd57bb98ff5c62fff7d9912dd0a96ad99fcab3861 (diff)
downloadmariadb-git-f0f4efd77e3eb7d62176396b5ccf53d7a7029c85.tar.gz
mysqlcheck failed to fix table names when using the --fix-table-names
and --all-in-1 options together. (Bug #31821)
Diffstat (limited to 'mysql-test/r/mysqlcheck.result')
-rw-r--r--mysql-test/r/mysqlcheck.result14
1 files changed, 14 insertions, 0 deletions
diff --git a/mysql-test/r/mysqlcheck.result b/mysql-test/r/mysqlcheck.result
index 704cd7ac3f4..5f1a0565b10 100644
--- a/mysql-test/r/mysqlcheck.result
+++ b/mysql-test/r/mysqlcheck.result
@@ -186,4 +186,18 @@ a
500
DROP DATABASE `a@b`;
USE test;
+#
+# Bug #31821: --all-in-1 and --fix-table-names don't work together
+#
+drop table if exists `#mysql50#t1-1`;
+create table `#mysql50#t1-1` (a int);
+show tables like 't1-1';
+Tables_in_test (t1-1)
+t1-1
+drop table `t1-1`;
+create table `#mysql50#t1-1` (a int);
+show tables like 't1-1';
+Tables_in_test (t1-1)
+t1-1
+drop table `t1-1`;
End of 5.1 tests