summaryrefslogtreecommitdiff
path: root/mysql-test/main/drop_combinations.result
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2020-06-16 10:33:48 +0200
committerSergei Golubchik <serg@mariadb.org>2020-07-04 01:44:47 +0200
commit7c2ba9e9d71c5fb494e262a1b6d1ebf992db282e (patch)
treef1b01d16aa4ec192952723adb6de03ac153370c0 /mysql-test/main/drop_combinations.result
parent79a3f96166c1c6b46bea859a357ec5c2a11d6b63 (diff)
downloadmariadb-git-7c2ba9e9d71c5fb494e262a1b6d1ebf992db282e.tar.gz
MDEV-11412 Ensure that table is truly dropped when using DROP TABLE
don't do table discovery on DROP. DROP falls back to "force" approach when a table isn't found and will try to drop in all engines anyway. That is, trying to discover in all engines before the drop is redundant and may be expensive.
Diffstat (limited to 'mysql-test/main/drop_combinations.result')
-rw-r--r--mysql-test/main/drop_combinations.result6
1 files changed, 2 insertions, 4 deletions
diff --git a/mysql-test/main/drop_combinations.result b/mysql-test/main/drop_combinations.result
index eb6d70e0704..140665efd19 100644
--- a/mysql-test/main/drop_combinations.result
+++ b/mysql-test/main/drop_combinations.result
@@ -168,8 +168,7 @@ drop table if exists t1,s1,v1,t3,t4;
Warnings:
Warning 1017 Can't find file: './test/t1.MYI' (errno: 2 "No such file or directory")
Note 1965 'test.v1' is a view
-Note 1965 'test.t3' is a view
-Note 1965 'test.t4' is a view
+Note 1051 Unknown table 'test.t3,test.t4'
drop table if exists s2,v2,t2,t1;
Warnings:
Note 1965 'test.v2' is a view
@@ -493,8 +492,7 @@ Warnings:
Warning 1017 Can't find file: './test/s1.MYI' (errno: 2 "No such file or directory")
Note 4090 'test.t1' is not a SEQUENCE
Note 1965 'test.v1' is a view
-Note 1965 'test.t3' is a view
-Note 1965 'test.s4' is a view
+Note 4091 Unknown SEQUENCE: 'test.t3,test.s4'
drop sequence if exists t2,v2,s2,s1;
Warnings:
Note 4090 'test.t2' is not a SEQUENCE