liquibase.sqlgenerator.core
Class CreateProcedureGenerator
java.lang.Object
liquibase.sqlgenerator.core.AbstractSqlGenerator<CreateProcedureStatement>
liquibase.sqlgenerator.core.CreateProcedureGenerator
- All Implemented Interfaces:
- PrioritizedService, SqlGenerator<CreateProcedureStatement>
public class CreateProcedureGenerator
- extends AbstractSqlGenerator<CreateProcedureStatement>
Method Summary |
static String |
addSchemaToText(String procedureText,
String schemaName,
String keywordBeforeName,
Database database)
Convenience method for other classes similar to this that want to be able to modify the procedure text to add the schema |
Sql[] |
generateSql(CreateProcedureStatement statement,
Database database,
SqlGeneratorChain sqlGeneratorChain)
Generate the actual Sql for the given statement and database. |
static String |
removeTrailingDelimiter(String procedureText,
String endDelimiter)
|
static void |
surroundWithSchemaSets(List<Sql> sql,
String schemaName,
Database database)
Convenience method for when the schemaName is set but we don't want to parse the body |
ValidationErrors |
validate(CreateProcedureStatement statement,
Database database,
SqlGeneratorChain sqlGeneratorChain)
Validate the data contained in the SqlStatement. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
CreateProcedureGenerator
public CreateProcedureGenerator()
validate
public ValidationErrors validate(CreateProcedureStatement 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(CreateProcedureStatement statement,
Database database,
SqlGeneratorChain sqlGeneratorChain)
- Description copied from interface:
SqlGenerator
- Generate the actual Sql for the given statement and database.
removeTrailingDelimiter
public static String removeTrailingDelimiter(String procedureText,
String endDelimiter)
surroundWithSchemaSets
public static void surroundWithSchemaSets(List<Sql> sql,
String schemaName,
Database database)
- Convenience method for when the schemaName is set but we don't want to parse the body
addSchemaToText
public static String addSchemaToText(String procedureText,
String schemaName,
String keywordBeforeName,
Database database)
- Convenience method for other classes similar to this that want to be able to modify the procedure text to add the schema
Copyright © 2016 Liquibase.org. All rights reserved.