~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field.h

  • Committer: Monty Taylor
  • Date: 2008-07-31 18:25:59 UTC
  • mto: (202.3.5 gettextize)
  • mto: This revision was merged to the branch mainline in revision 243.
  • Revision ID: monty@inaugust.com-20080731182559-txjt9f3dfhusxfp8
Renamed MYSQL_TIME to DRIZZLE_TIME.

Show diffs side-by-side

added added

removed removed

Lines of Context:
107
107
  virtual int  store(double nr)=0;
108
108
  virtual int  store(int64_t nr, bool unsigned_val)=0;
109
109
  virtual int  store_decimal(const my_decimal *d)=0;
110
 
  virtual int store_time(MYSQL_TIME *ltime, timestamp_type t_type);
 
110
  virtual int store_time(DRIZZLE_TIME *ltime, timestamp_type t_type);
111
111
  int store(const char *to, uint length, CHARSET_INFO *cs,
112
112
            enum_check_fields check_level);
113
113
  virtual double val_real(void)=0;
443
443
  }
444
444
  void copy_from_tmp(int offset);
445
445
  uint fill_cache_field(struct st_cache_field *copy);
446
 
  virtual bool get_date(MYSQL_TIME *ltime,uint fuzzydate);
447
 
  virtual bool get_time(MYSQL_TIME *ltime);
 
446
  virtual bool get_date(DRIZZLE_TIME *ltime,uint fuzzydate);
 
447
  virtual bool get_time(DRIZZLE_TIME *ltime);
448
448
  virtual CHARSET_INFO *charset(void) const { return &my_charset_bin; }
449
449
  virtual CHARSET_INFO *sort_charset(void) const { return charset(); }
450
450
  virtual bool has_charset(void) const { return false; }