~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/storage_engine_api_tester/cursor_states.cc

  • Committer: Stewart Smith
  • Date: 2011-06-30 12:52:23 UTC
  • mto: This revision was merged to the branch mainline in revision 2356.
  • Revision ID: stewart@flamingspork.com-20110630125223-0tqdsc12n2i5zlhd
modify the storage_engine_api_tester test plugin to record Cursor state transitions in ENGINE_STATE_TRANSITIONS table so that we can track that Cursors are called consistently (and how they're called)

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
void load_cursor_state_transitions(state_multimap &states)
32
32
{
 
33
  states.insert(state_pair("Cursor()", "Cursor()")); // dummy for constructor
33
34
  states.insert(state_pair("Cursor()", "::doOpen()"));
34
35
  states.insert(state_pair("::doOpen()", "::store_lock()"));
35
36