diff options
author | pem@mysql.comhem.se <> | 2005-04-22 12:53:48 +0200 |
---|---|---|
committer | pem@mysql.comhem.se <> | 2005-04-22 12:53:48 +0200 |
commit | 057b8aa9a874491fb956a837e75d50dbc4c36a2e (patch) | |
tree | 16dd7ce5d1e2706f17774842c3d21d96d28bbe63 /sql/sql_error.cc | |
parent | a6b68d51ecd2a45caea367dc43721a53350a22a6 (diff) | |
download | mariadb-git-057b8aa9a874491fb956a837e75d50dbc4c36a2e.tar.gz |
Fixed BUG#9004: Inconsistent behaviour of SP re. warnings
Diffstat (limited to 'sql/sql_error.cc')
-rw-r--r-- | sql/sql_error.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_error.cc b/sql/sql_error.cc index 04fd27abef5..3bda16202b9 100644 --- a/sql/sql_error.cc +++ b/sql/sql_error.cc @@ -113,7 +113,7 @@ MYSQL_ERROR *push_warning(THD *thd, MYSQL_ERROR::enum_warning_level level, !(thd->options & OPTION_SQL_NOTES)) DBUG_RETURN(0); - if (thd->query_id != thd->warn_id) + if (thd->query_id != thd->warn_id && !thd->spcont) mysql_reset_errors(thd, 0); thd->got_warning= 1; |