Re: [repost] trigger update time

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [repost] trigger update time
Дата
Msg-id 4315.1024497131@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: [repost] trigger update time  (Rory Campbell-Lange <rory@campbell-lange.net>)
Список pgsql-novice
Rory Campbell-Lange <rory@campbell-lange.net> writes:
> However I now get the following error:
> obf=# insert into messages (id_person, id_idea, content) values
> obf-# (5, 7, 'but all this txting is irritating!');
> ERROR:  fmgr_info: function 51144: cache lookup failed

If you drop and re-create a function then the new function is a new
object with a new OID, so triggers and other references to it will be
broken.  You need to drop and re-create the trigger too.

If you are using 7.2 or later then a better way is to redefine the
function with CREATE OR REPLACE FUNCTION.  This preserves the OID
and thus avoids breaking dependencies.

            regards, tom lane

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

Предыдущее
От: "Jillian Carroll"
Дата:
Сообщение: ODBC Error
Следующее
От: Tom Lane
Дата:
Сообщение: Re: ODBC Error