62
62
bool zero_pack() const { return 0; }
63
63
int reset(void) { memset(ptr, 0, field_length+length_bytes); return 0; }
64
64
uint32_t pack_length() const { return (uint32_t) field_length+length_bytes; }
66
65
uint32_t key_length() const { return (uint32_t) field_length; }
67
66
uint32_t sort_length() const
69
68
return (uint32_t) field_length + (field_charset == &my_charset_bin ?
72
71
int store(const char *to,uint32_t length, const CHARSET_INFO * const charset);