~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/real.h

  • Committer: Brian Aker
  • Date: 2011-02-20 21:00:32 UTC
  • mfrom: (2181.2.6 drizzle-build)
  • Revision ID: brian@tangent.org-20110220210032-fc9g8qugt0n1yjr6
Brian Aker 2011-02-20 Merge in additional header bits for strerror_r
Brian Aker 2011-02-20 Create CONST on additional Field methods.
Brian Aker 2011-02-19 Further commit const on field.
Brian Aker 2011-02-18 This fixes DEBUG based compiles.
Brian Aker 2011-02-18 Protect all of the val_* methods from modification.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
    not_fixed(dec_arg >= NOT_FIXED_DEC)
44
44
    {}
45
45
  int store_decimal(const type::Decimal *);
46
 
  type::Decimal *val_decimal(type::Decimal *);
 
46
  type::Decimal *val_decimal(type::Decimal *) const;
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); }