Re: [HACKERS] Efficiency of LIMIT ?

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Re: [HACKERS] Efficiency of LIMIT ?
Дата
Msg-id 199904251941.PAA00652@candle.pha.pa.us
обсуждение исходный текст
Ответ на Re: [HACKERS] Efficiency of LIMIT ?  (Adam Haberlach <haberlaa@ricochet.net>)
Список pgsql-hackers
> On Sun, Apr 25, 1999 at 08:16:58AM +0000, Chris Bitmead wrote:
> > 
> > Is the LIMIT feature very efficient? I want to start using it for quite
> > a few things, but I'm wondering, what happens when I have a zillion
> > records and I want the first 10, is that going to be an efficient thing
> > to do?
> 
>     I am curious about this myself.  As far as I can tell, it doesn't
> give anything that cursors don't provide, but introduces more "features"
> into the parser.  Do we need this?

This is pretty correct, though it stops the executor from completing all
the result queries, while cursors don't.  The complete the entire query
and store the result for later fetches..  We support it because MySQL
users and others asked for it.

--  Bruce Momjian                        |  http://www.op.net/~candle maillist@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 по дате отправления:

Предыдущее
От: Adam Haberlach
Дата:
Сообщение: Re: [HACKERS] Efficiency of LIMIT ?
Следующее
От: Ryan Bradetich
Дата:
Сообщение: Re: [HACKERS] create view as select distinct (fwd)