~drizzle-trunk/drizzle/7.0

« back to all changes in this revision

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

Merge Stewart - track what is being called in the Storage Engine in storage_engine_api_tester

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