From 18272f53db5f0e95ddd423f076218328325555e7 Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Sun, 15 May 2022 17:19:34 +0300 Subject: [PATCH] Bump STORAGE_FORMAT_VERSION --- pageserver/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pageserver/src/lib.rs b/pageserver/src/lib.rs index fdce0e5c5f..1b90776f87 100644 --- a/pageserver/src/lib.rs +++ b/pageserver/src/lib.rs @@ -37,7 +37,7 @@ use pgdatadir_mapping::DatadirTimeline; /// This is embedded in the metadata file, and also in the header of all the /// layer files. If you make any backwards-incompatible changes to the storage /// format, bump this! -pub const STORAGE_FORMAT_VERSION: u16 = 3; +pub const STORAGE_FORMAT_VERSION: u16 = 4; // Magic constants used to identify different kinds of files pub const IMAGE_FILE_MAGIC: u16 = 0x5A60;