~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/real.h

  • Committer: Andrew Hutchings
  • Date: 2010-10-20 15:31:27 UTC
  • mto: This revision was merged to the branch mainline in revision 1907.
  • Revision ID: andrew@linuxjedi.co.uk-20101020153127-w9djuz9omzezg2kz
Add error message for global sort buffer constraint

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
               field_name_arg, dec_arg, zero_arg, unsigned_arg),
43
43
    not_fixed(dec_arg >= NOT_FIXED_DEC)
44
44
    {}
45
 
  int store_decimal(const type::Decimal *);
46
 
  type::Decimal *val_decimal(type::Decimal *);
 
45
  int store_decimal(const my_decimal *);
 
46
  my_decimal *val_decimal(my_decimal *);
47
47
  int truncate(double *nr, double max_length);
48
48
  uint32_t max_display_length() { return field_length; }
49
49
  uint32_t size_of() const { return sizeof(*this); }