~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/embedded_innodb/embedded_innodb_engine.cc

  • 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:
1499
1499
  return(0);
1500
1500
}
1501
1501
 
1502
 
int EmbeddedInnoDBCursor::index_init(uint32_t keynr, bool)
 
1502
int EmbeddedInnoDBCursor::doStartIndexScan(uint32_t keynr, bool)
1503
1503
{
1504
1504
  ib_trx_t transaction= *get_trx(ha_session());
1505
1505
 
1681
1681
  return ret;
1682
1682
}
1683
1683
 
1684
 
int EmbeddedInnoDBCursor::index_end()
 
1684
int EmbeddedInnoDBCursor::doEndIndexScan()
1685
1685
{
1686
1686
  active_index= MAX_KEY;
1687
1687