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
in multi-threaded mode, 'dbt run' fails when two models share the same alias on distinct schemas, because the temporary tables share the same name for both models.
Issue description
model1.sql : schema = schema1, alias = my_model
model2.sql : schema = schema2, alias = my_model
Issue
in multi-threaded mode, 'dbt run' fails when two models share the same alias on distinct schemas, because the temporary tables share the same name for both models.
Issue description
model1.sql : schema = schema1, alias = my_model
model2.sql : schema = schema2, alias = my_model
in profile.yml : threads >= 2
dbt run might fail with the following error :
"ERROR : my_model__dbt_incremental_tmp already exists"
Results
running 'dbt run' again might work without issue, depending on the models processing order.
System information
dbt v0.12.2
The text was updated successfully, but these errors were encountered: