~drizzle-trunk/drizzle/development

642.1.8 by Lee
move functions from item.cc/item.h to item directory
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 *
1999.6.1 by kalebral at gmail
update Copyright strings to a more common format to help with creating the master debian copyright file
4
 *  Copyright (C) 2008 Sun Microsystems, Inc.
642.1.8 by Lee
move functions from item.cc/item.h to item directory
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
2234 by Brian Aker
Mass removal of ifdef/endif in favor of pragma once.
20
#pragma once
642.1.8 by Lee
move functions from item.cc/item.h to item directory
21
642.1.61 by Lee
more header file cleanup
22
#include <drizzled/item/basic_constant.h>
23
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
24
namespace drizzled
25
{
26
642.1.8 by Lee
move functions from item.cc/item.h to item directory
27
class Item_hex_string: public Item_basic_constant
28
{
29
public:
30
  Item_hex_string() {}
31
  Item_hex_string(const char *str,uint32_t str_length);
32
  enum Type type() const { return VARBIN_ITEM; }
33
  double val_real()
34
  {
35
    assert(fixed == 1);
36
    return (double) (uint64_t) Item_hex_string::val_int();
37
  }
38
  int64_t val_int();
39
  bool basic_const_item() const { return 1; }
40
  String *val_str(String*) { assert(fixed == 1); return &str_value; }
2030.1.4 by Brian Aker
Change my_decimal to Decimal
41
  type::Decimal *val_decimal(type::Decimal *);
642.1.8 by Lee
move functions from item.cc/item.h to item directory
42
  int save_in_field(Field *field, bool no_conversions);
43
  enum Item_result result_type () const { return STRING_RESULT; }
44
  enum Item_result cast_to_int_type() const { return INT_RESULT; }
45
  enum_field_types field_type() const { return DRIZZLE_TYPE_VARCHAR; }
2215.2.1 by Stewart Smith
remove enum_query_type which was effectively unused. It was set to one value once, compared to it once (i.e. always true) and passed around everywhere doing nothing.
46
  virtual void print(String *str);
642.1.8 by Lee
move functions from item.cc/item.h to item directory
47
  bool eq(const Item *item, bool binary_cmp) const;
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
48
  virtual Item *safe_charset_converter(const charset_info_st * const tocs);
642.1.8 by Lee
move functions from item.cc/item.h to item directory
49
};
50
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
51
} /* namespace drizzled */
642.1.8 by Lee
move functions from item.cc/item.h to item directory
52