~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-07-03 09:42:33 UTC
  • mto: This revision was merged to the branch mainline in revision 2359.
  • Revision ID: stewart@flamingspork.com-20110703094233-w7noef50554wu3o2
add ~Cursor() state to SEAPITester

Show diffs side-by-side

added added

removed removed

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