We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e93b502 commit 0b89d50Copy full SHA for 0b89d50
sdk/python/feast/infra/offline_stores/duckdb.py
@@ -96,7 +96,7 @@ def _write_data_source(
96
prev_schema = (
97
DeltaTable(file_options.uri, storage_options=storage_options)
98
.schema()
99
- .to_arrow()
+ .to_pyarrow()
100
)
101
table = table.cast(ibis.Schema.from_pyarrow(prev_schema))
102
write_mode = "append"
sdk/python/feast/infra/offline_stores/file_source.py
@@ -202,7 +202,7 @@ def get_table_column_names_and_types(
202
schema = (
203
DeltaTable(self.path, storage_options=storage_options)
204
205
206
207
else:
208
raise Exception(f"Unknown FileFormat -> {self.file_format}")
0 commit comments