mirror of
https://github.com/MariaDB/server.git
synced 2025-11-02 02:53:04 +03:00
Clarified error messages related to unsafe statements: - avoid the internal technical term "row injection" - use 'binary log' instead of 'binlog' - avoid the word 'unsafeness'
15 lines
519 B
Plaintext
15 lines
519 B
Plaintext
stop slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
reset master;
|
|
reset slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
start slave;
|
|
call mtr.add_suppression("Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT");
|
|
DROP DATABASE IF EXISTS `#mysql50#mysqltest-1`;
|
|
CREATE DATABASE `#mysql50#mysqltest-1`;
|
|
Master position is not changed
|
|
STOP SLAVE SQL_THREAD;
|
|
Master position has been changed
|
|
DROP DATABASE `mysqltest-1`;
|
|
DROP DATABASE `#mysql50#mysqltest-1`;
|