Package liquibase.sqlgenerator.core
Class BatchDmlExecutablePreparedStatementGenerator
java.lang.Object
liquibase.sqlgenerator.core.AbstractSqlGenerator<BatchDmlExecutablePreparedStatement>
liquibase.sqlgenerator.core.BatchDmlExecutablePreparedStatementGenerator
- All Implemented Interfaces:
PrioritizedService,SqlGenerator<BatchDmlExecutablePreparedStatement>
public class BatchDmlExecutablePreparedStatementGenerator
extends AbstractSqlGenerator<BatchDmlExecutablePreparedStatement>
Dummy SQL generator for $
BatchDmlExecutablePreparedStatement-
Field Summary
Fields inherited from interface liquibase.servicelocator.PrioritizedService
COMPARATORFields inherited from interface liquibase.sqlgenerator.SqlGenerator
EMPTY_SQL, PRIORITY_DATABASE, PRIORITY_DEFAULT -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionSql[]generateSql(BatchDmlExecutablePreparedStatement statement, Database database, SqlGeneratorChain sqlGeneratorChain) Generate the actual Sql for the given statement and database.validate(BatchDmlExecutablePreparedStatement 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
-
Constructor Details
-
BatchDmlExecutablePreparedStatementGenerator
public BatchDmlExecutablePreparedStatementGenerator()
-
-
Method Details
-
validate
public ValidationErrors validate(BatchDmlExecutablePreparedStatement statement, Database database, SqlGeneratorChain sqlGeneratorChain) Description copied from interface:SqlGeneratorValidate 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(BatchDmlExecutablePreparedStatement statement, Database database, SqlGeneratorChain sqlGeneratorChain) Description copied from interface:SqlGeneratorGenerate the actual Sql for the given statement and database.
-