~drizzle-trunk/drizzle/development

642.1.11 by Lee
move functions from item.cc/item.h to item directory
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 *
1999.6.1 by kalebral at gmail
update Copyright strings to a more common format to help with creating the master debian copyright file
4
 *  Copyright (C) 2008 Sun Microsystems, Inc.
642.1.11 by Lee
move functions from item.cc/item.h to item directory
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
2234 by Brian Aker
Mass removal of ifdef/endif in favor of pragma once.
20
#pragma once
642.1.11 by Lee
move functions from item.cc/item.h to item directory
21
2173.2.1 by Monty Taylor
Fixes incorrect usage of include
22
#include <drizzled/item/field.h>
1237.9.3 by Padraig O'Sullivan
Removed one the includes I put in server_includes.h for the last commit to get rid of the inclusion
23
2318.7.19 by Olaf van der Spek
Refactor Items
24
namespace drizzled {
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
25
642.1.11 by Lee
move functions from item.cc/item.h to item directory
26
/*
27
  Item_insert_value -- an implementation of VALUES() function.
28
  You can use the VALUES(col_name) function in the UPDATE clause
29
  to refer to column values from the INSERT portion of the INSERT
30
  ... UPDATE statement. In other words, VALUES(col_name) in the
31
  UPDATE clause refers to the value of col_name that would be
32
  inserted, had no duplicate-key conflict occurred.
33
  In all other places this function returns NULL.
34
*/
35
36
class Item_insert_value : public Item_field
37
{
38
public: 
39
  Item *arg;
40
  Item_insert_value(Name_resolution_context *context_arg, Item *a)
2318.7.19 by Olaf van der Spek
Refactor Items
41
    : Item_field(context_arg, NULL, NULL, NULL),
642.1.11 by Lee
move functions from item.cc/item.h to item directory
42
     arg(a) {}
43
  bool eq(const Item *item, bool binary_cmp) const;
44
  bool fix_fields(Session *, Item **);
2215.2.1 by Stewart Smith
remove enum_query_type which was effectively unused. It was set to one value once, compared to it once (i.e. always true) and passed around everywhere doing nothing.
45
  virtual void print(String *str);
642.1.11 by Lee
move functions from item.cc/item.h to item directory
46
  int save_in_field(Field *field_arg, bool no_conversions)
47
  {
48
    return Item_field::save_in_field(field_arg, no_conversions);
49
  }
50
  /*
51
   We use RAND_TABLE_BIT to prevent Item_insert_value from
52
   being treated as a constant and precalculated before execution
53
  */
54
  table_map used_tables() const { return RAND_TABLE_BIT; }
55
56
  bool walk(Item_processor processor, bool walk_subquery, unsigned char *args)
57
  {
2318.7.19 by Olaf van der Spek
Refactor Items
58
    return arg->walk(processor, walk_subquery, args) || (this->*processor)(args);
642.1.11 by Lee
move functions from item.cc/item.h to item directory
59
  }
60
};
61
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
62
} /* namespace drizzled */
63