UserLock oddity with Limit

Поиск
Список
Период
Сортировка
От Rod Taylor
Тема UserLock oddity with Limit
Дата
Msg-id 009f01c0d7ce$8e405730$2205010a@jester
обсуждение исходный текст
Ответы Re: UserLock oddity with Limit  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
Fiddling with userlock stuff for the purposes of setting up an action
queue.  Having the lock in the where clause causes the lock code to
actually lock 2 rows, not just the one that is being returned.  0's in
the last section means it could not be locked.  This is with 7.1.1.
The function itself is pretty simple, so I'm wondering that the
function isn't being evaluated for 2 rows where only 1 was wanted.

Userlock code is in the contrib. section.


CREATE TABLE testlock ( id SERIAL PRIMARY KEY
);

INSERT INTO testlock DEFAULT VALUES:
INSERT INTO testlock DEFAULT VALUES:
INSERT INTO testlock DEFAULT VALUES:
INSERT INTO testlock DEFAULT VALUES:
INSERT INTO testlock DEFAULT VALUES:

SELECT id FROM testlock WHERE user_write_lock_oid(oid) = '1' LIMIT 1;

-- From another connection

SELECT user_write_lock_oid(oid) FROM testlock;


--
Rod Taylor  BarChord Entertainment Inc.

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: AW: Isn't pg_statistic a security hole?
Следующее
От: Tom Lane
Дата:
Сообщение: Re: incorrect query result using complex structures (views?)