https://dev.mysql.com/replication-features-floatvalues.html
This is true for operations that use floating-point values explicitly, or that use values that are converted to floating-point implicitly. With statement-based replication, values are converted from decimal to binary. Because conversions between ...
https://dev.mysql.com/replication-features-functions.html
(See also Section 17.5.1.8, “Replication of CURRENT_USER()”.) This is also true for VERSION() and RAND(). Certain functions do not replicate well under some conditions: The USER(), CURRENT_USER() (or CURRENT_USER), UUID(), VERSION(), and ...
https://dev.mysql.com/replication-features-transaction-inconsistencies.html
This remains true even if slave_parallel_workers has been changed to 0 before START SLAVE, and even if START SLAVE is used with UNTIL clauses. Inconsistencies in the sequence of transactions that have been executed from the relay log can occur ...
https://dev.mysql.com/replication-features-transactions.html
This is even true for statements affecting tables that use a nontransactional storage engine (such as MyISAM). In general, you should avoid transactions that update both transactional and nontransactional tables in a replication environment. You ...
https://dev.mysql.com/replication-features-variables.html
sql_mode is also replicated except for the NO_DIR_IN_CREATE mode; the slave always preserves its own value for NO_DIR_IN_CREATE, regardless of changes to it on the master. However, when mysqlbinlog parses a SET @@sql_mode = mode statement, the full ...
https://dev.mysql.com/replication-howto-additionalslaves.html
This is also true of the relay log index file if the relay_log_index system variable is not used. You can add another slave to an existing replication configuration without stopping the master. To do this, you can set up the new slave by copying ...
https://dev.mysql.com/replication-options-binary-log.html
Startup Options Used with Binary Logging System Variables Used with Binary Logging You can use the mysqld options and system variables that are described in this section to affect the operation of the binary log as well as to control which ...
https://dev.mysql.com/replication-options-slave.html
With this option set to 1 (TRUE), the slave does not skip events that have its own server ID. This section explains the server options and system variables that apply to slave replication servers and contains the following: Startup Options for ...
https://dev.mysql.com/replication-rbr-safe-unsafe.html
If this is true of the statement, we refer to the statement as safe; otherwise, we refer to it as unsafe. The “safeness” of a statement in MySQL replication refers to whether the statement and its effects can be replicated correctly using ...
https://dev.mysql.com/replication-rules-table-options.html
The slave checks for and evaluates table options only if either of the following two conditions is true: No matching database options were found. One or more database options were found, and were evaluated to arrive at an “execute” condition ...