2010-12-01 23:39:39 -08:00
|
|
|
--source include/have_innodb.inc
|
|
|
|
|
2020-01-13 21:07:04 +02:00
|
|
|
SET SESSION DEFAULT_STORAGE_ENGINE='InnoDB';
|
2010-12-01 23:39:39 -08:00
|
|
|
|
2019-02-03 14:56:12 -08:00
|
|
|
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;
|
2018-03-09 14:05:35 +02:00
|
|
|
--source index_intersect.test
|
2019-02-03 14:56:12 -08:00
|
|
|
set global innodb_stats_persistent= @innodb_stats_persistent_save;
|
|
|
|
set global innodb_stats_persistent_sample_pages=
|
|
|
|
@innodb_stats_persistent_sample_pages_save;
|
2010-12-01 23:39:39 -08:00
|
|
|
|
2020-01-13 21:07:04 +02:00
|
|
|
SET SESSION DEFAULT_STORAGE_ENGINE=DEFAULT;
|