| 532 | size_t buf_length; |
| 533 | public: |
| 534 | ErrConvString(String *str) |
| 535 | { |
| 536 | buf_length= err_conv(err_buffer, sizeof(err_buffer), str->ptr(), |
| 537 | str->length(), str->charset()); |
| 538 | } |
| 539 | |
| 540 | ErrConvString(const char *str, const CHARSET_INFO* cs) |
| 541 | { |
nothing calls this directly
no test coverage detected