Skip to content

Commit

Permalink
Update martin/src/pg/scripts/query_available_function.sql
Browse files Browse the repository at this point in the history
Co-authored-by: Yuri Astrakhan <[email protected]>
  • Loading branch information
sharkAndshark and nyurik authored Aug 22, 2023
1 parent 37cb490 commit 1a33490
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion martin/src/pg/scripts/query_available_function.sql
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ WITH inputs AS (
SELECT
n.nspname AS schema,
P.proname AS name,
obj_description ( P.oid ) AS description
obj_description(P.oid, 'pg_proc') AS description
FROM
pg_proc P
JOIN pg_namespace n ON P.pronamespace = n.oid
Expand Down

0 comments on commit 1a33490

Please sign in to comment.