mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Followup for fix for MDEV-20169: enable main.partition_innodb
This commit is contained in:
@ -84,6 +84,8 @@ DROP TABLE t1;
|
||||
SET @old_innodb_thread_concurrency := @@innodb_thread_concurrency;
|
||||
SET @old_innodb_thread_sleep_delay := @@innodb_thread_sleep_delay;
|
||||
SET GLOBAL innodb_thread_concurrency = 1;
|
||||
Warnings:
|
||||
Warning 138 The parameter innodb_thread_concurrency is deprecated and has no effect.
|
||||
CREATE TABLE t1
|
||||
(user_num BIGINT,
|
||||
hours SMALLINT,
|
||||
@ -117,7 +119,11 @@ connection con1;
|
||||
disconnect con1;
|
||||
connection default;
|
||||
SET GLOBAL innodb_thread_concurrency = @old_innodb_thread_concurrency;
|
||||
Warnings:
|
||||
Warning 138 The parameter innodb_thread_concurrency is deprecated and has no effect.
|
||||
SET GLOBAL innodb_thread_sleep_delay = @old_innodb_thread_sleep_delay;
|
||||
Warnings:
|
||||
Warning 138 The parameter innodb_thread_sleep_delay is deprecated and has no effect.
|
||||
DROP TABLE t1;
|
||||
#
|
||||
# Bug#50418: DROP PARTITION does not interact with transactions
|
||||
|
Reference in New Issue
Block a user