Atomic/locked "allocation" of table row?
| От | Sten Daniel Soersdal |
|---|---|
| Тема | Atomic/locked "allocation" of table row? |
| Дата | |
| Msg-id | 46B68136.1090206@gmail.com обсуждение исходный текст |
| Ответы |
Re: Atomic/locked "allocation" of table row?
Re: Atomic/locked "allocation" of table row? |
| Список | pgsql-novice |
CREATE TABLE tunnel (
username integer UNIQUE, -- ranges from 1 to ~250.000
password varchar
);
I need to write a function to "allocate" an empty "tunnel" on a
prepopulated table where all fields, except username, IS NULL by default.
In essence this function would do;
UPDATE SET password = 'mysecret' WHERE username = ( SELECT username FROM
tunnel WHERE password IS NULL LIMIT 1 );
But i need to know that no other concurrently running session would
allocate that specific row in between the SELECT ... and the UPDATE.
Could this be done atomically somehow? Is it necessary to add some kind
of locking? Help?
--
Sten Daniel Soersdal
В списке pgsql-novice по дате отправления: