collimarco opened a new issue, #34819:
URL: https://github.com/apache/arrow/issues/34819

   ### Describe the enhancement requested
   
   It would be useful to have access to the string matching functions using the 
Ruby gem.
   
   These are the functions:
   https://arrow.apache.org/docs/cpp/compute.html#containment-tests
   
   For example:
   
   ```ruby
   # Find rows that have a status 200 and contain the string example in the 
message field
   table.slice { |slicer| (slicer['status'] == 200) & 
(slicer['message'].match_substring 'example') }
   ```
   
   
   
   
   
   ### Component(s)
   
   Ruby


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