Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
lewiszlw committed Oct 5, 2023
1 parent 0b515fd commit 9af1d3b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/binder/insert.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ impl<S: Storage> Binder<S> {
}
ScalarExpression::Unary { expr, op, .. } => {
if let ScalarExpression::Constant(value) = expr.as_ref() {
row.push(Arc::new(unary_op(value, op)?.cast(columns[i].datatype())?))
row.push(Arc::new(
unary_op(value, op)?.cast(columns[i].datatype())?,
))
} else {
unreachable!()
}
Expand Down

0 comments on commit 9af1d3b

Please sign in to comment.