summaryrefslogtreecommitdiff
path: root/mysql-test/r/view.result
diff options
context:
space:
mode:
authorunknown <igor@rurik.mysql.com>2005-11-05 22:41:36 -0800
committerunknown <igor@rurik.mysql.com>2005-11-05 22:41:36 -0800
commit548c1c6947c1ac368b4689d57c6a67c9f8c79f2a (patch)
tree4012ed65c66d6c9138db3e685f6af695438af63b /mysql-test/r/view.result
parentafe80632cd1fd8a5ff0a6d4fb0600f1d5050d9a7 (diff)
downloadmariadb-git-548c1c6947c1ac368b4689d57c6a67c9f8c79f2a.tar.gz
Post review fixes.
Diffstat (limited to 'mysql-test/r/view.result')
-rw-r--r--mysql-test/r/view.result8
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/r/view.result b/mysql-test/r/view.result
index 9b434ebe9f4..b92a50d079f 100644
--- a/mysql-test/r/view.result
+++ b/mysql-test/r/view.result
@@ -2339,17 +2339,17 @@ CREATE TABLE t1(id INT);
CREATE VIEW v1 AS SELECT id FROM t1;
OPTIMIZE TABLE v1;
Table Op Msg_type Msg_text
-test.v1 optimize note You cannot apply optimize to a view
+test.v1 optimize note Unknown table 'test.v1'
ANALYZE TABLE v1;
Table Op Msg_type Msg_text
-test.v1 analyze note You cannot apply analyze to a view
+test.v1 analyze note Unknown table 'test.v1'
REPAIR TABLE v1;
Table Op Msg_type Msg_text
-test.v1 repair note You cannot apply repair to a view
+test.v1 repair note Unknown table 'test.v1'
DROP TABLE t1;
OPTIMIZE TABLE v1;
Table Op Msg_type Msg_text
-test.v1 optimize note You cannot apply optimize to a view
+test.v1 optimize note Unknown table 'test.v1'
Warnings:
Error 1146 Table 'test.t1' doesn't exist
Error 1356 View 'test.v1' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them