Last active
September 20, 2019 07:21
-
-
Save adamw/5897a6fe3cf20825b688087ad77c6dc8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(1) BEGIN; INSERT; sendEmail(); COMMIT; | |
(2) BEGIN; INSERT; COMMIT; sendEmail(); | |
(3) sendEmail(); BEGIN; INSERT; COMMIT; | |
(4) BEGIN; sendEmail(); INSERT; COMMIT; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment