~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/innodb_notembedded.test

  • Committer: Brian Aker
  • Date: 2008-11-04 15:39:09 UTC
  • mfrom: (575.1.2 devel)
  • Revision ID: brian@tangent.org-20081104153909-c72hn65udxs1ccal
Merge of Monty's work

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
# BUG#11238 - in prelocking mode SELECT .. FOR UPDATE is changed to
13
13
# non-blocking SELECT
14
14
#
15
 
SET GLOBAL log_bin_trust_function_creators = 1;
16
15
create table t1 (col1 integer primary key, col2 integer) engine=innodb;
17
16
insert t1 values (1,100);
18
17
start transaction;
30
29
drop table t1;
31
30
disconnect a;
32
31
disconnect b;
33
 
SET GLOBAL log_bin_trust_function_creators = 0;