~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/records.h

Merged Drizzle's Trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
  unsigned char *ref_pos;                               /* pointer to form->refpos */
41
41
  unsigned char *record;
42
42
  unsigned char *rec_buf;                /* to read field values  after filesort */
 
43
private:
43
44
  unsigned char *cache;
 
45
public:
 
46
  unsigned char *getCache()
 
47
  {
 
48
    return cache;
 
49
  }
44
50
  unsigned char *cache_pos;
45
51
  unsigned char *cache_end;
46
52
  unsigned char *read_positions;
175
181
                            Table *table,
176
182
                            bool print_error, 
177
183
                            uint32_t idx);
 
184
 
 
185
  void init_reard_record_sequential();
 
186
 
178
187
  bool init_rr_cache();
179
188
};
180
189