| 649 | enum_diagnostics_status status() const { return m_status; } |
| 650 | |
| 651 | const char *message() const |
| 652 | { DBUG_ASSERT(m_status == DA_ERROR || m_status == DA_OK); return m_message; } |
| 653 | |
| 654 | uint sql_errno() const |
| 655 | { DBUG_ASSERT(m_status == DA_ERROR); return m_sql_errno; } |
no outgoing calls
no test coverage detected