Skip to content

Commit

Permalink
Fix _get_cache_schemas by removing relation identifiers (#53)
Browse files Browse the repository at this point in the history
Co-authored-by: Michelle Ark <[email protected]>
Co-authored-by: Mike Alfare <[email protected]>
  • Loading branch information
3 people authored Jan 26, 2024
1 parent 2c045c9 commit 60005a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbt/adapters/base/impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ def _get_cache_schemas(self, relation_configs: Iterable[RelationConfig]) -> Set[
populate.
"""
return {
self.Relation.create_from(quoting=self.config, relation_config=relation_config)
self.Relation.create_from(quoting=self.config, relation_config=relation_config).without_identifier()
for relation_config in relation_configs
}

Expand Down

0 comments on commit 60005a0

Please sign in to comment.