summaryrefslogtreecommitdiff
path: root/storage/rocksdb/mysql-test/rocksdb/r/rpl_statement.result
blob: cdf0c37e33926cc2fb12ffc951fa50854a7655b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
include/master-slave.inc
[connection master]
connection master;
drop table if exists t1;
connection master;
select @@binlog_format;
@@binlog_format
STATEMENT
create table t1 (pk int primary key) engine=rocksdb;
insert into t1 values (1),(2),(3);
ERROR HY000: Can't execute updates on master with binlog_format != ROW.
set session rocksdb_unsafe_for_binlog=on;
insert into t1 values (1),(2),(3);
select * from t1;
pk
1
2
3
delete from t1;
set session rocksdb_unsafe_for_binlog=off;
insert into t1 values (1),(2),(3);
ERROR HY000: Can't execute updates on master with binlog_format != ROW.
set binlog_format=row;
insert into t1 values (1),(2),(3);
include/sync_slave_sql_with_master.inc
connection slave;
select * from t1;
pk
1
2
3
connection master;
drop table t1;
create table t1 (id int primary key, value int, value2 int, index(value)) engine=rocksdb;
insert into t1 values (1,1,1);
insert into t1 values (2,1,1);
insert into t1 values (3,1,1);
insert into t1 values (4,1,1);
insert into t1 values (5,1,1);
update t1 set value2=100 where id=1;
update t1 set value2=200 where id=2;
update t1 set value2=300 where id=3;
include/sync_slave_sql_with_master.inc
connection slave;
select * from t1 where id=1;
id	value	value2
1	1	100
select * from t1 where id=2;
id	value	value2
2	1	200
select * from t1 where id=3;
id	value	value2
3	1	300
connection master;
drop table t1;
set binlog_format=row;
include/rpl_end.inc