~linuxjedi/drizzle/trunk-bug-667053

« back to all changes in this revision

Viewing changes to mysql-test/t/locktrans_myisam.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
# 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