| 845 | |
| 846 | extern "C" |
| 847 | LEX_STRING *thd_make_lex_string(THD *thd, LEX_STRING *lex_str, |
| 848 | const char *str, unsigned int size, |
| 849 | int allocate_lex_string) |
| 850 | { |
| 851 | return thd->make_lex_string(lex_str, str, size, |
| 852 | (bool) allocate_lex_string); |
| 853 | } |
| 854 | |
| 855 | extern "C" |
| 856 | void *thd_memdup(MYSQL_THD thd, const void* str, unsigned int size) |
nothing calls this directly
no test coverage detected