Re: scrollable cursor sup. for SPI

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: scrollable cursor sup. for SPI
Дата
Msg-id 19495.1168890586@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: scrollable cursor sup. for SPI  (Neil Conway <neilc@samurai.com>)
Ответы Re: scrollable cursor sup. for SPI  ("Pavel Stehule" <pavel.stehule@hotmail.com>)
Список pgsql-patches
Neil Conway <neilc@samurai.com> writes:
> BTW, how do people feel about the function names:

>     SPI_cursor_open_with_options
>     SPI_scroll_cursor_fetch
>     SPI_scroll_cursor_move

I dislike the SPI_cursor_open_with_options API on the grounds that it
lets people break things (CURSOR_OPT_HOLD for instance isn't likely
to do anything good) and it doesn't actually provide any functionality
that wasn't there before (the existing code already sets OPT_SCROLL
if possible).  I'd suggest losing that one entirely and just adding
the FetchDirection-as-substitute-for-"forward" entry points.

As for names, maybe
    SPI_cursor_fetch_direction
    SPI_cursor_move_direction
?

            regards, tom lane

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

Предыдущее
От: Neil Conway
Дата:
Сообщение: Re: scrollable cursor sup. for SPI
Следующее
От: Alvaro Herrera
Дата:
Сообщение: Re: [HACKERS] Autovacuum improvements