summaryrefslogtreecommitdiff
path: root/mysql-test/main/long_unique_update.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/main/long_unique_update.test')
-rw-r--r--mysql-test/main/long_unique_update.test1
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/main/long_unique_update.test b/mysql-test/main/long_unique_update.test
index 79cca079fe6..b160ebad9f1 100644
--- a/mysql-test/main/long_unique_update.test
+++ b/mysql-test/main/long_unique_update.test
@@ -106,6 +106,7 @@ select * from t1 limit 3;
update t1 set b=2 ,c=2 where a=1;
update t1 set b=b+34, c=c+34 where e=1 and g=1 ;
update t1 set b=35, c=35 where e=1 and g=1 ;
+--error ER_DUP_ENTRY
update t1 set b=b+1, c=c+1 where a>0;
update ignore t1 set b=b+1, c=c+1 where a>0;
select * from t1 ;