Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
dadepo committed Dec 17, 2023
1 parent 939b736 commit ed438ac
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/postgres/math_udfs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ pub fn acosd(args: &[ArrayRef]) -> Result<ArrayRef> {
if result.fract() < 0.9 {
float64array_builder.append_value(result);
} else {
dbg!(&result);
dbg!(&result.round());
float64array_builder.append_value(result.round());
}
Ok::<(), DataFusionError>(())
Expand Down

0 comments on commit ed438ac

Please sign in to comment.