Fix issue where EXEC script doesn't write the complete script for Procedures. Fixes #4727

This commit is contained in:
Akshay Joshi 2019-09-13 16:58:25 +05:30
parent da553eec9b
commit f5a6df4ddb
7 changed files with 7 additions and 6 deletions

View File

@ -56,4 +56,5 @@ Bug fixes
| `Issue #4702 <https://redmine.postgresql.org/issues/4702>`_ - Fix modified SQL for Index when reset the value of Fill factor and Clustered?.
| `Issue #4703 <https://redmine.postgresql.org/issues/4703>`_ - Fix reversed engineered SQL for btree Index when provided sort order and NULLs.
| `Issue #4726 <https://redmine.postgresql.org/issues/4726>`_ - Ensure sequence with negative value should be created.
| `Issue #4727 <https://redmine.postgresql.org/issues/4727>`_ - Fix issue where EXEC script doesn't write the complete script for Procedures.
| `Issue #4736 <https://redmine.postgresql.org/issues/4736>`_ - Fix query tool and view data issue with the Italian language.

View File

@ -5,7 +5,7 @@ SELECT
THEN
pr.proname || '(' || pg_catalog.pg_get_function_identity_arguments(pr.oid) || ')'
ELSE
pr.proname
pr.proname::text
END AS name,
lanname, pg_get_userbyid(proowner) AS funcowner, description
FROM

View File

@ -9,7 +9,7 @@ SELECT
THEN
pr.proname || '(' || pg_catalog.pg_get_function_identity_arguments(pr.oid) || ')'
ELSE
pr.proname
pr.proname::text
END) AS name_with_args,
(SELECT
array_agg(provider || '=' || label)

View File

@ -5,7 +5,7 @@ SELECT
THEN
pr.proname || '(' || pg_catalog.pg_get_function_identity_arguments(pr.oid) || ')'
ELSE
pr.proname
pr.proname::text
END AS name,
lanname, pg_get_userbyid(proowner) AS funcowner, description
FROM

View File

@ -9,7 +9,7 @@ SELECT
THEN
pr.proname || '(' || pg_catalog.pg_get_function_identity_arguments(pr.oid) || ')'
ELSE
pr.proname
pr.proname::text
END) AS name_with_args,
(SELECT
array_agg(provider || '=' || label)

View File

@ -5,7 +5,7 @@ SELECT
THEN
pr.proname || '(' || pg_catalog.pg_get_function_identity_arguments(pr.oid) || ')'
ELSE
pr.proname
pr.proname::text
END AS name,
lanname, pg_get_userbyid(proowner) AS funcowner, description
FROM

View File

@ -9,7 +9,7 @@ SELECT
THEN
pr.proname || '(' || pg_catalog.pg_get_function_identity_arguments(pr.oid) || ')'
ELSE
pr.proname
pr.proname::text
END) AS name_with_args,
(SELECT
array_agg(provider || '=' || label)