Commit 0ffdcf67 authored by asklavou's avatar asklavou

MDEV 28970: Add RESET MASTER to clear possible remaining binlog from previous test

parent 6b91792a
reset master;
set sql_log_bin=0; set sql_log_bin=0;
drop table if exists t1,v1,v2,v3,v4,v1badcheck; drop table if exists t1,v1,v2,v3,v4,v1badcheck;
drop view if exists t1,v1,v2,v3,v4,v1badcheck; drop view if exists t1,v1,v2,v3,v4,v1badcheck;
......
-- source include/have_log_bin.inc -- source include/have_log_bin.inc
reset master; # clear binlogs
set sql_log_bin=0; set sql_log_bin=0;
--disable_warnings --disable_warnings
drop table if exists t1,v1,v2,v3,v4,v1badcheck; drop table if exists t1,v1,v2,v3,v4,v1badcheck;
......
RESET MASTER;
# #
# Bug mdev-463: assertion failure when running ANALYZE with RBR on # Bug mdev-463: assertion failure when running ANALYZE with RBR on
# #
......
--source include/have_binlog_format_row.inc --source include/have_binlog_format_row.inc
--source include/have_innodb.inc --source include/have_innodb.inc
--source include/have_partition.inc --source include/have_partition.inc
RESET MASTER; # clear up binlogs
--echo # --echo #
--echo # Bug mdev-463: assertion failure when running ANALYZE with RBR on --echo # Bug mdev-463: assertion failure when running ANALYZE with RBR on
--echo # --echo #
......
reset master;
drop table if exists t1; drop table if exists t1;
create table t1 (a int, b int) engine=innodb; create table t1 (a int, b int) engine=innodb;
begin; begin;
......
reset master;
include/show_binlog_events.inc include/show_binlog_events.inc
Log_name Pos Event_type Server_id End_log_pos Info Log_name Pos Event_type Server_id End_log_pos Info
master-bin.000001 # Gtid # # GTID #-#-# master-bin.000001 # Gtid # # GTID #-#-#
......
RESET MASTER;
SET @old_isolation_level= @@session.tx_isolation; SET @old_isolation_level= @@session.tx_isolation;
SET @@session.tx_isolation= 'READ-COMMITTED'; SET @@session.tx_isolation= 'READ-COMMITTED';
CREATE DATABASE b42829; CREATE DATABASE b42829;
......
reset master;
call mtr.add_suppression("Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT"); call mtr.add_suppression("Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT");
select @@innodb_autoinc_lock_mode; select @@innodb_autoinc_lock_mode;
@@innodb_autoinc_lock_mode @@innodb_autoinc_lock_mode
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
-- source include/have_binlog_format_mixed.inc -- source include/have_binlog_format_mixed.inc
let collation=utf8_unicode_ci; let collation=utf8_unicode_ci;
--source include/have_collation.inc --source include/have_collation.inc
reset master; # clear up binlogs
--disable_warnings --disable_warnings
drop table if exists t1; drop table if exists t1;
--enable_warnings --enable_warnings
......
--source include/not_embedded.inc --source include/not_embedded.inc
--source include/have_binlog_format_statement.inc --source include/have_binlog_format_statement.inc
reset master; # clear up binlogs
--exec $MYSQL_CLIENT_TEST test_datetime_ranges_mdev15289 > $MYSQLTEST_VARDIR/log/binlog_stm_datetime_ranges_mysql_client_test.out.log 2>&1 --exec $MYSQL_CLIENT_TEST test_datetime_ranges_mdev15289 > $MYSQLTEST_VARDIR/log/binlog_stm_datetime_ranges_mysql_client_test.out.log 2>&1
--let $binlog_file = LAST --let $binlog_file = LAST
......
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
-- source include/have_log_bin.inc -- source include/have_log_bin.inc
-- source include/have_innodb.inc -- source include/have_innodb.inc
-- source include/have_binlog_format_statement.inc -- source include/have_binlog_format_statement.inc
RESET MASTER; # clear up binlogs
SET @old_isolation_level= @@session.tx_isolation; SET @old_isolation_level= @@session.tx_isolation;
SET @@session.tx_isolation= 'READ-COMMITTED'; SET @@session.tx_isolation= 'READ-COMMITTED';
......
--source include/have_innodb.inc --source include/have_innodb.inc
--source include/have_binlog_format_mixed.inc --source include/have_binlog_format_mixed.inc
reset master; #clear up binlogs
call mtr.add_suppression("Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT"); call mtr.add_suppression("Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT");
select @@innodb_autoinc_lock_mode; select @@innodb_autoinc_lock_mode;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment