extract functions to own file

This commit is contained in:
2021-12-18 13:37:42 +01:00
parent c9c4f0fba3
commit 906df74847
8 changed files with 184 additions and 164 deletions

View File

@@ -97,7 +97,7 @@ private:
}
}
std::vector<rowid_t> search(IndexValue key) {
std::vector<rowid_t> search(const IndexValue& key) {
auto search = m_index.find(key);
if (search != m_index.end()) {
return search->second;