diff --git a/core/src/execution/datafusion/expressions/scalar_funcs.rs b/core/src/execution/datafusion/expressions/scalar_funcs.rs index 4e951ad10..8ff13e125 100644 --- a/core/src/execution/datafusion/expressions/scalar_funcs.rs +++ b/core/src/execution/datafusion/expressions/scalar_funcs.rs @@ -392,7 +392,7 @@ fn spark_round( ScalarValue::Float32(_) | ScalarValue::Float64(_) => Ok(ColumnarValue::Scalar( ScalarValue::try_from_array(&math_expressions::round(&[a.to_array()?])?, 0)?, )), - dt => exec_err!("Not supported datatype[{dt}] for ROUND"), + dt => exec_err!("Not supported datatype for ROUND: {dt}"), }, } }