Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
0.9.7
-
None
-
None
Description
The logic around null and missing in Python UDFs right now is flawed. It will skip missing values if a null is encountered first. The check must be done by first checking for missing and observing any nulls, and only then seeing if null-call is true and calling the function dependent on whether or not any args were null.