~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/innodb_notembedded.test

  • Committer: Stewart Smith
  • Date: 2009-06-16 03:02:59 UTC
  • mto: This revision was merged to the branch mainline in revision 1065.
  • Revision ID: stewart@flamingspork.com-20090616030259-tn2thqrajk6cappd
ER_NISAMCHK is unused, mark it as so. Thanks to Paul DuBois for researching this for MySQL.

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;