~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/fdecimal.h

  • Committer: Brian Aker
  • Date: 2008-07-28 03:45:43 UTC
  • mfrom: (212.1.8 codestyle)
  • Revision ID: brian@tangent.org-20080728034543-qulvxdig8powjsj1
Merge from Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
  Field_new_decimal(uint32_t len_arg, bool maybe_null_arg,
45
45
                    const char *field_name_arg, uint8_t dec_arg,
46
46
                    bool unsigned_arg);
47
 
  enum_field_types type() const { return MYSQL_TYPE_NEWDECIMAL;}
 
47
  enum_field_types type() const { return DRIZZLE_TYPE_NEWDECIMAL;}
48
48
  enum ha_base_keytype key_type() const { return HA_KEYTYPE_BINARY; }
49
49
  Item_result result_type () const { return DECIMAL_RESULT; }
50
50
  int  reset(void);