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/structure/MutableBuffer.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/framework/structure/MutableBuffer.h') diff --git a/include/framework/structure/MutableBuffer.h b/include/framework/structure/MutableBuffer.h index 0eae73d..0197ecd 100644 --- a/include/framework/structure/MutableBuffer.h +++ b/include/framework/structure/MutableBuffer.h @@ -104,6 +104,7 @@ public: bool is_full() const { return get_record_count() >= m_hwm; } bool is_at_low_watermark() const { return get_record_count() >= m_lwm; } + bool is_at_high_watermark() const { return get_record_count() >= m_hwm; } size_t get_tombstone_count() const { return m_tscnt.load(); } -- cgit v1.2.3