For caller's who are mostly sure that path do not truncate
| 157 | uint flags, bool *was_truncated); |
| 158 | // For caller's who are mostly sure that path do not truncate |
| 159 | uint inline build_table_filename(char *buff, size_t bufflen, const char *db, |
| 160 | const char *table, const char *ext, uint flags) |
| 161 | { |
| 162 | bool truncated_not_used; |
| 163 | return build_table_filename(buff, bufflen, db, table, ext, flags, |
| 164 | &truncated_not_used); |
| 165 | } |
| 166 | |
| 167 | bool fill_field_definition(THD *thd, |
| 168 | class sp_head *sp, |
no outgoing calls
no test coverage detected