mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
36eba98817
Changing the default server character set from latin1 to utf8mb4.
34 lines
1 KiB
Text
34 lines
1 KiB
Text
# t/mix2_myisam.test
|
|
#
|
|
# Last update: 2006-07-26 ML create this test as derivate from innodb.test
|
|
#
|
|
|
|
# Generated by an ALTER TABLE in include/mix2.inc
|
|
call mtr.add_suppression("Can't find record in .*");
|
|
|
|
--source include/test_db_charset_latin1.inc
|
|
|
|
|
|
let $engine_type= MyISAM;
|
|
let $other_engine_type= MEMORY;
|
|
# There are unfortunately only MyISAM and MEMORY all time available
|
|
# Therefore use here MEMORY again.
|
|
let $other_engine_type1= MEMORY;
|
|
let $other_non_trans_engine_type= MEMORY;
|
|
let $other_non_live_chks_engine_type= MEMORY;
|
|
# Therefore use here MyISAM again.
|
|
let $other_live_chks_engine_type= MyISAM;
|
|
# MyISAM does not support transactions
|
|
let $test_transactions= 0;
|
|
# MyISAM does not support FOREIGN KEYFOREIGN KEYs
|
|
let $test_foreign_keys= 0;
|
|
# MyISAM supports fulltext queries
|
|
let $fulltext_query_unsupported= 0;
|
|
# MyISAM internal autoincrement values are updated during updates
|
|
let $no_autoinc_update= 0;
|
|
# MyISAM supports keys on spatial data types
|
|
let $no_spatial_key= 0;
|
|
|
|
-- source include/mix2.inc
|
|
|
|
--source include/test_db_charset_restore.inc
|