mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
MDEV-18650: Options deprecated in previous versions - storage_engine
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.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
drop table if exists t1,t3,t4,t5;
|
||||
drop database if exists test_test;
|
||||
SET SESSION STORAGE_ENGINE = MyISAM;
|
||||
SET SESSION DEFAULT_STORAGE_ENGINE = MyISAM;
|
||||
drop table if exists t1,t3,t4,t5;
|
||||
create table t1 (a int, b char(10), key a using btree (a), key b using btree (a,b));
|
||||
insert into t1 values
|
||||
|
||||
Reference in New Issue
Block a user