1
by brian
clean slate |
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 $engine_type= MyISAM; |
|
7 |
let $other_engine_type= MEMORY; |
|
8 |
# There are unfortunately only MyISAM and MEMORY all time available |
|
9 |
# Therefore use here MEMORY again. |
|
10 |
let $other_engine_type1= MEMORY; |
|
11 |
let $other_non_trans_engine_type= MEMORY; |
|
12 |
let $other_non_live_chks_engine_type= MEMORY; |
|
13 |
# Therefore use here MyISAM again. |
|
14 |
let $other_live_chks_engine_type= MyISAM; |
|
15 |
# MyISAM does not support transactions |
|
16 |
let $test_transactions= 0; |
|
17 |
# MyISAM does not support FOREIGN KEYFOREIGN KEYs |
|
18 |
let $test_foreign_keys= 0; |
|
19 |
# MyISAM supports fulltext queries |
|
20 |
let $fulltext_query_unsupported= 0; |
|
21 |
# MyISAM internal autoincrement values are updated during updates |
|
22 |
let $no_autoinc_update= 0; |
|
23 |
# MyISAM supports keys on spatial data types |
|
24 |
let $no_spatial_key= 0; |
|
25 |
||
26 |
-- source include/mix2.inc
|