mirror of
https://github.com/MariaDB/server.git
synced 2025-05-08 15:01:49 +03:00
Don't log updates to performance schema in replication log. Ensure that we don't call ha_update after ha_index_or_rnd_end() is called on slave. .bzrignore: Ignore some generated files mysql-test/include/show_slave_status.inc: Ensure that ./ is removed from file names mysql-test/suite/perfschema/r/binlog_mix.result: Updated results mysql-test/suite/perfschema/r/binlog_row.result: Updated results mysql-test/suite/perfschema/r/binlog_stmt.result: Updated results mysql-test/suite/rpl/r/rpl_cant_read_event_incident.result: Updated results mysql-test/suite/rpl/r/rpl_performance_schema.result: Ensure that we don't crash slave when we update performance schema mysql-test/suite/rpl/t/rpl_performance_schema.test: Ensure that we don't crash slave when we update performance schema sql/log_event.cc: Ensure that we don't call ha_update after ha_index_or_rnd_end() is called. Remove old code that is not needed anymore (like restarting read loop over all rows if no matcing row is found) Simplify code sql/log_event_old.cc: Ensure that we don't call ha_update after ha_index_or_rnd_end() is called. storage/myisam/ha_myisam.cc: More DBUG_PRINT storage/perfschema/ha_perfschema.h: Don't log updates to performance schema in replication log.
43 lines
2.0 KiB
Plaintext
43 lines
2.0 KiB
Plaintext
set binlog_format=row;
|
|
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/sql/%"
|
|
and name not in ("wait/synch/rwlock/sql/CRYPTO_dynlock_value::lock");
|
|
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;
|
|
insert into test.t2
|
|
select name from performance_schema.setup_instruments
|
|
where name like "wait/synch/rwlock/sql/%"
|
|
and name not in ("wait/synch/rwlock/sql/CRYPTO_dynlock_value::lock");
|
|
drop table test.t1;
|
|
drop table test.t2;
|
|
update performance_schema.setup_instruments set enabled='YES'
|
|
where name like "wait/synch/rwlock/sql/%"
|
|
and name not in ("wait/synch/rwlock/sql/CRYPTO_dynlock_value::lock");
|
|
show binlog events from <binlog_start>;
|
|
Log_name Pos Event_type Server_id End_log_pos Info
|
|
master-bin.000001 # Query # # use `test`; DROP TABLE IF EXISTS `t1` /* generated by server */
|
|
master-bin.000001 # Query # # use `test`; DROP TABLE IF EXISTS `t2` /* generated by server */
|
|
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 # # BEGIN
|
|
master-bin.000001 # Table_map # # table_id: # (test.t1)
|
|
master-bin.000001 # Write_rows # # table_id: # flags: STMT_END_F
|
|
master-bin.000001 # Query # # COMMIT
|
|
master-bin.000001 # Query # # BEGIN
|
|
master-bin.000001 # Table_map # # table_id: # (test.t2)
|
|
master-bin.000001 # Write_rows # # table_id: # flags: STMT_END_F
|
|
master-bin.000001 # Query # # COMMIT
|
|
master-bin.000001 # Query # # use `test`; DROP TABLE `t1` /* generated by server */
|
|
master-bin.000001 # Query # # use `test`; DROP TABLE `t2` /* generated by server */
|