[
https://issues.apache.org/jira/browse/ARROW-8235?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17067960#comment-17067960
]
Joris Van den Bossche commented on ARROW-8235:
----------------------------------------------
Yes, base R emits null. (but you could maybe also use the name "KEEP" as
description for that, as you "keep the null" .. ;-))
> [C++][Compute] Filter out nulls by default
> ------------------------------------------
>
> Key: ARROW-8235
> URL: https://issues.apache.org/jira/browse/ARROW-8235
> Project: Apache Arrow
> Issue Type: Improvement
> Components: C++ - Compute
> Affects Versions: 0.16.0
> Reporter: Ben Kietzman
> Assignee: Ben Kietzman
> Priority: Major
> Fix For: 0.17.0
>
>
> The filter kernel currently emits null when a slot in the selection mask is
> null. For compatibility with Kleene logic systems like SQL, this behavior
> should be configurable. Provide an option enumeration:
> {code}
> struct FilterOptions {
> enum NullSelectionBehavior {
> /// null slots in the selection mask will drop the filtered value
> DROP,
> /// null slots in the selection mask will keep the filtered value
> KEEP,
> /// null slots in the selection mask will replace the filtered value with
> null
> EMIT_NULL,
> } null_selection_behavior;
> };
> {code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)