mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Cleanups:
- Updated help for mysql-test-run - Added OQGraph to all cmake error output regarding OQGraph to make it easier to spot problems - Suppressed warning messages from OQGraph - Added test for version_malloc_library variable mysql-test/mysql-test-run.pl: Updated help mysql-test/suite/sys_vars/r/version_malloc_library_basic.result: Added test for version_malloc_library variable mysql-test/suite/sys_vars/t/version_malloc_library_basic.test: Added test for version_malloc_library variable storage/oqgraph/CMakeLists.txt: Added OQGraph to all cmake error output regarding OQGraph to make it easier to spot problems storage/oqgraph/mysql-test/oqgraph/boundary_conditions.result: Suppressed warning messages storage/oqgraph/mysql-test/oqgraph/boundary_conditions.test: Suppressed warning messages storage/oqgraph/mysql-test/oqgraph/invalid_operations.result: Suppressed warning messages storage/oqgraph/mysql-test/oqgraph/invalid_operations.test: Suppressed warning messages storage/oqgraph/mysql-test/oqgraph/isnull.result: Suppressed warning messages storage/oqgraph/mysql-test/oqgraph/isnull.test: Suppressed warning messages storage/oqgraph/mysql-test/oqgraph/regression_1233113.result: Suppressed warning messages storage/oqgraph/mysql-test/oqgraph/regression_1233113.test: Suppressed warning messages storage/oqgraph/mysql-test/oqgraph/regression_drop_after.result: Suppressed warning messages storage/oqgraph/mysql-test/oqgraph/regression_drop_after.test: Suppressed warning messages
This commit is contained in:
@ -0,0 +1,53 @@
|
||||
'#---------------------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 'field list'
|
||||
Expected error 'Readonly variable'
|
Reference in New Issue
Block a user