Skip to content

Commit

Permalink
Minior: Improve math expr description
Browse files Browse the repository at this point in the history
  • Loading branch information
caicancai committed Apr 2, 2024
1 parent cc1db8a commit f88591b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions datafusion/expr/src/expr_fn.rs
Original file line number Diff line number Diff line change
Expand Up @@ -536,11 +536,11 @@ macro_rules! nary_scalar_expr {
// math functions
scalar_expr!(Sqrt, sqrt, num, "square root of a number");
scalar_expr!(Cbrt, cbrt, num, "cube root of a number");
scalar_expr!(Sin, sin, num, "sine");
scalar_expr!(Cos, cos, num, "cosine");
scalar_expr!(Cot, cot, num, "cotangent");
scalar_expr!(Sinh, sinh, num, "hyperbolic sine");
scalar_expr!(Cosh, cosh, num, "hyperbolic cosine");
scalar_expr!(Sin, sin, num, "sine of a number");
scalar_expr!(Cos, cos, num, "cosine of a number");
scalar_expr!(Cot, cot, num, "cotangent of a number");
scalar_expr!(Sinh, sinh, num, "hyperbolic sine of a number");
scalar_expr!(Cosh, cosh, num, "hyperbolic cosine of a number");
scalar_expr!(Factorial, factorial, num, "factorial");
scalar_expr!(
Floor,
Expand Down

0 comments on commit f88591b

Please sign in to comment.