-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Fix supportsFlatNoNullsFastPath for SimpleFunctionAdapter #7432
Conversation
✅ Deploy Preview for meta-velox canceled.
|
This pull request was exported from Phabricator. Differential Revision: D51005043 |
…cubator#7432) Summary: If the function has is_default_contains_nulls_behavior it returns null if the data contains null even if the return type of callNullFree is void, hence supportsFlatNoNullsFastPath should be false in that case, Fix facebookincubator#7420 Differential Revision: D51005043
2157874
to
ee8660b
Compare
This pull request was exported from Phabricator. Differential Revision: D51005043 |
…cubator#7432) Summary: If the function has is_default_contains_nulls_behavior it returns null if the data contains null even if the return type of callNullFree is void, hence supportsFlatNoNullsFastPath should be false in that case, Fix facebookincubator#7420 Differential Revision: D51005043
ee8660b
to
728611e
Compare
This pull request was exported from Phabricator. Differential Revision: D51005043 |
…cubator#7432) Summary: If the function has is_default_contains_nulls_behavior it returns null if the data contains null even if the return type of callNullFree is void, hence supportsFlatNoNullsFastPath should be false in that case, Fix facebookincubator#7420 Differential Revision: D51005043
728611e
to
9ef157a
Compare
This pull request was exported from Phabricator. Differential Revision: D51005043 |
…cubator#7432) Summary: If the function has is_default_contains_nulls_behavior it returns null if the data contains null even if the return type of callNullFree is void, hence supportsFlatNoNullsFastPath should be false in that case, Fix facebookincubator#7420 Differential Revision: D51005043
9ef157a
to
ad6e9e0
Compare
This pull request was exported from Phabricator. Differential Revision: D51005043 |
…cubator#7432) Summary: If the function has is_default_contains_nulls_behavior it returns null if the data contains null even if the return type of callNullFree is void, hence supportsFlatNoNullsFastPath should be false in that case, Fix facebookincubator#7420 Differential Revision: D51005043
…cubator#7432) Summary: If the function has is_default_contains_nulls_behavior it returns null if the data contains null even if the return type of callNullFree is void, hence supportsFlatNoNullsFastPath should be false in that case, Fix facebookincubator#7420 Differential Revision: D51005043
ad6e9e0
to
1d054d6
Compare
This pull request was exported from Phabricator. Differential Revision: D51005043 |
1d054d6
to
974632a
Compare
This pull request was exported from Phabricator. Differential Revision: D51005043 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks.
This pull request has been merged in d749ff8. |
Conbench analyzed the 1 benchmark run on commit There were no benchmark performance regressions. 🎉 The full Conbench report has more details. |
Summary:
If the function has is_default_contains_nulls_behavior it returns
null if the data contains null even if the return type of callNullFree is void,
hence supportsFlatNoNullsFastPath should be false in that cass.
Fix #7420
Differential Revision: D51005043