~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/date.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:
35
35
                CHARSET_INFO *cs)
36
36
    :Field_str((uchar*) 0,10, maybe_null_arg ? (uchar*) "": 0,0,
37
37
               NONE, field_name_arg, cs) {}
38
 
  enum_field_types type() const { return MYSQL_TYPE_NEWDATE;}
39
 
  enum_field_types real_type() const { return MYSQL_TYPE_NEWDATE; }
 
38
  enum_field_types type() const { return DRIZZLE_TYPE_NEWDATE;}
 
39
  enum_field_types real_type() const { return DRIZZLE_TYPE_NEWDATE; }
40
40
  enum ha_base_keytype key_type() const { return HA_KEYTYPE_UINT24; }
41
41
  enum Item_result cmp_type () const { return INT_RESULT; }
42
42
  int  store(const char *to,uint length,CHARSET_INFO *charset);