Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ def load_parquet_file(self, uri: str) -> DuckDBPyRelation:
@mark_refdata_file_extension("arrow")
def load_arrow_file(self, uri: str) -> DuckDBPyRelation:
"""Load an arrow ipc file into a duckdb relation"""
return self.connection.from_arrow(ipc.open_file(uri).read_all()) # type:ignore
return self.connection.from_arrow(ipc.open_stream(uri).read_all()) # type:ignore
Loading