Package liquibase.sqlgenerator.core
Class ReorganizeTableGeneratorDB2
java.lang.Object
liquibase.sqlgenerator.core.AbstractSqlGenerator<ReorganizeTableStatement>
liquibase.sqlgenerator.core.ReorganizeTableGeneratorDB2
- All Implemented Interfaces:
PrioritizedService
,SqlGenerator<ReorganizeTableStatement>
-
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
-
Method Summary
Modifier and TypeMethodDescriptionSql[]
generateSql
(ReorganizeTableStatement statement, Database database, SqlGeneratorChain sqlGeneratorChain) Generate the actual Sql for the given statement and database.protected Relation
getAffectedTable
(ReorganizeTableStatement statement) int
Of all the SqlGenerators that "support" a given SqlStatement/Database, SqlGeneratorFactory will return the one with the highest priority.boolean
supports
(ReorganizeTableStatement statement, Database database) Does this generator support the given statement/database combination?validate
(ReorganizeTableStatement reorganizeTableStatement, Database database, SqlGeneratorChain sqlGeneratorChain) Validate the data contained in the SqlStatement.Methods inherited from class liquibase.sqlgenerator.core.AbstractSqlGenerator
generateRollbackStatementsIsVolatile, generateStatementsIsVolatile, looksLikeFunctionCall, warn
-
Constructor Details
-
ReorganizeTableGeneratorDB2
public ReorganizeTableGeneratorDB2()
-
-
Method Details
-
getPriority
public int getPriority()Description copied from interface:SqlGenerator
Of all the SqlGenerators that "support" a given SqlStatement/Database, SqlGeneratorFactory will return the one with the highest priority.- Specified by:
getPriority
in interfacePrioritizedService
- Specified by:
getPriority
in interfaceSqlGenerator<ReorganizeTableStatement>
- Overrides:
getPriority
in classAbstractSqlGenerator<ReorganizeTableStatement>
-
supports
Description copied from interface:SqlGenerator
Does this generator support the given statement/database combination? Do not validate the statement with this method, only return if it can support it.- Specified by:
supports
in interfaceSqlGenerator<ReorganizeTableStatement>
- Overrides:
supports
in classAbstractSqlGenerator<ReorganizeTableStatement>
-
validate
public ValidationErrors validate(ReorganizeTableStatement reorganizeTableStatement, 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(ReorganizeTableStatement statement, Database database, SqlGeneratorChain sqlGeneratorChain) Description copied from interface:SqlGenerator
Generate the actual Sql for the given statement and database. -
getAffectedTable
-