mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +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:
@ -145,15 +145,15 @@ connect (a,localhost,root,,);
|
||||
connect (b,localhost,root,,);
|
||||
connect (c,localhost,root,,);
|
||||
connect (d,localhost,root,,);
|
||||
eval SET SESSION STORAGE_ENGINE = $engine_type;
|
||||
eval SET SESSION DEFAULT_STORAGE_ENGINE = $engine_type;
|
||||
connect (e,localhost,root,,);
|
||||
connect (f,localhost,root,,);
|
||||
connect (g,localhost,root,,);
|
||||
eval SET SESSION STORAGE_ENGINE = $engine_type;
|
||||
eval SET SESSION DEFAULT_STORAGE_ENGINE = $engine_type;
|
||||
connect (h,localhost,root,,);
|
||||
connect (i,localhost,root,,);
|
||||
connect (j,localhost,root,,);
|
||||
eval SET SESSION STORAGE_ENGINE = $engine_type;
|
||||
eval SET SESSION DEFAULT_STORAGE_ENGINE = $engine_type;
|
||||
connection a;
|
||||
eval create table t1(a int not null, b int, primary key(a)) engine = $engine_type;
|
||||
insert into t1 values (1,2),(5,3),(4,2);
|
||||
|
Reference in New Issue
Block a user