~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/r/innodb_notembedded.result

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

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;
2
3
create table t1 (col1 integer primary key, col2 integer) engine=innodb;
3
4
insert t1 values (1,100);
4
5
start transaction;
12
13
rollback;
13
14
rollback;
14
15
drop table t1;
 
16
SET GLOBAL log_bin_trust_function_creators = 0;