summaryrefslogtreecommitdiff
path: root/mysql-test/r/drop.result
diff options
context:
space:
mode:
authorMonty <monty@mariadb.org>2017-03-26 22:30:43 +0300
committerAlexander Barkov <bar@mariadb.org>2017-04-07 18:22:06 +0400
commit470c3fd98d724fccbf96c049f2153bc1f5990915 (patch)
treee27efd43ad631df068472d72049cb99573cefd02 /mysql-test/r/drop.result
parent17a87d606302b55d547104d7fe6c536c6c288a8b (diff)
downloadmariadb-git-470c3fd98d724fccbf96c049f2153bc1f5990915.tar.gz
Change error message when using DROP VIEW on a non existing view from
"Unknown table" to "Unknown view"
Diffstat (limited to 'mysql-test/r/drop.result')
-rw-r--r--mysql-test/r/drop.result10
1 files changed, 5 insertions, 5 deletions
diff --git a/mysql-test/r/drop.result b/mysql-test/r/drop.result
index 1a06380e66f..050e0b9cd2b 100644
--- a/mysql-test/r/drop.result
+++ b/mysql-test/r/drop.result
@@ -198,7 +198,7 @@ ERROR 42S02: Unknown table 'test.table1'
DROP TABLE table1,table2;
ERROR 42S02: Unknown table 'test.table1,test.table2'
DROP VIEW view1,view2,view3,view4;
-ERROR 42S02: Unknown table 'test.view1,test.view2,test.view3,test.view4'
+ERROR 42S02: Unknown VIEW: 'test.view1,test.view2,test.view3,test.view4'
DROP TABLE IF EXISTS table1;
Warnings:
@@ -209,10 +209,10 @@ Note 1051 Unknown table 'test.table1'
Note 1051 Unknown table 'test.table2'
DROP VIEW IF EXISTS view1,view2,view3,view4;
Warnings:
-Note 1051 Unknown table 'test.view1'
-Note 1051 Unknown table 'test.view2'
-Note 1051 Unknown table 'test.view3'
-Note 1051 Unknown table 'test.view4'
+Note 4067 Unknown VIEW: 'test.view1'
+Note 4067 Unknown VIEW: 'test.view2'
+Note 4067 Unknown VIEW: 'test.view3'
+Note 4067 Unknown VIEW: 'test.view4'
# Test error message when trigger does not find table
CREATE TABLE table1(a int);