~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/hex_string.h

  • Committer: Mark Atwood
  • Date: 2011-10-08 04:50:51 UTC
  • mfrom: (2430.1.1 rf)
  • Revision ID: me@mark.atwood.name-20111008045051-6ha1qiy7k2a9c3jv
Tags: 2011.10.27
mergeĀ lp:~olafvdspek/drizzle/refactor2

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
{
28
28
public:
29
29
  Item_hex_string() {}
30
 
  Item_hex_string(str_ref);
31
 
  Type type() const { return VARBIN_ITEM; }
 
30
  Item_hex_string(const char *str,uint32_t str_length);
 
31
  enum Type type() const { return VARBIN_ITEM; }
32
32
  double val_real()
33
33
  {
34
34
    assert(fixed == 1);