~stewart/drizzle/seapitester-state-history

« back to all changes in this revision

Viewing changes to plugin/storage_engine_api_tester/tests/t/select.test

  • Committer: Stewart Smith
  • Date: 2011-01-13 05:25:03 UTC
  • Revision ID: stewart@flamingspork.com-20110113052503-kmdtjjk5x4lrd7yq
modify storage_engine_api tests to check the new SEAPITESTER_ENGINE_STATE_HISTORY table for what storage engine calls were made.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
select seapitester_clear_engine_state_history();
1
2
CREATE TABLE t2 (a int) ENGINE=STORAGE_ENGINE_API_TESTER;
2
3
start transaction with consistent snapshot;
 
4
select * from data_dictionary.seapitester_engine_state_history;
 
5
select seapitester_clear_engine_state_history();
3
6
#--error 1146
4
7
select * from t2;
5
8
commit;
6
9
drop table t2;
 
10
select * from data_dictionary.seapitester_engine_state_history;
 
11
select seapitester_clear_engine_state_history();
 
12