~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/boolean.h

  • Committer: Mark Atwood
  • Date: 2011-11-11 18:23:18 UTC
  • mfrom: (2456.1.5 rf)
  • Revision ID: me@mark.atwood.name-20111111182318-skgcp9ce65fd2goa
mergeĀ lp:~olafvdspek/drizzle/refactor11

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
public:
32
32
  Boolean(const char *str_arg, bool arg) :
33
 
    Item_basic_constant(),
34
33
    value(arg)
35
34
  {
36
35
    max_length= value ? 4 : 5;
84
83
    return value_buffer;
85
84
  }
86
85
 
87
 
  type::Decimal* val_decimal(type::Decimal *dec)
 
86
  type::Decimal* val_decimal(type::Decimal*)
88
87
  {
89
 
    (void)dec;
90
88
    return 0;
91
89
  }
92
90