~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/innodb.test

  • Committer: Patrick Crews
  • Date: 2010-08-24 16:57:49 UTC
  • mto: (1730.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1731.
  • Revision ID: gleebix@gmail.com-20100824165749-1d7kgxda1od4am3d
Pared down test run-times by dropping innodb_lock_wait_timeout to 2 sec vs. 50 sec for these test cases.  Significant improvement in runtimes seen.  May have to adjust value once it is in proper build environment

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
#######################################################################
13
13
 
14
14
-- source include/have_innodb.inc
 
15
SET @orig_lock_wait_timeout= @@innodb_lock_wait_timeout; 
 
16
SET GLOBAL innodb_lock_wait_timeout=2;
 
17
 
15
18
 
16
19
#
17
20
# Small basic test with ignore
1897
1900
SELECT * FROM t1;
1898
1901
DROP TABLE t1;
1899
1902
 
 
1903
SET GLOBAL innodb_lock_wait_timeout=@orig_lock_wait_timeout ;
 
1904
 
 
1905
 
1900
1906
#######################################################################
1901
1907
#                                                                     #
1902
1908
# Please, DO NOT TOUCH this file as well as the innodb.result file.   #