~jlukas79/+junk/mysql-server

« back to all changes in this revision

Viewing changes to mysql-test/r/log_basic.result

manual merge 6.0-main --> 6.0-bka-review

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
'#--------------------FN_DYNVARS_062_01------------------#'
 
2
SELECT @@global.log AS INIT_VALUE;
 
3
INIT_VALUE
 
4
1
 
5
SELECT @@log AS INIT_VALUE;
 
6
INIT_VALUE
 
7
1
 
8
SET @@global.log = ON;
 
9
SET global log = 0;
 
10
'Bug# 34832: log is a system but it is not accessible using SET @@global.log;'
 
11
'SET GLOBAL log; and SELECT @@global.log. SHOW VARIABLES shows the value of log.'
 
12
'#--------------------FN_DYNVARS_062_02-------------------------#'
 
13
SELECT VARIABLE_VALUE 
 
14
FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES 
 
15
WHERE VARIABLE_NAME='log';
 
16
VARIABLE_VALUE
 
17
OFF