~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-22 20:20:39 UTC
  • mto: This revision was merged to the branch mainline in revision 1524.
  • Revision ID: jpipes@serialcoder-20100422202039-n5x48h925ixy112m
Cursor::ha_index_init() -> Cursor::startIndexScan().  Cursor::ha_index_end() -> Cursor::endIndexScan()

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
  int rnd_end();
56
56
  int rnd_pos(unsigned char * buf, unsigned char *pos);
57
57
 
58
 
  int index_init(uint32_t, bool);
 
58
  int doStartIndexScan(uint32_t, bool);
59
59
  int index_read(unsigned char *buf, const unsigned char *key_ptr,
60
60
                 uint32_t key_len, drizzled::ha_rkey_function find_flag);
61
61
 
62
62
  int index_next(unsigned char * buf);
63
 
  int index_end();
 
63
  int doEndIndexScan();
64
64
  int index_prev(unsigned char * buf);
65
65
  int index_first(unsigned char * buf);
66
66
  int index_last(unsigned char * buf);