Skip to content

Commit

Permalink
fix: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
Dustin-Ray committed Jun 19, 2024
1 parent 2ad138f commit b23e815
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/proof-of-sql/src/sql/ast/group_by_util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ pub(super) fn sum_aggregate_column_by_index_counts<'a, S: Scalar>(
}
Column::Scalar(col) => sum_aggregate_slice_by_index_counts(alloc, col, counts, indexes),
Column::VarChar(_) => unimplemented!("Cannot sum varchar columns"),
Column::TimestampTZ(_, _, col) => {
Column::TimestampTZ(_, _, _) => {
unimplemented!("Cannot sum varchar columns")
}
}
Expand Down

0 comments on commit b23e815

Please sign in to comment.