~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/hex_string.h

  • Committer: Brian Aker
  • Date: 2009-01-24 09:43:35 UTC
  • Revision ID: brian@gir-3.local-20090124094335-6qdtvc35gl5fvivz
Adding in an example singe thread scheduler

Show diffs side-by-side

added added

removed removed

Lines of Context:
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:
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 */