Re: Which one is faster?

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Re: Which one is faster?
Дата
Msg-id 200206201610.g5KGAm507411@candle.pha.pa.us
обсуждение исходный текст
Ответ на Re: Which one is faster?  (Jan Wieck <JanWieck@Yahoo.com>)
Список pgsql-sql
Jan Wieck wrote:
> Bruce Momjian wrote:
> > 
> > Wei Weng wrote:
> > > Between Using Limit P, S or using a cursor to start from FETCH ABSOLUTE
> > > S and FETCH NEXT for P times, which one is faster?
> > 
> > LIMIT is faster because it doesn't need to generate all the result, in
> > some cases.
> 
> Neither does using a cursor need to generate all the results first. It's
> a portal, which is an executor state on hold, and FETCH is implemented
> as ExecutorRun() with the number of wanted result rows as limitation.
> Since LIMIT generates internally one more result row than really wanted,
> I don't think LIMIT would be much faster, but it's for sure less
> portable.

Oh, I thought the portal had to be materialized before returning a row. 
Thanks.

--  Bruce Momjian                        |  http://candle.pha.pa.us 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-sql по дате отправления:

Предыдущее
От: Manfred Koizar
Дата:
Сообщение: Re: slow DELETE queries
Следующее
От: Richard Huxton
Дата:
Сообщение: Re: Tagging rows into collections?