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

Function internal_table_exists

sql/sql_base.cc:5083–5093  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5081
5082
5083static TABLE_LIST *internal_table_exists(TABLE_LIST *global_list,
5084 TABLE_LIST *table)
5085{
5086 do
5087 {
5088 if (global_list->table_name.str == table->table_name.str &&
5089 global_list->db.str == table->db.str)
5090 return global_list;
5091 } while ((global_list= global_list->next_global));
5092 return 0;
5093}
5094
5095
5096static bool

Callers 1

add_internal_tablesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected