mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
3435e8a515
innodb_autoinc_lock_mode = 2 innodb_buffer_pool_dump_at_shutdown = ON innodb_buffer_pool_dump_pct = 25 innodb_buffer_pool_load_at_startup = ON innodb_checksum_algorithm = CRC32 innodb_file_format = Barracuda innodb_large_prefix = ON innodb_log_compressed_pages = ON innodb_purge_threads = 4 innodb_strict_mode = ON binlog_annotate_row_events = ON binlog_format = MIXED binlog-row-event-max-size = 8192 group_concat_max_len = 1M lock_wait_timeout = 86400 log_slow_admin_statements = ON log_slow_slave_statements = ON log_warnings = 2 max_allowed_packet = 16M replicate_annotate_row_events = ON slave_net_timeout = 60 sync_binlog = 1 aria_recover = BACKUP,QUICK myisam_recover_options = BACKUP,QUICK
29 lines
968 B
Text
29 lines
968 B
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 .*");
|
|
|
|
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
|