| 5081 | |
| 5082 | |
| 5083 | static 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 | |
| 5096 | static bool |
no outgoing calls
no test coverage detected