~skinny.moey/drizzle/innodb-replication

« back to all changes in this revision

Viewing changes to plugin/storage_engine_api_tester/cursor_states.cc

  • Committer: Brian Aker
  • Date: 2010-11-08 22:35:57 UTC
  • mfrom: (1802.1.114 trunk)
  • Revision ID: brian@tangent.org-20101108223557-w3xzwp9hjjtjhtc1
MergeĀ inĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
  Copyright (C) 2010 Stewart Smith
 
3
 
 
4
  This program is free software; you can redistribute it and/or
 
5
  modify it under the terms of the GNU General Public License
 
6
  as published by the Free Software Foundation; either version 2
 
7
  of the License, or (at your option) any later version.
 
8
 
 
9
  This program is distributed in the hope that it will be useful,
 
10
  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
  GNU General Public License for more details.
 
13
 
 
14
  You should have received a copy of the GNU General Public License
 
15
  along with this program; if not, write to the Free Software
 
16
  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
17
*/
 
18
 
 
19
#include "config.h"
 
20
#include <string>
 
21
#include <map>
 
22
#include <boost/unordered_map.hpp>
 
23
 
 
24
using namespace std;
 
25
 
 
26
typedef multimap<string, string> state_multimap;
 
27
typedef multimap<string, string>::value_type state_pair;
 
28
typedef multimap<string, string>::iterator state_multimap_iter;
 
29
void load_cursor_state_transitions(state_multimap &states);
 
30
 
 
31
void load_cursor_state_transitions(state_multimap &states)
 
32
{
 
33
  states.insert(state_pair("Cursor()", "::open()"));
 
34
  states.insert(state_pair("::open()", "::store_lock()"));
 
35
  states.insert(state_pair("::store_lock()", "::doStartTableScan()"));
 
36
  states.insert(state_pair("::open()", "::doStartTableScan()"));
 
37
  states.insert(state_pair("::doStartTableScan()", "::rnd_next()"));
 
38
  states.insert(state_pair("::rnd_next()", "::doEndTableScan()"));
 
39
  states.insert(state_pair("::doEndTableScan()", "Cursor()"));
 
40
  states.insert(state_pair("::store_lock()", "::doInsertRecord()"));
 
41
  states.insert(state_pair("::doInsertRecord()", "::store_lock()"));
 
42
}