Skip to content

Commit dfdd0ca

Browse files
fix: Remove bad snowflake offline store method (#3204)
Signed-off-by: Miles Adkins <[email protected]> Signed-off-by: Miles Adkins <[email protected]>
1 parent c19d640 commit dfdd0ca

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

sdk/python/feast/infra/offline_stores/snowflake.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -447,15 +447,6 @@ def to_sql(self) -> str:
447447
with self._query_generator() as query:
448448
return query
449449

450-
def to_arrow_chunks(self, arrow_options: Optional[Dict] = None) -> Optional[List]:
451-
with self._query_generator() as query:
452-
453-
arrow_batches = execute_snowflake_statement(
454-
self.snowflake_conn, query
455-
).get_result_batches()
456-
457-
return arrow_batches
458-
459450
def persist(self, storage: SavedDatasetStorage, allow_overwrite: bool = False):
460451
assert isinstance(storage, SavedDatasetSnowflakeStorage)
461452
self.to_snowflake(table_name=storage.snowflake_options.table)

0 commit comments

Comments
 (0)