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

   ### Describe the bug, including details regarding any error messages, 
version, and platform.
   
   In Python you cannot call `compute.min_max` for the JSON type. 
   
   Reproduce the error with:
   
   ```python
   import pyarrow as pa
   import pyarrow.compute as pc
   
   table = pa.Table.from_arrays(
       [
           ["{}", "[1,2,3]"],
       ],
       schema=pa.schema(
           [
               pa.field("json_data", pa.json_(pa.string())),
           ],
       ),
   )
   
   bounds = pc.min_max(table["json_data"])
   ```
   
   ### Component(s)
   
   Python


-- 
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: issues-unsubscr...@arrow.apache.org.apache.org

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

Reply via email to