dbt-labs / dbt-labs-experimental-features

dbt support for database features which are not yet supported natively in dbt-core
Apache License 2.0
145 stars 43 forks source link

Fixed deprecation warnings in materialized-views project by updating project structure. #23

Closed Luttik closed 2 years ago

Luttik commented 2 years ago

Currently running DBT, while having this project installed as a dependency, will yield the warning:

13:33:39  Running with dbt=1.0.3
13:33:39  [WARNING]: Deprecated functionality
The `source-paths` config has been renamed to `model-paths`. Please update your
`dbt_project.yml` configuration to reflect this change.
13:33:39  [WARNING]: Deprecated functionality
The `data-paths` config has been renamed to `seed-paths`. Please update your
`dbt_project.yml` configuration to reflect this change.

This pull request makes the suggested changes and is therefore in-line with modern DBT. And in doing so will resolve the source of these warnings.

I have tested this PR on my local repositories.

Luttik commented 2 years ago

@jtcohen6 Since you're usually quick and helpful when I tag you I'll do so again. This was again fairly low-hanging fruit.

Luttik commented 2 years ago

@jtcohen6 Could you check it out again? I've implemented your requested changes a while ago.