summaryrefslogtreecommitdiff
path: root/mysql-test/r/view.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/r/view.result')
-rw-r--r--mysql-test/r/view.result6
1 files changed, 4 insertions, 2 deletions
diff --git a/mysql-test/r/view.result b/mysql-test/r/view.result
index 3f12a582868..9e9ad7a6da6 100644
--- a/mysql-test/r/view.result
+++ b/mysql-test/r/view.result
@@ -1339,14 +1339,16 @@ c
prepare stmt1 from "update v1,t1 set v1.s1=? where t1.s1=v1.s1";
set @arg='d';
execute stmt1 using @arg;
+ERROR HY000: Table 't1' is read only
select * from v1;
s1
-d
+c
set @arg='e';
execute stmt1 using @arg;
+ERROR HY000: Table 't1' is read only
select * from v1;
s1
-e
+c
deallocate prepare stmt1;
drop view v1;
drop table t1;