Skip to content

Commit

Permalink
Fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
bvkabn committed Sep 20, 2024
1 parent d234259 commit 06bdd72
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 0 deletions.
3 changes: 3 additions & 0 deletions models/dim_dbt__current_models.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ with
select * from base where run_started_at = (select max(run_started_at) from base)

),

latest_models_runs as (

/* Retreives all successful run information for the models present in the most
Expand All @@ -32,6 +33,7 @@ with
where model_executions.status = 'success'

),

latest_model_stats as (

select
Expand Down Expand Up @@ -100,6 +102,7 @@ with
group by node_id

),

final as (

select
Expand Down
1 change: 1 addition & 0 deletions models/dim_dbt__models.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
with
base as (select * from {{ ref("stg_dbt__models") }}),

models as (

select
Expand Down
1 change: 1 addition & 0 deletions models/dim_dbt__seeds.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
with
base as (select * from {{ ref("stg_dbt__seeds") }}),

seeds as (

select
Expand Down
1 change: 1 addition & 0 deletions models/dim_dbt__snapshots.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
with
base as (select * from {{ ref("stg_dbt__snapshots") }}),

snapshots as (

select
Expand Down
1 change: 1 addition & 0 deletions models/dim_dbt__sources.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
with
base as (select * from {{ ref("stg_dbt__sources") }}),

sources as (

select
Expand Down
1 change: 1 addition & 0 deletions models/fct_dbt__model_executions.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
with
base as (select * from {{ ref("stg_dbt__model_executions") }}),

model_executions as (

select
Expand Down
1 change: 1 addition & 0 deletions models/fct_dbt__seed_executions.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
with
base as (select * from {{ ref("stg_dbt__seed_executions") }}),

seed_executions as (

select
Expand Down
1 change: 1 addition & 0 deletions models/fct_dbt__snapshot_executions.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
with
base as (select * from {{ ref("stg_dbt__snapshot_executions") }}),

snapshot_executions as (

select
Expand Down
1 change: 1 addition & 0 deletions models/fct_dbt__test_executions.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
with
base as (select * from {{ ref("stg_dbt__test_executions") }}),

test_executions as (

select
Expand Down

0 comments on commit 06bdd72

Please sign in to comment.