1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Merge branch '10.2' into 10.3

This commit is contained in:
Monty
2019-09-02 14:06:56 +03:00
671 changed files with 11116 additions and 14190 deletions

View File

@ -1,17 +1,17 @@
SET @start_value = @@global.max_connections;
SELECT @start_value;
@start_value
151
SELECT @start_value > 0;
@start_value > 0
1
'#--------------------FN_DYNVARS_074_01------------------------#'
SET @@global.max_connections = 5000;
SET @@global.max_connections = @start_value+1;
SET @@global.max_connections = DEFAULT;
SELECT @@global.max_connections;
@@global.max_connections
151
SELECT @@global.max_connections <> @start_value+1;
@@global.max_connections <> @start_value+1
1
'#---------------------FN_DYNVARS_074_02-------------------------#'
SET @@global.max_connections = @start_value;
SELECT @@global.max_connections = 151;
@@global.max_connections = 151
SELECT @@global.max_connections = @start_value;
@@global.max_connections = @start_value
1
'#--------------------FN_DYNVARS_074_03------------------------#'
SET @@global.max_connections = 100000;
@ -131,6 +131,3 @@ ERROR 42S02: Unknown table 'global' in field list
SELECT max_connections = @@session.max_connections;
ERROR 42S22: Unknown column 'max_connections' in 'field list'
SET @@global.max_connections = @start_value;
SELECT @@global.max_connections;
@@global.max_connections
151