Commit 4be5c254 authored by aivanov@mysql.com's avatar aivanov@mysql.com

Merge mysql.com:/home/alexi/bugs/mysql-5.0-13683

into  mysql.com:/home/alexi/bugs/mysql-5.1-13683
parents 9d2fd3b3 5ae25ea5
......@@ -175,3 +175,15 @@ select count(*) from t2;
insert into t2 select t1.* from t1, t2 t, t3 where t1.id1 = t.id2 and t.id2 = t3.id3;
select count(*) from t2;
drop table t1,t2,t3;
#
# Test for INSERT DELAYED INTO a <view>
# BUG#13683: INSERT DELAYED into a view creates an infinite loop
#
create table t1 (n int);
create view v1 as select * from t1;
--error 1347
insert delayed into v1 values (1);
drop table t1;
drop view v1;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment