~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to include/drizzle/server/field/long.h

  • Committer: Patrick Galbraith
  • Date: 2008-07-28 01:47:41 UTC
  • mto: (212.1.8 codestyle)
  • mto: This revision was merged to the branch mainline in revision 217.
  • Revision ID: patg@ishvara-20080728014741-yoasv5trt1ef9rha
Renamed FIELD_TYPE to DRIZZLE_TYPE

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
               NONE, field_name_arg,0,0,unsigned_arg)
40
40
    {}
41
41
  enum Item_result result_type () const { return INT_RESULT; }
42
 
  enum_field_types type() const { return FIELD_TYPE_LONG;}
 
42
  enum_field_types type() const { return DRIZZLE_TYPE_LONG;}
43
43
  enum ha_base_keytype key_type() const
44
44
    { return unsigned_flag ? HA_KEYTYPE_ULONG_INT : HA_KEYTYPE_LONG_INT; }
45
45
  int store(const char *to,uint length,CHARSET_INFO *charset);