Skip to content

Commit

Permalink
Fixed issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulgoyal2987 committed Dec 9, 2024
1 parent 7046a13 commit 5df3ffe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dbt/adapters/spark/impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,8 +225,8 @@ def set_relation_information(self, relation: BaseRelation):
is_hudi: bool = "Provider: hudi" in information
is_iceberg: bool = "Provider: iceberg" in information
relation: BaseRelation = self.Relation.create(
schema=_schema,
identifier=name,
schema=relation.schema,
identifier=relation.identifier,
type=rel_type,
information=information,
is_delta=is_delta,
Expand Down

0 comments on commit 5df3ffe

Please sign in to comment.