Re: AccessExclusiveLock with pg_locks.locktype of tuple - Mailing list pgsql-general

From Tom Lane
Subject Re: AccessExclusiveLock with pg_locks.locktype of tuple
Date
Msg-id 32763.1576713987@sss.pgh.pa.us
Whole thread Raw
In response to AccessExclusiveLock with pg_locks.locktype of tuple  (Erik Jones <mage2k@gmail.com>)
List pgsql-general
Erik Jones <mage2k@gmail.com> writes:
> I've seen locks with mode of AccessExclusiveLock and locktype of tuple a
> few times now but have never been able to reproduce one nor had a chance to
> dig into them and now have a couple questions on them:
> * When is this kind of heavy lock on a row/tuple taken out?  I've done some
> code spelunking but have yet to find anything.

It's a transient state while waiting to acquire a "normal" tuple lock,
that is one recorded in the tuple header.  The explanation can be found
in src/backend/access/heap/README.tuplock, and the relevant code is
mostly in heap_lock_tuple().

            regards, tom lane



pgsql-general by date:

Previous
From: Stephen Frost
Date:
Subject: Re: READ UNCOMMITTED in postgres
Next
From: Thomas Kellerer
Date:
Subject: Re: READ UNCOMMITTED in postgres