mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 15:54:37 +01:00
22 lines
754 B
Text
22 lines
754 B
Text
SELECT @@MAX_STATEMENT_TIME;
|
|
@@MAX_STATEMENT_TIME
|
|
0.000000
|
|
SET STATEMENT MAX_STATEMENT_TIME=2 FOR SELECT SLEEP(1);
|
|
SLEEP(1)
|
|
0
|
|
SHOW STATUS LIKE "max_statement_time_exceeded";
|
|
Variable_name Value
|
|
Max_statement_time_exceeded 0
|
|
SET STATEMENT MAX_STATEMENT_TIME=2 FOR SELECT SLEEP(3);
|
|
SLEEP(3)
|
|
1
|
|
SHOW STATUS LIKE "max_statement_time_exceeded";
|
|
Variable_name Value
|
|
Max_statement_time_exceeded 1
|
|
SELECT @@MAX_STATEMENT_TIME;
|
|
@@MAX_STATEMENT_TIME
|
|
0.000000
|
|
set statement default_master_connection=default for select 1;
|
|
ERROR 42000: The system variable default_master_connection cannot be set in SET STATEMENT.
|
|
set statement default_master_connection=default for select 1;
|
|
ERROR 42000: The system variable default_master_connection cannot be set in SET STATEMENT.
|