diff options
Diffstat (limited to 'src/include/storage/proc.h')
-rw-r--r-- | src/include/storage/proc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/storage/proc.h b/src/include/storage/proc.h index b20f9989a3f..0b1fa61310f 100644 --- a/src/include/storage/proc.h +++ b/src/include/storage/proc.h @@ -149,7 +149,7 @@ typedef enum * but its myProcLocks[] lists are valid. * * We allow many fields of this struct to be accessed without locks, such as - * delayChkptFlags and isBackgroundWorker. However, keep in mind that writing + * delayChkptFlags and isRegularBackend. However, keep in mind that writing * mirrored ones (see below) requires holding ProcArrayLock or XidGenLock in * at least shared mode, so that pgxactoff does not change concurrently. * @@ -216,7 +216,7 @@ struct PGPROC Oid tempNamespaceId; /* OID of temp schema this backend is * using */ - bool isBackgroundWorker; /* true if not a regular backend. */ + bool isRegularBackend; /* true if it's a regular backend. */ /* * While in hot standby mode, shows that a conflict signal has been sent |