Re: BUG #6548: NOWAIT does not work in Select statement if table is locked using "Lock " command - Mailing list pgsql-bugs

From Tom Lane
Subject Re: BUG #6548: NOWAIT does not work in Select statement if table is locked using "Lock " command
Date
Msg-id 1737.1332344904@sss.pgh.pa.us
Whole thread Raw
In response to BUG #6548: NOWAIT does not work in Select statement if table is locked using "Lock " command  (neeraj.punmiya@securetogether.com)
List pgsql-bugs
neeraj.punmiya@securetogether.com writes:
> First database session:
> ---------------------------
> Lock table Test;

> Second database session
> -----------------------
> Select y from Test where x=1 for update nowait;

> select query waits until first session releases table lock.

This isn't a bug.  FOR UPDATE NOWAIT is only meant to specify not
waiting for row-level locks on the rows you're trying to lock for
update, as per the explanation in the SELECT reference page:

    To prevent the operation from waiting for other transactions to
    commit, use the NOWAIT option. With NOWAIT, the statement
    reports an error, rather than waiting, if a selected row cannot
    be locked immediately. Note that NOWAIT applies only to the
    row-level lock(s) - the required ROW SHARE table-level lock is
    still taken in the ordinary way

If it meant "fail on any lock anywhere" the behavior would be too
unpredictable.  You might consider doing "lock table Test in row share
mode nowait" in the second transaction, if you want it to fail on
table-level locks too.  Another solution is to just use a short
statement_timeout rather than NOWAIT clauses.

            regards, tom lane

pgsql-bugs by date:

Previous
From: "Kevin Grittner"
Date:
Subject: Re: BUG #6548: NOWAIT does not work in Select statement if table is locked using "Lock " command
Next
From: Alex Hunsaker
Date:
Subject: Re: BUG #6511: calling spi_exec_query from non-main package, results in: couldn't fetch $_TD