We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d891b01 commit 3745c1bCopy full SHA for 3745c1b
components/core/src/clp_s/ColumnReader.hpp
@@ -111,6 +111,12 @@ class DeltaEncodedInt64ColumnReader : public BaseColumnReader {
111
void extract_string_value_into_buffer(uint64_t cur_message, std::string& buffer) override;
112
113
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
+ */
120
int64_t get_value_at_idx(size_t idx);
121
122
UnalignedMemSpan<int64_t> m_values;
0 commit comments