我希望能够连接到PostgreSQL数据库并找到特定模式的所有函数。
我的想法是我可以对pg_catalog或information_schema进行一些查询并得到所有函数的列表,但我无法弄清楚名称和参数的存储位置。我正在寻找一个查询,它将为我提供函数名称和它所采用的参数类型(以及它们的顺序)。
有办法做到这一点吗?
答案 0 :(得分:147)
答案 1 :(得分:67)
经过一些搜索,我找到了 information_schema.routines
表和 information_schema.parameters
表。使用这些,可以为此目的构建查询。 LEFT JOIN,而不是JOIN,是检索没有参数的函数所必需的。
SELECT routines.routine_name, parameters.data_type, parameters.ordinal_position
FROM information_schema.routines
LEFT JOIN information_schema.parameters ON routines.specific_name=parameters.specific_name
WHERE routines.specific_schema='my_specified_schema_name'
ORDER BY routines.routine_name, parameters.ordinal_position;
答案 2 :(得分:29)
如果有人对此感兴趣,psql
在postgres 9.1上执行了什么查询:
SELECT n.nspname as "Schema",
p.proname as "Name",
pg_catalog.pg_get_function_result(p.oid) as "Result data type",
pg_catalog.pg_get_function_arguments(p.oid) as "Argument data types",
CASE
WHEN p.proisagg THEN 'agg'
WHEN p.proiswindow THEN 'window'
WHEN p.prorettype = 'pg_catalog.trigger'::pg_catalog.regtype THEN 'trigger'
ELSE 'normal'
END as "Type"
FROM pg_catalog.pg_proc p
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = p.pronamespace
WHERE pg_catalog.pg_function_is_visible(p.oid)
AND n.nspname <> 'pg_catalog'
AND n.nspname <> 'information_schema'
ORDER BY 1, 2, 4;
通过使用psql
标志运行psql
,您可以获得针对反斜杠命令运行的-E
。
答案 3 :(得分:24)
有一个方便的功能,oidvectortypes
,使这更容易。
SELECT format('%I.%I(%s)', ns.nspname, p.proname, oidvectortypes(p.proargtypes))
FROM pg_proc p INNER JOIN pg_namespace ns ON (p.pronamespace = ns.oid)
WHERE ns.nspname = 'my_namespace';
感谢Leo Hsu and Regina Obe at Postgres Online指出oidvectortypes
。我之前编写过类似的函数,但使用了复杂的嵌套表达式,这个函数摆脱了对。
(2016年编辑)
总结典型的报告选项:
-- Compact:
SELECT format('%I.%I(%s)', ns.nspname, p.proname, oidvectortypes(p.proargtypes))
-- With result data type:
SELECT format(
'%I.%I(%s)=%s',
ns.nspname, p.proname, oidvectortypes(p.proargtypes),
pg_get_function_result(p.oid)
)
-- With complete argument description:
SELECT format('%I.%I(%s)', ns.nspname, p.proname, pg_get_function_arguments(p.oid))
-- ... and mixing it.
-- All with the same FROM clause:
FROM pg_proc p INNER JOIN pg_namespace ns ON (p.pronamespace = ns.oid)
WHERE ns.nspname = 'my_namespace';
通知:使用p.proname||'_'||p.oid AS specific_name
获取唯一名称,或使用information_schema
表加入 - 请参阅routines
和parameters
@ RuddZwolinski的回答
函数的OID(参见pg_catalog.pg_proc
)和函数的 specific_name (参见information_schema.routines
)是函数的主要参考选项。下面是报告和其他环境中的一些有用功能。
--- --- --- --- ---
--- Useful overloads:
CREATE FUNCTION oidvectortypes(p_oid int) RETURNS text AS $$
SELECT oidvectortypes(proargtypes) FROM pg_proc WHERE oid=$1;
$$ LANGUAGE SQL IMMUTABLE;
CREATE FUNCTION oidvectortypes(p_specific_name text) RETURNS text AS $$
-- Extract OID from specific_name and use it in oidvectortypes(oid).
SELECT oidvectortypes(proargtypes)
FROM pg_proc WHERE oid=regexp_replace($1, '^.+?([^_]+)$', '\1')::int;
$$ LANGUAGE SQL IMMUTABLE;
CREATE FUNCTION pg_get_function_arguments(p_specific_name text) RETURNS text AS $$
-- Extract OID from specific_name and use it in pg_get_function_arguments.
SELECT pg_get_function_arguments(regexp_replace($1, '^.+?([^_]+)$', '\1')::int)
$$ LANGUAGE SQL IMMUTABLE;
--- --- --- --- ---
--- User customization:
CREATE FUNCTION pg_get_function_arguments2(p_specific_name text) RETURNS text AS $$
-- Example of "special layout" version.
SELECT trim(array_agg( op||'-'||dt )::text,'{}')
FROM (
SELECT data_type::text as dt, ordinal_position as op
FROM information_schema.parameters
WHERE specific_name = p_specific_name
ORDER BY ordinal_position
) t
$$ LANGUAGE SQL IMMUTABLE;
答案 4 :(得分:14)
在SQL查询下运行以创建一个显示所有功能的视图:
Invalid property 'id' of bean class [java.util.LinkedHashMap]: Could not find field for property during fallback access!]
答案 5 :(得分:6)
使用LIKE
名称命名带有通用别名的函数的第一个单词是一个好主意
在Postgresql 9.4中使用公共模式的示例,请务必替换为他的方案
SELECT routine_name FROM information_schema.routines WHERE routine_type='FUNCTION' AND specific_schema='public' AND routine_name LIKE 'aliasmyfunctions%';
答案 6 :(得分:4)
示例:
perfdb-# \df information_schema.*;
List of functions
Schema | Name | Result data type | Argument data types | Type
information_schema | _pg_char_max_length | integer | typid oid, typmod integer | normal
information_schema | _pg_char_octet_length | integer | typid oid, typmod integer | normal
information_schema | _pg_datetime_precision| integer | typid oid, typmod integer | normal
.....
information_schema | _pg_numeric_scale | integer | typid oid, typmod integer | normal
information_schema | _pg_truetypid | oid | pg_attribute, pg_type | normal
information_schema | _pg_truetypmod | integer | pg_attribute, pg_type | normal
(11 rows)
答案 7 :(得分:0)
此函数返回当前数据库中所有用户定义的例程。
SELECT pg_get_functiondef(p.oid) FROM pg_proc p
INNER JOIN pg_namespace ns ON p.pronamespace = ns.oid
WHERE ns.nspname = 'public';
答案 8 :(得分:0)
获取function_schema和function_name的列表...
var intersectionObserver = new IntersectionObserver(function(entries) {
if (entries[0].intersectionRatio <= 0){
console.log("the field is not visible");
//Add your blur code here
}else{
console.log("the field is visible")
}
});
// start observing
intersectionObserver.observe(document.querySelector('#emailtwo'));