Uses of Class
liquibase.change.CheckSum
Package
Description
Liquibase top level namespace package.
The change package contains the available database "changes".
Technically, a Change expresses an intention for alter the structure of the Database.
Although Liquibase tries to provide a wide range of database refactorings, there are times you may want to create
your own custom refactoring class.
-
Uses of CheckSum in liquibase
Modifier and TypeMethodDescriptionfinal CheckSum
Liquibase.calculateCheckSum
(String changeSetIdentifier) Calculate the checksum for a given identifierLiquibase.calculateCheckSum
(String changeSetPath, String changeSetId, String changeSetAuthor) Calculate the checksum for a given changeset specified by path, changeset id and author -
Uses of CheckSum in liquibase.change
Modifier and TypeMethodDescriptionstatic CheckSum
CheckSum.compute
(InputStream stream, boolean standardizeLineEndings) Compute a CheckSum of the given data stream (no normalization of line endings!)static CheckSum
Compute a storedCheckSum of the given string.AbstractChange.generateCheckSum()
Implementation generates checksum by serializing the change withStringChangeLogSerializer
AbstractSQLChange.generateCheckSum()
Calculates the checksum based on the contained SQL.Change.generateCheckSum()
Calculates the checksum of this Change based on the current configuration.static CheckSum
Parse the given storedCheckSum string value and return a new CheckSum object. -
Uses of CheckSum in liquibase.change.core
Modifier and TypeMethodDescriptionCreateProcedureChange.generateCheckSum()
Calculates the checksum based on the contained SQL.CreateViewChange.generateCheckSum()
Calculates the checksum based on the contained SQL.LoadDataChange.generateCheckSum()
SQLFileChange.generateCheckSum()
protected CheckSum
CreateProcedureChange.generateCheckSumLatest
(String sqlText) -
Uses of CheckSum in liquibase.change.custom
Modifier and TypeMethodDescriptionCustomChangeChecksum.generateChecksum()
Generates a checksum for the current state of the change.CustomChangeWrapper.generateCheckSum()
-
Uses of CheckSum in liquibase.changelog
Modifier and TypeMethodDescriptionChangeSet.generateCheckSum
(ChecksumVersion version) ChangeSetStatus.getCurrentCheckSum()
ChangeSet.getStoredCheckSum()
Gets storedCheckSumChangeSetStatus.getStoredCheckSum()
Return the checksum stored from the last execution of the changeset.Modifier and TypeMethodDescriptionboolean
ChangeSet.isCheckSumValid
(CheckSum storedCheckSum) void
ChangeSet.setStoredCheckSum
(CheckSum storedCheckSum) Sets the stored checksum in the ValidatingVisitor in case the changeset was executed.void
ChangeSetStatus.setStoredCheckSum
(CheckSum storedCheckSum) ModifierConstructorDescriptionRanChangeSet
(String changeLog, String id, String author, CheckSum lastCheckSum, Date dateExecuted, String tag, ChangeSet.ExecType execType, String description, String comments, ContextExpression contextExpression, Labels labels, String deploymentId) RanChangeSet
(String changeLog, String id, String author, CheckSum lastCheckSum, Date dateExecuted, String tag, ChangeSet.ExecType execType, String description, String comments, ContextExpression contextExpression, Labels labels, String deploymentId, String storedChangeLog) -
Uses of CheckSum in liquibase.command.core
Modifier and TypeFieldDescriptionstatic final CommandResultDefinition<CheckSum>
CalculateChecksumCommandStep.CHECKSUM_RESULT
-
Uses of CheckSum in liquibase.sql.visitor
Modifier and TypeMethodDescriptionAbstractSqlVisitor.generateCheckSum()
SqlVisitor.generateCheckSum()