~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field.h

  • Committer: Brian Aker
  • Date: 2010-05-18 22:32:38 UTC
  • mfrom: (1539.1.7 staging)
  • Revision ID: brian@gaz-20100518223238-8jx2ciuscf11dhdo
Merge. Rename of JoinCache, ReadRecords, and a fix for Hades for stewart's
embedded work.

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; }