1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008 Sun Microsystems
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.
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.
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
20
#include <drizzled/server_includes.h>
22
#include <drizzled/item/uint.h>
24
Item_uint::Item_uint(const char *str_arg, uint32_t length):
25
Item_int(str_arg, length)
31
Item_uint::Item_uint(const char *str_arg, int64_t i, uint32_t length):
32
Item_int(str_arg, i, length)
38
String *Item_uint::val_str(String *str)
40
// following assert is redundant, because fixed=1 assigned in constructor
42
str->set((uint64_t) value, &my_charset_bin);
46
void Item_uint::print(String *str, enum_query_type)
48
// latin1 is good enough for numbers
49
str_value.set((uint64_t) value, default_charset());
50
str->append(str_value);
53
int Item_uint::save_in_field(Field *field, bool no_conversions)
55
/* Item_int::save_in_field handles both signed and unsigned. */
56
return Item_int::save_in_field(field, no_conversions);