Skip to content

Commit

Permalink
add: deps_dev explicit source (#2407)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jabolol authored Oct 27, 2024
1 parent fb0117a commit 64f3165
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions warehouse/dbt/models/deps_dev_sources.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
sources:
- name: deps_dev
database: bigquery-public-data
schema: deps_dev_v1
tables:
- name: dependencies
identifier: Dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ with base as (
`Version`,
`Dependency`,
`MinimumDepth`
from `bigquery-public-data.deps_dev_v1.Dependencies`
from {{ source("deps_dev", "dependencies") }}
)
{% if is_incremental() %}
select * from base
Expand Down

0 comments on commit 64f3165

Please sign in to comment.