~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
 *
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
1241.9.36 by Monty Taylor
ZOMG. I deleted drizzled/server_includes.h.
20
#include "config.h"
642.1.11 by Lee
move functions from item.cc/item.h to item directory
21
#include <drizzled/error.h>
22
#include <drizzled/name_resolution_context.h>
23
#include <drizzled/table.h>
24
#include <drizzled/item/insert_value.h>
642.1.24 by Lee
more header file cleanup
25
#include <drizzled/item/ref.h>
642.1.61 by Lee
more header file cleanup
26
#include <drizzled/item/copy_string.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
27
#include <drizzled/item/default_value.h>
642.1.11 by Lee
move functions from item.cc/item.h to item directory
28
#include <drizzled/field/null.h>
29
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
30
namespace drizzled
31
{
642.1.11 by Lee
move functions from item.cc/item.h to item directory
32
33
bool Item_insert_value::eq(const Item *item, bool binary_cmp) const
34
{
35
  return item->type() == INSERT_VALUE_ITEM &&
36
    ((Item_default_value *)item)->arg->eq(arg, binary_cmp);
37
}
38
39
bool Item_insert_value::fix_fields(Session *session, Item **)
40
{
41
  assert(fixed == 0);
42
  /* We should only check that arg is in first table */
43
  if (!arg->fixed)
44
  {
45
    bool res;
46
    TableList *orig_next_table= context->last_name_resolution_table;
47
    context->last_name_resolution_table= context->first_name_resolution_table;
48
    res= arg->fix_fields(session, &arg);
49
    context->last_name_resolution_table= orig_next_table;
50
    if (res)
51
      return true;
52
  }
53
54
  if (arg->type() == REF_ITEM)
55
  {
56
    Item_ref *ref= (Item_ref *)arg;
57
    if (ref->ref[0]->type() != FIELD_ITEM)
58
    {
59
      my_error(ER_BAD_FIELD_ERROR, MYF(0), "", "VALUES() function");
60
      return true;
61
    }
62
    arg= ref->ref[0];
63
  }
64
  /*
65
    According to our SQL grammar, VALUES() function can reference
66
    only to a column.
67
  */
68
  assert(arg->type() == FIELD_ITEM);
69
70
  Item_field *field_arg= (Item_field *)arg;
71
1672.3.5 by Brian Aker
This replaces the allocation we do for insert/update.
72
  if (field_arg->field->getTable()->insert_values.size())
642.1.11 by Lee
move functions from item.cc/item.h to item directory
73
  {
1253.1.6 by Monty Taylor
Moved mem_root functions into drizzled::memory:: namespace.
74
    Field *def_field= (Field*) memory::sql_alloc(field_arg->field->size_of());
642.1.11 by Lee
move functions from item.cc/item.h to item directory
75
    if (!def_field)
76
      return true;
77
    memcpy(def_field, field_arg->field, field_arg->field->size_of());
1122.2.12 by Monty Taylor
Removed the silly my_ptrdiff_t typedef.
78
    def_field->move_field_offset((ptrdiff_t)
1672.3.5 by Brian Aker
This replaces the allocation we do for insert/update.
79
                                 (&def_field->getTable()->insert_values[0] - def_field->getTable()->record[0]));
642.1.11 by Lee
move functions from item.cc/item.h to item directory
80
    set_field(def_field);
81
  }
82
  else
83
  {
84
    Field *tmp_field= field_arg->field;
85
    /* charset doesn't matter here, it's to avoid sigsegv only */
1119.9.12 by Jay Pipes
First phase removal of MTYP_TYPENR() macro. This removes the unireg_check argument for all Field types where it is irrelevant (everything but numeric types and timestamp.
86
    tmp_field= new Field_null(0, 0, field_arg->field->field_name, &my_charset_bin);
642.1.11 by Lee
move functions from item.cc/item.h to item directory
87
    if (tmp_field)
88
    {
1660.1.3 by Brian Aker
Encapsulate Table in field
89
      tmp_field->init(field_arg->field->getTable());
642.1.11 by Lee
move functions from item.cc/item.h to item directory
90
      set_field(tmp_field);
91
    }
92
  }
93
  return false;
94
}
95
96
97
void Item_insert_value::print(String *str, enum_query_type query_type)
98
{
99
  str->append(STRING_WITH_LEN("values("));
100
  arg->print(str, query_type);
101
  str->append(')');
102
}
103
104
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
105
} /* namespace drizzled */