From 2e2fc7d4a396e1e4aa6868b7e00c95741d51e746 Mon Sep 17 00:00:00 2001 From: Denis Khalikov Date: Tue, 28 Jun 2022 01:58:47 +0300 Subject: [PATCH] [MCOL-5106] Support 48 extents per file for rebuildEM. This patch increases the number of extents per segment file for rebuildEM tool. --- utils/compress/idbcompress.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/compress/idbcompress.cpp b/utils/compress/idbcompress.cpp index 2c64c3387..adc7a9cd5 100644 --- a/utils/compress/idbcompress.cpp +++ b/utils/compress/idbcompress.cpp @@ -56,7 +56,7 @@ const int LEN_OFFSET = 5; const unsigned HEADER_SIZE = 9; // The max number of lbids to be stored in segment file. -const uint32_t LBID_MAX_SIZE = 10; +const uint32_t LBID_MAX_SIZE = 48; struct CompressedDBFileHeader {