add a missing space
Started by Junwang Zhaoover 3 years ago3 messages
This is a minor fix that adds a missing space in file lockdefs.h
--
Regards
Junwang Zhao
Attachments:
0001-add-a-missing-space.patchapplication/octet-stream; name=0001-add-a-missing-space.patchDownload
From e4741062927857fe7268b041233426a2a327a841 Mon Sep 17 00:00:00 2001
From: Junwang Zhao <zhjwpku@gmail.com>
Date: Thu, 21 Jul 2022 16:34:42 +0800
Subject: [PATCH v1] add a missing space
Signed-off-by: Junwang Zhao <zhjwpku@gmail.com>
---
src/include/storage/lockdefs.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/include/storage/lockdefs.h b/src/include/storage/lockdefs.h
index 350ddd4da4..448c30fcad 100644
--- a/src/include/storage/lockdefs.h
+++ b/src/include/storage/lockdefs.h
@@ -36,7 +36,7 @@ typedef int LOCKMODE;
#define AccessShareLock 1 /* SELECT */
#define RowShareLock 2 /* SELECT FOR UPDATE/FOR SHARE */
#define RowExclusiveLock 3 /* INSERT, UPDATE, DELETE */
-#define ShareUpdateExclusiveLock 4 /* VACUUM (non-FULL),ANALYZE, CREATE INDEX
+#define ShareUpdateExclusiveLock 4 /* VACUUM (non-FULL), ANALYZE, CREATE INDEX
* CONCURRENTLY */
#define ShareLock 5 /* CREATE INDEX (WITHOUT CONCURRENTLY) */
#define ShareRowExclusiveLock 6 /* like EXCLUSIVE MODE, but allows ROW
--
2.33.0
Re: add a missing space
On Thu, Jul 21, 2022 at 2:08 PM Junwang Zhao <zhjwpku@gmail.com> wrote:
This is a minor fix that adds a missing space in file lockdefs.h
LGTM. I'll push this in some time.
--
With Regards,
Amit Kapila.
Re: add a missing space
Great, thanks!
On Thu, Jul 21, 2022 at 6:13 PM Amit Kapila <amit.kapila16@gmail.com> wrote:
On Thu, Jul 21, 2022 at 2:08 PM Junwang Zhao <zhjwpku@gmail.com> wrote:
This is a minor fix that adds a missing space in file lockdefs.h
LGTM. I'll push this in some time.
--
With Regards,
Amit Kapila.
--
Regards
Junwang Zhao