viirya commented on code in PR #495: URL: https://github.com/apache/arrow-datafusion-python/pull/495#discussion_r1321864409
########## src/functions.rs: ########## @@ -230,7 +230,8 @@ scalar_function!(factorial, Factorial); scalar_function!(floor, Floor); scalar_function!(gcd, Gcd); scalar_function!(initcap, InitCap, "Converts the first letter of each word to upper case and the rest to lower case. Words are sequences of alphanumeric characters separated by non-alphanumeric characters."); -scalar_function!(lcm, Lcm); +scalar_function!(isnan, Isnan); +scalar_function!(iszero, Iszero);scalar_function!(lcm, Lcm); Review Comment: ```suggestion scalar_function!(iszero, Iszero); scalar_function!(lcm, Lcm); ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
