diff options
author | Noah Misch <noah@leadboat.com> | 2024-02-01 13:44:19 -0800 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2024-02-01 13:44:22 -0800 |
commit | 48a6bf5c4ea8e04cc9bb33a8120a21743da515ed (patch) | |
tree | 246b87c17f1efd2cb11c0cd8269bf475d4c261c8 /src/include/utils/wait_event.h | |
parent | 6d423e9ff95ac2e62655faa97633155d08dfdd64 (diff) |
Sync PG_VERSION file in CREATE DATABASE.
An OS crash could leave PG_VERSION empty or missing. The same symptom
appeared in a backup by block device snapshot, taken after the next
checkpoint and before the OS flushes the PG_VERSION blocks. Device
snapshots are not a documented backup method, however. Back-patch to
v15, where commit 9c08aea6a3090a396be334cc58c511edab05776a introduced
STRATEGY=WAL_LOG and made it the default.
Discussion: https://postgr.es/m/20240130195003.0a.nmisch@google.com
Diffstat (limited to 'src/include/utils/wait_event.h')
-rw-r--r-- | src/include/utils/wait_event.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/utils/wait_event.h b/src/include/utils/wait_event.h index 518d3b0a1f7..2adc5df2e79 100644 --- a/src/include/utils/wait_event.h +++ b/src/include/utils/wait_event.h @@ -234,7 +234,8 @@ typedef enum WAIT_EVENT_WAL_READ, WAIT_EVENT_WAL_SYNC, WAIT_EVENT_WAL_SYNC_METHOD_ASSIGN, - WAIT_EVENT_WAL_WRITE + WAIT_EVENT_WAL_WRITE, + WAIT_EVENT_VERSION_FILE_SYNC } WaitEventIO; |