alamb commented on PR #5180:
URL: https://github.com/apache/arrow-rs/pull/5180#issuecomment-1847635374

   After further study of this matter, I think it could make sense to add new 
compairson kernels that were specific to intervals and implemented the partial 
order interval comparisons as proposed in this PR, 
   
   Something like
   
   ```rust
   let arr1 = IntervalMonthDayNanoArray::from(...);
   let arr2 = IntervalMonthDayNanoArray::from(...);
   
   // compare arr1 and arr2 using interval specific logic / partial order
   let res = interval_partial_lt()
   ```


-- 
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]

Reply via email to