Re: pg_get_triggerdef

Поиск
Список
Период
Сортировка
От Neil Conway
Тема Re: pg_get_triggerdef
Дата
Msg-id 1047363092.354.14.camel@tokyo
обсуждение исходный текст
Ответ на pg_get_triggerdef  ("Christopher Kings-Lynne" <chriskl@familyhealth.com.au>)
Список pgsql-patches
On Tue, 2003-03-11 at 00:28, Christopher Kings-Lynne wrote:
> This patch creates a function named pg_get_triggerdef that takes the oid of
> a trigger as its parameter.  It is basically copied from the pg_dump code.

+         /*
+          * Find the trigger to delete.
+          */
+         ScanKeyEntryInitialize(&skey[0], 0x0,
+                                ObjectIdAttributeNumber, F_OIDEQ,
+                                ObjectIdGetDatum(trigid));

Looks like you forgot to change this comment :-)

Cheers,

Neil

--
Neil Conway <neilc@samurai.com> || PGP Key ID: DB3C29FC




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

Предыдущее
От: "Christopher Kings-Lynne"
Дата:
Сообщение: pg_get_triggerdef doc patch
Следующее
От: Neil Conway
Дата:
Сообщение: Re: pg_get_triggerdef