Re: Atomic query and update of sequence generators

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Atomic query and update of sequence generators
Дата
Msg-id 19112.1074137409@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Atomic query and update of sequence generators  (Jeffrey Tenny <jeffrey.tenny@comcast.net>)
Список pgsql-sql
Jeffrey Tenny <jeffrey.tenny@comcast.net> writes:
> If I want to allocate a block of adjacent values from a sequence generator,
> is the following statement atomic with respect to the time between
> when the call to nextval() and setval()?

> SELECT setval('foo', nextval()+20) ...

Nope.

> The goal is to get a sequence of 20 values that are all +1 from each other.

Do you always want to pull exactly 20 values?  If so you could set the
sequence's "cache" parameter to 20 (see the CREATE SEQUENCE man page for
details).  I don't think there's any way at present to get varying sizes
of consecutively-allocated blocks.  If you need that, it would likely
not be real hard to implement a "next_n_vals(seq, n)" variant of
nextval() to grab N consecutive values and return the first.  But it's
not there at the moment.
        regards, tom lane


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

Предыдущее
От: Stuart Barbee
Дата:
Сообщение: Re: REPOST[GENERAL] Quoting for a Select Into - Please Help
Следующее
От: "Greg Sabino Mullane"
Дата:
Сообщение: Re: Atomic query and update of sequence generators