dbt treats referenced tables like columns and says they don't exist
The error Database Error in model section2 (models\example\section2.sql) column "section1" does not exist LINE 9: FROM ref( section1 ) S1 ^ My project directory /dbtxyz/models/example/section1.sql /dbtxyz/models/example/section2.sql /dbtxyz/project.yml /dbtxyz/profile.yml My profile.yml default: outputs: dev: type: "postgres" host: "localhost" user: "postgres" password: "password" port: 5432 dbname: "myprojectdata" schema: "myprojectdataschema" target: "dev" My project.yml analysis-paths: – analyses clean-targets:… Read More dbt treats referenced tables like columns and says they don't exist