Skip to content

Commit

Permalink
fix: vacuum reconstruct
Browse files Browse the repository at this point in the history
  • Loading branch information
usamoi committed Nov 20, 2024
1 parent 93e72e4 commit 2962d1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/postgres.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ impl Page {
removes.dedup();
let n = removes.len();
if n > 0 {
assert!(removes[n - 1] < self.len());
assert!(removes[n - 1] <= self.len());
unsafe {
pgrx::pg_sys::PageIndexMultiDelete(
(self as *mut Self).cast(),
Expand Down

0 comments on commit 2962d1f

Please sign in to comment.