MCPcopy Create free account
hub / github.com/MariaDB/server / non_existing_table_error

Function non_existing_table_error

sql/handler.cc:5651–5661  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5649*/
5650
5651bool non_existing_table_error(int error)
5652{
5653 return (error == ENOENT ||
5654 (error == EE_DELETE && my_errno == ENOENT) ||
5655 error == EE_FILENOTFOUND ||
5656 error == HA_ERR_NO_SUCH_TABLE ||
5657 error == HA_ERR_UNSUPPORTED ||
5658 error == ER_NO_SUCH_TABLE ||
5659 error == ER_NO_SUCH_TABLE_IN_ENGINE ||
5660 error == ER_WRONG_OBJECT);
5661}
5662
5663
5664/**

Callers 7

handle_conditionMethod · 0.85
ha_delete_tableFunction · 0.85
delete_table_forceFunction · 0.85
mysql_rm_table_no_locksFunction · 0.85
handle_conditionMethod · 0.85
execute_drop_tableFunction · 0.85
ddl_log_execute_actionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected