1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

MDEV-23397 Remove deprecated InnoDB options in 10.6

This commit is contained in:
Marko Mäkelä
2020-08-04 12:51:59 +03:00
parent 2f4bcc2494
commit e685809a3b
62 changed files with 50 additions and 3808 deletions

View File

@ -95,10 +95,6 @@ DROP TABLE t1;
--echo # SELECT is not detected
--echo #
SET @old_innodb_thread_concurrency := @@innodb_thread_concurrency;
SET @old_innodb_thread_sleep_delay := @@innodb_thread_sleep_delay;
SET GLOBAL innodb_thread_concurrency = 1;
CREATE TABLE t1
(user_num BIGINT,
hours SMALLINT,
@ -143,8 +139,6 @@ COMMIT;
--connection default
SET GLOBAL innodb_thread_concurrency = @old_innodb_thread_concurrency;
SET GLOBAL innodb_thread_sleep_delay = @old_innodb_thread_sleep_delay;
DROP TABLE t1;