MCPcopy Create free account
hub / github.com/MariaDB/server / set_current_stmt_binlog_format_stmt

Method set_current_stmt_binlog_format_stmt

sql/sql_class.h:5459–5465  ·  view source on GitHub ↗

Set binlog format temporarily to statement. Returns old format */

Source from the content-addressed store, hash-verified

5457 }
5458 /* Set binlog format temporarily to statement. Returns old format */
5459 inline enum_binlog_format set_current_stmt_binlog_format_stmt()
5460 {
5461 enum_binlog_format orig_format= current_stmt_binlog_format;
5462 DBUG_ENTER("set_current_stmt_binlog_format_stmt");
5463 current_stmt_binlog_format= BINLOG_FORMAT_STMT;
5464 DBUG_RETURN(orig_format);
5465 }
5466 inline void restore_stmt_binlog_format(enum_binlog_format format)
5467 {
5468 DBUG_ENTER("restore_stmt_binlog_format");

Callers 13

StatementBinlogMethod · 0.80
create_eventMethod · 0.80
update_eventMethod · 0.80
drop_eventMethod · 0.80
change_passwordFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected