MySQL 9.1.0
Source Code Documentation
|
Error handler which converts errors during database directory removal to warnings/messages to error log. More...
Public Member Functions | |
Rmdir_error_handler () | |
bool | handle_condition (THD *thd, uint, const char *, Sql_condition::enum_severity_level *, const char *msg) override |
Handle a sql condition. More... | |
Private Attributes | |
bool | m_is_active |
Indicates that we are already in the process of handling some error. More... | |
Additional Inherited Members | |
Protected Member Functions inherited from Internal_error_handler | |
Internal_error_handler () | |
Internal_error_handler * | prev_internal_handler () const |
virtual | ~Internal_error_handler ()=default |
Error handler which converts errors during database directory removal to warnings/messages to error log.
|
inline |
|
inlineoverridevirtual |
Handle a sql condition.
This method can be implemented by a subclass to achieve any of the following:
This mechanism is similar to C++ try/throw/catch:
THD::push_internal_handler()
,my_error()
, which invokes my_message_sql()
,THD::pop_internal_handler()
.thd | the calling thread |
sql_errno | the error number for the condition raised. |
sqlstate | the SQLSTATE for the condition raised. |
level | the severity level for the condition raised. |
msg | the error message for the condition raised. |
Implements Internal_error_handler.
|
private |
Indicates that we are already in the process of handling some error.
Allows to re-emit error/warning from the error handler without falling into infinite recursion.