summaryrefslogtreecommitdiff
path: root/mysql-test/r
diff options
context:
space:
mode:
authorunknown <sanja@montyprogram.com>2013-07-05 17:06:02 +0300
committerunknown <sanja@montyprogram.com>2013-07-05 17:06:02 +0300
commitaa6d8e49503c240854fdb41e54a32c89c9494c80 (patch)
treeb1146833bd9f3cfd7925655cf2cb5a413f24ca08 /mysql-test/r
parentf231edcda3d0bff4b213be4d48b7b4bdc52fa9f3 (diff)
downloadmariadb-git-aa6d8e49503c240854fdb41e54a32c89c9494c80.tar.gz
fixed result (error message and error message intercepting).
Diffstat (limited to 'mysql-test/r')
-rw-r--r--mysql-test/r/view.result4
1 files changed, 1 insertions, 3 deletions
diff --git a/mysql-test/r/view.result b/mysql-test/r/view.result
index 1e5e91b272c..923f144276b 100644
--- a/mysql-test/r/view.result
+++ b/mysql-test/r/view.result
@@ -205,7 +205,7 @@ ERROR 42S02: Unknown table 'v100'
drop view t1;
ERROR HY000: 'test.t1' is not VIEW
drop table v1;
-ERROR 42S02: Unknown table 'v1'
+ERROR 42S02: Unknown table 'test.v1'
drop view v1,v2;
drop table t1;
create table t1 (a int);
@@ -3951,8 +3951,6 @@ create view a as select 1;
end|
call p();
call p();
-Warnings:
-Error 1050 Table 'a' already exists
drop view a;
drop procedure p;
#