~jaypipes/drizzle/new-test-runner

« back to all changes in this revision

Viewing changes to drizzled/item/direct_ref.cc

  • Committer: Jay Pipes
  • Date: 2008-12-11 17:52:34 UTC
  • mfrom: (482.16.152 testable)
  • Revision ID: jpipes@serialcoder-20081211175234-uqsfvmgxejvmellq
merge with trunk

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/item/direct_ref.h>
 
23
 
 
24
double Item_direct_ref::val_real()
 
25
{
 
26
  double tmp=(*ref)->val_real();
 
27
  null_value=(*ref)->null_value;
 
28
  return tmp;
 
29
}
 
30
 
 
31
 
 
32
int64_t Item_direct_ref::val_int()
 
33
{
 
34
  int64_t tmp=(*ref)->val_int();
 
35
  null_value=(*ref)->null_value;
 
36
  return tmp;
 
37
}
 
38
 
 
39
 
 
40
String *Item_direct_ref::val_str(String* tmp)
 
41
{
 
42
  tmp=(*ref)->val_str(tmp);
 
43
  null_value=(*ref)->null_value;
 
44
  return tmp;
 
45
}
 
46
 
 
47
my_decimal *Item_direct_ref::val_decimal(my_decimal *decimal_value)
 
48
{
 
49
  my_decimal *tmp= (*ref)->val_decimal(decimal_value);
 
50
  null_value=(*ref)->null_value;
 
51
  return tmp;
 
52
}
 
53
 
 
54
 
 
55
bool Item_direct_ref::val_bool()
 
56
{
 
57
  bool tmp= (*ref)->val_bool();
 
58
  null_value=(*ref)->null_value;
 
59
  return tmp;
 
60
}
 
61
 
 
62
 
 
63
bool Item_direct_ref::is_null()
 
64
{
 
65
  return (*ref)->is_null();
 
66
}
 
67
 
 
68
 
 
69
bool Item_direct_ref::get_date(DRIZZLE_TIME *ltime,uint32_t fuzzydate)
 
70
{
 
71
  return (null_value=(*ref)->get_date(ltime,fuzzydate));
 
72
}
 
73