summaryrefslogtreecommitdiff
path: root/mysql-test/suite/perfschema/r/binlog_stmt.result
diff options
context:
space:
mode:
authorVladislav Vaintroub <vvaintroub@mysql.com>2010-01-14 16:07:27 +0100
committerVladislav Vaintroub <vvaintroub@mysql.com>2010-01-14 16:07:27 +0100
commit6b6f0ca461f625267738ba646a8ff869fec93801 (patch)
tree79a9c5721e01d1c680979c0a50f5be8a965fa7cf /mysql-test/suite/perfschema/r/binlog_stmt.result
parent905f48b6f367478be955e0f45de0996bda297ffc (diff)
parenta6165accb3279fe64b672fa0eeaa30ef12cf6557 (diff)
downloadmariadb-git-6b6f0ca461f625267738ba646a8ff869fec93801.tar.gz
merge
Diffstat (limited to 'mysql-test/suite/perfschema/r/binlog_stmt.result')
-rw-r--r--mysql-test/suite/perfschema/r/binlog_stmt.result48
1 files changed, 48 insertions, 0 deletions
diff --git a/mysql-test/suite/perfschema/r/binlog_stmt.result b/mysql-test/suite/perfschema/r/binlog_stmt.result
new file mode 100644
index 00000000000..cec46b20670
--- /dev/null
+++ b/mysql-test/suite/perfschema/r/binlog_stmt.result
@@ -0,0 +1,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/%"