Skip to content

Commit

Permalink
fix (#433)
Browse files Browse the repository at this point in the history
  • Loading branch information
nasc17 authored Jun 28, 2023
1 parent b3496da commit 5f2745b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ ALTER FUNCTION {{ conn|qtIdent(data.pronamespace, data.name)|replace('"', '') }}
{% endfor %}{% endif %}
{% if data.description %}

COMMENT ON FUNCTION {{ conn|qtIdent(data.pronamespace, data.name)|replace('"', '' }}({{data.func_args_without}})
COMMENT ON FUNCTION {{ conn|qtIdent(data.pronamespace, data.name)||replace('"', '') }}({{data.func_args_without}})
IS {{ data.description }};
{% endif -%}
{% if data.seclabels %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ WHERE
{% endif %}

{% if name %}
DROP FUNCTION {{ conn|qtIdent(nspname, name) }}{{func_args}}{% if cascade %} CASCADE{% endif %};
DROP FUNCTION {{ conn|qtIdent(nspname, name)|replace('"', '') }}{{func_args}}{% if cascade %} CASCADE{% endif %};
{% endif %}
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ WHERE
{% endif %}

{% if name %}
DROP PROCEDURE IF EXISTS {{ conn|qtIdent(nspname, name) }}{{func_args}}{% if cascade %} CASCADE{% endif %};
DROP PROCEDURE IF EXISTS {{ conn|qtIdent(nspname, name)|replace('"', '') }}{{func_args}}{% if cascade %} CASCADE{% endif %};
{% endif %}

0 comments on commit 5f2745b

Please sign in to comment.