Skip to content

Commit 9c9b62a

Browse files
Merge pull request #8 from fivetran/bugix/account-deletes-removal
Bugix/account deletes removal
2 parents 1a42b0d + 5e8a0db commit 9c9b62a

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# dbt_sage_intacct_source v0.1.2
2+
3+
## Updates
4+
- Removed the `_fivetran_deleted` filter in the `stg_sage_intacct__gl_account`. We saw there were records in the `gl_detail` table that were associated with accounts that were deleted, which affected our joins and bubbled up later in the final P&L and balance sheet models. By removing the filter the balances tie out. However, we've kept `_fivetran_deleted` as a column so the user may filter that out on their own.
5+
([#8](https://github.com/fivetran/dbt_sage_intacct_source/pull/8))
6+
17
# dbt_sage_intacct_source v0.1.1
28

39
## Updates

dbt_project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: 'sage_intacct_source'
2-
version: '0.1.1'
2+
version: '0.1.2'
33
config-version: 2
44
require-dbt-version: [">=1.0.0", "<2.0.0"]
55

integration_tests/dbt_project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
name: 'sage_intacct_source_integration_tests'
3-
version: '0.1.1'
3+
version: '0.1.2'
44
config-version: 2
55

66
profile: 'integration_tests'

models/stg_sage_intacct__gl_account.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,5 @@ final as (
5959
from fields
6060
)
6161

62-
select * from final
63-
where not coalesce(_fivetran_deleted, false)
62+
select *
63+
from final

0 commit comments

Comments
 (0)