Re: Retrieving comment of rules and triggers
От | Melvin Davidson |
---|---|
Тема | Re: Retrieving comment of rules and triggers |
Дата | |
Msg-id | CANu8FixMHBXsJ0kXPPK7iP=z4P=q2sErQ84B-XZ-irR6rAw0CQ@mail.gmail.com обсуждение исходный текст |
Ответ на | Re: Retrieving comment of rules and triggers ("David G. Johnston" <david.g.johnston@gmail.com>) |
Ответы |
Re: Retrieving comment of rules and triggers
|
Список | pgsql-general |
On Thu, Jun 9, 2016 at 5:01 PM, David G. Johnston <david.g.johnston@gmail.com> wrote:
Hi, is there a way to retrieve the comment of rules and triggers. I worked it out on functions, tables, views but am kind of stuck with rules and triggers.Table 9-63. Comment Information Functionsobj_description(object_oid, catalog_name)Catalog Names:pg_triggerpg_rulesThe source catalog for the data is:pg_descriptionI'm suspect of your existing solution given that this is supposed to be a universal interface for comment data...David J.
-- To get all rule comments
SELECT DISTINCT r.rulename,
c.description
FROM pg_rewrite r
JOIN pg_description c ON c.objoid = r.oid;
-- To get all trigger comments
SELECT DISTINCT t.tgname,
c.description
FROM pg_trigger t
JOIN pg_description c ON c.objoid = t.oid;
--
Melvin Davidson
I reserve the right to fantasize. Whether or not you
wish to share my fantasy is entirely up to you.
I reserve the right to fantasize. Whether or not you
wish to share my fantasy is entirely up to you.

В списке pgsql-general по дате отправления: