Skip to content

Commit

Permalink
PR fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fivetran-avinash committed Nov 13, 2024
1 parent 87a7d63 commit 57118b8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/catalog.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/manifest.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

with prod as (
select
account_id,
case when account_id is null then -999999 else account_id end as account_id,
date_trunc(accounting_period_ending, month) as prod_account_period_month,
count(*) as prod_row_count,
sum(converted_amount) as prod_converted_amount
Expand All @@ -16,7 +16,7 @@ with prod as (

dev as (
select
account_id,
case when account_id is null then -999999 else account_id end as account_id,
date_trunc(accounting_period_ending, month) as dev_account_period_month,
count(*) as dev_row_count,
sum(converted_amount) as dev_converted_amount
Expand Down

0 comments on commit 57118b8

Please sign in to comment.