diff --git a/src/binder/insert.rs b/src/binder/insert.rs index 5ee97d0b..85164f36 100644 --- a/src/binder/insert.rs +++ b/src/binder/insert.rs @@ -59,7 +59,9 @@ impl Binder { } 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!() }