diff options
author | Monty <monty@mariadb.org> | 2020-03-30 20:12:02 +0300 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2020-04-19 17:33:51 +0300 |
commit | f9f33b85be6b5006f0ecd0de7961c71d415a9d73 (patch) | |
tree | ae547acc02c05876ccc9f54a3c7be614af206425 /sql/sql_base.h | |
parent | 7866b723048d1d0f4a202d5a1e5475420b1dda64 (diff) | |
download | mariadb-git-f9f33b85be6b5006f0ecd0de7961c71d415a9d73.tar.gz |
Handle errors from external_unlock & mysql_unlock_tables
Other things:
- Handler errors from ha_maria::implict_commit
- Disable DBUG in safe_mutex_lock to get trace file easier to read
Diffstat (limited to 'sql/sql_base.h')
-rw-r--r-- | sql/sql_base.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_base.h b/sql/sql_base.h index 773b95b8317..0fdb2599ce4 100644 --- a/sql/sql_base.h +++ b/sql/sql_base.h @@ -160,7 +160,7 @@ TABLE_LIST *find_table_in_list(TABLE_LIST *table, TABLE_LIST *TABLE_LIST::*link, const LEX_CSTRING *db_name, const LEX_CSTRING *table_name); -void close_thread_tables(THD *thd); +int close_thread_tables(THD *thd); void switch_to_nullable_trigger_fields(List<Item> &items, TABLE *); void switch_defaults_to_nullable_trigger_fields(TABLE *table); bool fill_record_n_invoke_before_triggers(THD *thd, TABLE *table, |