Re: CURSOR after hitting end

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Re: CURSOR after hitting end
Дата
Msg-id 200004042004.QAA29446@candle.pha.pa.us
обсуждение исходный текст
Ответ на Re: CURSOR after hitting end  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы RE: CURSOR after hitting end  ("Hiroshi Inoue" <Inoue@tpf.co.jp>)
Re: CURSOR after hitting end  (Tatsuo Ishii <t-ishii@sra.co.jp>)
Список pgsql-hackers
> Bruce Momjian <pgman@candle.pha.pa.us> writes:
> > We have this in the CURSOR documentation:
> >        Once  all  rows  are  fetched,  every  other  fetch access
> >        returns no rows.
> 
> > Is this still true?
> 
> Not if you then move or fetch backwards, I should think...

No, it works.  I think Tatsuo fixed it.  After a FETCH ALL, I did this,
and it worked:

test=> fetch -1  from bigtable_cursor; customer_id -------------        1000(1 row)test=> fetch -1  from
bigtable_cursor;customer_id -------------         999(1 row)
 

--  Bruce Momjian                        |  http://www.op.net/~candle pgman@candle.pha.pa.us               |  (610)
853-3000+  If your life is a hard drive,     |  830 Blythe Avenue +  Christ can be your backup.        |  Drexel Hill,
Pennsylvania19026
 


В списке pgsql-hackers по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: CURSOR after hitting end
Следующее
От: Tom Lane
Дата:
Сообщение: Re: postgres crash on CURSORS