| 7082 | */ |
| 7083 | |
| 7084 | int |
| 7085 | MYSQL_BIN_LOG::flush_cache_to_file(my_off_t *end_pos_var) |
| 7086 | { |
| 7087 | if (flush_io_cache(&log_file)) |
| 7088 | { |
| 7089 | THD *thd= current_thd; |
| 7090 | thd->commit_error= THD::CE_FLUSH_ERROR; |
| 7091 | return ER_ERROR_ON_WRITE; |
| 7092 | } |
| 7093 | *end_pos_var= my_b_tell(&log_file); |
| 7094 | return 0; |
| 7095 | } |
| 7096 | |
| 7097 | |
| 7098 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected