Re: Bug with sequences and WAL ?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Bug with sequences and WAL ?
Дата
Msg-id 15339.1139020693@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Bug with sequences and WAL ?  (Philippe Ferreira <phil.f@worldonline.fr>)
Ответы Re: Bug with sequences and WAL ?  (Philippe Ferreira <phil.f@worldonline.fr>)
Re: Bug with sequences and WAL ?  (Philippe Ferreira <phil.f@worldonline.fr>)
Список pgsql-general
Philippe Ferreira <phil.f@worldonline.fr> writes:
> If a new sequence is created, its creation is propagated via WAL.

> However, instead of getting the property 'is_called'=false (the correct
> value before its first use),
> we get 'is_called'=true after a PITR recovery.

> Is it a bug, or a normal behaviour ?

I don't think this is very important, because the normal behavior of
sequences is that after a crash the sequence can be up to 32 (IIRC)
counts beyond the last value actually delivered before the crash.
To get "exact" restart behavior we'd need to emit a separate xlog
record for each nextval() command, which seems like a pretty high
price considering that you cannot assume no holes in the sequence
values anyway.

            regards, tom lane

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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: Error with temporary tables
Следующее
От: Tyler MacDonald
Дата:
Сообщение: Should I use PL/PGSQL or Perl/PGSQL?