Re: [SQL] begin/end/abort work for sequences?

Поиск
Список
Период
Сортировка
От José Soares
Тема Re: [SQL] begin/end/abort work for sequences?
Дата
Msg-id 377A08D5.77180127@sferacarta.com
обсуждение исходный текст
Ответ на begin/end/abort work for sequences?  (Kyle <kyle@actarg.com>)
Ответы Re: [SQL] begin/end/abort work for sequences?
Список pgsql-sql

Kyle ha scritto:

> I assumed that wrapping a call to nextval() in a transaction would allow
> me to roll back the update of the sequence.  But when I do the following:
>
>   begin;
>   select nextval('po_seq');
>   abort;
>
> The sequence po_seq is advancing to the next value even though the
> transaction was aborted.  If I put other things like updates, inserts, etc.
> inside the transaction, they seem to be rolled back OK, but not the
> update of the sequence.
>
> Am I doing something wrong?

No. I can't explain you why but AFAIK sequences don't  rollback.
______________________________________________________________
PostgreSQL 6.5.0 on i586-pc-linux-gnu, compiled by gcc 2.7.2.3
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Jose'




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

Предыдущее
От: Petter Reinholdtsen
Дата:
Сообщение: Oracle greatest() and nvl() equivalent?
Следующее
От: Darren Greer
Дата:
Сообщение: More fun with random selects