summaryrefslogtreecommitdiff
path: root/sql/sp_rcontext.cc
diff options
context:
space:
mode:
authorpem@mysql.com <>2006-01-17 12:48:48 +0100
committerpem@mysql.com <>2006-01-17 12:48:48 +0100
commitba01e04a2cfc9a3d80dbc3bd5dd10eab4bbe8fa5 (patch)
treedb2f8e1140ebcd04119a4804bb01a205c5126bd7 /sql/sp_rcontext.cc
parent7817b99857c3b7addff3a87dd792f6537c0ef5dc (diff)
downloadmariadb-git-ba01e04a2cfc9a3d80dbc3bd5dd10eab4bbe8fa5.tar.gz
Post-review fix. (BUG#15231)
Diffstat (limited to 'sql/sp_rcontext.cc')
-rw-r--r--sql/sp_rcontext.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sp_rcontext.cc b/sql/sp_rcontext.cc
index c36c904f45d..215de01e657 100644
--- a/sql/sp_rcontext.cc
+++ b/sql/sp_rcontext.cc
@@ -220,7 +220,7 @@ sp_rcontext::find_handler(uint sql_errno,
Only "exception conditions" are propagated to handlers in calling
contexts. If no handler is found locally for a "completion condition"
(warning or "not found") we will simply resume execution.
- */
+ */
if (m_prev_runtime_ctx && IS_EXCEPTION_CONDITION(sqlstate) &&
level == MYSQL_ERROR::WARN_LEVEL_ERROR)
return m_prev_runtime_ctx->find_handler(sql_errno, level);