mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
11 lines
307 B
PHP
11 lines
307 B
PHP
|
disable_query_log;
|
||
|
disable_result_log;
|
||
|
set @have_thread_concurrency=0;
|
||
|
select @have_thread_concurrency:=1 from information_schema.global_variables where variable_name='thread_concurrency';
|
||
|
if (`select @have_thread_concurrency = 0`)
|
||
|
{
|
||
|
skip Need @@thread_concurrency;
|
||
|
}
|
||
|
enable_result_log;
|
||
|
enable_query_log;
|