Skip to content

Commit 3745c1b

Browse files
committed
Add missing docstring
1 parent d891b01 commit 3745c1b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

components/core/src/clp_s/ColumnReader.hpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,12 @@ class DeltaEncodedInt64ColumnReader : public BaseColumnReader {
111111
void extract_string_value_into_buffer(uint64_t cur_message, std::string& buffer) override;
112112

113113
private:
114+
/**
115+
* Gets the value stored at a given index by summing up the stored deltas between the requested
116+
* index and the last requested index.
117+
* @param idx
118+
* @return The value stored at the requested index.
119+
*/
114120
int64_t get_value_at_idx(size_t idx);
115121

116122
UnalignedMemSpan<int64_t> m_values;

0 commit comments

Comments
 (0)