blob: 4f58bbec1f2b114d7ddf9462a824388c1b97ffeb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
--source include/have_innodb.inc
SET SESSION DEFAULT_STORAGE_ENGINE='InnoDB';
set @innodb_stats_persistent_save= @@innodb_stats_persistent;
set @innodb_stats_persistent_sample_pages_save=
@@innodb_stats_persistent_sample_pages;
set global innodb_stats_persistent= 1;
set global innodb_stats_persistent_sample_pages=100;
--source range_vs_index_merge.test
set global innodb_stats_persistent= @innodb_stats_persistent_save;
set global innodb_stats_persistent_sample_pages=
@innodb_stats_persistent_sample_pages_save;
SET SESSION DEFAULT_STORAGE_ENGINE=DEFAULT;
|