PL/PGSQL

Поиск
Список
Период
Сортировка
От Jens Felber
Тема PL/PGSQL
Дата
Msg-id 3.0.6.32.19990823091706.00909500@62.156.187.1
обсуждение исходный текст
Ответы Re: [GENERAL] PL/PGSQL  (Herouth Maoz <herouth@oumail.openu.ac.il>)
Список pgsql-general
Hi pgsql list-members

I'm new at this list an want some answers for the following problem:

On every time, when my trigger is called  I get
the Message:

ERROR: fmgr_info: function 87776 : cache lookup failure

What means this - or where are described ERROR-Messages at the Documentation.

What I've done:

create table test1 (x int2, free bool);
create table history (x
int2);

create function insert_history () returns opaque as
    'select x into history from test1 where free=\'t\';'
language 'plpgsql';

create trigger ins1 after update on test1 for each row execute procedure
insert_history();


by and thanks
Jens

GEK CONSULTING GmbH
An den Teichen 5
09224 Mittelbach

Tel.:    (0371) 80 88 260
Fax.:    (0371) 80 88 266
EMail:    J.Felber@gek-consulting.de
    jfe@gek-online.de

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

Предыдущее
От: "Hub.Org News Admin"
Дата:
Сообщение: ...
Следующее
От: Herouth Maoz
Дата:
Сообщение: Re: [GENERAL] PL/PGSQL