Skip to content

Commit ad48146

Browse files
fix: Make snowflake to remote tables temporary (feast-dev#3588)
Signed-off-by: Miles Adkins <miles.adkins@snowflake.com>
1 parent ffd50fd commit ad48146

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ def to_remote_storage(self) -> List[str]:
556556
)
557557

558558
table = f"temporary_{uuid.uuid4().hex}"
559-
self.to_snowflake(table)
559+
self.to_snowflake(table, temporary=True)
560560

561561
query = f"""
562562
COPY INTO '{self.export_path}/{table}' FROM "{self.config.offline_store.database}"."{self.config.offline_store.schema_}"."{table}"\n

0 commit comments

Comments
 (0)