mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 11:01:52 +01:00
24 lines
662 B
Text
24 lines
662 B
Text
include/master-slave.inc
|
|
[connection master]
|
|
CALL mtr.add_suppression('Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT');
|
|
CREATE TABLE t1 (a VARCHAR(1000));
|
|
INSERT INTO t1 VALUES (CONNECTION_ID());
|
|
INSERT INTO t1 VALUES (CONNECTION_ID());
|
|
INSERT INTO t1 VALUES
|
|
(CURDATE()),
|
|
(CURRENT_DATE()),
|
|
(CURRENT_TIME()),
|
|
(CURRENT_TIMESTAMP()),
|
|
(CURTIME()),
|
|
(LOCALTIME()),
|
|
(LOCALTIMESTAMP()),
|
|
(NOW()),
|
|
(UNIX_TIMESTAMP()),
|
|
(UTC_DATE()),
|
|
(UTC_TIME()),
|
|
(UTC_TIMESTAMP());
|
|
INSERT INTO t1 VALUES (RAND());
|
|
INSERT INTO t1 VALUES (LAST_INSERT_ID());
|
|
include/diff_tables.inc [master:t1, slave:t1]
|
|
DROP TABLE t1;
|
|
include/rpl_end.inc
|