Set binlog format temporarily to statement. Returns old format */
| 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"); |
no outgoing calls
no test coverage detected