mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
15 lines
202 B
Text
15 lines
202 B
Text
|
SET GLOBAL log_warnings=4;
|
||
|
SET GLOBAL max_connections=2;
|
||
|
SELECT 1;
|
||
|
1
|
||
|
1
|
||
|
SELECT 2;
|
||
|
2
|
||
|
2
|
||
|
ERROR HY000: Too many connections
|
||
|
SELECT 0;
|
||
|
0
|
||
|
0
|
||
|
SET GLOBAL log_warnings=default;
|
||
|
SET GLOBAL max_connections=default;
|