mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
increase upper value of max_prepared_stmt_count to UINT32_MAX
The upper 1M limit for max_prepared_stmt_count was set over 10 years ago. It doesn't suite current hardware and a sysbench oltp_read_write test with 512 threads will hit this limit.
This commit is contained in:
committed by
Sergey Vojtovich
parent
10f6b7001b
commit
8ffbb825e6
@@ -92,9 +92,9 @@ SET @@global.max_prepared_stmt_count = 10000.01;
|
||||
SELECT @@global.max_prepared_stmt_count;
|
||||
SET @@global.max_prepared_stmt_count = -1024;
|
||||
SELECT @@global.max_prepared_stmt_count;
|
||||
SET @@global.max_prepared_stmt_count = 1048577;
|
||||
SET @@global.max_prepared_stmt_count = 4294967296;
|
||||
SELECT @@global.max_prepared_stmt_count;
|
||||
SET @@global.max_prepared_stmt_count = 104857612;
|
||||
SET @@global.max_prepared_stmt_count = 4294967295*1024;
|
||||
SELECT @@global.max_prepared_stmt_count;
|
||||
|
||||
--Error ER_WRONG_TYPE_FOR_VAR
|
||||
|
Reference in New Issue
Block a user