diff options
author | Fujii Masao <fujii@postgresql.org> | 2020-03-17 12:06:22 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2020-03-17 12:06:22 +0900 |
commit | 1429d3f767a05e7a4819f55c5b3ff768862dcf78 (patch) | |
tree | 609eb70b56fd87a40d06febb0cb81af5f95c0668 /src/backend/access/transam/xlog.c | |
parent | 41b45576d532ab6ef4a968f78b5b06d700ebf61f (diff) | |
download | postgresql-1429d3f767a05e7a4819f55c5b3ff768862dcf78.tar.gz postgresql-1429d3f767a05e7a4819f55c5b3ff768862dcf78.zip |
Fix comment in xlog.c.
This commit fixes the comment about SharedHotStandbyActive variable.
The comment was apparently copy-and-pasted.
Author: Atsushi Torikoshi
Discussion: https://postgr.es/m/CACZ0uYEjpqZB9wN2Rwc_RMvDybyYqdbkPuDr1NyxJg4f9yGfMw@mail.gmail.com
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-rw-r--r-- | src/backend/access/transam/xlog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 4fa446ffa42..de2d4ee5829 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -649,8 +649,8 @@ typedef struct XLogCtlData bool SharedRecoveryInProgress; /* - * SharedHotStandbyActive indicates if we're still in crash or archive - * recovery. Protected by info_lck. + * SharedHotStandbyActive indicates if we allow hot standby queries to be + * run. Protected by info_lck. */ bool SharedHotStandbyActive; |