diff --git a/src/postgres/math_udfs.rs b/src/postgres/math_udfs.rs index 7106589..ef9e529 100644 --- a/src/postgres/math_udfs.rs +++ b/src/postgres/math_udfs.rs @@ -21,6 +21,8 @@ pub fn acosd(args: &[ArrayRef]) -> Result { if result.fract() < 0.9 { float64array_builder.append_value(result); } else { + dbg!(&result); + dbg!(&result.round()); float64array_builder.append_value(result.round()); } Ok::<(), DataFusionError>(())