mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
added error message for receiving variable with wrong GLOBAL|LOCAL type
(bug #2086)
This commit is contained in:
@ -231,7 +231,7 @@ Wrong argument type to variable 'convert_character_set'
|
||||
set global autocommit=1;
|
||||
Variable 'autocommit' is a LOCAL variable and can't be used with SET GLOBAL
|
||||
select @@global.timestamp;
|
||||
Variable 'timestamp' is a LOCAL variable and can't be used with SET GLOBAL
|
||||
Variable 'timestamp' is a LOCAL variable
|
||||
set @@version='';
|
||||
Unknown system variable 'version'
|
||||
set @@concurrent_insert=1;
|
||||
@ -239,7 +239,7 @@ Variable 'concurrent_insert' is a GLOBAL variable and should be set with SET GLO
|
||||
set @@global.sql_auto_is_null=1;
|
||||
Variable 'sql_auto_is_null' is a LOCAL variable and can't be used with SET GLOBAL
|
||||
select @@global.sql_auto_is_null;
|
||||
Variable 'sql_auto_is_null' is a LOCAL variable and can't be used with SET GLOBAL
|
||||
Variable 'sql_auto_is_null' is a LOCAL variable
|
||||
set myisam_max_sort_file_size=100;
|
||||
Variable 'myisam_max_sort_file_size' is a GLOBAL variable and should be set with SET GLOBAL
|
||||
set myisam_max_extra_sort_file_size=100;
|
||||
@ -375,3 +375,5 @@ Unknown system variable 'xxxxxxxxxx'
|
||||
select 1;
|
||||
1
|
||||
1
|
||||
select @@session.key_buffer_size;
|
||||
Variable 'key_buffer_size' is a GLOBAL variable
|
||||
|
Reference in New Issue
Block a user