diff options
Diffstat (limited to 'include/framework/InternalLevel.h')
| -rw-r--r-- | include/framework/InternalLevel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/framework/InternalLevel.h b/include/framework/InternalLevel.h index 62c6915..3f41655 100644 --- a/include/framework/InternalLevel.h +++ b/include/framework/InternalLevel.h @@ -122,7 +122,7 @@ public: bool delete_record(const R &rec) { if (m_shard_cnt == 0) return false; - for (size_t i = 0; i < m_shards->size(); ++i) { + for (size_t i = 0; i < m_shards.size(); ++i) { if (m_shards[i]) { auto res = m_shards[i]->point_lookup(rec); if (res) { |