~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/t/innodb_notembedded.test

  • 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
-- source include/not_embedded.inc
1
2
-- source include/have_innodb.inc
2
3
 
3
4
--disable_warnings
12
13
# BUG#11238 - in prelocking mode SELECT .. FOR UPDATE is changed to
13
14
# non-blocking SELECT
14
15
#
 
16
SET GLOBAL log_bin_trust_function_creators = 1;
15
17
create table t1 (col1 integer primary key, col2 integer) engine=innodb;
16
18
insert t1 values (1,100);
17
19
start transaction;
29
31
drop table t1;
30
32
disconnect a;
31
33
disconnect b;
 
34
SET GLOBAL log_bin_trust_function_creators = 0;