diff options
author | Sergei Golubchik <sergii@pisem.net> | 2014-03-20 00:44:35 +0100 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2014-03-20 00:44:35 +0100 |
commit | 47f438675b81848700822426b28281cd3158e83b (patch) | |
tree | 080959710d878545ce6780cbd050287e8ac74938 /mysql-test/suite/rpl | |
parent | 9418bd9c2167ef6a75d7d1bfaaf5e2cf94d09bae (diff) | |
download | mariadb-git-47f438675b81848700822426b28281cd3158e83b.tar.gz |
MDEV-5894 MySQL BUG#34750: Print database name in Unknown Table error message
Diffstat (limited to 'mysql-test/suite/rpl')
-rw-r--r-- | mysql-test/suite/rpl/r/rpl_drop_view.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/suite/rpl/r/rpl_drop_view.result b/mysql-test/suite/rpl/r/rpl_drop_view.result index 0688ce42bc2..70a87816e4b 100644 --- a/mysql-test/suite/rpl/r/rpl_drop_view.result +++ b/mysql-test/suite/rpl/r/rpl_drop_view.result @@ -9,9 +9,9 @@ create view v1 as select * from t1; create view v2 as select * from t2; create view v3 as select * from t3; drop view not_exist_view; -ERROR 42S02: Unknown table 'not_exist_view' +ERROR 42S02: Unknown table 'test.not_exist_view' drop view v1, not_exist_view; -ERROR 42S02: Unknown table 'not_exist_view' +ERROR 42S02: Unknown table 'test.not_exist_view' select * from v1; ERROR 42S02: Table 'test.v1' doesn't exist drop view v2, v3; |