1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
--echo '#---------------------BS_STVARS_045_01----------------------#'
####################################################################
# Displaying default value #
####################################################################
SELECT COUNT(@@GLOBAL.admin_ssl_key);
--echo 0 Expected
--echo '#---------------------BS_STVARS_045_02----------------------#'
####################################################################
# Check if Value can set #
####################################################################
--error ER_WRONG_TYPE_FOR_VAR
SET @@GLOBAL.admin_ssl_key=1;
--echo Expected error 'Incorrect argument type'
SELECT COUNT(@@GLOBAL.admin_ssl_key);
--echo 0 Expected
--echo '#---------------------BS_STVARS_045_03----------------------#'
#################################################################
# Check if the value in GLOBAL Table matches value in variable #
#################################################################
SELECT VARIABLE_VALUE
FROM performance_schema.global_variables
WHERE VARIABLE_NAME='admin_ssl_key';
--echo NULL Expected
SELECT COUNT(@@GLOBAL.admin_ssl_key);
--echo 0 Expected
SELECT COUNT(VARIABLE_VALUE)
FROM performance_schema.global_variables
WHERE VARIABLE_NAME='admin_ssl_key';
--echo 1 Expected
--echo '#---------------------BS_STVARS_045_04----------------------#'
################################################################################
# Check if accessing variable with and without GLOBAL point to same variable #
################################################################################
SELECT @@admin_ssl_key = @@GLOBAL.admin_ssl_key;
--echo NULL Expected
--echo '#---------------------BS_STVARS_045_05----------------------#'
################################################################################
# Check if admin_ssl_key can be accessed with and without @@ sign #
################################################################################
SELECT COUNT(@@admin_ssl_key);
--echo 0 Expected
--Error ER_INCORRECT_GLOBAL_LOCAL_VAR
SELECT COUNT(@@local.admin_ssl_key);
--echo Expected error 'Variable is a GLOBAL variable'
--Error ER_INCORRECT_GLOBAL_LOCAL_VAR
SELECT COUNT(@@SESSION.admin_ssl_key);
--echo Expected error 'Variable is a GLOBAL variable'
SELECT COUNT(@@GLOBAL.admin_ssl_key);
--echo 0 Expected
--Error ER_GLOBAL_VARIABLE
SET admin_ssl_key = @@GLOBAL.admin_ssl_key;
--echo Expected error 'Variable is a GLOBAL variable'
|