Re: is an explicit lock necessary? - Mailing list pgsql-sql

From Andrew Sullivan
Subject Re: is an explicit lock necessary?
Date
Msg-id 20060504184748.GD21437@phlogiston.dyndns.org
Whole thread Raw
In response to is an explicit lock necessary?  (Ash Grove <ash_grv7@yahoo.com>)
List pgsql-sql
On Thu, May 04, 2006 at 11:10:56AM -0700, Ash Grove wrote:
> Hi,
> 
> Does beginning a transaction put locks on the tables
> queried within the transaction?

You mean like a table lock?  No.  A transaction does entail some
locks: for instance, an access exclusive lock will block behind your
share lock while you're looking at the table (because the exclusive
lock wants to be exclusive, of course).  See the concurrency control
section of the manual.

> In the example below, is #2 necessary? My thought was

No.  currval() is local to your _session_ (not even your
transaction).  The docs explain how this works.

A

-- 
Andrew Sullivan  | ajs@crankycanuck.ca
A certain description of men are for getting out of debt, yet are
against all taxes for raising money to pay it off.    --Alexander Hamilton


pgsql-sql by date:

Previous
From: Ash Grove
Date:
Subject: is an explicit lock necessary?
Next
From: Stephan Szabo
Date:
Subject: Re: is an explicit lock necessary?