summaryrefslogtreecommitdiff
path: root/mysql-test/suite/perfschema/r/binlog_stmt.result
blob: cec46b206709208bc7e0614f9c9c001df35e92f0 (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
set binlog_format=statement;
RESET MASTER;
select count(*) > 0 from performance_schema.SETUP_INSTRUMENTS;
count(*) > 0
1
update performance_schema.SETUP_INSTRUMENTS set enabled='NO'
  where name like "wait/synch/rwlock/%";
Warnings:
Note	1592	Statement may not be safe to log in statement format.
select count(*) > 0 from performance_schema.EVENTS_WAITS_CURRENT;
count(*) > 0
1
drop table if exists test.t1;
drop table if exists test.t2;
create table test.t1 (thread_id integer);
create table test.t2 (name varchar(128));
insert into test.t1
select thread_id from performance_schema.EVENTS_WAITS_CURRENT;
Warnings:
Note	1592	Statement may not be safe to log in statement format.
insert into test.t2
select name from performance_schema.SETUP_INSTRUMENTS
where name like "wait/synch/rwlock/%";
Warnings:
Note	1592	Statement may not be safe to log in statement format.
drop table test.t1;
drop table test.t2;
update performance_schema.SETUP_INSTRUMENTS set enabled='YES'
  where name like "wait/synch/rwlock/%";
Warnings:
Note	1592	Statement may not be safe to log in statement format.
show binlog events from <binlog_start>;
Log_name	Pos	Event_type	Server_id	End_log_pos	Info
master-bin.000001	#	Query	#	#	use `test`; update performance_schema.SETUP_INSTRUMENTS set enabled='NO'
  where name like "wait/synch/rwlock/%"
master-bin.000001	#	Query	#	#	use `test`; drop table if exists test.t1
master-bin.000001	#	Query	#	#	use `test`; drop table if exists test.t2
master-bin.000001	#	Query	#	#	use `test`; create table test.t1 (thread_id integer)
master-bin.000001	#	Query	#	#	use `test`; create table test.t2 (name varchar(128))
master-bin.000001	#	Query	#	#	use `test`; insert into test.t1
select thread_id from performance_schema.EVENTS_WAITS_CURRENT
master-bin.000001	#	Query	#	#	use `test`; insert into test.t2
select name from performance_schema.SETUP_INSTRUMENTS
where name like "wait/synch/rwlock/%"
master-bin.000001	#	Query	#	#	use `test`; drop table test.t1
master-bin.000001	#	Query	#	#	use `test`; drop table test.t2
master-bin.000001	#	Query	#	#	use `test`; update performance_schema.SETUP_INSTRUMENTS set enabled='YES'
  where name like "wait/synch/rwlock/%"