Drizzled Public API Documentation

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