mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 11:31:51 +01:00
a0ab253fbd
****** This patch fixes the following bugs: - Bug#5889: Exit handler for a warning doesn't hide the warning in trigger - Bug#9857: Stored procedures: handler for sqlwarning ignored - Bug#23032: Handlers declared in a SP do not handle warnings generated in sub-SP - Bug#36185: Incorrect precedence for warning and exception handlers The problem was in the way warnings/errors during stored routine execution were handled. Prior to this patch the logic was as follows: - when a warning/an error happens: if we're executing a stored routine, and there is a handler for that warning/error, remember the handler, ignore the warning/error and continue execution. - after a stored routine instruction is executed: check for a remembered handler and activate one (if any). This logic caused several problems: - if one instruction generates several warnings (errors) it's impossible to choose the right handler -- a handler for the first generated condition was chosen and remembered for activation. - mess with handling conditions in scopes different from the current one. - not putting generated warnings/errors into Warning Info (Diagnostic Area) is against The Standard. The patch changes the logic as follows: - Diagnostic Area is cleared on the beginning of each statement that either is able to generate warnings, or is able to work with tables. - at the end of a stored routine instruction, Diagnostic Area is left intact. - Diagnostic Area is checked after each stored routine instruction. If an instruction generates several condition, it's now possible to take a look at all of them and determine an appropriate handler. mysql-test/r/signal.result: Update result file: 1. handled conditions are not cleared any more; 2. reflect changes in signal.test mysql-test/r/signal_demo3.result: Update result file: handled conditions are not cleared any more. Due to playing with max_error_count, resulting warning lists have changed. mysql-test/r/sp-big.result: Update result file: handled conditions are not cleared any more. mysql-test/r/sp-bugs.result: Update result file: handled conditions are not cleared any more. mysql-test/r/sp-code.result: Update result file: 1. handled conditions are not cleared any more. 2. add result for a new test case in sp-code.test. mysql-test/r/sp-error.result: Update result file: 1. handled conditions are not cleared any more. 2. add result for a new test case in sp-error.test. mysql-test/r/sp.result: Update result file: handled conditions are not cleared any more. mysql-test/r/sp_trans.result: Update result file: handled conditions are not cleared any more. mysql-test/r/strict.result: Update result file: handled conditions are not cleared any more. mysql-test/r/view.result: Update result file: handled conditions are not cleared any more. mysql-test/suite/funcs_1/r/innodb_storedproc_02.result: Update result file: handled conditions are not cleared any more. mysql-test/suite/funcs_1/r/memory_storedproc_02.result: Update result file: handled conditions are not cleared any more. mysql-test/suite/funcs_1/r/myisam_storedproc_02.result: Update result file: handled conditions are not cleared any more. mysql-test/suite/funcs_1/r/storedproc.result: Update result file: handled conditions are not cleared any more. mysql-test/suite/rpl/r/rpl_row_sp005.result: Update result file: handled conditions are not cleared any more. mysql-test/suite/rpl/r/rpl_row_sp006_InnoDB.result: Update result file: handled conditions are not cleared any more. mysql-test/suite/rpl/r/rpl_row_trig003.result: Update result file: handled conditions are not cleared any more. mysql-test/t/signal.test: Make a test case more readable in the result file. mysql-test/t/sp-code.test: Add a test case for Bug#23032 checking that No Data takes precedence on Warning. mysql-test/t/sp-error.test: Adding test cases for: - Bug#23032 - Bug#36185 - Bug#5889 - Bug#9857 mysql-test/t/sp.test: Fixing test case to reflect behavioral changes made by the patch. sql/sp_head.cc: Reset the per-statement warning count before executing a stored procedure instruction. Move to a separate function code which checks the completion status of the executed statement and searches for a handler. Remove redundant code now that search for a handler is done after execution, errors are always pushed. sql/sp_pcontext.h: Remove unused code. sql/sp_rcontext.cc: - Polish sp_rcontext::find_handler(): use sp_rcontext::m_hfound instead of an extra local variable; - Remove sp_rcontext::handle_condition(); - Introduce sp_rcontext::activate_handler(), which prepares previously found handler for execution. - Move sp_rcontext::enter_handler() code into activate_handler(), because enter_handler() is used only from there; - Cleanups; - Introduce DBUG_EXECUTE_IF() for a test case in sp-code.test sql/sp_rcontext.h: - Remove unused code - Cleanups sql/sql_class.cc: Merge THD::raise_condition_no_handler() into THD::raise_condition(). After the patch raise_condition_no_handler() was called in raise_condition() only. sql/sql_class.h: Remove raise_condition_no_handler(). sql/sql_error.cc: Remove Warning_info::reserve_space() -- handled conditions are not cleared any more, so there is no need for RESIGNAL to re-push them. sql/sql_error.h: Remove Warning_info::reserve_space(). sql/sql_signal.cc: Handled conditions are not cleared any more, so there is no need for RESIGNAL to re-push them. |
||
---|---|---|
.. | ||
charset_collation.result | ||
innodb_bitdata.result | ||
innodb_cursors.result | ||
innodb_func_view.result | ||
innodb_storedproc_02.result | ||
innodb_storedproc_03.result | ||
innodb_storedproc_06.result | ||
innodb_storedproc_07.result | ||
innodb_storedproc_08.result | ||
innodb_storedproc_10.result | ||
innodb_trig_03.result | ||
innodb_trig_03e.result | ||
innodb_trig_08.result | ||
innodb_trig_09.result | ||
innodb_trig_0102.result | ||
innodb_trig_0407.result | ||
innodb_trig_1011ext.result | ||
innodb_trig_frkey.result | ||
innodb_views.result | ||
is_basics_mixed.result | ||
is_character_sets.result | ||
is_cml_innodb.result | ||
is_cml_memory.result | ||
is_cml_myisam.result | ||
is_cml_ndb.result | ||
is_coll_char_set_appl.result | ||
is_collations.result | ||
is_column_privileges.result | ||
is_column_privileges_is_mysql_test.result | ||
is_columns.result | ||
is_columns_innodb.result | ||
is_columns_is.result | ||
is_columns_is_embedded.result | ||
is_columns_memory.result | ||
is_columns_myisam.result | ||
is_columns_myisam_embedded.result | ||
is_columns_mysql.result | ||
is_columns_mysql_embedded.result | ||
is_columns_ndb.result | ||
is_engines.result | ||
is_engines_archive.result | ||
is_engines_blackhole.result | ||
is_engines_csv.result | ||
is_engines_federated.result | ||
is_engines_innodb.result | ||
is_engines_memory.result | ||
is_engines_merge.result | ||
is_engines_myisam.result | ||
is_engines_ndb.result | ||
is_events.result | ||
is_key_column_usage.result | ||
is_key_column_usage_embedded.result | ||
is_routines.result | ||
is_routines_embedded.result | ||
is_schema_privileges.result | ||
is_schema_privileges_is_mysql_test.result | ||
is_schemata.result | ||
is_schemata_embedded.result | ||
is_schemata_is_mysql_test.result | ||
is_statistics.result | ||
is_statistics_is.result | ||
is_statistics_mysql.result | ||
is_statistics_mysql_embedded.result | ||
is_table_constraints.result | ||
is_table_constraints_is.result | ||
is_table_constraints_mysql.result | ||
is_table_constraints_mysql_embedded.result | ||
is_table_privileges.result | ||
is_tables.result | ||
is_tables_embedded.result | ||
is_tables_innodb.result | ||
is_tables_is.result | ||
is_tables_memory.result | ||
is_tables_myisam.result | ||
is_tables_myisam_embedded.result | ||
is_tables_mysql.result | ||
is_tables_mysql_embedded.result | ||
is_tables_ndb.result | ||
is_triggers.result | ||
is_triggers_embedded.result | ||
is_user_privileges.result | ||
is_views.result | ||
is_views_embedded.result | ||
memory_bitdata.result | ||
memory_cursors.result | ||
memory_func_view.result | ||
memory_storedproc_02.result | ||
memory_storedproc_03.result | ||
memory_storedproc_06.result | ||
memory_storedproc_07.result | ||
memory_storedproc_08.result | ||
memory_storedproc_10.result | ||
memory_trig_03.result | ||
memory_trig_03e.result | ||
memory_trig_08.result | ||
memory_trig_09.result | ||
memory_trig_0102.result | ||
memory_trig_0407.result | ||
memory_trig_1011ext.result | ||
memory_views.result | ||
myisam_bitdata.result | ||
myisam_cursors.result | ||
myisam_func_view.result | ||
myisam_storedproc_02.result | ||
myisam_storedproc_03.result | ||
myisam_storedproc_06.result | ||
myisam_storedproc_07.result | ||
myisam_storedproc_08.result | ||
myisam_storedproc_10.result | ||
myisam_trig_03.result | ||
myisam_trig_03e.result | ||
myisam_trig_08.result | ||
myisam_trig_09.result | ||
myisam_trig_0102.result | ||
myisam_trig_0407.result | ||
myisam_trig_1011ext.result | ||
myisam_views.result | ||
ndb_bitdata.result | ||
ndb_cursors.result | ||
ndb_func_view.result | ||
ndb_storedproc_02.result | ||
ndb_storedproc_03.result | ||
ndb_storedproc_06.result | ||
ndb_storedproc_07.result | ||
ndb_storedproc_08.result | ||
ndb_storedproc_10.result | ||
ndb_trig_03.result | ||
ndb_trig_03e.result | ||
ndb_trig_08.result | ||
ndb_trig_09.result | ||
ndb_trig_0102.result | ||
ndb_trig_0407.result | ||
ndb_trig_1011ext.result | ||
ndb_views.result | ||
processlist_priv_no_prot.result | ||
processlist_priv_ps.result | ||
processlist_val_no_prot.result | ||
processlist_val_ps.result | ||
row_count_func.result | ||
storedproc.result |