summaryrefslogtreecommitdiff
path: root/mysql-test/t/strict.test
diff options
context:
space:
mode:
authorunknown <pem@mysql.comhem.se>2005-04-05 15:49:10 +0200
committerunknown <pem@mysql.comhem.se>2005-04-05 15:49:10 +0200
commitf3281e7b3381841cdab52d5f53c0ff813754e108 (patch)
treef658431ec09c56af8e818757f53eb7f0e245245e /mysql-test/t/strict.test
parentb419262fe49bb3cc84f496e913edd3f1baf25283 (diff)
downloadmariadb-git-f3281e7b3381841cdab52d5f53c0ff813754e108.tar.gz
Additional fix for BUG#5907: Traditional mode: invalid value can be inserted via a stored procedure
... make the handler catch too. mysql-test/r/strict.result: Updated corrected result for BUG#5907. mysql-test/t/strict.test: Corrected test for BUG#5907. sql/sp_head.cc: Make handlers catch certain bad data exceptions in strict mode too.
Diffstat (limited to 'mysql-test/t/strict.test')
-rw-r--r--mysql-test/t/strict.test1
1 files changed, 0 insertions, 1 deletions
diff --git a/mysql-test/t/strict.test b/mysql-test/t/strict.test
index b5d234b7bea..6b7ce1a8f9e 100644
--- a/mysql-test/t/strict.test
+++ b/mysql-test/t/strict.test
@@ -1040,7 +1040,6 @@ delimiter |;
create procedure t1 () begin declare exit handler for sqlexception
select'a'; insert into t1 values (200); end;|
delimiter ;|
---error 1264
call t1();
select * from t1;
drop procedure t1;