From 85afe4ef04f327862460570fb0aa4c30afcf7cc7 Mon Sep 17 00:00:00 2001 From: Douglas Rumbaugh Date: Tue, 11 Feb 2025 17:32:10 -0500 Subject: Progress: began adding parallel merging and locking of levels --- include/framework/reconstruction/TieringPolicy.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'include/framework/reconstruction/TieringPolicy.h') diff --git a/include/framework/reconstruction/TieringPolicy.h b/include/framework/reconstruction/TieringPolicy.h index aa94f7a..d8769f7 100644 --- a/include/framework/reconstruction/TieringPolicy.h +++ b/include/framework/reconstruction/TieringPolicy.h @@ -24,10 +24,9 @@ public: TieringPolicy(size_t scale_factor, size_t buffer_size) : m_scale_factor(scale_factor), m_buffer_size(buffer_size) {} - ReconstructionVector get_reconstruction_tasks( - const Version *version) const override { - ReconstructionVector reconstructions; - return reconstructions; + std::vector get_reconstruction_tasks( + const Version *version, LockManager &lock_mngr) const override { + return {}; } ReconstructionVector -- cgit v1.2.3