Re: Counterintuitive locking behavior - Mailing list pgsql-general

From Amit kapila
Subject Re: Counterintuitive locking behavior
Date
Msg-id 6C0B27F7206C9E4CA54AE035729E9C383BEA732A@szxeml509-mbx
Whole thread Raw
In response to Re: Counterintuitive locking behavior  (Amit kapila <amit.kapila@huawei.com>)
List pgsql-general
On Sunday, January 06, 2013 11:10 AM Amit kapila wrote:
On Sunday, January 06, 2013 7:48 AM Chris Travers wrote:




>> Is there a reason why we don't do locking this way?  (i.e. where on UPDATE foo, all rows selected from foo during
the
>> update are locked unless the subselect specifically states otherwise.)

>The reason for this behavior is if it locks all rows during select, then it can so happen that Update will actually
nothappen on the row but it will be locked. 
> For example

> UPDATE foo SET test = 3 WHERE test in (select test from foo where test = 1) and FALSE;

> Now in this case if it locks the rows during subselect, then the rows will be locked during whole transaction
> irrespective of the fact that they will not be updated.

In the above example and FALSE, I mean to say any other subquery which will yield the overall condition to not return
anyrow. 
Similarly there can be many more scenarios where only half of the selected rows (by one of the conds. ) will be actual
candidatesof Update. 

With Regards,
Amit Kapila.



pgsql-general by date:

Previous
From: Amit kapila
Date:
Subject: Re: Counterintuitive locking behavior
Next
From: Boszormenyi Zoltan
Date:
Subject: Re: Counterintuitive locking behavior