From 1ec25d2c4d1a86651d06c34b8924da34769b4393 Mon Sep 17 00:00:00 2001 From: Joe Markiewicz <74217849+fivetran-joemarkiewicz@users.noreply.github.com> Date: Thu, 26 Feb 2026 09:51:53 -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 79118e4..68f3bd9 100644 --- a/README.md +++ b/README.md @@ -1,21 +1,6 @@ # Linkedin dbt Package -

- - - - - - - - - - -

- This dbt package transforms data from Fivetran's Linkedin connector into analytics-ready tables. ## Resources @@ -29,6 +14,8 @@ This dbt package transforms data from Fivetran's Linkedin connector into analyti - [dbt Docs](https://fivetran.github.io/dbt_linkedin/#!/overview) - [DAG](https://fivetran.github.io/dbt_linkedin/#!/overview?g_v=1) - [Changelog](https://github.com/fivetran/dbt_linkedin/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 better understand the performance of your ads across varying grains and materializes output models designed to work simultaneously with our multi-platform Ad Reporting package. It creates enriched models with metrics focused on account, campaign, campaign group, creative, and utm/url level reports. diff --git a/integration_tests/dbt_project.yml b/integration_tests/dbt_project.yml index 49c6adc..83d5207 100644 --- a/integration_tests/dbt_project.yml +++ b/integration_tests/dbt_project.yml @@ -22,6 +22,9 @@ vars: linkedin_ads__conversion_fields: ['external_website_conversions', 'one_click_leads'] models: + +persist_docs: + relation: true + columns: true +schema: "linkedin_{{ var('directed_schema','dev') }}" seeds: From 9a2e99c85dc2b45d2337135d7705ddabf07ba03d Mon Sep 17 00:00:00 2001 From: Joe Markiewicz <74217849+fivetran-joemarkiewicz@users.noreply.github.com> Date: Thu, 26 Feb 2026 16:12:29 -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 83d5207..2208e2f 100644 --- a/integration_tests/dbt_project.yml +++ b/integration_tests/dbt_project.yml @@ -24,7 +24,7 @@ vars: models: +persist_docs: relation: true - columns: true + columns: "{{ false if target.type in ('databricks') else true }}" +schema: "linkedin_{{ var('directed_schema','dev') }}" seeds: