From 9af1d3bd28d73c09b349aed165777024a94963a8 Mon Sep 17 00:00:00 2001 From: Linwei Zhang Date: Thu, 5 Oct 2023 11:12:56 +0800 Subject: [PATCH] fmt --- src/binder/insert.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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!() }