1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

remove features that were deprecated in 10.5

--big-tables
--large-page-size
--storage-engine

performance_schema.setup_timers (WL#10986)
This commit is contained in:
Sergei Golubchik
2025-02-15 16:42:53 +01:00
parent 24fd8c7856
commit 11f6b9d12a
288 changed files with 16195 additions and 18183 deletions

View File

@@ -11,7 +11,7 @@ DROP TABLE IF EXISTS t1;
SHOW TABLES;
INSERT INTO t1 VALUES(0,'abc'),(100,'abc'),(200,'abc'),(300,'abc'),(400,'abc');
SELECT * FROM t1 ORDER BY c1;
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='DEFAULT_STORAGE_ENGINE'`;
--replace_result $ENGINE ENGINE
SHOW CREATE TABLE t1;
--disable_result_log
@@ -19,7 +19,7 @@ SHOW CREATE TABLE t1;
ALTER TABLE t1 OPTIMIZE PARTITION p1,p2;
--enable_result_log
SELECT * FROM t1 ORDER BY c1;
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='DEFAULT_STORAGE_ENGINE'`;
--replace_result $ENGINE ENGINE
SHOW CREATE TABLE t1;
DROP TABLE t1; SHOW TABLES;