Comment 6 for bug 599582

Revision history for this message
Jay Pipes (jaypipes) wrote :

According to the MySQL manual the "algorithm" for REPLACE attempts to insert the new record, and *while it receives any key violation* on a primary or unique key, it issues a DELETE for that row.

So, in order to keep MYSQL's behaviour, you will need to create DeleteRecord messages until the InsertRecord is finally created I suppose.