Re: calling function - Mailing list pgsql-jdbc

From Tom Lane
Subject Re: calling function
Date
Msg-id 27578.1078240552@sss.pgh.pa.us
Whole thread Raw
In response to calling function  (Bhushan Bhangale <bbhangale@Lastminute.com>)
List pgsql-jdbc
Bhushan Bhangale <bbhangale@Lastminute.com> writes:
> Error: ERROR:  relation with OID 659490 does not exist (State:S1000, Native
> Code: 7)

That function is only going to work once per session, because plpgsql
caches query plans.  After the first call, the commands in the loop will
refer to a version of temp_accomm that doesn't exist anymore.

AFAICS you do not actually need the temp_accum table anyway.  Why don't
you just return the data directly from the main loop?

            regards, tom lane

pgsql-jdbc by date:

Previous
From: Bhushan Bhangale
Date:
Subject: calling function
Next
From: Bhushan Bhangale
Date:
Subject: Re: calling function