liquibase.sqlgenerator.core
Class CreateProcedureGenerator

java.lang.Object
  extended by liquibase.sqlgenerator.core.AbstractSqlGenerator<CreateProcedureStatement>
      extended by liquibase.sqlgenerator.core.CreateProcedureGenerator
All Implemented Interfaces:
PrioritizedService, SqlGenerator<CreateProcedureStatement>

public class CreateProcedureGenerator
extends AbstractSqlGenerator<CreateProcedureStatement>


Field Summary
 
Fields inherited from interface liquibase.sqlgenerator.SqlGenerator
PRIORITY_DATABASE, PRIORITY_DEFAULT
 
Fields inherited from interface liquibase.servicelocator.PrioritizedService
COMPARATOR
 
Constructor Summary
CreateProcedureGenerator()
           
 
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 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 liquibase.sqlgenerator.core.AbstractSqlGenerator
generateRollbackStatementsIsVolatile, generateStatementsIsVolatile, getPriority, looksLikeFunctionCall, supports, warn
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CreateProcedureGenerator

public CreateProcedureGenerator()
Method Detail

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.


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.