Added checks for tombstones

This commit is contained in:
2026-02-27 09:16:29 +02:00
parent 0014ce0602
commit af8b68ca46

View File

@@ -302,6 +302,11 @@ private:
queryResults.reserve(512); queryResults.reserve(512);
for (DualkeyHash *hash : hashList) { for (DualkeyHash *hash : hashList) {
// Tombstone
if (hash == nullptr) {
continue;
}
// The hell of doing 2 conditions with similar logics in // The hell of doing 2 conditions with similar logics in
// the same logical block // the same logical block
if constexpr (searchingInFirstKey) { if constexpr (searchingInFirstKey) {