~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/innodb_notembedded.test

  • Committer: Monty Taylor
  • Date: 2009-01-30 21:02:37 UTC
  • mto: (779.7.3 devel)
  • mto: This revision was merged to the branch mainline in revision 823.
  • Revision ID: mordred@inaugust.com-20090130210237-3n6ld8a9jc084jko
Commented out a test in subselect_sj - I think it might be a regression. Jay?

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;