From 46fd386cf3ddc89b36193efd382f933259a45a18 Mon Sep 17 00:00:00 2001 From: Steven Wang Date: Thu, 31 Oct 2024 15:29:12 -0400 Subject: [PATCH] enable overwrites --- target_snowflake/connector.py | 1 + 1 file changed, 1 insertion(+) diff --git a/target_snowflake/connector.py b/target_snowflake/connector.py index 398d835..6e5e62e 100644 --- a/target_snowflake/connector.py +++ b/target_snowflake/connector.py @@ -88,6 +88,7 @@ class SnowflakeConnector(SQLConnector): allow_column_alter: bool = True # Whether altering column types is supported. allow_merge_upsert: bool = False # Whether MERGE UPSERT is supported. allow_temp_tables: bool = True # Whether temp tables are supported. + allow_overwrite: bool = True def __init__(self, *args: Any, **kwargs: Any) -> None: self.table_cache: dict = {}