| 1037 | |
| 1038 | |
| 1039 | Internal_error_handler *THD::pop_internal_handler() |
| 1040 | { |
| 1041 | DBUG_ENTER("THD::pop_internal_handler"); |
| 1042 | DBUG_ASSERT(m_internal_handler != NULL); |
| 1043 | Internal_error_handler *popped_handler= m_internal_handler; |
| 1044 | m_internal_handler= m_internal_handler->m_prev_internal_handler; |
| 1045 | DBUG_RETURN(popped_handler); |
| 1046 | } |
| 1047 | |
| 1048 | |
| 1049 | void THD::raise_error(uint sql_errno) |
no outgoing calls
no test coverage detected