Skip to content

Commit

Permalink
Update core/src/execution/datafusion/expressions/scalar_funcs.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Liang-Chi Hsieh <[email protected]>
  • Loading branch information
comphead and viirya authored Feb 27, 2024
1 parent 726dee2 commit cb24787
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/execution/datafusion/expressions/scalar_funcs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ fn spark_round(
array.clone()
])?))
}
dt => exec_err!("Not supported datatype[{dt}] for ROUND"),
dt => exec_err!("Not supported datatype for ROUND: {dt}"),
},
ColumnarValue::Scalar(a) => match a {
ScalarValue::Int64(a) if *point < 0 => {
Expand Down

0 comments on commit cb24787

Please sign in to comment.