Regarding ERROR: fmgr_info: function 2720768: cache lookup failed

Поиск
Список
Период
Сортировка
От soni de
Тема Regarding ERROR: fmgr_info: function 2720768: cache lookup failed
Дата
Msg-id 9f2e40a90606212158p58652b2bg4d5f4500b3564641@mail.gmail.com
обсуждение исходный текст
Ответы Re: Regarding ERROR: fmgr_info: function 2720768: cache lookup failed  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-performance

Hello,

 

I am getting following error while inserting a row into the "abc" table:

ERROR:  fmgr_info: function 2720768: cache lookup failed

 

Table "abc" has one trigger called "abct"

Definition is as follows:

 

BEGIN;

   LOCK TABLE abc IN SHARE ROW EXCLUSIVE MODE;

 

   create TRIGGER abct

      AFTER INSERT OR DELETE on abc

      FOR EACH ROW EXECUTE PROCEDURE abc_function();

 

COMMIT;

 

abc_function() updates entry from the "xyz" table for every insert and delete operations on table "abc".

 

"xyz" table maintains the count of total number of rows in table "abc"

 

Currently "abc" table contains 1000090 rows. And same count is available in table "xyz".

But now I am not able to insert any records into the "abc" table because of above mentioned error.

 

Please provide me some help regarding this.

 

Thanks,

Soni

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

Предыдущее
От: Michael Glaesemann
Дата:
Сообщение: Re: Performance of DOMAINs
Следующее
От: Richard Frith-Macdonald
Дата:
Сообщение: Why is my (empty) partial index query slow?