Re: Catching dangling LOBs? - Mailing list pgsql-general

From Vitaly Belman
Subject Re: Catching dangling LOBs?
Date
Msg-id fa96e3c605041516064d616b86@mail.gmail.com
Whole thread Raw
In response to Re: Catching dangling LOBs?  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: Catching dangling LOBs?  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-general
That was the problem. Thanks =).

P.S Still a bit strange because "functions" IS in the search_path,
there is no reason for it not to find it from the vacuum.

On 4/16/05, Tom Lane <tgl@sss.pgh.pa.us> wrote:
> Vitaly Belman <vitalyb@gmail.com> writes:
> > My bad. Here we go, really simple:
>
> > CREATE OR REPLACE FUNCTION public.bayes_books(float4, int4)
> >   RETURNS float8 AS
> > 'select bayes($1, $2, 5, 3.9)'
>    ^^^^^^^^^^^^
> >   LANGUAGE 'sql' IMMUTABLE;
>
> > CREATE OR REPLACE FUNCTION functions.bayes(float4, int4, int4, float4)
>                              ^^^^^^^^^^^^^^^
> >   RETURNS float8 AS
> > 'select ($2 / ($2+$3::float4)) * $1 + ($3 / ($2+$3::float4)) * $4'
> >   LANGUAGE 'sql' IMMUTABLE;
>
> I'll bet that the "functions" schema wasn't in your search path when you
> did the VACUUM.  It would be wiser to write "functions.bayes(...)" in
> the bayes_books function, so it wouldn't be context-dependent.
>
>                         regards, tom lane
>


--
 ICQ: 1912453
 AIM: VitalyB1984
 MSN: tmdagent@hotmail.com
 Yahoo!: VitalyBe

pgsql-general by date:

Previous
From: Bruno Wolff III
Date:
Subject: Re: SQL Question
Next
From: Tom Lane
Date:
Subject: Re: Catching dangling LOBs?