MySQL 9.1.0
Source Code Documentation
|
The server can do binary logging using statement-based logging (SBL), which logs events as statements that produce data changes, or row-based logging (RBL), which logs events as changes to individual rows. It also supports mixed logging, which switches between SBL and RBL automatically as necessary.
The server's global binlog_format system variable indicates which log format is in effect. It has possible values of STATEMENT, ROW, and MIXED (not case sensitive). This system variable can be set at server startup by specifying --binlog_format
=value on the command line or in an option file. A user who has the SUPER privilege can change the log format at runtime. For example:
SET GLOBAL binlog_format = STATEMENT;
Some tests require a particular binary log format. You can exercise control over the binary log format in two ways:
The following sections describe how to use these techniques.