~stewart/drizzle/embedded-innodb-create-select-transaction-arrgh

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/r/rpl_report.result

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
stop slave;
 
2
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
 
3
reset master;
 
4
reset slave;
 
5
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
 
6
start slave;
 
7
select * from Information_schema.GLOBAL_VARIABLES where variable_name like 'report_host';
 
8
VARIABLE_NAME   VARIABLE_VALUE
 
9
REPORT_HOST     127.0.0.1
 
10
select * from Information_schema.GLOBAL_VARIABLES where variable_name like 'report_port';
 
11
VARIABLE_NAME   VARIABLE_VALUE
 
12
REPORT_PORT     9308
 
13
select * from Information_schema.GLOBAL_VARIABLES where variable_name like 'report_user';
 
14
VARIABLE_NAME   VARIABLE_VALUE
 
15
REPORT_USER     my_user
 
16
select * from Information_schema.GLOBAL_VARIABLES where variable_name like 'report_password';
 
17
VARIABLE_NAME   VARIABLE_VALUE
 
18
REPORT_PASSWORD my_password
 
19
show global variables like 'report_host';
 
20
Variable_name   report_host
 
21
Value   127.0.0.1
 
22
show global variables like 'report_port';
 
23
Variable_name   report_port
 
24
Value   9308
 
25
show global variables like 'report_user';
 
26
Variable_name   report_user
 
27
Value   my_user
 
28
show global variables like 'report_password';
 
29
Variable_name   report_password
 
30
Value   my_password
 
31
set @@global.report_host='my.new.address.net';
 
32
ERROR HY000: Variable 'report_host' is a read only variable
 
33
end of tests