~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/function_engine/cursor.h

  • Committer: Monty Taylor
  • Date: 2010-05-12 05:00:55 UTC
  • mto: (1527.1.5 staging)
  • mto: This revision was merged to the branch mainline in revision 1529.
  • Revision ID: mordred@inaugust.com-20100512050055-i0kvg8xpr9dupz54
Wrap the libraries in if BUILD_*_PLUGIN so that they don't build when we're
disabling.

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