summaryrefslogtreecommitdiff
path: root/mysql-test
diff options
context:
space:
mode:
authorunknown <aivanov@mysql.com>2006-04-11 23:06:47 +0400
committerunknown <aivanov@mysql.com>2006-04-11 23:06:47 +0400
commit39bf253c0e2c3d16bc7b3566961f8de5bb39494a (patch)
tree508881b83aba61384c24ba1ab5c6f15be540ef63 /mysql-test
parent5d224206a5d079ee1d7a59fd9dc6a455ce938a76 (diff)
downloadmariadb-git-39bf253c0e2c3d16bc7b3566961f8de5bb39494a.tar.gz
Removed test case erroneously merged from 5.0
Diffstat (limited to 'mysql-test')
-rw-r--r--mysql-test/t/insert.test11
1 files changed, 0 insertions, 11 deletions
diff --git a/mysql-test/t/insert.test b/mysql-test/t/insert.test
index 0c64dd80bec..f3dd8e7e199 100644
--- a/mysql-test/t/insert.test
+++ b/mysql-test/t/insert.test
@@ -176,14 +176,3 @@ insert into t2 select t1.* from t1, t2 t, t3 where t1.id1 = t.id2 and t.id2 =
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;