Skip to content

Commit

Permalink
fix: unnecessary borrow
Browse files Browse the repository at this point in the history
  • Loading branch information
ethe committed Jul 18, 2024
1 parent 24f052b commit 86c476b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/inmem/immutable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ pub(crate) mod tests {

impl Builder<TestImmutableArrays> for TestBuilder {
fn push(&mut self, key: Timestamped<&str>, row: Option<TestRef>) {
self.vstring.append_value(&key.value);
self.vstring.append_value(key.value);
match row {
Some(row) => {
self.vu32.append_value(row.vu32);
Expand Down

0 comments on commit 86c476b

Please sign in to comment.