WL#3629: Replication of Invocation and Invoked Features

Affects: Server-5.1   —   Status: Complete

Replication of invocations and invoked features such as Events, User-Defined 
Functions (UDFs), and Stored Procedures must be redesigned. Specifically, 
replication of these features requires modification to the code and a unified 
design for handling the creation, modification, and deletion of the features 
and the effects of the invocations themselves. The basic principles are:

• The effects of the features should always be replicated. 
• Replicate the CREATE, ALTER, and DROP statements (using SBR) but set the 
event to SLAVESIDE_DISABLED on the slave regardless of the state specified 
(except for DROP).
• The feature implementation must reside on the slave in a renewable state so 
that if the master fails, the slave can be used as the master without loss of 
event processing.

This worklog can satisfy, in whole or in part, the following bug reports:

• BUG#16421: Events: Replication of effects doesn't work
• BUG#17857: Events: Binary logging of events does not work (duplicate of 16421)
• BUG#17671: UDF: CREATE FUNCTION binlogging problems
• BUG#20384: Events: CREATE EVENT should be blocked on slave 

Suggested plan to move forward
------------------------------
1. Document triggers, SP, SF, UDF, Events, views in a table.  How they
   are replicated, when they are disabled on slave or not, is the trigger
   executed on the slave or not?  Before pushing WL#3629, check what
   Kostja, Lars thinks about this design.

2. Think about definition of what is a server id.  What things are
   controlled today by the server id?  Should it be allowed 
   to change it on slave when it becomes new master.  I think not.

3. Can we use server id or do we need hostname, ip.  I think
   originating server id in the event table.

4. Write up recommended procedure for doing fail-over, i.e. how the
   slave should be setup as the new master.

5. Slaveside_disabled.  document that it means auto-disabled.


Documentation
-------------
See also WL#3727.

RELATED BUGS: BUG#16421, BUG#17671, BUG#20384