Re: Questionable coding in orderedsetaggs.c

Поиск
Список
Период
Сортировка
От Atri Sharma
Тема Re: Questionable coding in orderedsetaggs.c
Дата
Msg-id CAOeZVifJdS8=8G69h=EfrSiZWawGvjXfm3UxyztZ5OX+UFwT-A@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Questionable coding in orderedsetaggs.c  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers


On Sunday, January 26, 2014, Tom Lane <tgl@sss.pgh.pa.us> wrote:
Jeremy Harris <jgh@wizmail.org> writes:
> In ordered_set_startup() sorts are initialised in non-randomAccess mode
> (tuplesort_begin_heap() and ~datum(), last argument).

> The use of tuplesort_skip_tuples() feels very like a random access to
> me.  I think it doesn't fail because the only use (and implementation)
> is to skip forwards; if backwards were tried (as the interface permits)
> external sorts would fail because multiple tapes are present for
> FINALMERGE.

Well, we certainly don't want to incur the overhead of randomAccess mode
when we're not actually going to use it, so I'd resist changing the code
in ordered_set_startup().

It's true that if tuplesort_skip_tuples() supported backwards skip, it
would need to insist that randomAccess mode be enabled *when a backwards
skip is used*.  But such a feature is purely hypothetical ATM.

                         

+1

In ordered set functions, we normally don't skip backwards and skip tuples while sorting in,for e.g. Hypothetical set functions in only a forward manner. 


--
Regards,
 
Atri
l'apprenant

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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: INTERVAL overflow detection is terribly broken
Следующее
От: Peter Geoghegan
Дата:
Сообщение: Re: Freezing without write I/O