Skip to content

Commit 1ba69c2

Browse files
sfc-gh-madkinszerafachris
authored andcommitted
fix: Make snowflake to remote tables temporary (feast-dev#3588)
Signed-off-by: Miles Adkins <miles.adkins@snowflake.com> Signed-off-by: zerafachris PERSONAL <zerafachris@gmail.com>
1 parent a44591f commit 1ba69c2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
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)