Skip to content

Commit

Permalink
tabled/ Fix Disable::row issue with not all rows being deleted (#441)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiburt authored Nov 13, 2024
1 parent 57127a5 commit 36aa1de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tabled/src/settings/location/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ where

impl<B, R> Location<R> for Rows<B>
where
R: Records,
R: ExactRecords,
B: RangeBounds<usize>,
{
type Coordinate = usize;
Expand All @@ -154,7 +154,7 @@ where
let (from, to) = bounds_to_usize(
self.get_range().start_bound(),
self.get_range().end_bound(),
records.count_columns(),
records.count_rows(),
);

from..to
Expand Down

0 comments on commit 36aa1de

Please sign in to comment.