~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/hex_string.h

  • Committer: Monty Taylor
  • Date: 2009-03-08 23:45:12 UTC
  • mto: (923.2.1 mordred)
  • mto: This revision was merged to the branch mainline in revision 921.
  • Revision ID: mordred@inaugust.com-20090308234512-tqkygxtu1iaig23s
Removed C99 isnan() usage, which allows us to remove the util/math.{cc,h} workarounds. Yay for standards!

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2008 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
22
22
 
23
23
#include <drizzled/item/basic_constant.h>
24
24
 
25
 
namespace drizzled
26
 
{
27
 
 
28
25
class Item_hex_string: public Item_basic_constant
29
26
{
30
27
public:
39
36
  int64_t val_int();
40
37
  bool basic_const_item() const { return 1; }
41
38
  String *val_str(String*) { assert(fixed == 1); return &str_value; }
42
 
  type::Decimal *val_decimal(type::Decimal *);
 
39
  my_decimal *val_decimal(my_decimal *);
43
40
  int save_in_field(Field *field, bool no_conversions);
44
41
  enum Item_result result_type () const { return STRING_RESULT; }
45
42
  enum Item_result cast_to_int_type() const { return INT_RESULT; }
47
44
  virtual void print(String *str, enum_query_type query_type);
48
45
  bool eq(const Item *item, bool binary_cmp) const;
49
46
  virtual Item *safe_charset_converter(const CHARSET_INFO * const tocs);
 
47
  bool check_vcol_func_processor(unsigned char *)
 
48
  { return false; }
50
49
};
51
50
 
52
 
} /* namespace drizzled */
53
51
 
54
52
#endif /* DRIZZLED_ITEM_HEX_STRING_H */