v1.9.0 dbt_fivetran_log
fivetran-data-model-bot
released this
25 Jul 17:55
·
2 commits
to main
since this release
PR #132 includes the following updates:
🚨 Schema Changes 🚨
- Following the July 2024 Fivetran Platform connector update, the
connector_name
field has been added to theincremental_mar
source table. As a result, the following changes have been applied:- A new tmp model
stg_fivetran_platform__incremental_mar_tmp
has been created. This is necessary to ensure column consistency in downstreamincremental_mar
models. - The
get_incremental_mar_columns()
macro has been added to ensure all required columns are present in thestg_fivetran_platform__incremental_mar
model. - The
stg_fivetran_platform__incremental_mar
has been updated to reference both the aforementioned tmp model and macro to fill empty fields if any required field is not present in the source. - The
connector_name
field in thestg_fivetran_platform__incremental_mar
model is now defined by:coalesce(connector_name, connector_id)
. This ensures the data model will use the appropriate field to define theconnector_name
.
- A new tmp model
Under the Hood
- Updated integration test seed data within
integration_tests/seeds/incremental_mar.csv
to ensure new code updates are working as expected.
Full Changelog: v1.8.0...v1.9.0