Re: sql query cursor problem - Mailing list pgsql-bugs

From Tom Lane
Subject Re: sql query cursor problem
Date
Msg-id 15634.994804101@sss.pgh.pa.us
Whole thread Raw
In response to sql query cursor problem  (Risko Peter <risko.peter@mhc.hu>)
List pgsql-bugs
Risko Peter <risko.peter@mhc.hu> writes:
> It seems we've found a bug in PostgreSQL handling of cursored queries.
>   I assume that it's legal to do 'fetch backward all in xxx' and then
> 'fetch 1 in xxx' afterwards.

Backwards scan doesn't work right for any but the simplest sorts of
queries (no joins, no grouping or aggregation, probably some other
issues).  It'd be nice to fix it, but it's not very high on anyone's
priority list.  There are workarounds available, one of the simplest
being to specify ORDER BY --- the result of a sort step *can* be scanned
backwards, IIRC.  Use EXPLAIN to make sure your query has a Sort at
the top level.

            regards, tom lane

pgsql-bugs by date:

Previous
From: Carl Anderson
Date:
Subject: shared library compile error
Next
From: Benoit Lion
Date:
Subject: order by and union