1
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008 MySQL
6
* This program is free software; you can redistribute it and/or modify
7
* it under the terms of the GNU General Public License as published by
8
* the Free Software Foundation; either version 2 of the License, or
9
* (at your option) any later version.
11
* This program is distributed in the hope that it will be useful,
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
* GNU General Public License for more details.
16
* You should have received a copy of the GNU General Public License
17
* along with this program; if not, write to the Free Software
18
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21
#ifndef DRIZZLE_SERVER_FIELD_SET
22
#define DRIZZLE_SERVER_FIELD_SET
24
#include "mysql_priv.h"
26
class Field_set :public Field_enum {
28
Field_set(uchar *ptr_arg, uint32 len_arg, uchar *null_ptr_arg,
30
enum utype unireg_check_arg, const char *field_name_arg,
31
uint32 packlength_arg,
32
TYPELIB *typelib_arg, CHARSET_INFO *charset_arg)
33
:Field_enum(ptr_arg, len_arg, null_ptr_arg, null_bit_arg,
34
unireg_check_arg, field_name_arg,
36
typelib_arg,charset_arg)
38
flags=(flags & ~ENUM_FLAG) | SET_FLAG;
40
int store(const char *to,uint length,CHARSET_INFO *charset);
41
int store(double nr) { return Field_set::store((int64_t) nr, false); }
42
int store(int64_t nr, bool unsigned_val);
44
virtual bool zero_pack() const { return 1; }
45
String *val_str(String*,String *);
46
void sql_type(String &str) const;
47
enum_field_types real_type() const { return MYSQL_TYPE_SET; }
48
bool has_charset(void) const { return true; }