cache lookup failed ??????

From: Mario Soto Cordones <msotocl(at)gmail(dot)com>
To: Grupos PostgreSQL ES <pgsql-es-ayuda(at)postgresql(dot)org>
Subject: cache lookup failed ??????
Date: 2005-04-26 16:10:32
Message-ID: e9b17cde050426091045ed11f0@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda

Hola lista, he migrado a postgreSQL 8.0. y he comenzado a tener
algunos errores , antes tenia la 7.4.5:

Por ejemplo tengo la siguiente funcion :

CREATE OR REPLACE FUNCTION "public"."find_observaciones_activos"
(integer, integer, text) RETURNS SETOF "public"."finddoc_t" AS
$body$
select set_curcfg('default');
select co_empresa, co_filial, nu_activo_fijo,sq_serialcolumn,
headline(tx_observaciones, q),
rank(vector, q)
from observaciones_activos, to_tsquery($3) as q
where co_empresa = $1 and co_filial = $2 and
vector @@ q order by rank(vector,q) desc
$body$
LANGUAGE 'sql' STABLE CALLED ON NULL INPUT SECURITY INVOKER;

y al ejecutarla ahora me dice:

cache lookup failed for function 8044889

CONTEXT: sentencia SQL: «select lt.tokid, map.dict_name from
public.pg_ts_cfgmap as map, public.pg_ts_cfg as cfg,
public.token_type( $1 ) as lt where lt.alias = map.tok_alias and
map.ts_name = cfg.ts_name and cfg.oid= $2 order by lt.tokid desc;»
función SQL «find_observaciones_activos» en la sentencia 1

No se que pueda ser, alquien la ha pasado algo similar ?????

--
cordialmente,

Ing. Mario Soto Cordones

Responses

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message Manuel Sugawara 2005-04-26 16:26:13 Re: Currval en procedimiento PLPGSQL
Previous Message Manuel Sugawara 2005-04-26 15:48:54 Re: cache lookup failed ??????