| 2250 | */ |
| 2251 | |
| 2252 | bool add_table_for_trigger(THD *thd, |
| 2253 | const sp_name *trg_name, |
| 2254 | bool if_exists, |
| 2255 | TABLE_LIST **table) |
| 2256 | { |
| 2257 | char trn_path_buff[FN_REFLEN]; |
| 2258 | return add_table_for_trigger_internal(thd, trg_name, if_exists, |
| 2259 | table, trn_path_buff); |
| 2260 | } |
| 2261 | |
| 2262 | |
| 2263 | /** |
no test coverage detected