WL#2687: Write non-transactional binlog events directly to binary log

Affects: Server-5.5   —   Status: Complete

Rationale
=========
Mixing transactional and non-transactional tables is not supported by the
current code-base and may lead to inconsistencies between the master and slaves.
In a nutshell, the problem stems from the fact that when mixing transactional
and non-transactional changes in in a transaction, it is often the case that the
non-transactional changes are not written to the binary log when they are made
visible, but rather are delayed and written together with the transactional
changes when the transaction commits.

For instance, consider the following statements and sessions (connections):

con1: BEGIN;
con1: INSERT INTO innodb_t values (1);
con1: UPDATE myisam_t SET a = 10;
con2: BEGIN;
con2: DELETE FROM myisam_t;
con2: COMMIT;
con1: COMMIT;

The binary log produced would look like this:

con2: BEGIN;
con2: DELETE FROM myisam_t;
con2: COMMIT;
con1: BEGIN;
con1: INSERT INTO innodb_t values (1);
con1: UPDATE myisam_t SET a = 10;
con1: COMMIT;

Clearly, on the master the table myisam_t would have with no rows. In contrast,
the slave would end up with (a = 10) in the same table. 

Consider the following statements and sessions (connections):

con1: BEGIN;
con1: INSERT INTO innodb_t values (1);
con2: INSERT INTO myisam_t values (1);
con1: UPDATE myisam_t SET a = a + 10;
con2: UPDATE myisam_t SET a = a * 10;
con1: COMMIT;

The binary log produced would look like this:

con2: INSERT INTO myisam_t values (1);
con2: UPDATE myisam_t SET a = a * 10;

con1: BEGIN;
con1: INSERT INTO innodb_t values (1);
con1: UPDATE myisam_t SET a = a + 10;
con1: COMMIT;

To simplify the reasoning, assume that the only data in table myisam_t is
(a = 1).  In such a case, the master would end up with (a = 110) and the slave
with (a = 20).

Goals
=====
The goal of this WL is to ensure that it is safe to mix changes on both
non-transactional and transactional tables under the ROW and MIXED modes.

Note however that MyISAM tables have issues since a crash might leave data in
the table on restart. So we can't guarantee results for non-transactional tables
unless they are crash-safe (see Section HLS).

Unfortunately, there is nothing that can be done to make this mixture completely
safe under the STMT mode. So, we will not change the behavior for STMT mode.

See bug:

- BUG#40278

Decisions regarding this WL
===========================
- This is a known issue with ROW in 5.1; the fix
  will therefore be pushed into the 5.1 tree.
  -- Trudy Pelzer, 2006-01-24
- Discussed with Mats Kindahl on February 9th.
  This is a larger job than anticipated and won't be
  ready in time for the 5.1 beta code freeze. It will
  be fixed in 5.2 instead.
  -- Trudy Pelzer, 2006-02-10
- Since this is only for non-transactional table updates within
  real transactions and the same problem has always existed for
  statement-based replication, Lars agrees that this is not
  needed before 5.2.
  -- Lars, 2007-02-20
-- This work should be pushed to 5.4
  -- Lars, 2009-06-09

Documentation
=============
After pushing this WL, we need to describe what is described here.

Highlights:
1 - Changing in behavior when in ROW or MIXED modes.
2 - The behavior was kept the same in STMT mode.
3 - Tagging statements as unsafe and how this influences MIXED mode.
4 - sync_bin_log does not happen per event but only when both caches 
are flushed.
5 - In general DDL events are written directly to the binary log. The
exceptions are the "CREATE TABLE ... SELECT FROM".


BUG REFERENCES / HISTORY
========================

 - CLOSED bugs were already pushed to 5.1
 - BUGS marked with WL#2687 will be fixed after WL#2687 is pushed.

|-----------+-------------------------------------------+---------+---------|
| REFERENCE | DESCRIPTION                               | STATUS  | MODE    |
|-----------+-------------------------------------------+---------+---------|
| BUG#28976 | Fixes flag issue that would               | CLOSED  | SBL     |
|           | log M stmts outside trans. boundaries     |         |         |
| BUG#40116 | Fix makes all events a transaction        | CLOSED  | SBL/RBL |
|           | to be written into the transaction cache. |         |         |
| BUG#44581 | Fixes the case where M stmts would        | CLOSED  | SBL     |
|           | lock timeout on N tables on slave         |         |         |
| BUG#45694 | Fixes the same case as BUG#44581          | CLOSED  | SBL     |
|           | but instead of lock timeout we            |         |         |
|           | have deadlock                             |         |         |
| BUG#46129 | Fixes all NTM problems for SBL            | CLOSED  | SBL     |
| BUG#46130 | Fixes Slave not correctly handling        | CLOSED  | SBL     |
|           | "expected errors"                         |         |         |
| BUG#46864 | Fixes uncovered bug by BUG#46129          | CLOSED  | SBL     |
|           | (ignored error flag on slave for          |         |         |
|           | a given stmt)                             |         |         |
| BUG#47287 | Reverts RBL behavior changed by BUG#46129 | CLOSED  | RBL     |
|-----------+-------------------------------------------+---------+---------|
| BUG#40278 | Too risky for 5.1 (lot of changes         | WL#2687 | RBL     |
|           | and refactoring around binlogging).       |         |         |
| BUG#43794 | DUPLICATE of BUG#40278                    | WL#2687 | RBL     |
| BUG#47175 | failing INSERT...SELECT in N              | WL#2687 | RBL     |
|           | table is not logged                       |         |         |
|-----------+-------------------------------------------+---------+---------|

Pushed to mysql-5.1-rep+3
=========================

revision-id: alfranio.correia@sun.com-20091103190256-637o8qxlveikrt3i