~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/set.h

  • Committer: Brian Aker
  • Date: 2008-08-14 20:59:41 UTC
  • Revision ID: brian@tangent.org-20080814205941-rdqc6mqguf50mvoq
Remove SET

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 
 *
4
 
 *  Copyright (C) 2008 MySQL
5
 
 *
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.
10
 
 *
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.
15
 
 *
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
19
 
 */
20
 
 
21
 
#ifndef DRIZZLE_SERVER_FIELD_SET
22
 
#define DRIZZLE_SERVER_FIELD_SET
23
 
 
24
 
class Field_set :public Field_enum {
25
 
public:
26
 
  Field_set(uchar *ptr_arg, uint32_t len_arg, uchar *null_ptr_arg,
27
 
            uchar null_bit_arg,
28
 
            enum utype unireg_check_arg, const char *field_name_arg,
29
 
            uint32_t packlength_arg,
30
 
            TYPELIB *typelib_arg, const CHARSET_INFO * const charset_arg)
31
 
    :Field_enum(ptr_arg, len_arg, null_ptr_arg, null_bit_arg,
32
 
                    unireg_check_arg, field_name_arg,
33
 
                packlength_arg,
34
 
                typelib_arg,charset_arg)
35
 
    {
36
 
      flags=(flags & ~ENUM_FLAG) | SET_FLAG;
37
 
    }
38
 
  int  store(const char *to,uint length, const CHARSET_INFO * const charset);
39
 
  int  store(double nr) { return Field_set::store((int64_t) nr, false); }
40
 
  int  store(int64_t nr, bool unsigned_val);
41
 
 
42
 
  virtual bool zero_pack() const { return 1; }
43
 
  String *val_str(String*,String *);
44
 
  void sql_type(String &str) const;
45
 
  enum_field_types real_type() const { return DRIZZLE_TYPE_SET; }
46
 
  bool has_charset(void) const { return true; }
47
 
};
48
 
 
49
 
#endif
50