You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 3, 2022. It is now read-only.
The journaled storage system (in development and testing) supports logging commands about resource modifications and data modifications.
At the present moment, anyway, it is not possible to ROLLBACK to a given commit (save-point), because this would mean reverting all the commands until that point, reconstructing the storage, by issuing the reverted commands.
The idea is to support
the extension of the COMMIT and ROLLBACK to include a name of the work to commit or rollback to (eg. COMMIT 'save1' or ROLLBACK 'save1')
revert logged commands to construct the current state of the database
truncate all the modifications following the save point restored
The text was updated successfully, but these errors were encountered:
The journaled storage system (in development and testing) supports logging commands about resource modifications and data modifications.
At the present moment, anyway, it is not possible to
ROLLBACK
to a given commit (save-point), because this would mean reverting all the commands until that point, reconstructing the storage, by issuing the reverted commands.The idea is to support
COMMIT
andROLLBACK
to include a name of the work to commit or rollback to (eg.COMMIT 'save1'
orROLLBACK 'save1'
)The text was updated successfully, but these errors were encountered: