~drizzle-trunk/drizzle/development

1008.3.1 by Stewart Smith
move Item_default_value out into its own files under drizzled/item/ to make it easier to find and follow current convention
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 *
4
 *  Copyright (C) 2008 Sun Microsystems
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; version 2 of the License.
9
 *
10
 *  This program is distributed in the hope that it will be useful,
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 *  GNU General Public License for more details.
14
 *
15
 *  You should have received a copy of the GNU General Public License
16
 *  along with this program; if not, write to the Free Software
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
 */
19
1122.2.10 by Monty Taylor
Fixed all of the include guards.
20
#ifndef DRIZZLED_ITEM_DEFAULT_VALUE_H
21
#define DRIZZLED_ITEM_DEFAULT_VALUE_H
1008.3.1 by Stewart Smith
move Item_default_value out into its own files under drizzled/item/ to make it easier to find and follow current convention
22
23
#include <drizzled/item/ident.h>
24
#include <drizzled/item/field.h>
25
26
class Item_default_value : public Item_field
27
{
28
public:
29
  Item *arg;
30
  Item_default_value(Name_resolution_context *context_arg)
31
    :Item_field(context_arg, (const char *)NULL, (const char *)NULL,
32
               (const char *)NULL),
33
     arg(NULL) {}
34
  Item_default_value(Name_resolution_context *context_arg, Item *a)
35
    :Item_field(context_arg, (const char *)NULL, (const char *)NULL,
36
                (const char *)NULL),
37
     arg(a) {}
38
  enum Type type() const { return DEFAULT_VALUE_ITEM; }
39
  bool eq(const Item *item, bool binary_cmp) const;
40
  bool fix_fields(Session *, Item **);
41
  virtual void print(String *str, enum_query_type query_type);
42
  int save_in_field(Field *field_arg, bool no_conversions);
43
  table_map used_tables() const { return (table_map)0L; }
44
45
  bool walk(Item_processor processor, bool walk_subquery, unsigned char *args)
46
  {
47
    return arg->walk(processor, walk_subquery, args) ||
48
      (this->*processor)(args);
49
  }
50
51
  Item *transform(Item_transformer transformer, unsigned char *args);
52
};
53
1122.2.10 by Monty Taylor
Fixed all of the include guards.
54
#endif /* DRIZZLED_ITEM_DEFAULT_VALUE_H */