diff options
author | Alexey Botchkov <holyfoot@askmonty.org> | 2016-10-27 00:04:26 +0400 |
---|---|---|
committer | Alexey Botchkov <holyfoot@askmonty.org> | 2016-10-27 00:04:26 +0400 |
commit | 26b87c332ff78a7aca04930ad86fbf7acc793222 (patch) | |
tree | a151f7a3587e30c9824c11315939fed1c2cec10c /mysql-test/r/drop.result | |
parent | 22490a0d709d0c53da94799accb038bf270ed411 (diff) | |
download | mariadb-git-26b87c332ff78a7aca04930ad86fbf7acc793222.tar.gz |
MDEV-10846 Running mysqldump backup twice returns error: Table
'mysql.proc' doesn't exist.
The mysql_rm_db() doesn't seem to expect the 'mysql' database
to be deleted. Checks for that added.
Also fixed the bug MDEV-11105 Table named 'db'
has weird side effect.
The db.opt file now removed separately.
Diffstat (limited to 'mysql-test/r/drop.result')
-rw-r--r-- | mysql-test/r/drop.result | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/drop.result b/mysql-test/r/drop.result index c23ffbe327b..c25ae9e3055 100644 --- a/mysql-test/r/drop.result +++ b/mysql-test/r/drop.result @@ -209,3 +209,9 @@ INSERT INTO table1 VALUES (1); ERROR 42S02: Unknown table 't.notable' DROP TABLE table1,table2; # End BUG#34750 +# +# MDEV-11105 Table named 'db' has weird side effect. +# +CREATE DATABASE mysqltest; +CREATE TABLE mysqltest.db(id INT); +DROP DATABASE mysqltest; |