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 |
||
1063.9.13
by Stewart Smith
Modify include/mix2, include/varchar, mix2_myisam.test (and innodb.result as it includes the test and is affected by only whitespace from the enabling of testing against temporary tables) to deal with MyISAM being a temporary only engine. This commit includse the correct result file, which means it is affected by BUG lp:387627 and as such mix2_myisam fails on this commit. |
6 |
let $temp= TEMPORARY; |
7 |
let $using_temp= 1; |
|
8 |
||
1
by brian
clean slate |
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 |
||
29 |
-- source include/mix2.inc
|