Skip to content

Commit

Permalink
[release/v1.0.0-rc3-hotfixes]: lint?
Browse files Browse the repository at this point in the history
  • Loading branch information
bfops committed Feb 4, 2025
1 parent fa16c3a commit 8488c61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/table/src/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ impl Table {
// Project the needle row to the columns of the index, and then seek.
// As this is a unique index, there are 0-1 rows for this key.
let needle_row = unsafe { needle_table.get_row_ref_unchecked(needle_bs, needle_ptr) };
let key = needle_row.project(&cols).expect("needle row should be valid");
let key = needle_row.project(cols).expect("needle row should be valid");
target_index.seek(&key).next().filter(|&target_ptr| {
// SAFETY:
// - Caller promised that the row layouts were the same.
Expand Down

0 comments on commit 8488c61

Please sign in to comment.