~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/uint.cc

move functions from item.cc/item.h to item directory

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/uint.h>
 
23
 
 
24
Item_uint::Item_uint(const char *str_arg, uint32_t length):
 
25
  Item_int(str_arg, length)
 
26
{
 
27
  unsigned_flag= 1;
 
28
}
 
29
 
 
30
 
 
31
Item_uint::Item_uint(const char *str_arg, int64_t i, uint32_t length):
 
32
  Item_int(str_arg, i, length)
 
33
{
 
34
  unsigned_flag= 1;
 
35
}
 
36
 
 
37
 
 
38
String *Item_uint::val_str(String *str)
 
39
{
 
40
  // following assert is redundant, because fixed=1 assigned in constructor
 
41
  assert(fixed == 1);
 
42
  str->set((uint64_t) value, &my_charset_bin);
 
43
  return str;
 
44
}
 
45
 
 
46
void Item_uint::print(String *str, enum_query_type)
 
47
{
 
48
  // latin1 is good enough for numbers
 
49
  str_value.set((uint64_t) value, default_charset());
 
50
  str->append(str_value);
 
51
}
 
52
 
 
53
int Item_uint::save_in_field(Field *field, bool no_conversions)
 
54
{
 
55
  /* Item_int::save_in_field handles both signed and unsigned. */
 
56
  return Item_int::save_in_field(field, no_conversions);
 
57
}
 
58
 
 
59
 
 
60