18
18
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21
#ifndef DRIZZLE_SERVER_FIELD_ENUM
22
#define DRIZZLE_SERVER_FIELD_ENUM
24
#include <drizzled/field/str.h>
26
class Field_enum :public Field_str {
21
#ifndef DRIZZLED_FIELD_ENUM_H
22
#define DRIZZLED_FIELD_ENUM_H
24
#include "drizzled/field/str.h"
29
class Field_enum :public Field_str
38
static const int max_supported_elements = 0x10000;
40
/** Internal storage for the string values of the ENUM */
31
Field_enum(unsigned char *ptr_arg, uint32_t len_arg, unsigned char *null_ptr_arg,
42
Field_enum(unsigned char *ptr_arg,
44
unsigned char *null_ptr_arg,
32
45
unsigned char null_bit_arg,
33
enum utype unireg_check_arg, const char *field_name_arg,
34
uint32_t packlength_arg,
46
const char *field_name_arg,
35
47
TYPELIB *typelib_arg,
36
48
const CHARSET_INFO * const charset_arg)
37
:Field_str(ptr_arg, len_arg, null_ptr_arg, null_bit_arg,
38
unireg_check_arg, field_name_arg, charset_arg),
39
packlength(packlength_arg),typelib(typelib_arg)
43
Field *new_field(MEM_ROOT *root, Table *new_table, bool keep_type);
44
enum_field_types type() const { return DRIZZLE_TYPE_ENUM; }
45
enum Item_result cmp_type () const { return INT_RESULT; }
46
enum Item_result cast_to_int_type () const { return INT_RESULT; }
47
enum ha_base_keytype key_type() const;
48
int store(const char *to,uint32_t length, const CHARSET_INFO * const charset);
59
Field *new_field(memory::Root *root, Table *new_table, bool keep_type);
60
enum ha_base_keytype key_type() const { return HA_KEYTYPE_ULONG_INT; }
61
int store(const char *to, uint32_t length, const CHARSET_INFO * const);
49
62
int store(double nr);
50
63
int store(int64_t nr, bool unsigned_val);
51
64
double val_real(void);
52
65
int64_t val_int(void);
53
String *val_str(String*,String *);
54
int cmp(const unsigned char *,const unsigned char *);
55
void sort_string(unsigned char *buff,uint32_t length);
56
uint32_t pack_length() const { return (uint32_t) packlength; }
66
String *val_str(String*, String *);
67
int cmp(const unsigned char *, const unsigned char *);
68
void sort_string(unsigned char *buff, uint32_t length);
57
69
void store_type(uint64_t value);
58
70
void sql_type(String &str) const;
59
uint32_t size_of() const { return sizeof(*this); }
60
enum_field_types real_type() const { return DRIZZLE_TYPE_ENUM; }
61
uint32_t pack_length_from_metadata(uint32_t field_metadata)
62
{ return (field_metadata & 0x00ff); }
63
uint32_t row_pack_length() { return pack_length(); }
64
virtual bool zero_pack() const { return 0; }
65
bool optimize_range(uint32_t idx __attribute__((unused)),
66
uint32_t part __attribute__((unused)))
68
71
bool eq_def(Field *field);
69
bool has_charset(void) const { return true; }
72
enum_field_types type() const
74
return DRIZZLE_TYPE_ENUM;
76
enum Item_result cmp_type () const
80
enum Item_result cast_to_int_type () const
84
uint32_t pack_length() const { return 4; }
85
uint32_t size_of() const
89
enum_field_types real_type() const
91
return DRIZZLE_TYPE_ENUM;
93
virtual bool zero_pack() const
97
bool optimize_range(uint32_t, uint32_t)
101
bool has_charset(void) const
70
105
/* enum and set are sorted as integers */
71
106
const CHARSET_INFO *sort_charset(void) const { return &my_charset_bin; }
73
int do_save_field_metadata(unsigned char *first_byte);
109
} /* namespace drizzled */
111
#endif /* DRIZZLED_FIELD_ENUM_H */