Re: Predicate locking - Mailing list pgsql-hackers

From Vlad Arkhipov
Subject Re: Predicate locking
Date
Msg-id 4DB7E0D3.1080200@dc.baikal.ru
Whole thread Raw
In response to Re: Predicate locking  (Nicolas Barbier <nicolas.barbier@gmail.com>)
Responses Re: Predicate locking  (Heikki Linnakangas <heikki.linnakangas@enterprisedb.com>)
List pgsql-hackers
27.04.2011 17:45, Nicolas Barbier:
> 2011/4/27 Vlad Arkhipov<arhipov@dc.baikal.ru>:
>
>    
>> I'm currently need predicate locking in the project, so there are two ways
>> to get it by now: implement it by creating special database records to lock
>> with SELECT FOR UPDATE or wait while they will be implemented in Postgres
>> core. Is there something like predicate locking on the TODO list currently?
>>      
> I assume you want ("real", as opposed to what is in<  9.1 now)
> SERIALIZABLE transactions, in which case you could check:
>
> <URL:http://wiki.postgresql.org/wiki/Serializable>
>
> Nicolas
>
>    
Not sure about the whole transaction, I think it degrades the 
performance too much as transactions access many tables. Just wanted 
SELECT FOR UPDATE to prevent inserting records into a table with the 
specified condition. It seems to be very typical situation when you have 
a table like
CREATE TABLE timetable (start_ts TIMESTAMP, end_ts TIMESTAMP)
and before insertion in this table want to guarantee that there is no 
overlapped time intervals there. So, first you need to lock the range in 
the table, then to check if there are any records in this range.
In my case this table is the only for which I need such kind of locking.


pgsql-hackers by date:

Previous
From: Nicolas Barbier
Date:
Subject: Re: Predicate locking
Next
From: Heikki Linnakangas
Date:
Subject: Re: Predicate locking