Re: cache lookup failed

Поиск
Список
Период
Сортировка
От Peter Eisentraut
Тема Re: cache lookup failed
Дата
Msg-id Pine.LNX.4.30.0109121659080.694-100000@peter.localdomain
обсуждение исходный текст
Ответ на cache lookup failed  (victor <victor@work.ro>)
Список pgsql-sql
victor writes:

> CREATE FUNCTION add_one (integer) RETURNS integer AS '
> BEGIN
> RETURN $1 + 1;
> END;
> ' LANGUAGE 'plpgsql';
>
> >from postgres doc.
> When I try somethin like this:
>
> SELECT add_one(4);
>
> I get :
>
> ERROR:  fmgr_info: function 20086: cache lookup failed

Possibly you have dropped and recreated the plpgsql language handler after
the function was already created.  If so, recreate the function.

-- 
Peter Eisentraut   peter_e@gmx.net   http://funkturm.homeip.net/~peter



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

Предыдущее
От: victor
Дата:
Сообщение: cache lookup failed
Следующее
От: Haller Christoph
Дата:
Сообщение: ERROR: Cannot insert a duplicate key into a unique index