Skip to content

Commit

Permalink
who are you and how did you get here
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Sep 3, 2024
1 parent 2029369 commit 539309e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/store/re_dataframe/src/range.rs
Original file line number Diff line number Diff line change
@@ -194,7 +194,7 @@ impl RangeQueryHandle<'_> {
//
// TODO(cmc): should keep an extra sorted datastructure and use a binsearch instead.
while (cur_offset + cur_pov_chunk.num_rows() as u64) < offset {
cur_offset += offset + cur_pov_chunk.num_rows() as u64;
cur_offset += cur_pov_chunk.num_rows() as u64;

let Some(next_pov_chunk) = pov_chunks.next().cloned() else {
return results;

0 comments on commit 539309e

Please sign in to comment.