xudong963 commented on pull request #1245:
URL: https://github.com/apache/arrow-datafusion/pull/1245#issuecomment-961584923
Thanks for your nice work 🎉@NGA-TRAN
FYI
```shell
case1
postgres=# select 11 BETWEEN 0 AND 10 and NULL as c;
c
---
f
(1 row)
case2
postgres=# select 1 BETWEEN 0 AND 10 and NULL as c;
c
---
(1 row)
case3
postgres=# select 1 BETWEEN 0 AND 10 or NULL as c;
c
---
t
(1 row)
case4
postgres=# select 11 BETWEEN 0 AND 10 or NULL as c;
c
---
(1 row)
```
So I think we can add two tests about case1 and case4. @NGA-TRAN
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]