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

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


The following commit(s) were added to refs/heads/main by this push:
     new 0d7c19e  Minor: fix wrongly copied function description (#497)
0d7c19e is described below

commit 0d7c19e44b61a1f269f1b835f529ad35aa76c6b6
Author: Liang-Chi Hsieh <[email protected]>
AuthorDate: Mon Sep 11 12:50:48 2023 -0700

    Minor: fix wrongly copied function description (#497)
---
 src/functions.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/functions.rs b/src/functions.rs
index 6037ce1..d9a7d60 100644
--- a/src/functions.rs
+++ b/src/functions.rs
@@ -247,7 +247,7 @@ scalar_function!(
 scalar_function!(
     nanvl,
     Nanvl,
-    "Computes the MD5 hash of the argument, with the result written in 
hexadecimal."
+    "Returns x if x is not NaN otherwise returns y."
 );
 scalar_function!(octet_length, OctetLength, "Returns number of bytes in the 
string. Since this version of the function accepts type character directly, it 
will not strip trailing spaces.");
 scalar_function!(pi, Pi);

Reply via email to