diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2023-10-30 14:17:59 -0400 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2023-10-30 14:17:59 -0400 |
| commit | 39ae3e0441d8297a09197aba98bd494b5ada12c1 (patch) | |
| tree | 3bd5c8053ef17188ece2f1839d443df98875939f /include/framework/structure/BufferView.h | |
| parent | 3afacb7702e6d8fa67749a2a41dc776d315e02a9 (diff) | |
| download | dynamic-extension-39ae3e0441d8297a09197aba98bd494b5ada12c1.tar.gz | |
Concurrency updates + fixes for compile errors
Diffstat (limited to 'include/framework/structure/BufferView.h')
| -rw-r--r-- | include/framework/structure/BufferView.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/framework/structure/BufferView.h b/include/framework/structure/BufferView.h index 1efc1ac..14abedc 100644 --- a/include/framework/structure/BufferView.h +++ b/include/framework/structure/BufferView.h @@ -35,7 +35,7 @@ public: BufferView(std::vector<Buffer*> buffers) : m_buffers(buffers) - , m_cutoff(buffers[buffers->size()-1]->get_record_count()) + , m_cutoff(buffers[buffers.size()-1]->get_record_count()) {} ~BufferView() = default; @@ -102,7 +102,7 @@ public: return m_buffers[0]->get_tombstone_capacity(); } - std::vector<void *> get_buffer_states(void *parms) { + std::vector<void *> get_query_states(void *parms) { std::vector<void *> states; for (auto buf : m_buffers) { |