From 644901e77b6252b27c3772222c3da5ab92ba38fc Mon Sep 17 00:00:00 2001 From: William Dealtry Date: Fri, 13 Sep 2024 10:37:01 +0000 Subject: [PATCH] Fix tests --- cpp/arcticdb/column_store/chunked_buffer.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/cpp/arcticdb/column_store/chunked_buffer.hpp b/cpp/arcticdb/column_store/chunked_buffer.hpp index bb7898594f4..acac1790a60 100644 --- a/cpp/arcticdb/column_store/chunked_buffer.hpp +++ b/cpp/arcticdb/column_store/chunked_buffer.hpp @@ -384,6 +384,7 @@ class ChunkedBufferImpl { auto [ptr, ts] = Allocator::aligned_alloc(sizeof(MemBlock)); new(ptr) MemBlock(data, size, offset, ts, false); blocks_.emplace_back(reinterpret_cast(ptr)); + bytes_ += size; } void add_detachable_block(size_t capacity) {