diff --git a/dbt/adapters/snowflake/connections.py b/dbt/adapters/snowflake/connections.py index fcd16aafc..9685b35e3 100644 --- a/dbt/adapters/snowflake/connections.py +++ b/dbt/adapters/snowflake/connections.py @@ -487,6 +487,8 @@ def add_query( auto_begin: bool = True, bindings: Optional[Any] = None, abridge_sql_log: bool = False, + retryable_exceptions: tuple[type[Exception], ...] = tuple(), + retry_limit: int = 0, ) -> Tuple[Connection, Any]: # type: ignore if bindings: # The snowflake connector is stricter than, e.g., psycopg2 -