~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2008-06-29 20:10:28 UTC
  • mto: This revision was merged to the branch mainline in revision 16.
  • Revision ID: brian@tangent.org-20080629201028-923bdzz0qcjmd6cm
Cleaned up show status.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# t/locktrans_myisam.test
 
2
#
 
3
# Transactional LOCK TABLE tests
 
4
 
 
5
# Transactional lock tests require multiple sessions.
 
6
--source include/not_embedded.inc
 
7
 
 
8
## --source include/have_myisam.inc
 
9
let $engine_type= MyISAM;
 
10
 
 
11
# Storage engine does not support transactions.
 
12
let $transactional= 0;
 
13
 
 
14
# Storage engine does not support the NOWAIT option.
 
15
let $nowait_support= 0;
 
16
 
 
17
# Define a storage engine that does not support transactional locking.
 
18
let $other_non_trans_engine_type= MyISAM;
 
19
 
 
20
--source include/locktrans.inc
 
21