kou commented on a change in pull request #11882:
URL: https://github.com/apache/arrow/pull/11882#discussion_r767427799
##########
File path: cpp/src/arrow/compute/kernels/scalar_compare.cc
##########
@@ -786,6 +878,10 @@ const FunctionDoc max_element_wise_doc{
{"*args"},
"ElementWiseAggregateOptions"};
+const FunctionDoc between_doc{"Check if values are in a range x <= y <= z",
Review comment:
I think that `x <= y <= z` is better for the default because pandas and
SQL's `BETWEEN` use it.
But the implementation in this pull request uses `x < y < z`.
--
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]