From 016ccf8eb860a4d87ed187dde767943ae327b086 Mon Sep 17 00:00:00 2001 From: LProcopi15 Date: Wed, 15 Jan 2025 13:02:34 -0800 Subject: [PATCH] modify base_location config --- dbt/adapters/snowflake/relation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbt/adapters/snowflake/relation.py b/dbt/adapters/snowflake/relation.py index e068e68d1..1082088fa 100644 --- a/dbt/adapters/snowflake/relation.py +++ b/dbt/adapters/snowflake/relation.py @@ -208,7 +208,7 @@ def get_iceberg_ddl_options(self, config: RelationConfig) -> str: # If the base_location config is supplied, overwrite the default value if base_path := config.get("base_location"): - base_location = f"{base_path}" + base_location = f"{base_path}/{self.name}" if subpath := config.get("base_location_subpath"): base_location += f"/{subpath}"