~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/cache_real.h

  • Committer: Brian Aker
  • Date: 2010-12-19 06:20:54 UTC
  • mfrom: (2005.1.1 bug673105)
  • Revision ID: brian@tangent.org-20101219062054-1kt0l3dxs4z2z8md
Merge Dave.

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