1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

mysql-5.5.41 merge

This commit is contained in:
Sergei Golubchik
2014-12-19 11:35:44 +01:00
58 changed files with 1579 additions and 246 deletions

View File

@ -109,11 +109,15 @@ SET @@session.sql_log_bin = NO;
--echo '#-------------------FN_DYNVARS_156_05----------------------------#'
###########################################################################
# Test if accessing global sql_log_bin gives error #
# Test if setting global sql_log_bin gives error, #
# and there is no error on reading it. #
###########################################################################
SELECT @@global.sql_log_bin;
--Error ER_INCORRECT_GLOBAL_LOCAL_VAR
SET @@global.sql_log_bin = 0;
SELECT @@global.sql_log_bin;
--Error ER_INCORRECT_GLOBAL_LOCAL_VAR
SET @@global.sql_log_bin = 1;
--echo '#----------------------FN_DYNVARS_156_06------------------------#'