Er zijn meer systeemcatalogusinformatiefuncties
om u de aanvullende informatie te geven.
En u kunt de schemanaam uit de systeemtabel halen pg_namespace
:
SELECT n.nspname AS schema_name
,p.proname AS function_name
,pg_get_functiondef(p.oid) AS func_def
,pg_get_function_arguments(p.oid) AS args
,pg_get_function_result(p.oid) AS result
FROM pg_proc p
JOIN pg_namespace n ON n.oid = p.pronamespace
WHERE p.proname ILIKE '%match_group_1_3_2%';
Dit zou functies moeten vinden in elke schema in de database.