~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/ref_null_helper.cc

  • Committer: Monty Taylor
  • Date: 2008-09-16 00:00:48 UTC
  • mto: This revision was merged to the branch mainline in revision 391.
  • Revision ID: monty@inaugust.com-20080916000048-3rvrv3gv9l0ad3gs
Fixed copyright headers in drizzled/

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, Inc.
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 "config.h"
21
 
 
22
 
#include <drizzled/item/ref.h>
23
 
#include <drizzled/item/ref_null_helper.h>
24
 
#include <drizzled/item/subselect.h>
25
 
#include <drizzled/lex_string.h>
26
 
 
27
 
namespace drizzled
28
 
{
29
 
 
30
 
double Item_ref_null_helper::val_real()
31
 
{
32
 
  assert(fixed == 1);
33
 
  double tmp= (*ref)->val_result();
34
 
  owner->was_null|= null_value= (*ref)->null_value;
35
 
  return tmp;
36
 
}
37
 
 
38
 
 
39
 
int64_t Item_ref_null_helper::val_int()
40
 
{
41
 
  assert(fixed == 1);
42
 
  int64_t tmp= (*ref)->val_int_result();
43
 
  owner->was_null|= null_value= (*ref)->null_value;
44
 
  return tmp;
45
 
}
46
 
 
47
 
 
48
 
type::Decimal *Item_ref_null_helper::val_decimal(type::Decimal *decimal_value)
49
 
{
50
 
  assert(fixed == 1);
51
 
  type::Decimal *val= (*ref)->val_decimal_result(decimal_value);
52
 
  owner->was_null|= null_value= (*ref)->null_value;
53
 
  return val;
54
 
}
55
 
 
56
 
bool Item_ref_null_helper::val_bool()
57
 
{
58
 
  assert(fixed == 1);
59
 
  bool val= (*ref)->val_bool_result();
60
 
  owner->was_null|= null_value= (*ref)->null_value;
61
 
  return val;
62
 
}
63
 
 
64
 
 
65
 
String* Item_ref_null_helper::val_str(String* s)
66
 
{
67
 
  assert(fixed == 1);
68
 
  String* tmp= (*ref)->str_result(s);
69
 
  owner->was_null|= null_value= (*ref)->null_value;
70
 
  return tmp;
71
 
}
72
 
 
73
 
bool Item_ref_null_helper::get_date(type::Time &ltime, uint32_t fuzzydate)
74
 
{
75
 
  return (owner->was_null|= null_value= (*ref)->get_date(ltime, fuzzydate));
76
 
}
77
 
 
78
 
void Item_ref_null_helper::print(String *str, enum_query_type query_type)
79
 
{
80
 
  str->append(STRING_WITH_LEN("<ref_null_helper>("));
81
 
  if (ref)
82
 
    (*ref)->print(str, query_type);
83
 
  else
84
 
    str->append('?');
85
 
  str->append(')');
86
 
}
87
 
 
88
 
} /* namespace drizzled */