Package | Description |
---|---|
liquibase |
Liquibase top level namespace package.
|
liquibase.change |
The change package contains the available database "changes".
|
liquibase.change.core |
Technically, a Change expresses an intention for alter the structure of the Database.
|
liquibase.changelog | |
liquibase.sql.visitor |
Modifier and Type | Method and Description |
---|---|
CheckSum |
Liquibase.calculateCheckSum(String changeSetIdentifier) |
CheckSum |
Liquibase.calculateCheckSum(String filename,
String id,
String author) |
Modifier and Type | Method and Description |
---|---|
static CheckSum |
CheckSum.compute(InputStream stream,
boolean standardizeLineEndings)
Compute a CheckSum of the given data stream (no normalization of line endings!)
|
static CheckSum |
CheckSum.compute(String valueToChecksum)
Compute a storedCheckSum of the given string.
|
CheckSum |
AbstractChange.generateCheckSum()
Implementation generates checksum by serializing the change with
StringChangeLogSerializer |
CheckSum |
AbstractSQLChange.generateCheckSum()
Calculates the checksum based on the contained SQL.
|
CheckSum |
Change.generateCheckSum()
Calculates the checksum of this Change based on the current configuration.
|
static CheckSum |
CheckSum.parse(String checksumValue)
Parse the given storedCheckSum string value and return a new CheckSum object.
|
Modifier and Type | Method and Description |
---|---|
CheckSum |
CreateProcedureChange.generateCheckSum()
Calculates the checksum based on the contained SQL.
|
CheckSum |
CreateViewChange.generateCheckSum()
Calculates the checksum based on the contained SQL.
|
CheckSum |
LoadDataChange.generateCheckSum() |
Modifier and Type | Field and Description |
---|---|
protected CheckSum |
ChangeSet.checkSum |
Modifier and Type | Method and Description |
---|---|
CheckSum |
ChangeSet.generateCheckSum() |
CheckSum |
ChangeSetStatus.getCurrentCheckSum() |
CheckSum |
RanChangeSet.getLastCheckSum() |
CheckSum |
ChangeSetStatus.getStoredCheckSum()
Return the checksum stored from the last execution of the change set.
|
CheckSum |
ChangeSet.getStoredCheckSum()
Gets storedCheckSum
|
Modifier and Type | Method and Description |
---|---|
Set<CheckSum> |
ChangeSet.getValidCheckSums() |
Modifier and Type | Method and Description |
---|---|
boolean |
ChangeSet.isCheckSumValid(CheckSum storedCheckSum) |
void |
ChangeSetStatus.setStoredCheckSum(CheckSum storedCheckSum) |
void |
ChangeSet.setStoredCheckSum(CheckSum storedCheckSum)
Sets storedCheckSum in ValidatingVisitor in case when changeset was executed
|
Constructor and Description |
---|
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) |
Modifier and Type | Method and Description |
---|---|
CheckSum |
AbstractSqlVisitor.generateCheckSum() |
CheckSum |
SqlVisitor.generateCheckSum() |
Copyright © 2020 Liquibase.org. All rights reserved.