We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The nullability of functions like coalesce, least_skip_null and greatest_skip_null can be expressed in words as:
coalesce
least_skip_null
greatest_skip_null
The function returns null only if all arguments evaluate to null.
or equivalently
The function returns non-null if any of the inputs are non-null.
There is currently no mechanism for explaining this nullability.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The nullability of functions like
coalesce
,least_skip_null
andgreatest_skip_null
can be expressed in words as:or equivalently
There is currently no mechanism for explaining this nullability.
The text was updated successfully, but these errors were encountered: