~stewart/drizzle/embedded-innodb-autoincrement

« back to all changes in this revision

Viewing changes to plugin/function_engine/cursor.h

  • Committer: Stewart Smith
  • Date: 2010-05-12 12:04:58 UTC
  • mfrom: (1283.120.50 staging)
  • mto: This revision was merged to the branch mainline in revision 1430.
  • Revision ID: stewart@flamingspork.com-20100512120458-grl8fnvsw00z2l1o
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
 
44
44
  int close(void);
45
45
 
46
 
  int rnd_init(bool scan);
 
46
  int doStartTableScan(bool scan);
47
47
 
48
48
  /* get the next row and copy it into buf */
49
49
  int rnd_next(unsigned char *buf);
51
51
  /* locate row pointed to by pos, copy it into buf */
52
52
  int rnd_pos(unsigned char *buf, unsigned char *pos);
53
53
 
54
 
  int rnd_end();
 
54
  int doEndTableScan();
55
55
 
56
56
  /* record position of a record for reordering */
57
57
  void position(const unsigned char *record);