tadeja commented on issue #49511:
URL: https://github.com/apache/arrow/issues/49511#issuecomment-4924745179

   A more recent test failure in CI job [AMD64 Conda Python 3.11 Sphinx & 
Numpydoc](https://github.com/apache/arrow/actions/runs/28873667781/job/85642975392#step:6:4591)
   
   <details><summary>Details</summary>
   <p>
   
   ```bash
   =================================== FAILURES 
===================================
   ____________________ [doctest] pyarrow.lib.Table.join_asof 
_____________________
   5860 --------
   5861 >>> import pyarrow as pa
   5862 >>> t1 = pa.table({'id': [1, 3, 2, 3, 3],
   5863 ...                'year': [2020, 2021, 2022, 2022, 2023]})
   5864 >>> t2 = pa.table({'id': [3, 4],
   5865 ...                'year': [2020, 2021],
   5866 ...                'n_legs': [5, 100],
   5867 ...                'animal': ["Brittle stars", "Centipede"]})
   5868 
   5869 >>> t1.join_asof(t2, on='year', by='id', tolerance=-2)
   Differences (unified diff with -expected +actual):
       @@ -5,6 +5,6 @@
        animal: string
        ----
       -id: [[1,3,2,3,3]]
       -year: [[2020,2021,2022,2022,2023]]
       -n_legs: [[null,5,null,5,null]]
       -animal: [[null,"Brittle stars",null,"Brittle stars",null]]
       +id: [[1,3],[2,3,3]]
       +year: [[2020,2021],[2022,2022,2023]]
       +n_legs: [[null,5],[null,5,null]]
       +animal: [[null,"Brittle stars"],[null,"Brittle stars",null]]
   
   
/opt/conda/envs/arrow/lib/python3.11/site-packages/pyarrow/lib.cpython-311-x86_64-linux-gnu.so:5869:
 DocTestFailure
   __________________ [doctest] pyarrow.lib.default_memory_pool 
___________________
   147 default_memory_pool()
   148 
   149 Return the process-global memory pool.
   150 
   151 Examples
   152 --------
   153 >>> default_memory_pool()
   Expected:
       <pyarrow.MemoryPool backend_name=... bytes_allocated=0 max_memory=...>
   Got:
       <pyarrow.MemoryPool backend_name=mimalloc bytes_allocated=448 
max_memory=2138688>
   
   
/opt/conda/envs/arrow/lib/python3.11/site-packages/pyarrow/lib.cpython-311-x86_64-linux-gnu.so:153:
 DocTestFailure
   ```
   
   </p>
   </details> 


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