Re: problem with using fetch and a join. - Mailing list pgsql-novice

From Noel Faux
Subject Re: problem with using fetch and a join.
Date
Msg-id 5aa1745aa9ec.5aa9ec5aa174@mail1.monash.edu.au
Whole thread Raw
In response to problem with using fetch and a join.  (Noel <noel.faux@med.monash.edu.au>)
Responses Re: problem with using fetch and a join.
List pgsql-novice
Tom,
Many thanks for the tip. Yes adding the order by (id) to the statement
allowed the FETCH BACKWARD to work. Is there any reason why the FETCH
BACKWARD statement for such a join not to be supported in the future?

Once again,
Many Thanks
And have a great holiday season :D

Noel Faux
Department of Biochemistry and Molecluar Biology
Monash University
Clayton 3168
Victoria
Australia

----- Original Message -----
From: Tom Lane <tgl@sss.pgh.pa.us>
Date: Saturday, December 21, 2002 1:47 am
Subject: Re: [NOVICE] problem with using fetch and a join.

> Noel <noel.faux@med.monash.edu.au> writes:
> > begin;
> > declare test cursor for
> > select protein.accession
> > from protein, region
> > where protein.accession like '%1245%'
> > and protein.accession = region.accession
> > and region.protein_database = 1;
> > fetch forward 2 in test;
> > fetch backward 1 in test;
>
> FETCH (or MOVE) BACKWARD doesn't work with most join plan types (or
> indeed anything much more complex than a simple seqscan or indexscan).
> There ought to be some logic in there to detect and complain about the
> non-working cases, but right now I fear you just get the wrong answer
> when any given routine doesn't pay attention to the direction flag
> :-(
>
> I believe it will work when the top plan node is a Sort, so one
> possibleworkaround is to add an explicit ORDER BY to the query.
>
>                     regards, tom lane
>


pgsql-novice by date:

Previous
From: brew@theMode.com
Date:
Subject: Re: passing variables
Next
From: Tom Lane
Date:
Subject: Re: problem with using fetch and a join.