From 3307a8ae314b55519271d55dd116bbec1d085468 Mon Sep 17 00:00:00 2001 From: Joe Markiewicz <74217849+fivetran-joemarkiewicz@users.noreply.github.com> Date: Thu, 26 Feb 2026 09:52:27 -0600 Subject: [PATCH 1/3] 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 b320428..1aeefcc 100644 --- a/README.md +++ b/README.md @@ -1,21 +1,6 @@ # Qualtrics dbt Package -

- - - - - - - - - - -

- This dbt package transforms data from Fivetran's Qualtrics connector into analytics-ready tables. ## Resources @@ -29,6 +14,8 @@ This dbt package transforms data from Fivetran's Qualtrics connector into analyt - [dbt Docs](https://fivetran.github.io/dbt_qualtrics/#!/overview) - [DAG](https://fivetran.github.io/dbt_qualtrics/#!/overview?g_v=1) - [Changelog](https://github.com/fivetran/dbt_qualtrics/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 transform core object tables into analytics-ready models and consolidate survey responses with user, question, and survey details. It creates enriched models with metrics focused on surveys, contacts, directories, and distributions. diff --git a/integration_tests/dbt_project.yml b/integration_tests/dbt_project.yml index af446c0..a2fbae0 100644 --- a/integration_tests/dbt_project.yml +++ b/integration_tests/dbt_project.yml @@ -33,6 +33,9 @@ dispatch: search_order: ['spark_utils', 'dbt_utils'] models: + +persist_docs: + relation: true + columns: true +schema: "qualtrics_{{ var('directed_schema','dev') }}" seeds: From 1a71e360ddb4b8e5166616e8ee35b88a2759f3a9 Mon Sep 17 00:00:00 2001 From: Joe Markiewicz <74217849+fivetran-joemarkiewicz@users.noreply.github.com> Date: Thu, 26 Feb 2026 10:50:54 -0600 Subject: [PATCH 2/3] Update requirements.txt --- integration_tests/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration_tests/requirements.txt b/integration_tests/requirements.txt index 420d4ce..c9f6024 100644 --- a/integration_tests/requirements.txt +++ b/integration_tests/requirements.txt @@ -4,5 +4,5 @@ dbt-redshift>=1.3.0,<2.0.0 dbt-postgres>=1.3.0,<2.0.0 dbt-spark>=1.3.0,<2.0.0 dbt-spark[PyHive]>=1.3.0,<2.0.0 -dbt-databricks>=1.3.0,<1.10.10 +dbt-databricks>=1.3.0,<2.0.0 certifi==2025.1.31 From fc87eff95283d6d3753be92c614cc99e01276533 Mon Sep 17 00:00:00 2001 From: Joe Markiewicz <74217849+fivetran-joemarkiewicz@users.noreply.github.com> Date: Thu, 26 Feb 2026 16:12:53 -0600 Subject: [PATCH 3/3] 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 a2fbae0..92fc3ee 100644 --- a/integration_tests/dbt_project.yml +++ b/integration_tests/dbt_project.yml @@ -35,7 +35,7 @@ dispatch: models: +persist_docs: relation: true - columns: true + columns: "{{ false if target.type in ('databricks') else true }}" +schema: "qualtrics_{{ var('directed_schema','dev') }}" seeds: