ch-sc opened a new pull request #9772:
URL: https://github.com/apache/arrow/pull/9772


   This PR adds two boolean kernels `kleene_or` and `kleene_and`.
   
   As described in the corresponding [JIRA 
ticket](https://issues.apache.org/jira/browse/ARROW-11973), the kleene operator 
handels null values differently compared to plain OR and AND operators. 
   
   
   | Operator | Left       | Right  | Result   |
   | -----------: | ----------:| --------:| ---------: |
   | AND        | TRUE   | NULL | NULL    |
   | AND        | FALSE  | NULL | FALSE |
   | OR          | TRUE   | NULL | TRUE   |
   | OR          | FALSE  | NULL | NULL   |
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to