diff options
| author | Robert Haas | 2022-04-08 15:44:17 +0000 |
|---|---|---|
| committer | Robert Haas | 2022-04-08 15:44:17 +0000 |
| commit | f37015a1617d4e6b4b50a1c789b382d9a654fcd9 (patch) | |
| tree | 69eefbb12bb4bfa426f188b78bdd3ebdc01d9858 /src/include | |
| parent | 891624f0ec3b3d353269b0bfc7bc545333d6b4d5 (diff) | |
Rename delayChkpt to delayChkptFlags.
Before commit 412ad7a55639516f284cd0ef9757d6ae5c7abd43, delayChkpt
was a Boolean. Now it's an integer. Extensions using it need to be
appropriately updated, so let's rename the field to make sure that
a hard compilation failure occurs.
Replacing delayChkpt with delayChkptFlags made a few comments extend
past 80 characters, so I reflowed them and changed some wording very
slightly.
The back-branches will need a different change to restore compatibility
with existing minor releases; this is just for master.
Per suggestion from Tom Lane.
Discussion: http://postgr.es/m/a7880f4d-1d74-582a-ada7-dad168d046d1@enterprisedb.com
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/storage/proc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/storage/proc.h b/src/include/storage/proc.h index c02001d3a0..809b74db5e 100644 --- a/src/include/storage/proc.h +++ b/src/include/storage/proc.h @@ -226,7 +226,7 @@ struct PGPROC pg_atomic_uint64 waitStart; /* time at which wait for lock acquisition * started */ - int delayChkpt; /* for DELAY_CHKPT_* flags */ + int delayChkptFlags; /* for DELAY_CHKPT_* flags */ uint8 statusFlags; /* this backend's status flags, see PROC_* * above. mirrored in |
