Rolls back the current transaction, discarding all changes made since the transaction began.
Details
This function discards all changes made since begin_transaction() was called,
reverting the database to its state before the transaction began.
Examples
if (FALSE) { # \dontrun{
begin_transaction()
# ... make changes ...
# Something went wrong, rollback
rollback_transaction()
} # }
