mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
45bc7574fb
Remove usage of deprecated variable storage_engine. It was deprecated in 5.5 but it never issued a deprecation warning. Make it issue a warning in 10.5.1. Replaced with default_storage_engine.
12 lines
332 B
Text
12 lines
332 B
Text
--source include/have_innodb.inc
|
|
|
|
SET SESSION DEFAULT_STORAGE_ENGINE='InnoDB';
|
|
|
|
set @save_optimizer_switch_for_stat_tables_test=@@optimizer_switch;
|
|
set optimizer_switch='extended_keys=on';
|
|
|
|
--source stat_tables_par.test
|
|
|
|
set optimizer_switch=@save_optimizer_switch_for_stat_tables_test;
|
|
|
|
SET SESSION DEFAULT_STORAGE_ENGINE=DEFAULT;
|