[DMDB] Fix issue

This commit is contained in:
2026-08-15 12:18:07 +02:00
parent aca626feaf
commit 1759b7898c
2 changed files with 1 additions and 1 deletions
Binary file not shown.
@@ -5,7 +5,7 @@ When we reach a leaf node, we return the corresponding pointer and the position.
\subparagraph{Range Lookup} \subparagraph{Range Lookup}
We return all tuples that match, by first finding the first tuple matching, the continue traversal until the last match is found. We return all tuples that match, by first finding the first tuple matching, then continue traversal until the last match is found.
We can determine the last match easily because the tree's leafs are lexicographically sorted. We can determine the last match easily because the tree's leafs are lexicographically sorted.
Since the leafs are linked as linked lists, we can simply move along the linked lists, cutting down on processing time. Since the leafs are linked as linked lists, we can simply move along the linked lists, cutting down on processing time.