summaryrefslogtreecommitdiff
path: root/mysql-test/include/sp-vars.inc
diff options
context:
space:
mode:
authorunknown <malff/marcsql@weblab.(none)>2006-10-19 11:39:51 -0700
committerunknown <malff/marcsql@weblab.(none)>2006-10-19 11:39:51 -0700
commit5bd58f3e00ad7e7430c8d728f94209dce4c1a4e4 (patch)
tree997ff98a25d591733b1ee8e0a441ad58f17eaaaa /mysql-test/include/sp-vars.inc
parentde304106ca659f3d74c75e75ee02bc01d7d5d0a1 (diff)
downloadmariadb-git-5bd58f3e00ad7e7430c8d728f94209dce4c1a4e4.tar.gz
Bug#20028 (Function with select return no data)
This patch reverts a change introduced by Bug 6951, which incorrectly set thd->abort_on_warning for stored procedures. As per internal discussions about the SQL_MODE=TRADITIONAL, the correct behavior is to *not* abort on warnings even inside an INSERT/UPDATE trigger. Tests for Stored Procedures, Stored Functions, Triggers involving SQL_MODE have been included or revised, to reflect the intended behavior. (reposting approved patch, to work around source control issues, no review needed) mysql-test/include/sp-vars.inc: Tests for SQL_MODE='TRADITIONAL' mysql-test/r/sp-vars.result: Tests for SQL_MODE='TRADITIONAL' mysql-test/r/sp.result: Tests for SQL_MODE='TRADITIONAL' mysql-test/r/trigger.result: Tests for SQL_MODE='TRADITIONAL' mysql-test/t/sp-vars.test: Tests for SQL_MODE='TRADITIONAL' mysql-test/t/sp.test: Tests for SQL_MODE='TRADITIONAL' mysql-test/t/trigger.test: Tests for SQL_MODE='TRADITIONAL' sql/sp_head.cc: For SQL_MODE='TRADITIONAL', thd->abort_on_warning should be set only when assigning a *column*
Diffstat (limited to 'mysql-test/include/sp-vars.inc')
-rw-r--r--mysql-test/include/sp-vars.inc9
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/include/sp-vars.inc b/mysql-test/include/sp-vars.inc
index 3e02c9d1709..4bac883ee0e 100644
--- a/mysql-test/include/sp-vars.inc
+++ b/mysql-test/include/sp-vars.inc
@@ -119,4 +119,13 @@ END|
---------------------------------------------------------------------------
+CREATE FUNCTION sp_vars_div_zero() RETURNS INTEGER
+BEGIN
+ DECLARE div_zero INTEGER;
+ SELECT 1/0 INTO div_zero;
+ RETURN div_zero;
+END|
+
+---------------------------------------------------------------------------
+
delimiter ;|