~vadim-tk/percona-server/percona-5.5.15-galera

« back to all changes in this revision

Viewing changes to mysql-test/suite/sys_vars/r/report_host_basic.result

  • Committer: root
  • Date: 2011-09-10 16:37:18 UTC
  • Revision ID: root@r815.office.percona.com-20110910163718-ydh4zj8hcdgoyavb
Porting Galera to 5.5.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
select @@global.report_host;
 
2
@@global.report_host
 
3
NULL
 
4
select @@session.report_host;
 
5
ERROR HY000: Variable 'report_host' is a GLOBAL variable
 
6
show global variables like 'report_host';
 
7
Variable_name   Value
 
8
report_host     
 
9
show session variables like 'report_host';
 
10
Variable_name   Value
 
11
report_host     
 
12
select * from information_schema.global_variables where variable_name='report_host';
 
13
VARIABLE_NAME   VARIABLE_VALUE
 
14
REPORT_HOST     
 
15
select * from information_schema.session_variables where variable_name='report_host';
 
16
VARIABLE_NAME   VARIABLE_VALUE
 
17
REPORT_HOST     
 
18
set global report_host=1;
 
19
ERROR HY000: Variable 'report_host' is a read only variable
 
20
set session report_host=1;
 
21
ERROR HY000: Variable 'report_host' is a read only variable