~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/embedded_innodb/embedded_innodb_engine.h

  • Committer: Jay Pipes
  • Date: 2010-04-23 17:43:11 UTC
  • mto: This revision was merged to the branch mainline in revision 1524.
  • Revision ID: jpipes@serialcoder-20100423174311-ze5sq5nrbb7km2po
ha_rnd_init -> startTableScan, rnd_init -> doStartTableScan, ha_rnd_end -> endTableScan, rnd_end -> doEndTableScan

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
  int open(const char *name, int mode, uint32_t test_if_locked);
51
51
  int close(void);
52
52
  int doInsertRecord(unsigned char * buf);
53
 
  int rnd_init(bool scan);
 
53
  int doStartTableScan(bool scan);
54
54
  int rnd_next(unsigned char *buf);
55
 
  int rnd_end();
 
55
  int doEndTableScan();
56
56
  int rnd_pos(unsigned char * buf, unsigned char *pos);
57
57
 
58
58
  int doStartIndexScan(uint32_t, bool);