[Pljava-dev] ResultSetProvider/ResultSetHandle problem

From: thhal at mailblocks(dot)com (Thomas Hallgren)
To:
Subject: [Pljava-dev] ResultSetProvider/ResultSetHandle problem
Date: 2005-10-03 13:02:04
Message-ID: thhal-0T8QcBO/A8bQ1h7qRZA6YziDmFXm4uj@mailblocks.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pljava-dev

Hi Filip,
I've seen this. When I looked more deeply I concluded that it indeed was
a PostgreSQL limitation. I guess I now have to revise that :-)
So sure, add it to the bug list.

Regards,
Thomas Hallgren

Filip Hrbek wrote:

> I have a function returning set of "record", i.e. there is no
> information about the target structure to return until it is actually
> called.
> It works, but if I call such a function several times with different
> target structures within one session, I got one of two following errors:
>
> a)
> org.postgresql.pljava.internal.ServerException: query-specified return
> row and actual function return row do not match
> at org.postgresql.pljava.internal.Portal._fetch(Native Method)
> at org.postgresql.pljava.internal.Portal.fetch(Portal.java:79)
> at
> org.postgresql.pljava.jdbc.SPIResultSet.getTupleTable(SPIResultSet.java:135)
> at
> org.postgresql.pljava.jdbc.SPIResultSet.peekNext(SPIResultSet.java:157)
> at
> org.postgresql.pljava.jdbc.SPIResultSet.next(SPIResultSet.java:80)
> at
> org.postgresql.pljava.internal.ResultSetPicker.assignRowValues(ResultSetPicker.java:31)
> <2005-10-03 13:51:16 CEST 25858>ERROR: query-specified return row and
> actual function return row do not match
> b)
> org.postgresql.pljava.internal.ServerException:
> java.lang.ArrayIndexOutOfBoundsException: 2
> at org.postgresql.pljava.internal.Portal._fetch(Native Method)
> at org.postgresql.pljava.internal.Portal.fetch(Portal.java:79)
> at
> org.postgresql.pljava.jdbc.SPIResultSet.getTupleTable(SPIResultSet.java:135)
> at
> org.postgresql.pljava.jdbc.SPIResultSet.peekNext(SPIResultSet.java:157)
> at
> org.postgresql.pljava.jdbc.SPIResultSet.next(SPIResultSet.java:80)
> at
> org.postgresql.pljava.internal.ResultSetPicker.assignRowValues(ResultSetPicker.java:31)
> <2005-10-03 13:49:43 CEST 25652>ERROR:
> java.lang.ArrayIndexOutOfBoundsException: 2
> It seems that something is cached, though it should be replaced by a
> new version when called with different target structure.
>
> Note: plpgsql functions are OK, it seems to be a problem of pljava,
> not PostgreSQL.
>
> Should I write it to the bug list?
>
> Regards
> Filip
>
>
>------------------------------------------------------------------------
>
>_______________________________________________
>Pljava-dev mailing list
>Pljava-dev at gborg.postgresql.org
>http://gborg.postgresql.org/mailman/listinfo/pljava-dev
>
>

In response to

Browse pljava-dev by date

  From Date Subject
Next Message Marek Lewczuk 2005-10-06 21:17:16 [Pljava-dev] pljava and pg8.1
Previous Message Filip Hrbek 2005-10-03 11:58:32 [Pljava-dev] ResultSetProvider/ResultSetHandle problem