| 1341 | */ |
| 1342 | |
| 1343 | TABLE_LIST* |
| 1344 | unique_table(THD *thd, TABLE_LIST *table, TABLE_LIST *table_list, |
| 1345 | uint check_flag) |
| 1346 | { |
| 1347 | return find_table(thd, table, table_list, check_flag, NULL, |
| 1348 | &unique_table_callback); |
| 1349 | } |
| 1350 | |
| 1351 | |
| 1352 | TABLE_LIST* |
no test coverage detected