We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c19d640 commit dfdd0caCopy full SHA for dfdd0ca
sdk/python/feast/infra/offline_stores/snowflake.py
@@ -447,15 +447,6 @@ def to_sql(self) -> str:
447
with self._query_generator() as query:
448
return query
449
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
459
def persist(self, storage: SavedDatasetStorage, allow_overwrite: bool = False):
460
assert isinstance(storage, SavedDatasetSnowflakeStorage)
461
self.to_snowflake(table_name=storage.snowflake_options.table)
0 commit comments