我在 Postgres DB 中创建了一个 Postgres C 函数,如下所示
CREATE FUNCTION uuid_generate_v4() RETURNS uuid
LANGUAGE c STRICT
AS '$libdir/uuid-ossp', 'uuid_generate_v4';
我可以从以下查询中获取链接符号
select r.external_name as linkSymbol from information_schema.routines r
where r.specific_schema = 'public' and r.routine_name = 'uuid_generate_v4'
但是我找不到从 information_schema 获取对象文件值的选项...是否有其他选项可以通过这些选项获取对象文件值...?
提前致谢,
拉维