summaryrefslogtreecommitdiff
path: root/mysql-test/t/multi_update.test
diff options
context:
space:
mode:
authorunknown <evgen@moonbone.local>2006-05-29 19:07:35 +0400
committerunknown <evgen@moonbone.local>2006-05-29 19:07:35 +0400
commitc56193330101e6dfeb6afd43f76553aae8a3929e (patch)
treee912a14613d16ad36d42650a2a91c86ba37696e7 /mysql-test/t/multi_update.test
parent8e025f51f12eb505d80b25f19fc21ef75f55591f (diff)
parent2264b644735e869fdbb16397c75170d86e2de127 (diff)
downloadmariadb-git-c56193330101e6dfeb6afd43f76553aae8a3929e.tar.gz
Manually merged
mysql-test/t/multi_update.test: Auto merged
Diffstat (limited to 'mysql-test/t/multi_update.test')
-rw-r--r--mysql-test/t/multi_update.test8
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/t/multi_update.test b/mysql-test/t/multi_update.test
index 5e3be6d45eb..da19a18c73a 100644
--- a/mysql-test/t/multi_update.test
+++ b/mysql-test/t/multi_update.test
@@ -452,6 +452,14 @@ insert into t2 values(1,null);
delete t2, t1 from t2 left join t1 on (t2.aclid=t1.aclid) where t2.refid='1';
drop table t1, t2;
+#
+# Bug#19225: unchecked error leads to server crash
+#
+create table t1(a int);
+create table t2(a int);
+--error 1093
+delete from t1,t2 using t1,t2 where t1.a=(select a from t1);
+drop table t1, t2;
# End of 4.1 tests
#