Skip to content

Commit

Permalink
make private variable
Browse files Browse the repository at this point in the history
  • Loading branch information
guenp committed Dec 3, 2024
1 parent 5b53e0f commit a6f0480
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dbt/adapters/duckdb/impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,11 +290,11 @@ def get_temp_relation_path(self, model: Any):
table that is dropped at the end of the incremental macro or post-model hook.
"""
# Add a unique identifier for this model (scoped per dbt run)
uuid = self._temp_schema_model_uuid[model.identifier]
_uuid = self._temp_schema_model_uuid[model.identifier]
return Path(
schema=self._temp_schema_name,
database=model.database,
identifier=f"{model.identifier}__{uuid}",
identifier=f"{model.identifier}__{_uuid}",
)

def post_model_hook(self, config: Any, context: Any) -> None:
Expand Down

0 comments on commit a6f0480

Please sign in to comment.