• Andrei Elkin's avatar
    Bug #50192 Strange effect in replication test, trigger, auto_increment · 7db8e764
    Andrei Elkin authored
    The auto-inc unsafe warning makes sense even though it's just
    one auto-inc table could be involved via a trigger or a stored
    function.
    However its content was not updated by bug@45677 fixes continuing to mention
    two tables whereas the fixes refined semantics of replication of auto_increment 
    in stored routine.
    
    Fixed with updating the error message, renaming the error and an internal unsafe-condition 
    constants.
    
    A documentation notice
    ======================
    
          Inserting into an autoincrement column in a stored function or a trigger
          is unsafe for replication.
          Even with just one autoincrement column, if the routine is invoked more than 
          once slave is not guaranteed to execute the statement graph same way as 
          the master.
          And since it's impossible to estimate how many times a routine can be invoked at 
          the query pre-execution phase (see lock_tables), the statement is marked
          pessimistically unsafe. 
    7db8e764
sql_lex.cc 83.3 KB