protected virtual SqlStatement VisitCreateProcedure(CreateProcedureStatement statement)
{
var body = statement.Body;
if (body != null)
// TODO: Maybe the body should be generic to support this model
body = (PlSqlBlockStatement)VisitStatement(body);
return new CreateProcedureStatement(statement.ProcedureName, statement.Parameters, body) {
ReplaceIfExists = statement.ReplaceIfExists
};
}