Skip to content

Commit

Permalink
fix semantic merge conflict in MemoryPageScanIterator (#632)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianburckhardt authored Jan 21, 2022
1 parent de198a0 commit a92adf0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cs/src/core/Allocator/MemoryPageScanIterator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ public MemoryPageScanIterator(Record<Key, Value>[] page, int start, int end, lon

public long NextAddress => pageStartAddress + (offset + 1) * recordSize;

public long BeginAddress => start;
public long BeginAddress => pageStartAddress + start * recordSize;

public long EndAddress => end;
public long EndAddress => pageStartAddress + end * recordSize;

public void Dispose()
{
Expand Down

0 comments on commit a92adf0

Please sign in to comment.