1 /*-------------------------------------------------------------------------
4 * Frontend exposed parts of postgres' low level lock mechanism
6 * The split between lockdefs.h and lock.h is not very principled. This file
7 * contains definition that have to (indirectly) be available when included by
10 * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group
11 * Portions Copyright (c) 1994, Regents of the University of California
13 * src/include/storage/lockdefs.h
15 *-------------------------------------------------------------------------
21 * LOCKMODE is an integer (1..N) indicating a lock type. LOCKMASK is a bit
22 * mask indicating a set of held or requested lock types (the bit 1<<mode
23 * corresponds to a particular lock mode).
29 * These are the valid values of type LOCKMODE for all the standard lock
30 * methods (both DEFAULT and USER).
33 /* NoLock is not a lock mode, but a flag value meaning "don't get a lock" */
36 #define AccessShareLock 1 /* SELECT */
37 #define RowShareLock 2 /* SELECT FOR UPDATE/FOR SHARE */
38 #define RowExclusiveLock 3 /* INSERT, UPDATE, DELETE */
39 #define ShareUpdateExclusiveLock 4 /* VACUUM (non-FULL),ANALYZE, CREATE INDEX
41 #define ShareLock 5 /* CREATE INDEX (WITHOUT CONCURRENTLY) */
42 #define ShareRowExclusiveLock 6 /* like EXCLUSIVE MODE, but allows ROW
44 #define ExclusiveLock 7 /* blocks ROW SHARE/SELECT...FOR UPDATE */
45 #define AccessExclusiveLock 8 /* ALTER TABLE, DROP TABLE, VACUUM FULL,
46 * and unqualified LOCK TABLE */
51 /* WAL representation of an AccessExclusiveLock on a table */
52 typedef struct xl_standby_lock
54 TransactionId xid
; /* xid of holder of AccessExclusiveLock */
55 Oid dbOid
; /* DB containing table */
56 Oid relOid
; /* OID of table */
59 #endif /* LOCKDEFS_H_ */