This is an automated email from the ASF dual-hosted git repository.

comphead pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git


The following commit(s) were added to refs/heads/main by this push:
     new eebdbe8be6 Minior: Improve log expr description (#9516)
eebdbe8be6 is described below

commit eebdbe8be61ba1944b7a7e14d3edeed0259a7d74
Author: Cancai Cai <[email protected]>
AuthorDate: Sun Mar 10 03:48:46 2024 +0800

    Minior: Improve log expr description (#9516)
    
    * Minior: Improve log expr description
    
    * Minior: Improve log expr description
---
 datafusion/expr/src/expr_fn.rs | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/datafusion/expr/src/expr_fn.rs b/datafusion/expr/src/expr_fn.rs
index 7e1c0e77d7..ef1b1c4504 100644
--- a/datafusion/expr/src/expr_fn.rs
+++ b/datafusion/expr/src/expr_fn.rs
@@ -572,9 +572,9 @@ scalar_expr!(Signum, signum, num, "sign of the argument 
(-1, 0, +1) ");
 scalar_expr!(Exp, exp, num, "exponential");
 scalar_expr!(Gcd, gcd, arg_1 arg_2, "greatest common divisor");
 scalar_expr!(Lcm, lcm, arg_1 arg_2, "least common multiple");
-scalar_expr!(Log2, log2, num, "base 2 logarithm");
-scalar_expr!(Log10, log10, num, "base 10 logarithm");
-scalar_expr!(Ln, ln, num, "natural logarithm");
+scalar_expr!(Log2, log2, num, "base 2 logarithm of number");
+scalar_expr!(Log10, log10, num, "base 10 logarithm of number");
+scalar_expr!(Ln, ln, num, "natural logarithm (base e) of number");
 scalar_expr!(Power, power, base exponent, "`base` raised to the power of 
`exponent`");
 scalar_expr!(Atan2, atan2, y x, "inverse tangent of a division given in the 
argument");
 scalar_expr!(

Reply via email to