mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Added missing file for function selectivity feature. Fixes #4333
This commit is contained in:
parent
0d6f07a035
commit
f3e4721a90
@ -0,0 +1,12 @@
|
||||
SELECT quote_ident(nspname) || '.' || quote_ident(proname) AS sfunctions
|
||||
FROM pg_proc p, pg_namespace n, pg_language l
|
||||
WHERE p.pronamespace = n.oid
|
||||
AND p.prolang = l.oid
|
||||
AND p.prorettype = 'internal'::regtype::oid
|
||||
AND pg_catalog.array_to_string(p.proargtypes, ',') = 'internal'::regtype::oid::text
|
||||
AND (l.lanname = 'internal' or l.lanname = 'c' )
|
||||
-- -- If Show SystemObjects is not true
|
||||
{% if not show_system_objects %}
|
||||
AND (nspname NOT LIKE 'pg\_%' AND nspname NOT in ('information_schema'))
|
||||
{% endif %}
|
||||
ORDER BY nspname ASC, proname ASC
|
Loading…
Reference in New Issue
Block a user