~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/cache_real.h

  • Committer: Lee Bieber
  • Date: 2010-12-23 23:11:00 UTC
  • mfrom: (2024.1.1 clean)
  • Revision ID: kalebral@gmail.com-20101223231100-0rqirgz7ugkl10yp
Merge Brian - session list cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
  double val_real() { assert(fixed == 1); return value; }
36
36
  int64_t val_int();
37
37
  String* val_str(String *str);
38
 
  type::Decimal *val_decimal(type::Decimal *);
 
38
  my_decimal *val_decimal(my_decimal *);
39
39
  enum Item_result result_type() const { return REAL_RESULT; }
40
40
};
41
41