| 3136 | */ |
| 3137 | |
| 3138 | void build_trn_path(THD *thd, const sp_name *trg_name, LEX_STRING *trn_path) |
| 3139 | { |
| 3140 | /* Construct path to the TRN-file. */ |
| 3141 | |
| 3142 | trn_path->length= build_table_filename(trn_path->str, |
| 3143 | FN_REFLEN - 1, |
| 3144 | trg_name->m_db.str, |
| 3145 | trg_name->m_name.str, |
| 3146 | TRN_EXT, |
| 3147 | 0); |
| 3148 | } |
| 3149 | |
| 3150 | |
| 3151 | /** |
no test coverage detected