We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5e358a0 + 70425c8 commit fcdd117Copy full SHA for fcdd117
1 file changed
src/dve/core_engine/backends/implementations/duckdb/reference_data.py
@@ -46,4 +46,4 @@ def load_parquet_file(self, uri: str) -> DuckDBPyRelation:
46
@mark_refdata_file_extension("arrow")
47
def load_arrow_file(self, uri: str) -> DuckDBPyRelation:
48
"""Load an arrow ipc file into a duckdb relation"""
49
- 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
0 commit comments