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
dbt's caching will fail hard on PG/Redshift if there exists a view outside of a dbt-controlled schema that depends on a relation inside of a dbt controlled schema.
Results
InternalException: Cache inconsistency detected: in add_link, dependent link key _ReferenceKey(schema=u'dbt_airflow_events', identifier=u'tracking_l30d') not in cache!
System information
The output of dbt --version:
0.12.0
Steps to reproduce
Create and run an example model
-- models/test_it.sql
select 1 as id
Run the model
dbt run
Create an external dependency on this model
create schema debug;
create view debug.debug as (
select * from analytics.test_it -- the model created above
)
Run dbt again
# this will fail
dbt run
The text was updated successfully, but these errors were encountered:
Issue
Issue description
dbt's caching will fail hard on PG/Redshift if there exists a view outside of a dbt-controlled schema that depends on a relation inside of a dbt controlled schema.
Results
System information
The output of
dbt --version
:Steps to reproduce
The text was updated successfully, but these errors were encountered: