~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/records.h

  • Committer: Brian Aker
  • Date: 2010-06-04 18:46:38 UTC
  • mfrom: (1578.4.13 fix)
  • mto: This revision was merged to the branch mainline in revision 1600.
  • Revision ID: brian@gir-20100604184638-w204kvdvo6bri1aj
Merge records changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
  unsigned char *record;
42
42
  unsigned char *rec_buf;                /* to read field values  after filesort */
43
43
private:
44
 
  std::vector<unsigned char> cache;
 
44
  unsigned char *cache;
45
45
public:
46
46
  unsigned char *getCache()
47
47
  {
48
 
    return &cache[0];
 
48
    return cache;
49
49
  }
50
50
  unsigned char *cache_pos;
51
51
  unsigned char *cache_end;