File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 77 * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
88 * Portions Copyright (c) 1994, Regents of the University of California
99 *
10- * $PostgreSQL: pgsql/src/include/storage/lock.h,v 1.101 2006/10/04 00:30:10 momjian Exp $
10+ * $PostgreSQL: pgsql/src/include/storage/lock.h,v 1.102 2006/11/23 05:14:04 momjian Exp $
1111 *
1212 *-------------------------------------------------------------------------
1313 */
@@ -109,8 +109,9 @@ typedef uint16 LOCKMETHODID;
109109#define AccessShareLock 1 /* SELECT */
110110#define RowShareLock 2 /* SELECT FOR UPDATE/FOR SHARE */
111111#define RowExclusiveLock 3 /* INSERT, UPDATE, DELETE */
112- #define ShareUpdateExclusiveLock 4 /* VACUUM (non-FULL) */
113- #define ShareLock 5 /* CREATE INDEX */
112+ #define ShareUpdateExclusiveLock 4 /* VACUUM (non-FULL),ANALYZE, CREATE
113+ * INDEX CONCURRENTLY */
114+ #define ShareLock 5 /* CREATE INDEX (WITHOUT CONCURRENTLY) */
114115#define ShareRowExclusiveLock 6 /* like EXCLUSIVE MODE, but allows ROW
115116 * SHARE */
116117#define ExclusiveLock 7 /* blocks ROW SHARE/SELECT...FOR
You can’t perform that action at this time.
0 commit comments