From 9dec66b5147431d69f9a2139d18f702e15c8dfed Mon Sep 17 00:00:00 2001 From: Joe Markiewicz <74217849+fivetran-joemarkiewicz@users.noreply.github.com> Date: Wed, 25 Feb 2026 14:20:19 -0600 Subject: [PATCH 1/2] Readme and persist docs update --- README.md | 17 ++--------------- integration_tests/dbt_project.yml | 3 +++ 2 files changed, 5 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 3f62dbe..7e189e5 100644 --- a/README.md +++ b/README.md @@ -1,21 +1,6 @@ # Amazon Ads dbt Package -

- - - - - - - - - - -

- This dbt package transforms data from Fivetran's Amazon Ads connector into analytics-ready tables. ## Resources @@ -29,6 +14,8 @@ This dbt package transforms data from Fivetran's Amazon Ads connector into analy - [dbt Docs](https://fivetran.github.io/dbt_amazon_ads/#!/overview) - [DAG](https://fivetran.github.io/dbt_amazon_ads/#!/overview?g_v=1) - [Changelog](https://github.com/fivetran/dbt_amazon_ads/blob/main/CHANGELOG.md) +- dbt Core™ supported versions + - `>=1.3.0, <3.0.0` ## What does this dbt package do? This package enables you to produce modeled tables that leverage Amazon Ads data, provide insight into your ad performance across multiple grains, and materialize output models designed to work simultaneously with our multi-platform Ad Reporting package. It creates enriched models with metrics focused on account, portfolio, campaign, ad group, ad, keyword, and search term performance. diff --git a/integration_tests/dbt_project.yml b/integration_tests/dbt_project.yml index 47aa6de..2f8d894 100644 --- a/integration_tests/dbt_project.yml +++ b/integration_tests/dbt_project.yml @@ -27,6 +27,9 @@ vars: - name: purchases_14_d models: + +persist_docs: + relation: true + columns: true +schema: "amazon_ads_{{ var('directed_schema','dev') }}" dispatch: From f61f1ed762cb4a6cc32da502e15c8692bab062f3 Mon Sep 17 00:00:00 2001 From: Joe Markiewicz <74217849+fivetran-joemarkiewicz@users.noreply.github.com> Date: Thu, 26 Feb 2026 15:40:19 -0600 Subject: [PATCH 2/2] persist_docs conditional --- integration_tests/dbt_project.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration_tests/dbt_project.yml b/integration_tests/dbt_project.yml index 2f8d894..4b069ae 100644 --- a/integration_tests/dbt_project.yml +++ b/integration_tests/dbt_project.yml @@ -29,7 +29,7 @@ vars: models: +persist_docs: relation: true - columns: true + columns: "{{ false if target.type in ('databricks') else true }}" +schema: "amazon_ads_{{ var('directed_schema','dev') }}" dispatch: