Re: problem with using fetch and a join.

Поиск
Список
Период
Сортировка
От Noel Faux
Тема Re: problem with using fetch and a join.
Дата
Msg-id 5aa1745aa9ec.5aa9ec5aa174@mail1.monash.edu.au
обсуждение исходный текст
Ответ на problem with using fetch and a join.  (Noel <noel.faux@med.monash.edu.au>)
Ответы Re: problem with using fetch and a join.  (Tom Lane <tgl@sss.pgh.pa.us>)
Список 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 по дате отправления:

Предыдущее
От: brew@theMode.com
Дата:
Сообщение: Re: passing variables
Следующее
От: Tom Lane
Дата:
Сообщение: Re: problem with using fetch and a join.