Re: [SQL] SERIAL does not ROLLBACK
От | Stephan Szabo |
---|---|
Тема | Re: [SQL] SERIAL does not ROLLBACK |
Дата | |
Msg-id | 20030311232934.V49459-100000@megazone23.bigpanda.com обсуждение исходный текст |
Ответ на | SERIAL does not ROLLBACK (Muhammad Shariq Muzaffar <shariq77@yahoo.com>) |
Список | pgsql-novice |
On Wed, 12 Mar 2003, [iso-8859-1] Muhammad Shariq Muzaffar wrote: > hi > i have a table named 'mytable' with a column of type > serial. After inserting tuples in a transaction, when > i rollback the transaction the serial number does not > come back to its original value and next time when i > insert the data, it start with the incremented value. > WHY?? how can i make it to come back to its orignial > value in case of rollback. That's pretty much the point, so you can't easily. Serials (despite their name) are really intended to give unique values not sequential ones. Rolling back the value causes some issues with concurrency, and I think ou can already pretty much implement a rollback one yourself with functions and locks. Specifically, if you have two concurrent transactions that want to get a value from the serial, what happens? If the second transaction waits for the first, you have poor concurrency. If it doesn't, then what happens if the first gets say 1 and the second 2 and then the first rolls back?
В списке pgsql-novice по дате отправления: