~drizzle-trunk/drizzle/7.0

« back to all changes in this revision

Viewing changes to plugin/storage_engine_api_tester/tests/r/txn_log_insert.result

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();
 
2
seapitester_clear_engine_state_history()
 
3
0
1
4
DROP TABLE IF EXISTS t1;
2
5
CREATE TABLE t1 (
3
6
pk int auto_increment primary key,
27
30
select seapitester_error_inject(0);
28
31
seapitester_error_inject(0)
29
32
0
 
33
select * from data_dictionary.seapitester_engine_state_history;
 
34
STATE
 
35
::max_supported_key_length()
 
36
::max_supported_key_parts()
 
37
::max_supported_keys()
 
38
::max_supported_key_part_length()
 
39
::doCreateTable()
 
40
::SEAPITester()
 
41
START STATEMENT
 
42
END STATEMENT
 
43
ROLLBACK
 
44
::SEAPITester()
 
45
BEGIN
 
46
In Transaction
 
47
END STATEMENT
 
48
COMMIT STATEMENT
 
49
In Transaction
 
50
START STATEMENT
 
51
END STATEMENT
 
52
COMMIT STATEMENT
 
53
In Transaction
 
54
START STATEMENT
 
55
END STATEMENT
 
56
ROLLBACK STATEMENT
 
57
In Transaction
 
58
START STATEMENT
 
59
END STATEMENT
 
60
COMMIT STATEMENT
 
61
In Transaction
 
62
COMMIT
 
63
::SEAPITester()
 
64
START STATEMENT
 
65
END STATEMENT
 
66
COMMIT
 
67
::SEAPITester()
 
68
START STATEMENT
 
69
END STATEMENT
 
70
ROLLBACK
 
71
::SEAPITester()
 
72
START STATEMENT
 
73
END STATEMENT
 
74
COMMIT
 
75
::SEAPITester()
 
76
select seapitester_clear_engine_state_history();
 
77
seapitester_clear_engine_state_history()
 
78
0
30
79
START TRANSACTION;
31
80
CREATE TABLE `test`.`t1` (   `pk` INT NOT NULL AUTO_INCREMENT,   `id` INT NOT NULL,   `padding` VARCHAR(200) COLLATE utf8_general_ci NOT NULL,   PRIMARY KEY (`pk`) ) ENGINE=STORAGE_ENGINE_API_TESTER COLLATE = utf8_general_ci;
32
81
COMMIT;
41
90
DROP TABLE `test`.`t1`;
42
91
COMMIT;
43
92
SET GLOBAL transaction_log_truncate_debug= true;
 
93
select * from data_dictionary.seapitester_engine_state_history;
 
94
STATE