• davi@moksha.local's avatar
    Bug#21975 Grant and revoke statements are non-transactional · cb7486b4
    davi@moksha.local authored
    Bug#21422 GRANT/REVOKE possible inside stored function, probably in a trigger
    Bug#17244 GRANT gives strange error message when used in a stored function
    
    GRANT/REVOKE statements are non-transactional (no explicit transaction
    boundaries) in nature and hence are forbidden inside stored functions and
    triggers, but they weren't being effectively forbidden. Furthermore, the
    absence of implict commits makes changes made by GRANT/REVOKE statements to
    not be rolled back.
    
    The implemented fix is to issue a implicit commit with every GRANT/REVOKE
    statement, effectively prohibiting these statements in stored functions
    and triggers. The implicit commit also fixes the replication bug, and looks
    like being in concert with the behavior of DDL and administrative statements.
    
    Since this is a incompatible change, the following sentence should be
    added to the Manual in the very end of the 3rd paragraph, subclause
    13.4.3 "Statements That Cause an Implicit Commit": "Beginning with
    MySQL 5.0.??, the GRANT and REVOKE statements cause an implicit commit."
    
    Patch contributed by Vladimir Shebordaev
    cb7486b4
sp-error.result 46.5 KB