mirror of
https://github.com/MariaDB/server.git
synced 2025-08-24 14:48:09 +03:00
Problem: Some system functions that could return different values on master and slave were not marked unsafe. In particular: GET_LOCK IS_FREE_LOCK IS_USED_LOCK MASTER_POS_WAIT RELEASE_LOCK SLEEP SYSDATE VERSION Fix: Mark these functions unsafe.
16 lines
512 B
Plaintext
16 lines
512 B
Plaintext
# This is a wrapper for binlog.test so that the same test case can be used
|
|
# For both statement and row based bin logs 9/19/2005 [jbm]
|
|
|
|
-- source include/have_binlog_format_statement.inc
|
|
|
|
CALL mtr.add_suppression("Statement may not be safe to log in statement format.");
|
|
|
|
-- source extra/binlog_tests/mix_innodb_myisam_binlog.test
|
|
|
|
set @@session.binlog_format=statement;
|
|
-- source extra/binlog_tests/mix_innodb_myisam_side_effects.test
|
|
set @@session.binlog_format=@@global.binlog_format;
|
|
|
|
|
|
--echo end of tests
|