Skip to content

Commit

Permalink
chore: fixed cargo check
Browse files Browse the repository at this point in the history
  • Loading branch information
mehulmathur16 committed Oct 5, 2024
1 parent ac6b488 commit 5f2b71d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/proof-of-sql/src/base/database/owned_column.rs
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ impl<'a, S: Scalar> From<&Column<'a, S>> for OwnedColumn<S> {
Column::Int(col) => OwnedColumn::Int(col.to_vec()),
Column::BigInt(col) => OwnedColumn::BigInt(col.to_vec()),
Column::VarChar((col, _)) => {
OwnedColumn::VarChar(col.iter().map(std::string::ToString::to_string).collect())
OwnedColumn::VarChar(col.iter().map(ToString::to_string).collect())
}
Column::Int128(col) => OwnedColumn::Int128(col.to_vec()),
Column::Decimal75(precision, scale, col) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ where
let n = 1 << num_vars;
assert!(n >= values.len());
let scalars = if_rayon!(values.par_iter(), values.iter())
.map(std::convert::Into::into)
.map(Into::into)
.chain(if_rayon!(
rayon::iter::repeatn(Zero::zero(), n - values.len()),
itertools::repeat_n(Zero::zero(), n - values.len())
Expand Down

0 comments on commit 5f2b71d

Please sign in to comment.