mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 22:12:30 +01:00
d9f975d08b
Adjust full test suite to work with GTID. Huge patch, mainly due to having to update .result file for all SHOW BINLOG EVENTS and mysqlbinlog outputs, where the new GTID events pop up. Everything was painstakingly checked to be still correct and valid .result file updates.
71 lines
4.5 KiB
Text
71 lines
4.5 KiB
Text
set binlog_format=statement;
|
|
call mtr.add_suppression("Unsafe statement written to the binary log using statement format since 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/sql/%"
|
|
and name not in ("wait/synch/rwlock/sql/CRYPTO_dynlock_value::lock");
|
|
Warnings:
|
|
Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves.
|
|
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 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves.
|
|
Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Mixing self-logging and non-self-logging engines in a statement is unsafe.
|
|
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");
|
|
Warnings:
|
|
Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves.
|
|
Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Mixing self-logging and non-self-logging engines in a statement is unsafe.
|
|
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");
|
|
Warnings:
|
|
Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. The statement is unsafe because it uses the general log, slow query log, or performance_schema table(s). This is unsafe because system tables may differ on slaves.
|
|
show binlog events from <binlog_start>;
|
|
Log_name Pos Event_type Server_id End_log_pos Info
|
|
master-bin.000001 # Gtid # # BEGIN GTID #-#-#
|
|
master-bin.000001 # Query # # use `test`; 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")
|
|
master-bin.000001 # Query # # COMMIT
|
|
master-bin.000001 # Gtid # # GTID #-#-#
|
|
master-bin.000001 # Query # # use `test`; DROP TABLE IF EXISTS `t1` /* generated by server */
|
|
master-bin.000001 # Gtid # # GTID #-#-#
|
|
master-bin.000001 # Query # # use `test`; DROP TABLE IF EXISTS `t2` /* generated by server */
|
|
master-bin.000001 # Gtid # # GTID #-#-#
|
|
master-bin.000001 # Query # # use `test`; create table test.t1 (thread_id integer)
|
|
master-bin.000001 # Gtid # # GTID #-#-#
|
|
master-bin.000001 # Query # # use `test`; create table test.t2 (name varchar(128))
|
|
master-bin.000001 # Gtid # # BEGIN GTID #-#-#
|
|
master-bin.000001 # Query # # use `test`; insert into test.t1
|
|
select thread_id from performance_schema.events_waits_current
|
|
master-bin.000001 # Query # # COMMIT
|
|
master-bin.000001 # Gtid # # BEGIN GTID #-#-#
|
|
master-bin.000001 # Query # # use `test`; 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")
|
|
master-bin.000001 # Query # # COMMIT
|
|
master-bin.000001 # Gtid # # GTID #-#-#
|
|
master-bin.000001 # Query # # use `test`; DROP TABLE `t1` /* generated by server */
|
|
master-bin.000001 # Gtid # # GTID #-#-#
|
|
master-bin.000001 # Query # # use `test`; DROP TABLE `t2` /* generated by server */
|
|
master-bin.000001 # Gtid # # BEGIN GTID #-#-#
|
|
master-bin.000001 # Query # # use `test`; 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")
|
|
master-bin.000001 # Query # # COMMIT
|