~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/mix2_myisam.test

  • Committer: Monty Taylor
  • Date: 2008-08-01 22:33:44 UTC
  • mto: (236.1.42 codestyle)
  • mto: This revision was merged to the branch mainline in revision 261.
  • Revision ID: monty@inaugust.com-20080801223344-vzhlflfmtijp1imv
First pass at gettexizing the error messages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# t/mix2_myisam.test
2
 
#
3
 
# Last update: 2006-07-26 ML create this test as derivate from innodb.test
4
 
#
5
 
 
6
 
let $temp= TEMPORARY;
7
 
let $using_temp= 1;
8
 
 
9
 
let $engine_type= MyISAM;
10
 
let $other_engine_type= MEMORY;
11
 
# There are unfortunately only MyISAM and MEMORY all time available
12
 
# Therefore use here MEMORY again.
13
 
let $other_engine_type1= MEMORY;
14
 
let $other_non_trans_engine_type= MEMORY;
15
 
let $other_non_live_chks_engine_type= MEMORY;
16
 
# Therefore use here MyISAM again.
17
 
let $other_live_chks_engine_type= MyISAM;
18
 
# MyISAM does not support transactions
19
 
let $test_transactions= 0;
20
 
# MyISAM does not support FOREIGN KEYFOREIGN KEYs
21
 
let $test_foreign_keys= 0;
22
 
# MyISAM supports fulltext queries
23
 
let $fulltext_query_unsupported= 0;
24
 
# MyISAM internal autoincrement values are updated during updates
25
 
let $no_autoinc_update= 0;
26
 
# MyISAM supports keys on spatial data types
27
 
let $no_spatial_key= 0;
28