mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
54 lines
1.9 KiB
Plaintext
54 lines
1.9 KiB
Plaintext
'#---------------------BS_STVARS_053_01----------------------#'
|
|
SELECT COUNT(@@GLOBAL.version_malloc_library);
|
|
COUNT(@@GLOBAL.version_malloc_library)
|
|
1
|
|
1 Expected
|
|
'#---------------------BS_STVARS_053_02----------------------#'
|
|
SET @@GLOBAL.version_malloc_library=1;
|
|
ERROR HY000: Variable 'version_malloc_library' is a read only variable
|
|
Expected error 'Read only variable'
|
|
SELECT COUNT(@@GLOBAL.version_malloc_library);
|
|
COUNT(@@GLOBAL.version_malloc_library)
|
|
1
|
|
1 Expected
|
|
'#---------------------BS_STVARS_053_03----------------------#'
|
|
SELECT @@GLOBAL.version_malloc_library = VARIABLE_VALUE
|
|
FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
|
|
WHERE VARIABLE_NAME='version_malloc_library';
|
|
@@GLOBAL.version_malloc_library = VARIABLE_VALUE
|
|
1
|
|
1 Expected
|
|
SELECT COUNT(@@GLOBAL.version_malloc_library);
|
|
COUNT(@@GLOBAL.version_malloc_library)
|
|
1
|
|
1 Expected
|
|
SELECT COUNT(VARIABLE_VALUE)
|
|
FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
|
|
WHERE VARIABLE_NAME='version_malloc_library';
|
|
COUNT(VARIABLE_VALUE)
|
|
1
|
|
1 Expected
|
|
'#---------------------BS_STVARS_053_04----------------------#'
|
|
SELECT @@version_malloc_library = @@GLOBAL.version_malloc_library;
|
|
@@version_malloc_library = @@GLOBAL.version_malloc_library
|
|
1
|
|
1 Expected
|
|
'#---------------------BS_STVARS_053_05----------------------#'
|
|
SELECT COUNT(@@version_malloc_library);
|
|
COUNT(@@version_malloc_library)
|
|
1
|
|
1 Expected
|
|
SELECT COUNT(@@local.version_malloc_library);
|
|
ERROR HY000: Variable 'version_malloc_library' is a GLOBAL variable
|
|
Expected error 'Variable is a GLOBAL variable'
|
|
SELECT COUNT(@@SESSION.version_malloc_library);
|
|
ERROR HY000: Variable 'version_malloc_library' is a GLOBAL variable
|
|
Expected error 'Variable is a GLOBAL variable'
|
|
SELECT COUNT(@@GLOBAL.version_malloc_library);
|
|
COUNT(@@GLOBAL.version_malloc_library)
|
|
1
|
|
1 Expected
|
|
SELECT version_malloc_library = @@SESSION.version;
|
|
ERROR 42S22: Unknown column 'version_malloc_library' in 'SELECT'
|
|
Expected error 'Readonly variable'
|