riziles opened a new issue, #1077:
URL: https://github.com/apache/datafusion-python/issues/1077

   ### Describe the bug
   
   After upgrading to deltalake (Python) 0.25.1, this basic example fails. Was 
working fine before.
   
   ```python
   from deltalake import DeltaTable, write_deltalake
   import pyarrow as pa
   from datafusion import SessionContext
   
   arrow_tbl = pa.Table.from_pydict({"x": [1, 2], "y": [2.0, 4.0]})
   
   write_deltalake("./test/scratch", arrow_tbl, mode="overwrite")
   
   dt = DeltaTable("./test/scratch")
   
   ctx = SessionContext()
   
   ctx.register_table_provider("tbl", dt)
   
   print(ctx.table("tbl"))
   ```
   
   ### To Reproduce
   
   _No response_
   
   ### Expected behavior
   
   _No response_
   
   ### Additional context
   
   _No response_


-- 
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: github-unsubscr...@datafusion.apache.org.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to