automation-undo {crunch} | R Documentation |
Undo behavior of a Crunch Automation Script
Description
There are two ways to revert the output of a script:
-
undoScript()
- A "softer" delete of a script's created artifacts and variables, or -
revertScript()
- A "harder" revert that returns the dataset to the state it was before running such script.
Usage
undoScript(dataset, x)
revertScript(dataset, x)
scriptSavepoint(x)
## S4 method for signature 'CrunchDataset,Script'
undoScript(dataset, x)
## S4 method for signature 'CrunchDataset,ANY'
undoScript(dataset, x)
## S4 method for signature 'CrunchDataset,Script'
revertScript(dataset, x)
## S4 method for signature 'CrunchDataset,ANY'
revertScript(dataset, x)
## S4 method for signature 'Script'
scriptSavepoint(x)
Arguments
dataset |
A |
x |
A |
Details
The difference between both is that a hard revert restores the dataset, as it drops all ensuing scripts and their output (artifacts and variables), while an undo only deletes the artifacts and variables created by this script, but changes made by other scripts and this script's record will remain in place.
The function scriptSavepoint()
gets the version object
Value
For undoScript()
and revertSctipt()
, invisibly return the updated dataset.
For scriptSavePoint()
a version list object that can be used in restoreVersion()
.
See Also
runCrunchAutomation()
& script-catalog