You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@arrow.apache.org by "Andrew Lamb (Jira)" <ji...@apache.org> on 2021/02/23 13:19:00 UTC

[jira] [Created] (ARROW-11742) [Rust] [DataFusion] Add Expr::is_null and Expr::is_not_null functions

Andrew Lamb created ARROW-11742:
-----------------------------------

             Summary: [Rust] [DataFusion] Add Expr::is_null and Expr::is_not_null functions
                 Key: ARROW-11742
                 URL: https://issues.apache.org/jira/browse/ARROW-11742
             Project: Apache Arrow
          Issue Type: Improvement
            Reporter: Andrew Lamb


There are functions such as `Expr::lt` for building up expression trees more simply

I recently noticed that there is no `Expr::is_null()` or `Expr::is_not_null` for easily creating `Expr::IsNull(..)` and `Expr::IsNotNull(..)`, respectively.  Instead users must currently do something like;
```

                let tag_name_is_not_null = Expr::IsNotNull(Box::new(col(tag_name)));
```



--
This message was sent by Atlassian Jira
(v8.3.4#803005)