Ensure that grant wizard should list down functions for EPAS server running with no-redwood-compat mode. Fixes #3935
parent
2d7eaa63c4
commit
07f16f40cd
|
@ -39,3 +39,4 @@ Bug fixes
|
|||
| `Bug #3897 <https://redmine.postgresql.org/issues/3897>`_ - Data should be updated properly for FTS Configurations, FTS Dictionaries, FTS Parsers and FTS Templates.
|
||||
| `Bug #3908 <https://redmine.postgresql.org/issues/3908>`_ - Fixed keyboard navigation for Select2 and Privilege cell in Backgrid.
|
||||
| `Bug #3929 <https://redmine.postgresql.org/issues/3929>`_ - Fix alignment of help messages in properties panels.
|
||||
| `Bug #3935 <https://redmine.postgresql.org/issues/3935>`_ - Ensure that grant wizard should list down functions for EPAS server running with no-redwood-compat mode.
|
|
@ -21,7 +21,7 @@ WHERE
|
|||
pronamespace = {{ node_id }}::oid
|
||||
AND typname {{ 'NOT' if type != 'trigger_function' else '' }} IN ('trigger', 'event_trigger')
|
||||
AND pr.prokind = '{{ kind }}'
|
||||
AND pr.protype = {{ 0 if type != 'procedure' else 1 }}
|
||||
AND pr.protype = {{'0' if type != 'procedure' else '1'}}::char
|
||||
ORDER BY
|
||||
proname
|
||||
{% endif %}
|
||||
|
|
|
@ -19,7 +19,7 @@ LEFT OUTER JOIN pg_description des ON (des.objoid=pr.oid AND des.classoid='pg_pr
|
|||
WHERE
|
||||
proisagg = FALSE AND pronamespace = {{ node_id }}::oid
|
||||
AND typname {{ 'NOT' if type != 'trigger_function' else '' }} IN ('trigger', 'event_trigger')
|
||||
AND pr.protype = {{ 0 if type != 'procedure' else 1 }}
|
||||
AND pr.protype = {{'0' if type != 'procedure' else '1'}}::char
|
||||
ORDER BY
|
||||
proname
|
||||
{% endif %}
|
||||
|
|
Loading…
Reference in New Issue