~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field.h

  • Committer: Brian Aker
  • Date: 2010-05-18 21:54:40 UTC
  • mto: This revision was merged to the branch mainline in revision 1540.
  • Revision ID: brian@gaz-20100518215440-ieapaanbp9yfg943
Update for Join structure changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
class CreateField;
60
60
class TableShare;
61
61
class Field;
62
 
struct st_cache_field;
 
62
struct CacheField;
63
63
 
64
64
int field_conv(Field *to,Field *from);
65
65
 
541
541
    return (uint32_t) (ptr - record);
542
542
  }
543
543
  void copy_from_tmp(int offset);
544
 
  uint32_t fill_cache_field(struct st_cache_field *copy);
 
544
  uint32_t fill_cache_field(CacheField *copy);
545
545
  virtual bool get_date(DRIZZLE_TIME *ltime,uint32_t fuzzydate);
546
546
  virtual bool get_time(DRIZZLE_TIME *ltime);
547
547
  virtual const CHARSET_INFO *charset(void) const { return &my_charset_bin; }