~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/null.cc

  • Committer: Brian Aker
  • Date: 2008-12-09 17:33:02 UTC
  • mfrom: (656.1.54 devel)
  • Revision ID: brian@tangent.org-20081209173302-aptngvc7efxnatnt
Merge from Monty.

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 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
 
 
20
#include <drizzled/server_includes.h>
 
21
#include CSTDINT_H
 
22
#include <drizzled/protocol.h>
 
23
#include <drizzled/item/null.h>
 
24
 
 
25
bool Item_null::eq(const Item *item, bool) const
 
26
{ return item->type() == type(); }
 
27
 
 
28
double Item_null::val_real()
 
29
{
 
30
  // following assert is redundant, because fixed=1 assigned in constructor
 
31
  assert(fixed == 1);
 
32
  null_value=1;
 
33
  return 0.0;
 
34
}
 
35
int64_t Item_null::val_int()
 
36
{
 
37
  // following assert is redundant, because fixed=1 assigned in constructor
 
38
  assert(fixed == 1);
 
39
  null_value=1;
 
40
  return 0;
 
41
}
 
42
/* ARGSUSED */
 
43
String *Item_null::val_str(String *)
 
44
{
 
45
  // following assert is redundant, because fixed=1 assigned in constructor
 
46
  assert(fixed == 1);
 
47
  null_value=1;
 
48
  return 0;
 
49
}
 
50
 
 
51
my_decimal *Item_null::val_decimal(my_decimal *)
 
52
{
 
53
  return 0;
 
54
}
 
55
 
 
56
Item *Item_null::safe_charset_converter(const CHARSET_INFO * const tocs)
 
57
{
 
58
  collation.set(tocs);
 
59
  return this;
 
60
}
 
61
 
 
62
/**
 
63
  Store null in field.
 
64
 
 
65
  This is used on INSERT.
 
66
  Allow NULL to be inserted in timestamp and auto_increment values.
 
67
 
 
68
  @param field          Field where we want to store NULL
 
69
 
 
70
  @retval
 
71
    0   ok
 
72
  @retval
 
73
    1   Field doesn't support NULL values and can't handle 'field = NULL'
 
74
*/
 
75
 
 
76
int Item_null::save_in_field(Field *field, bool no_conversions)
 
77
{
 
78
  return set_field_to_null_with_conversions(field, no_conversions);
 
79
}
 
80
 
 
81
/**
 
82
  Store null in field.
 
83
 
 
84
  @param field          Field where we want to store NULL
 
85
 
 
86
  @retval
 
87
    0    OK
 
88
  @retval
 
89
    1    Field doesn't support NULL values
 
90
*/
 
91
 
 
92
int Item_null::save_safe_in_field(Field *field)
 
93
{
 
94
  return set_field_to_null(field);
 
95
}
 
96
 
 
97
/**
 
98
  Pack data in buffer for sending.
 
99
*/
 
100
 
 
101
bool Item_null::send(Protocol *protocol,
 
102
                     String *)
 
103
{
 
104
  return protocol->store_null();
 
105
}
 
106
 
 
107
 
 
108
 
 
109