| 160 | void append_identifier(THD *thd, String *packet, const char *name, |
| 161 | uint length); |
| 162 | inline void append_identifier(THD *thd, String *packet, Simple_cstring str) |
| 163 | { |
| 164 | append_identifier(thd, packet, str.ptr(), static_cast<uint>(str.length())); |
| 165 | } |
| 166 | |
| 167 | |
| 168 | void initialize_information_schema_acl(); |
no test coverage detected