~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/innodb_notembedded.result

update to latest from trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
drop table if exists t1;
2
 
SET GLOBAL log_bin_trust_function_creators = 1;
3
2
create table t1 (col1 integer primary key, col2 integer) engine=innodb;
4
3
insert t1 values (1,100);
5
4
start transaction;
13
12
rollback;
14
13
rollback;
15
14
drop table t1;
16
 
SET GLOBAL log_bin_trust_function_creators = 0;