diff options
author | Alexander Nozdrin <alik@sun.com> | 2009-10-27 11:54:27 +0300 |
---|---|---|
committer | Alexander Nozdrin <alik@sun.com> | 2009-10-27 11:54:27 +0300 |
commit | a4068d17fdf56ee79e4d538d47799ca0eeb67de3 (patch) | |
tree | eb98a2a72146657d795aef71e12644e9fac2e6a8 /mysql-test/r/drop_debug.result | |
parent | 2dc132b209ef375d7d36a41a2429be001d8e5f45 (diff) | |
download | mariadb-git-a4068d17fdf56ee79e4d538d47799ca0eeb67de3.tar.gz |
Test postfix for Bug#43138 (DROP DATABASE failure does not
clean up message list).
Diffstat (limited to 'mysql-test/r/drop_debug.result')
-rw-r--r-- | mysql-test/r/drop_debug.result | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/mysql-test/r/drop_debug.result b/mysql-test/r/drop_debug.result index 5fa8b8cb3de..75346b88bc6 100644 --- a/mysql-test/r/drop_debug.result +++ b/mysql-test/r/drop_debug.result @@ -7,15 +7,11 @@ DROP DATABASE IF EXISTS mysql_test; CREATE DATABASE mysql_test; CREATE TABLE mysql_test.t1(a INT); -CREATE TABLE mysql_test.t2(b INT); -CREATE TABLE mysql_test.t3(c INT); SET SESSION DEBUG = "+d,bug43138"; DROP DATABASE mysql_test; Warnings: -Error 1051 Unknown table 't3' -Error 1051 Unknown table 't2' Error 1051 Unknown table 't1' SET SESSION DEBUG = "-d,bug43138"; |