~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/boolean.h

  • Committer: Brian Aker
  • Date: 2010-12-25 01:27:46 UTC
  • mto: This revision was merged to the branch mainline in revision 2031.
  • Revision ID: brian@tangent.org-20101225012746-74bry8287d0aym8s
Change my_decimal to Decimal

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
  int store(const char *to, uint32_t length, const CHARSET_INFO * const charset);
51
51
  int store(double );
52
52
  int store(int64_t nr, bool unsigned_val);
53
 
  int store_decimal(const drizzled::my_decimal*);
 
53
  int store_decimal(const drizzled::type::Decimal*);
54
54
 
55
55
  String *val_str(String*,String *);
56
56
  double val_real();
57
57
  int64_t val_int();
58
 
  my_decimal *val_decimal(my_decimal *);
 
58
  type::Decimal *val_decimal(type::Decimal *);
59
59
 
60
60
  void sql_type(drizzled::String&) const;
61
61