~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/num.h

  • Committer: Nathan Williams
  • Date: 2009-06-05 23:18:55 UTC
  • mto: This revision was merged to the branch mainline in revision 1063.
  • Revision ID: nathanlws@gmail.com-20090605231855-8ea4406867is6grf
No actual code changes. Changed Send_field to SendField to be consistent with coding standards.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
            uint8_t dec_arg, bool zero_arg, bool unsigned_arg);
33
33
  Item_result result_type () const { return REAL_RESULT; }
34
34
  friend class CreateField;
35
 
  void make_field(Send_field *);
 
35
  void make_field(SendField *);
36
36
  uint32_t decimals() const { return (uint32_t) dec; }
37
37
  uint32_t size_of() const { return sizeof(*this); }
38
38
  bool eq_def(Field *field);