You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
f"Node {self.unique_id} attempted to reference node {self.ref_unique_id}, "
f"which is not allowed because the referenced node is private to the {self.group} group."
)
Out of an abundance of caution, and to avoid weird edge cases, we should raise it again (or a similar exception) while resolving refs at runtime. Probably within the RuntimeRefResolver.
The text was updated successfully, but these errors were encountered:
We raise a
DbtReferenceError
at parse time if a private model (access: private
) is referenced from outside itsgroup
:dbt-core/core/dbt/exceptions.py
Lines 1165 to 1176 in 6fedfe0
Out of an abundance of caution, and to avoid weird edge cases, we should raise it again (or a similar exception) while resolving
ref
s at runtime. Probably within theRuntimeRefResolver
.The text was updated successfully, but these errors were encountered: