~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 22:51:06 UTC
  • mto: This revision was merged to the branch mainline in revision 1063.
  • Revision ID: nathanlws@gmail.com-20090605225106-8xrsftpf50tdpumn
No actual code changes. Changed Create_field to CreateField to be consistent with coding standards.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
            const char *field_name_arg,
32
32
            uint8_t dec_arg, bool zero_arg, bool unsigned_arg);
33
33
  Item_result result_type () const { return REAL_RESULT; }
34
 
  friend class Create_field;
 
34
  friend class CreateField;
35
35
  void make_field(Send_field *);
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);
39
39
  int store_decimal(const my_decimal *);
40
40
  my_decimal *val_decimal(my_decimal *);
41
 
  uint32_t is_equal(Create_field *new_field);
 
41
  uint32_t is_equal(CreateField *new_field);
42
42
  int check_int(const CHARSET_INFO * const cs, const char *str, int length,
43
43
                const char *int_end, int error);
44
44
  bool get_int(const CHARSET_INFO * const cs, const char *from, uint32_t len,