blob: d1c6ac7fa1626f85e7f89f7f3d9b02d382c62fe6 (
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 index_intersect.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;
|