Skip to content

Commit

Permalink
Raise error if store-failure tests same db rep
Browse files Browse the repository at this point in the history
  • Loading branch information
jtcohen6 committed May 16, 2021
1 parent 6fd215d commit 9830772
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/dbt/parser/manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ def _check_resource_uniqueness(
alias_resources: Dict[str, ManifestNode] = {}

for resource, node in manifest.nodes.items():
if node.resource_type not in NodeType.refable():
if not node.is_relational:
continue
# appease mypy - sources aren't refable!
assert not isinstance(node, ParsedSourceDefinition)
Expand Down

0 comments on commit 9830772

Please sign in to comment.