Package liquibase.sqlgenerator.core
Class MarkChangeSetRanGenerator
- java.lang.Object
-
- liquibase.sqlgenerator.core.AbstractSqlGenerator<MarkChangeSetRanStatement>
-
- liquibase.sqlgenerator.core.MarkChangeSetRanGenerator
-
- All Implemented Interfaces:
PrioritizedService
,SqlGenerator<MarkChangeSetRanStatement>
public class MarkChangeSetRanGenerator extends AbstractSqlGenerator<MarkChangeSetRanStatement>
-
-
Field Summary
-
Fields inherited from interface liquibase.servicelocator.PrioritizedService
COMPARATOR
-
Fields inherited from interface liquibase.sqlgenerator.SqlGenerator
EMPTY_SQL, PRIORITY_DATABASE, PRIORITY_DEFAULT
-
-
Constructor Summary
Constructors Constructor Description MarkChangeSetRanGenerator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Sql[]
generateSql(MarkChangeSetRanStatement statement, Database database, SqlGeneratorChain sqlGeneratorChain)
Generate the actual Sql for the given statement and database.protected String
getContextsColumn(ChangeSet changeSet)
protected String
getLabelsColumn(ChangeSet changeSet)
ValidationErrors
validate(MarkChangeSetRanStatement statement, Database database, SqlGeneratorChain sqlGeneratorChain)
Validate the data contained in the SqlStatement.-
Methods inherited from class liquibase.sqlgenerator.core.AbstractSqlGenerator
generateRollbackStatementsIsVolatile, generateStatementsIsVolatile, getPriority, looksLikeFunctionCall, supports, warn
-
-
-
-
Method Detail
-
validate
public ValidationErrors validate(MarkChangeSetRanStatement statement, Database database, SqlGeneratorChain sqlGeneratorChain)
Description copied from interface:SqlGenerator
Validate the data contained in the SqlStatement. If there are no errors, return an empty ValidationErrors object, not a null value. Liquibase will inspect the ValidationErrors result before attempting to call generateSql.
-
generateSql
public Sql[] generateSql(MarkChangeSetRanStatement statement, Database database, SqlGeneratorChain sqlGeneratorChain)
Description copied from interface:SqlGenerator
Generate the actual Sql for the given statement and database.
-
-