| 868 | } |
| 869 | bool set_ascii(const char *str, size_t arg_length); |
| 870 | inline void set_buffer_if_not_allocated(char *str,size_t arg_length, |
| 871 | CHARSET_INFO *cs) |
| 872 | { |
| 873 | Binary_string::set_buffer_if_not_allocated(str, arg_length); |
| 874 | set_charset(cs); |
| 875 | } |
| 876 | bool set_int(longlong num, bool unsigned_flag, CHARSET_INFO *cs); |
| 877 | bool set(int num, CHARSET_INFO *cs) { return set_int(num, false, cs); } |
| 878 | bool set(uint num, CHARSET_INFO *cs) { return set_int(num, true, cs); } |
no outgoing calls
no test coverage detected