Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Better error handling when null values are passed in #5

Closed
kevinschaich opened this issue Feb 17, 2022 · 1 comment
Closed

Better error handling when null values are passed in #5

kevinschaich opened this issue Feb 17, 2022 · 1 comment

Comments

@kevinschaich
Copy link
Owner

kevinschaich commented Feb 17, 2022

Currently the behavior for all UDFs is that if any row in your dataframe has a null value, the entire build will fail.

This type behavior would be better/more resilient:

@F.udf(T.ArrayType(T.StringType()))
def index_shape(geometry, resolution):
    if geometry is None:
        return None
    return _index_shape(geometry, resolution)
@kevinschaich
Copy link
Owner Author

Fixed by #10

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant