~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-24 21:27:54 UTC
  • mto: (2035.1.1 clean)
  • mto: This revision was merged to the branch mainline in revision 2037.
  • Revision ID: brian@tangent.org-20101224212754-85xvjullymvhibr9
Merge in cast() for BOOLEAN.

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