| 7545 | */ |
| 7546 | |
| 7547 | bool THD::binlog_table_should_be_logged(const LEX_CSTRING *db) |
| 7548 | { |
| 7549 | return (mysql_bin_log.is_open() && |
| 7550 | (variables.option_bits & OPTION_BIN_LOG) && |
| 7551 | (wsrep_binlog_format(variables.binlog_format) != BINLOG_FORMAT_STMT || |
| 7552 | binlog_filter->db_ok(db->str))); |
| 7553 | } |
| 7554 | |
| 7555 | /* Declare in unnamed namespace. */ |
| 7556 | CPP_UNNAMED_NS_START |
no test coverage detected