From 1a491a180b79114967accb58750ebd083181d932 Mon Sep 17 00:00:00 2001 From: fivetran-catfritz <111930712+fivetran-catfritz@users.noreply.github.com> Date: Thu, 6 Jul 2023 14:16:37 -0500 Subject: [PATCH 1/6] bugfix/user_unnest_warehouses --- CHANGELOG.md | 4 ++++ dbt_project.yml | 2 +- integration_tests/dbt_project.yml | 2 +- models/intermediate/int_iterable__list_user_unnest.sql | 9 ++++++--- 4 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f9d51f..c585529 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# dbt_iterable v0.8.1 +[PR #33](https://github.com/fivetran/dbt_iterable/pull/33) includes the following update: +## 🐛 Bugfix +- Updated intermediate model `int_iterable__list_user_unnest` to make sure empty array-rows are not removed for all warehouses. # dbt_iterable v0.8.0 [PR #30](https://github.com/fivetran/dbt_iterable/pull/30) includes the following updates: ## 🚨 Breaking Changes 🚨 (recommend `--full-refresh`) diff --git a/dbt_project.yml b/dbt_project.yml index a7ac59e..0a2916d 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -1,5 +1,5 @@ name: 'iterable' -version: '0.8.0' +version: '0.8.1' config-version: 2 require-dbt-version: [">=1.3.0", "<2.0.0"] models: diff --git a/integration_tests/dbt_project.yml b/integration_tests/dbt_project.yml index b047687..ae9371d 100644 --- a/integration_tests/dbt_project.yml +++ b/integration_tests/dbt_project.yml @@ -1,6 +1,6 @@ config-version: 2 name: 'iterable_integration_tests' -version: '0.8.0' +version: '0.8.1' profile: 'integration_tests' vars: iterable_source: diff --git a/models/intermediate/int_iterable__list_user_unnest.sql b/models/intermediate/int_iterable__list_user_unnest.sql index 1c22e08..d50a4bc 100644 --- a/models/intermediate/int_iterable__list_user_unnest.sql +++ b/models/intermediate/int_iterable__list_user_unnest.sql @@ -83,13 +83,16 @@ with user_history as ( {% if target.type == 'snowflake' %} cross join - table(flatten(input => parse_json(email_list_ids))) as email_list_id + table(flatten(input => parse_json(case when email_list_ids = '[]' then '["is_null"]' {# to not remove empty array-rows #} + else email_list_ids end))) as email_list_id {% elif target.type == 'bigquery' %} cross join - unnest(JSON_EXTRACT_STRING_ARRAY(email_list_ids)) as email_list_id + unnest(JSON_EXTRACT_STRING_ARRAY(case when email_list_ids = '[]' then '["is_null"]' {# to not remove empty array-rows #} + else email_list_ids end)) as email_list_id {% elif target.type in ('spark','databricks') %} cross join - lateral explode_outer(from_json(email_list_ids, 'array')) as email_list_id + lateral explode_outer(from_json(case when email_list_ids = '[]' then '["is_null"]' {# to not remove empty array-rows #} + else email_list_ids end, 'array')) as email_list_id {% else %} {# target is postgres #} cross join json_array_elements_text(cast(( From 77ea97bd6dfecc3b9705e7dec1fc4d5ade98f132 Mon Sep 17 00:00:00 2001 From: fivetran-catfritz <111930712+fivetran-catfritz@users.noreply.github.com> Date: Thu, 6 Jul 2023 14:41:08 -0500 Subject: [PATCH 2/6] update ymls --- integration_tests/ci/sample.profiles.yml | 10 +++++----- integration_tests/dbt_project.yml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/integration_tests/ci/sample.profiles.yml b/integration_tests/ci/sample.profiles.yml index ffe8970..fce829e 100644 --- a/integration_tests/ci/sample.profiles.yml +++ b/integration_tests/ci/sample.profiles.yml @@ -16,13 +16,13 @@ integration_tests: pass: "{{ env_var('CI_REDSHIFT_DBT_PASS') }}" dbname: "{{ env_var('CI_REDSHIFT_DBT_DBNAME') }}" port: 5439 - schema: iterable_integration_tests_03 + schema: iterable_integration_tests_04 threads: 8 bigquery: type: bigquery method: service-account-json project: 'dbt-package-testing' - schema: iterable_integration_tests_03 + schema: iterable_integration_tests_04 threads: 8 keyfile_json: "{{ env_var('GCLOUD_SERVICE_KEY') | as_native }}" snowflake: @@ -33,7 +33,7 @@ integration_tests: role: "{{ env_var('CI_SNOWFLAKE_DBT_ROLE') }}" database: "{{ env_var('CI_SNOWFLAKE_DBT_DATABASE') }}" warehouse: "{{ env_var('CI_SNOWFLAKE_DBT_WAREHOUSE') }}" - schema: iterable_integration_tests_03 + schema: iterable_integration_tests_04 threads: 8 postgres: type: postgres @@ -42,13 +42,13 @@ integration_tests: pass: "{{ env_var('CI_POSTGRES_DBT_PASS') }}" dbname: "{{ env_var('CI_POSTGRES_DBT_DBNAME') }}" port: 5432 - schema: iterable_integration_tests_03 + schema: iterable_integration_tests_04 threads: 8 databricks: catalog: "{{ env_var('CI_DATABRICKS_DBT_CATALOG') }}" host: "{{ env_var('CI_DATABRICKS_DBT_HOST') }}" http_path: "{{ env_var('CI_DATABRICKS_DBT_HTTP_PATH') }}" - schema: iterable_integration_tests_03 + schema: iterable_integration_tests_04 threads: 8 token: "{{ env_var('CI_DATABRICKS_DBT_TOKEN') }}" type: databricks \ No newline at end of file diff --git a/integration_tests/dbt_project.yml b/integration_tests/dbt_project.yml index ae9371d..406e180 100644 --- a/integration_tests/dbt_project.yml +++ b/integration_tests/dbt_project.yml @@ -4,7 +4,7 @@ version: '0.8.1' profile: 'integration_tests' vars: iterable_source: - iterable_schema: iterable_integration_tests_03 + iterable_schema: iterable_integration_tests_04 iterable_campaign_history_identifier: "campaign_history_data" iterable_campaign_label_history_identifier: "campaign_label_history_data" iterable_campaign_list_history_identifier: "campaign_list_history_data" From 579621f074b6127ef25b44bb180fb1a2d801e8ec Mon Sep 17 00:00:00 2001 From: fivetran-catfritz <111930712+fivetran-catfritz@users.noreply.github.com> Date: Thu, 6 Jul 2023 14:57:31 -0500 Subject: [PATCH 3/6] regen docs --- docs/catalog.json | 2 +- docs/manifest.json | 2 +- docs/run_results.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/catalog.json b/docs/catalog.json index e96fecc..a370e05 100644 --- a/docs/catalog.json +++ b/docs/catalog.json @@ -1 +1 @@ -{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/catalog/v1.json", "dbt_version": "1.5.2", "generated_at": "2023-06-23T21:44:10.919771Z", "invocation_id": "4e8e06ae-9ce5-422f-a6a3-7210fa1ca7ef", "env": {}}, "nodes": {"model.iterable.int_iterable__campaign_event_metrics": {"metadata": {"type": "view", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__campaign_event_metrics", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"campaign_id": {"type": "bigint", "index": 1, "name": "campaign_id", "comment": null}, "template_id": {"type": "bigint", "index": 2, "name": "template_id", "comment": null}, "experiment_id": {"type": "bigint", "index": 3, "name": "experiment_id", "comment": null}, "count_unique_users": {"type": "bigint", "index": 4, "name": "count_unique_users", "comment": null}, "total_emailclick": {"type": "bigint", "index": 5, "name": "total_emailclick", "comment": null}, "unique_total_emailclick": {"type": "bigint", "index": 6, "name": "unique_total_emailclick", "comment": null}, "total_emailunsubscribe": {"type": "bigint", "index": 7, "name": "total_emailunsubscribe", "comment": null}, "unique_total_emailunsubscribe": {"type": "bigint", "index": 8, "name": "unique_total_emailunsubscribe", "comment": null}, "total_emailcomplaint": {"type": "bigint", "index": 9, "name": "total_emailcomplaint", "comment": null}, "unique_total_emailcomplaint": {"type": "bigint", "index": 10, "name": "unique_total_emailcomplaint", "comment": null}, "total_customevent": {"type": "bigint", "index": 11, "name": "total_customevent", "comment": null}, "unique_total_customevent": {"type": "bigint", "index": 12, "name": "unique_total_customevent", "comment": null}, "total_emailsubscribe": {"type": "bigint", "index": 13, "name": "total_emailsubscribe", "comment": null}, "unique_total_emailsubscribe": {"type": "bigint", "index": 14, "name": "unique_total_emailsubscribe", "comment": null}, "total_emailopen": {"type": "bigint", "index": 15, "name": "total_emailopen", "comment": null}, "unique_total_emailopen": {"type": "bigint", "index": 16, "name": "unique_total_emailopen", "comment": null}, "total_pushsend": {"type": "bigint", "index": 17, "name": "total_pushsend", "comment": null}, "unique_total_pushsend": {"type": "bigint", "index": 18, "name": "unique_total_pushsend", "comment": null}, "total_smsbounce": {"type": "bigint", "index": 19, "name": "total_smsbounce", "comment": null}, "unique_total_smsbounce": {"type": "bigint", "index": 20, "name": "unique_total_smsbounce", "comment": null}, "total_pushbounce": {"type": "bigint", "index": 21, "name": "total_pushbounce", "comment": null}, "unique_total_pushbounce": {"type": "bigint", "index": 22, "name": "unique_total_pushbounce", "comment": null}, "total_inappsendskip": {"type": "bigint", "index": 23, "name": "total_inappsendskip", "comment": null}, "unique_total_inappsendskip": {"type": "bigint", "index": 24, "name": "unique_total_inappsendskip", "comment": null}, "total_smssend": {"type": "bigint", "index": 25, "name": "total_smssend", "comment": null}, "unique_total_smssend": {"type": "bigint", "index": 26, "name": "unique_total_smssend", "comment": null}, "total_inappsend": {"type": "bigint", "index": 27, "name": "total_inappsend", "comment": null}, "unique_total_inappsend": {"type": "bigint", "index": 28, "name": "unique_total_inappsend", "comment": null}, "total_pushopen": {"type": "bigint", "index": 29, "name": "total_pushopen", "comment": null}, "unique_total_pushopen": {"type": "bigint", "index": 30, "name": "unique_total_pushopen", "comment": null}, "total_emailsend": {"type": "bigint", "index": 31, "name": "total_emailsend", "comment": null}, "unique_total_emailsend": {"type": "bigint", "index": 32, "name": "unique_total_emailsend", "comment": null}, "total_pushsendskip": {"type": "bigint", "index": 33, "name": "total_pushsendskip", "comment": null}, "unique_total_pushsendskip": {"type": "bigint", "index": 34, "name": "unique_total_pushsendskip", "comment": null}, "total_inappopen": {"type": "bigint", "index": 35, "name": "total_inappopen", "comment": null}, "unique_total_inappopen": {"type": "bigint", "index": 36, "name": "unique_total_inappopen", "comment": null}, "total_emailsendskip": {"type": "bigint", "index": 37, "name": "total_emailsendskip", "comment": null}, "unique_total_emailsendskip": {"type": "bigint", "index": 38, "name": "unique_total_emailsendskip", "comment": null}, "total_emailbounce": {"type": "bigint", "index": 39, "name": "total_emailbounce", "comment": null}, "unique_total_emailbounce": {"type": "bigint", "index": 40, "name": "unique_total_emailbounce", "comment": null}, "total_inappclick": {"type": "bigint", "index": 41, "name": "total_inappclick", "comment": null}, "unique_total_inappclick": {"type": "bigint", "index": 42, "name": "unique_total_inappclick", "comment": null}, "total_pushuninstall": {"type": "bigint", "index": 43, "name": "total_pushuninstall", "comment": null}, "unique_total_pushuninstall": {"type": "bigint", "index": 44, "name": "unique_total_pushuninstall", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.int_iterable__campaign_event_metrics"}, "model.iterable.int_iterable__campaign_labels": {"metadata": {"type": "view", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__campaign_labels", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"campaign_id": {"type": "bigint", "index": 1, "name": "campaign_id", "comment": null}, "labels": {"type": "string", "index": 2, "name": "labels", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.int_iterable__campaign_labels"}, "model.iterable.int_iterable__campaign_lists": {"metadata": {"type": "view", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__campaign_lists", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"list_id": {"type": "bigint", "index": 1, "name": "list_id", "comment": null}, "campaign_id": {"type": "bigint", "index": 2, "name": "campaign_id", "comment": null}, "updated_at": {"type": "string", "index": 3, "name": "updated_at", "comment": null}, "list_activity": {"type": "string", "index": 4, "name": "list_activity", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.int_iterable__campaign_lists"}, "model.iterable.int_iterable__latest_campaign": {"metadata": {"type": "view", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__latest_campaign", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"campaign_id": {"type": "bigint", "index": 1, "name": "campaign_id", "comment": null}, "updated_at": {"type": "string", "index": 2, "name": "updated_at", "comment": null}, "campaign_name": {"type": "string", "index": 3, "name": "campaign_name", "comment": null}, "campaign_state": {"type": "string", "index": 4, "name": "campaign_state", "comment": null}, "campaign_type": {"type": "string", "index": 5, "name": "campaign_type", "comment": null}, "send_size": {"type": "bigint", "index": 6, "name": "send_size", "comment": null}, "start_at": {"type": "bigint", "index": 7, "name": "start_at", "comment": null}, "ended_at": {"type": "bigint", "index": 8, "name": "ended_at", "comment": null}, "created_at": {"type": "string", "index": 9, "name": "created_at", "comment": null}, "recurring_campaign_id": {"type": "bigint", "index": 10, "name": "recurring_campaign_id", "comment": null}, "created_by_user_id": {"type": "string", "index": 11, "name": "created_by_user_id", "comment": null}, "template_id": {"type": "bigint", "index": 12, "name": "template_id", "comment": null}, "workflow_id": {"type": "bigint", "index": 13, "name": "workflow_id", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 14, "name": "_fivetran_synced", "comment": null}, "latest_campaign_index": {"type": "integer", "index": 15, "name": "latest_campaign_index", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.int_iterable__latest_campaign"}, "model.iterable.int_iterable__latest_template": {"metadata": {"type": "view", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__latest_template", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"template_id": {"type": "bigint", "index": 1, "name": "template_id", "comment": null}, "template_name": {"type": "string", "index": 2, "name": "template_name", "comment": null}, "template_type": {"type": "string", "index": 3, "name": "template_type", "comment": null}, "created_at": {"type": "string", "index": 4, "name": "created_at", "comment": null}, "client_template_id": {"type": "bigint", "index": 5, "name": "client_template_id", "comment": null}, "creator_user_id": {"type": "string", "index": 6, "name": "creator_user_id", "comment": null}, "message_type_id": {"type": "bigint", "index": 7, "name": "message_type_id", "comment": null}, "updated_at": {"type": "string", "index": 8, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 9, "name": "_fivetran_synced", "comment": null}, "latest_template_index": {"type": "integer", "index": 10, "name": "latest_template_index", "comment": null}, "message_type_name": {"type": "string", "index": 11, "name": "message_type_name", "comment": null}, "channel_id": {"type": "bigint", "index": 12, "name": "channel_id", "comment": null}, "channel_name": {"type": "string", "index": 13, "name": "channel_name", "comment": null}, "channel_type": {"type": "string", "index": 14, "name": "channel_type", "comment": null}, "message_medium": {"type": "string", "index": 15, "name": "message_medium", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.int_iterable__latest_template"}, "model.iterable.int_iterable__latest_user": {"metadata": {"type": "view", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__latest_user", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"email": {"type": "string", "index": 1, "name": "email", "comment": null}, "user_id": {"type": "string", "index": 2, "name": "user_id", "comment": null}, "first_name": {"type": "string", "index": 3, "name": "first_name", "comment": null}, "last_name": {"type": "string", "index": 4, "name": "last_name", "comment": null}, "email_list_ids": {"type": "string", "index": 5, "name": "email_list_ids", "comment": null}, "phone_number": {"type": "bigint", "index": 6, "name": "phone_number", "comment": null}, "signup_date": {"type": "timestamp", "index": 7, "name": "signup_date", "comment": null}, "signup_source": {"type": "string", "index": 8, "name": "signup_source", "comment": null}, "updated_at": {"type": "timestamp", "index": 9, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 10, "name": "_fivetran_synced", "comment": null}, "latest_user_index": {"type": "integer", "index": 11, "name": "latest_user_index", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.int_iterable__latest_user"}, "model.iterable.int_iterable__list_user_history": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__list_user_history", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"email": {"type": "string", "index": 1, "name": "email", "comment": null}, "user_id": {"type": "string", "index": 2, "name": "user_id", "comment": null}, "first_name": {"type": "string", "index": 3, "name": "first_name", "comment": null}, "last_name": {"type": "string", "index": 4, "name": "last_name", "comment": null}, "email_list_ids": {"type": "string", "index": 5, "name": "email_list_ids", "comment": null}, "phone_number": {"type": "bigint", "index": 6, "name": "phone_number", "comment": null}, "signup_date": {"type": "timestamp", "index": 7, "name": "signup_date", "comment": null}, "signup_source": {"type": "string", "index": 8, "name": "signup_source", "comment": null}, "updated_at": {"type": "timestamp", "index": 9, "name": "updated_at", "comment": null}, "is_current": {"type": "boolean", "index": 10, "name": "is_current", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.int_iterable__list_user_history"}, "model.iterable.int_iterable__list_user_unnest": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__list_user_unnest", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"email": {"type": "string", "index": 1, "name": "email", "comment": null}, "first_name": {"type": "string", "index": 2, "name": "first_name", "comment": null}, "last_name": {"type": "string", "index": 3, "name": "last_name", "comment": null}, "user_id": {"type": "string", "index": 4, "name": "user_id", "comment": null}, "signup_date": {"type": "timestamp", "index": 5, "name": "signup_date", "comment": null}, "signup_source": {"type": "string", "index": 6, "name": "signup_source", "comment": null}, "updated_at": {"type": "timestamp", "index": 7, "name": "updated_at", "comment": null}, "phone_number": {"type": "bigint", "index": 8, "name": "phone_number", "comment": null}, "is_current": {"type": "boolean", "index": 9, "name": "is_current", "comment": null}, "email_list_ids": {"type": "string", "index": 10, "name": "email_list_ids", "comment": null}, "list_id": {"type": "integer", "index": 11, "name": "list_id", "comment": null}, "unique_key": {"type": "string", "index": 12, "name": "unique_key", "comment": null}, "date_day": {"type": "date", "index": 13, "name": "date_day", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.int_iterable__list_user_unnest"}, "model.iterable.int_iterable__message_type_channel": {"metadata": {"type": "view", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__message_type_channel", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"channel_id": {"type": "bigint", "index": 1, "name": "channel_id", "comment": null}, "channel_name": {"type": "string", "index": 2, "name": "channel_name", "comment": null}, "channel_type": {"type": "string", "index": 3, "name": "channel_type", "comment": null}, "message_medium": {"type": "string", "index": 4, "name": "message_medium", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 5, "name": "_fivetran_synced", "comment": null}, "message_type_name": {"type": "string", "index": 6, "name": "message_type_name", "comment": null}, "message_type_id": {"type": "bigint", "index": 7, "name": "message_type_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.int_iterable__message_type_channel"}, "model.iterable.int_iterable__recurring_campaigns": {"metadata": {"type": "view", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__recurring_campaigns", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"campaign_id": {"type": "bigint", "index": 1, "name": "campaign_id", "comment": null}, "campaign_name": {"type": "string", "index": 2, "name": "campaign_name", "comment": null}, "updated_at": {"type": "string", "index": 3, "name": "updated_at", "comment": null}, "campaign_state": {"type": "string", "index": 4, "name": "campaign_state", "comment": null}, "campaign_type": {"type": "string", "index": 5, "name": "campaign_type", "comment": null}, "send_size": {"type": "bigint", "index": 6, "name": "send_size", "comment": null}, "start_at": {"type": "bigint", "index": 7, "name": "start_at", "comment": null}, "ended_at": {"type": "bigint", "index": 8, "name": "ended_at", "comment": null}, "created_at": {"type": "string", "index": 9, "name": "created_at", "comment": null}, "created_by_user_id": {"type": "string", "index": 10, "name": "created_by_user_id", "comment": null}, "template_id": {"type": "bigint", "index": 11, "name": "template_id", "comment": null}, "recurring_campaign_id": {"type": "bigint", "index": 12, "name": "recurring_campaign_id", "comment": null}, "recurring_campaign_name": {"type": "string", "index": 13, "name": "recurring_campaign_name", "comment": null}, "recurring_campaign_state": {"type": "string", "index": 14, "name": "recurring_campaign_state", "comment": null}, "recurring_campaign_send_size": {"type": "bigint", "index": 15, "name": "recurring_campaign_send_size", "comment": null}, "recurring_campaign_start_at": {"type": "bigint", "index": 16, "name": "recurring_campaign_start_at", "comment": null}, "is_campaign_recurring": {"type": "boolean", "index": 17, "name": "is_campaign_recurring", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.int_iterable__recurring_campaigns"}, "model.iterable.int_iterable__user_event_metrics": {"metadata": {"type": "view", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__user_event_metrics", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"user_email": {"type": "string", "index": 1, "name": "user_email", "comment": null}, "count_total_campaigns": {"type": "bigint", "index": 2, "name": "count_total_campaigns", "comment": null}, "first_event_at": {"type": "timestamp", "index": 3, "name": "first_event_at", "comment": null}, "last_event_at": {"type": "timestamp", "index": 4, "name": "last_event_at", "comment": null}, "total_emailclick": {"type": "bigint", "index": 5, "name": "total_emailclick", "comment": null}, "total_emailunsubscribe": {"type": "bigint", "index": 6, "name": "total_emailunsubscribe", "comment": null}, "total_emailcomplaint": {"type": "bigint", "index": 7, "name": "total_emailcomplaint", "comment": null}, "total_customevent": {"type": "bigint", "index": 8, "name": "total_customevent", "comment": null}, "total_emailsubscribe": {"type": "bigint", "index": 9, "name": "total_emailsubscribe", "comment": null}, "total_emailopen": {"type": "bigint", "index": 10, "name": "total_emailopen", "comment": null}, "total_pushsend": {"type": "bigint", "index": 11, "name": "total_pushsend", "comment": null}, "total_smsbounce": {"type": "bigint", "index": 12, "name": "total_smsbounce", "comment": null}, "total_pushbounce": {"type": "bigint", "index": 13, "name": "total_pushbounce", "comment": null}, "total_inappsendskip": {"type": "bigint", "index": 14, "name": "total_inappsendskip", "comment": null}, "total_smssend": {"type": "bigint", "index": 15, "name": "total_smssend", "comment": null}, "total_inappsend": {"type": "bigint", "index": 16, "name": "total_inappsend", "comment": null}, "total_pushopen": {"type": "bigint", "index": 17, "name": "total_pushopen", "comment": null}, "total_emailsend": {"type": "bigint", "index": 18, "name": "total_emailsend", "comment": null}, "total_pushsendskip": {"type": "bigint", "index": 19, "name": "total_pushsendskip", "comment": null}, "total_inappopen": {"type": "bigint", "index": 20, "name": "total_inappopen", "comment": null}, "total_emailsendskip": {"type": "bigint", "index": 21, "name": "total_emailsendskip", "comment": null}, "total_emailbounce": {"type": "bigint", "index": 22, "name": "total_emailbounce", "comment": null}, "total_inappclick": {"type": "bigint", "index": 23, "name": "total_inappclick", "comment": null}, "total_pushuninstall": {"type": "bigint", "index": 24, "name": "total_pushuninstall", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.int_iterable__user_event_metrics"}, "model.iterable.iterable__campaigns": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03_iterable", "name": "iterable__campaigns", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"campaign_id": {"type": "bigint", "index": 1, "name": "campaign_id", "comment": null}, "campaign_name": {"type": "string", "index": 2, "name": "campaign_name", "comment": null}, "updated_at": {"type": "string", "index": 3, "name": "updated_at", "comment": null}, "campaign_state": {"type": "string", "index": 4, "name": "campaign_state", "comment": null}, "campaign_type": {"type": "string", "index": 5, "name": "campaign_type", "comment": null}, "send_size": {"type": "bigint", "index": 6, "name": "send_size", "comment": null}, "start_at": {"type": "bigint", "index": 7, "name": "start_at", "comment": null}, "ended_at": {"type": "bigint", "index": 8, "name": "ended_at", "comment": null}, "created_at": {"type": "string", "index": 9, "name": "created_at", "comment": null}, "created_by_user_id": {"type": "string", "index": 10, "name": "created_by_user_id", "comment": null}, "template_id": {"type": "bigint", "index": 11, "name": "template_id", "comment": null}, "recurring_campaign_id": {"type": "bigint", "index": 12, "name": "recurring_campaign_id", "comment": null}, "recurring_campaign_name": {"type": "string", "index": 13, "name": "recurring_campaign_name", "comment": null}, "recurring_campaign_state": {"type": "string", "index": 14, "name": "recurring_campaign_state", "comment": null}, "recurring_campaign_send_size": {"type": "bigint", "index": 15, "name": "recurring_campaign_send_size", "comment": null}, "recurring_campaign_start_at": {"type": "bigint", "index": 16, "name": "recurring_campaign_start_at", "comment": null}, "is_campaign_recurring": {"type": "boolean", "index": 17, "name": "is_campaign_recurring", "comment": null}, "experiment_id": {"type": "bigint", "index": 18, "name": "experiment_id", "comment": null}, "count_unique_users": {"type": "bigint", "index": 19, "name": "count_unique_users", "comment": null}, "total_emailclick": {"type": "bigint", "index": 20, "name": "total_emailclick", "comment": null}, "unique_total_emailclick": {"type": "bigint", "index": 21, "name": "unique_total_emailclick", "comment": null}, "total_emailunsubscribe": {"type": "bigint", "index": 22, "name": "total_emailunsubscribe", "comment": null}, "unique_total_emailunsubscribe": {"type": "bigint", "index": 23, "name": "unique_total_emailunsubscribe", "comment": null}, "total_emailcomplaint": {"type": "bigint", "index": 24, "name": "total_emailcomplaint", "comment": null}, "unique_total_emailcomplaint": {"type": "bigint", "index": 25, "name": "unique_total_emailcomplaint", "comment": null}, "total_customevent": {"type": "bigint", "index": 26, "name": "total_customevent", "comment": null}, "unique_total_customevent": {"type": "bigint", "index": 27, "name": "unique_total_customevent", "comment": null}, "total_emailsubscribe": {"type": "bigint", "index": 28, "name": "total_emailsubscribe", "comment": null}, "unique_total_emailsubscribe": {"type": "bigint", "index": 29, "name": "unique_total_emailsubscribe", "comment": null}, "total_emailopen": {"type": "bigint", "index": 30, "name": "total_emailopen", "comment": null}, "unique_total_emailopen": {"type": "bigint", "index": 31, "name": "unique_total_emailopen", "comment": null}, "total_pushsend": {"type": "bigint", "index": 32, "name": "total_pushsend", "comment": null}, "unique_total_pushsend": {"type": "bigint", "index": 33, "name": "unique_total_pushsend", "comment": null}, "total_smsbounce": {"type": "bigint", "index": 34, "name": "total_smsbounce", "comment": null}, "unique_total_smsbounce": {"type": "bigint", "index": 35, "name": "unique_total_smsbounce", "comment": null}, "total_pushbounce": {"type": "bigint", "index": 36, "name": "total_pushbounce", "comment": null}, "unique_total_pushbounce": {"type": "bigint", "index": 37, "name": "unique_total_pushbounce", "comment": null}, "total_inappsendskip": {"type": "bigint", "index": 38, "name": "total_inappsendskip", "comment": null}, "unique_total_inappsendskip": {"type": "bigint", "index": 39, "name": "unique_total_inappsendskip", "comment": null}, "total_smssend": {"type": "bigint", "index": 40, "name": "total_smssend", "comment": null}, "unique_total_smssend": {"type": "bigint", "index": 41, "name": "unique_total_smssend", "comment": null}, "total_inappsend": {"type": "bigint", "index": 42, "name": "total_inappsend", "comment": null}, "unique_total_inappsend": {"type": "bigint", "index": 43, "name": "unique_total_inappsend", "comment": null}, "total_pushopen": {"type": "bigint", "index": 44, "name": "total_pushopen", "comment": null}, "unique_total_pushopen": {"type": "bigint", "index": 45, "name": "unique_total_pushopen", "comment": null}, "total_emailsend": {"type": "bigint", "index": 46, "name": "total_emailsend", "comment": null}, "unique_total_emailsend": {"type": "bigint", "index": 47, "name": "unique_total_emailsend", "comment": null}, "total_pushsendskip": {"type": "bigint", "index": 48, "name": "total_pushsendskip", "comment": null}, "unique_total_pushsendskip": {"type": "bigint", "index": 49, "name": "unique_total_pushsendskip", "comment": null}, "total_inappopen": {"type": "bigint", "index": 50, "name": "total_inappopen", "comment": null}, "unique_total_inappopen": {"type": "bigint", "index": 51, "name": "unique_total_inappopen", "comment": null}, "total_emailsendskip": {"type": "bigint", "index": 52, "name": "total_emailsendskip", "comment": null}, "unique_total_emailsendskip": {"type": "bigint", "index": 53, "name": "unique_total_emailsendskip", "comment": null}, "total_emailbounce": {"type": "bigint", "index": 54, "name": "total_emailbounce", "comment": null}, "unique_total_emailbounce": {"type": "bigint", "index": 55, "name": "unique_total_emailbounce", "comment": null}, "total_inappclick": {"type": "bigint", "index": 56, "name": "total_inappclick", "comment": null}, "unique_total_inappclick": {"type": "bigint", "index": 57, "name": "unique_total_inappclick", "comment": null}, "total_pushuninstall": {"type": "bigint", "index": 58, "name": "total_pushuninstall", "comment": null}, "unique_total_pushuninstall": {"type": "bigint", "index": 59, "name": "unique_total_pushuninstall", "comment": null}, "count_send_lists": {"type": "bigint", "index": 60, "name": "count_send_lists", "comment": null}, "count_suppress_lists": {"type": "bigint", "index": 61, "name": "count_suppress_lists", "comment": null}, "labels": {"type": "string", "index": 62, "name": "labels", "comment": null}, "template_name": {"type": "string", "index": 63, "name": "template_name", "comment": null}, "template_creator_user_id": {"type": "string", "index": 64, "name": "template_creator_user_id", "comment": null}, "message_medium": {"type": "string", "index": 65, "name": "message_medium", "comment": null}, "message_type_name": {"type": "string", "index": 66, "name": "message_type_name", "comment": null}, "channel_name": {"type": "string", "index": 67, "name": "channel_name", "comment": null}, "channel_id": {"type": "bigint", "index": 68, "name": "channel_id", "comment": null}, "channel_type": {"type": "string", "index": 69, "name": "channel_type", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.iterable__campaigns"}, "model.iterable.iterable__events": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03_iterable", "name": "iterable__events", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"event_id": {"type": "string", "index": 1, "name": "event_id", "comment": null}, "campaign_id": {"type": "bigint", "index": 2, "name": "campaign_id", "comment": null}, "content_id": {"type": "bigint", "index": 3, "name": "content_id", "comment": null}, "created_at": {"type": "timestamp", "index": 4, "name": "created_at", "comment": null}, "created_on": {"type": "date", "index": 5, "name": "created_on", "comment": null}, "email": {"type": "string", "index": 6, "name": "email", "comment": null}, "additional_properties": {"type": "string", "index": 7, "name": "additional_properties", "comment": null}, "event_name": {"type": "string", "index": 8, "name": "event_name", "comment": null}, "message_bus_id": {"type": "bigint", "index": 9, "name": "message_bus_id", "comment": null}, "message_id": {"type": "bigint", "index": 10, "name": "message_id", "comment": null}, "message_type_id": {"type": "bigint", "index": 11, "name": "message_type_id", "comment": null}, "recipient_state": {"type": "bigint", "index": 12, "name": "recipient_state", "comment": null}, "status": {"type": "bigint", "index": 13, "name": "status", "comment": null}, "transactional_data": {"type": "string", "index": 14, "name": "transactional_data", "comment": null}, "unsub_source": {"type": "bigint", "index": 15, "name": "unsub_source", "comment": null}, "user_agent": {"type": "bigint", "index": 16, "name": "user_agent", "comment": null}, "user_agent_device": {"type": "bigint", "index": 17, "name": "user_agent_device", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 18, "name": "_fivetran_synced", "comment": null}, "campaign_name": {"type": "string", "index": 19, "name": "campaign_name", "comment": null}, "campaign_type": {"type": "string", "index": 20, "name": "campaign_type", "comment": null}, "is_campaign_recurring": {"type": "boolean", "index": 21, "name": "is_campaign_recurring", "comment": null}, "recurring_campaign_name": {"type": "string", "index": 22, "name": "recurring_campaign_name", "comment": null}, "recurring_campaign_id": {"type": "bigint", "index": 23, "name": "recurring_campaign_id", "comment": null}, "user_id": {"type": "string", "index": 24, "name": "user_id", "comment": null}, "user_full_name": {"type": "string", "index": 25, "name": "user_full_name", "comment": null}, "message_type_name": {"type": "string", "index": 26, "name": "message_type_name", "comment": null}, "message_medium": {"type": "string", "index": 27, "name": "message_medium", "comment": null}, "channel_id": {"type": "bigint", "index": 28, "name": "channel_id", "comment": null}, "channel_name": {"type": "string", "index": 29, "name": "channel_name", "comment": null}, "channel_type": {"type": "string", "index": 30, "name": "channel_type", "comment": null}, "is_app_already_running": {"type": "bigint", "index": 31, "name": "is_app_already_running", "comment": null}, "badge": {"type": "bigint", "index": 32, "name": "badge", "comment": null}, "canonical_url_id": {"type": "bigint", "index": 33, "name": "canonical_url_id", "comment": null}, "is_content_available": {"type": "bigint", "index": 34, "name": "is_content_available", "comment": null}, "deeplink_android": {"type": "bigint", "index": 35, "name": "deeplink_android", "comment": null}, "deeplink_ios": {"type": "bigint", "index": 36, "name": "deeplink_ios", "comment": null}, "device": {"type": "bigint", "index": 37, "name": "device", "comment": null}, "email_id": {"type": "string", "index": 38, "name": "email_id", "comment": null}, "email_subject": {"type": "string", "index": 39, "name": "email_subject", "comment": null}, "experiment_id": {"type": "bigint", "index": 40, "name": "experiment_id", "comment": null}, "from_phone_number_id": {"type": "bigint", "index": 41, "name": "from_phone_number_id", "comment": null}, "from_smssender_id": {"type": "bigint", "index": 42, "name": "from_smssender_id", "comment": null}, "image_url": {"type": "bigint", "index": 43, "name": "image_url", "comment": null}, "is_ghost_push": {"type": "bigint", "index": 44, "name": "is_ghost_push", "comment": null}, "link_id": {"type": "bigint", "index": 45, "name": "link_id", "comment": null}, "link_url": {"type": "bigint", "index": 46, "name": "link_url", "comment": null}, "locale": {"type": "bigint", "index": 47, "name": "locale", "comment": null}, "payload": {"type": "string", "index": 48, "name": "payload", "comment": null}, "platform_endpoint": {"type": "bigint", "index": 49, "name": "platform_endpoint", "comment": null}, "push_message": {"type": "bigint", "index": 50, "name": "push_message", "comment": null}, "region": {"type": "string", "index": 51, "name": "region", "comment": null}, "sms_message": {"type": "bigint", "index": 52, "name": "sms_message", "comment": null}, "sms_provider_response_code": {"type": "bigint", "index": 53, "name": "sms_provider_response_code", "comment": null}, "sms_provider_response_message": {"type": "bigint", "index": 54, "name": "sms_provider_response_message", "comment": null}, "sms_provider_response_more_info": {"type": "bigint", "index": 55, "name": "sms_provider_response_more_info", "comment": null}, "sms_provider_response_status": {"type": "bigint", "index": 56, "name": "sms_provider_response_status", "comment": null}, "sound": {"type": "bigint", "index": 57, "name": "sound", "comment": null}, "to_phone_number": {"type": "bigint", "index": 58, "name": "to_phone_number", "comment": null}, "url": {"type": "bigint", "index": 59, "name": "url", "comment": null}, "workflow_id": {"type": "bigint", "index": 60, "name": "workflow_id", "comment": null}, "workflow_name": {"type": "string", "index": 61, "name": "workflow_name", "comment": null}, "template_id": {"type": "bigint", "index": 62, "name": "template_id", "comment": null}, "template_name": {"type": "string", "index": 63, "name": "template_name", "comment": null}, "template_creator_user_id": {"type": "string", "index": 64, "name": "template_creator_user_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.iterable__events"}, "model.iterable.iterable__list_user_history": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03_iterable", "name": "iterable__list_user_history", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"user_email": {"type": "string", "index": 1, "name": "user_email", "comment": null}, "user_first_name": {"type": "string", "index": 2, "name": "user_first_name", "comment": null}, "user_last_name": {"type": "string", "index": 3, "name": "user_last_name", "comment": null}, "user_id": {"type": "string", "index": 4, "name": "user_id", "comment": null}, "user_signup_date": {"type": "timestamp", "index": 5, "name": "user_signup_date", "comment": null}, "user_signup_source": {"type": "string", "index": 6, "name": "user_signup_source", "comment": null}, "user_updated_at": {"type": "timestamp", "index": 7, "name": "user_updated_at", "comment": null}, "list_id": {"type": "integer", "index": 8, "name": "list_id", "comment": null}, "is_current": {"type": "boolean", "index": 9, "name": "is_current", "comment": null}, "list_name": {"type": "string", "index": 10, "name": "list_name", "comment": null}, "list_type": {"type": "string", "index": 11, "name": "list_type", "comment": null}, "list_created_at": {"type": "string", "index": 12, "name": "list_created_at", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.iterable__list_user_history"}, "model.iterable.iterable__user_campaign": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03_iterable", "name": "iterable__user_campaign", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"user_email": {"type": "string", "index": 1, "name": "user_email", "comment": null}, "user_full_name": {"type": "string", "index": 2, "name": "user_full_name", "comment": null}, "campaign_id": {"type": "bigint", "index": 3, "name": "campaign_id", "comment": null}, "experiment_id": {"type": "bigint", "index": 4, "name": "experiment_id", "comment": null}, "campaign_name": {"type": "string", "index": 5, "name": "campaign_name", "comment": null}, "template_id": {"type": "bigint", "index": 6, "name": "template_id", "comment": null}, "template_name": {"type": "string", "index": 7, "name": "template_name", "comment": null}, "recurring_campaign_id": {"type": "bigint", "index": 8, "name": "recurring_campaign_id", "comment": null}, "recurring_campaign_name": {"type": "string", "index": 9, "name": "recurring_campaign_name", "comment": null}, "first_event_at": {"type": "timestamp", "index": 10, "name": "first_event_at", "comment": null}, "last_event_at": {"type": "timestamp", "index": 11, "name": "last_event_at", "comment": null}, "total_emailclick": {"type": "bigint", "index": 12, "name": "total_emailclick", "comment": null}, "total_emailunsubscribe": {"type": "bigint", "index": 13, "name": "total_emailunsubscribe", "comment": null}, "total_emailcomplaint": {"type": "bigint", "index": 14, "name": "total_emailcomplaint", "comment": null}, "total_customevent": {"type": "bigint", "index": 15, "name": "total_customevent", "comment": null}, "total_emailsubscribe": {"type": "bigint", "index": 16, "name": "total_emailsubscribe", "comment": null}, "total_emailopen": {"type": "bigint", "index": 17, "name": "total_emailopen", "comment": null}, "total_pushsend": {"type": "bigint", "index": 18, "name": "total_pushsend", "comment": null}, "total_smsbounce": {"type": "bigint", "index": 19, "name": "total_smsbounce", "comment": null}, "total_pushbounce": {"type": "bigint", "index": 20, "name": "total_pushbounce", "comment": null}, "total_inappsendskip": {"type": "bigint", "index": 21, "name": "total_inappsendskip", "comment": null}, "total_smssend": {"type": "bigint", "index": 22, "name": "total_smssend", "comment": null}, "total_inappsend": {"type": "bigint", "index": 23, "name": "total_inappsend", "comment": null}, "total_pushopen": {"type": "bigint", "index": 24, "name": "total_pushopen", "comment": null}, "total_emailsend": {"type": "bigint", "index": 25, "name": "total_emailsend", "comment": null}, "total_pushsendskip": {"type": "bigint", "index": 26, "name": "total_pushsendskip", "comment": null}, "total_inappopen": {"type": "bigint", "index": 27, "name": "total_inappopen", "comment": null}, "total_emailsendskip": {"type": "bigint", "index": 28, "name": "total_emailsendskip", "comment": null}, "total_emailbounce": {"type": "bigint", "index": 29, "name": "total_emailbounce", "comment": null}, "total_inappclick": {"type": "bigint", "index": 30, "name": "total_inappclick", "comment": null}, "total_pushuninstall": {"type": "bigint", "index": 31, "name": "total_pushuninstall", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.iterable__user_campaign"}, "model.iterable.iterable__user_unsubscriptions": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03_iterable", "name": "iterable__user_unsubscriptions", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"email": {"type": "string", "index": 1, "name": "email", "comment": null}, "channel_id": {"type": "bigint", "index": 2, "name": "channel_id", "comment": null}, "message_type_id": {"type": "bigint", "index": 3, "name": "message_type_id", "comment": null}, "channel_name": {"type": "string", "index": 4, "name": "channel_name", "comment": null}, "message_type_name": {"type": "string", "index": 5, "name": "message_type_name", "comment": null}, "channel_type": {"type": "string", "index": 6, "name": "channel_type", "comment": null}, "message_medium": {"type": "string", "index": 7, "name": "message_medium", "comment": null}, "updated_at": {"type": "string", "index": 8, "name": "updated_at", "comment": null}, "is_unsubscribed_channel_wide": {"type": "boolean", "index": 9, "name": "is_unsubscribed_channel_wide", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.iterable__user_unsubscriptions"}, "model.iterable.iterable__users": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03_iterable", "name": "iterable__users", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"email": {"type": "string", "index": 1, "name": "email", "comment": null}, "first_name": {"type": "string", "index": 2, "name": "first_name", "comment": null}, "last_name": {"type": "string", "index": 3, "name": "last_name", "comment": null}, "user_id": {"type": "string", "index": 4, "name": "user_id", "comment": null}, "signup_date": {"type": "timestamp", "index": 5, "name": "signup_date", "comment": null}, "signup_source": {"type": "string", "index": 6, "name": "signup_source", "comment": null}, "updated_at": {"type": "timestamp", "index": 7, "name": "updated_at", "comment": null}, "phone_number": {"type": "bigint", "index": 8, "name": "phone_number", "comment": null}, "email_list_ids": {"type": "string", "index": 9, "name": "email_list_ids", "comment": null}, "count_lists": {"type": "bigint", "index": 10, "name": "count_lists", "comment": null}, "count_total_campaigns": {"type": "bigint", "index": 11, "name": "count_total_campaigns", "comment": null}, "first_event_at": {"type": "timestamp", "index": 12, "name": "first_event_at", "comment": null}, "last_event_at": {"type": "timestamp", "index": 13, "name": "last_event_at", "comment": null}, "total_emailclick": {"type": "bigint", "index": 14, "name": "total_emailclick", "comment": null}, "total_emailunsubscribe": {"type": "bigint", "index": 15, "name": "total_emailunsubscribe", "comment": null}, "total_emailcomplaint": {"type": "bigint", "index": 16, "name": "total_emailcomplaint", "comment": null}, "total_customevent": {"type": "bigint", "index": 17, "name": "total_customevent", "comment": null}, "total_emailsubscribe": {"type": "bigint", "index": 18, "name": "total_emailsubscribe", "comment": null}, "total_emailopen": {"type": "bigint", "index": 19, "name": "total_emailopen", "comment": null}, "total_pushsend": {"type": "bigint", "index": 20, "name": "total_pushsend", "comment": null}, "total_smsbounce": {"type": "bigint", "index": 21, "name": "total_smsbounce", "comment": null}, "total_pushbounce": {"type": "bigint", "index": 22, "name": "total_pushbounce", "comment": null}, "total_inappsendskip": {"type": "bigint", "index": 23, "name": "total_inappsendskip", "comment": null}, "total_smssend": {"type": "bigint", "index": 24, "name": "total_smssend", "comment": null}, "total_inappsend": {"type": "bigint", "index": 25, "name": "total_inappsend", "comment": null}, "total_pushopen": {"type": "bigint", "index": 26, "name": "total_pushopen", "comment": null}, "total_emailsend": {"type": "bigint", "index": 27, "name": "total_emailsend", "comment": null}, "total_pushsendskip": {"type": "bigint", "index": 28, "name": "total_pushsendskip", "comment": null}, "total_inappopen": {"type": "bigint", "index": 29, "name": "total_inappopen", "comment": null}, "total_emailsendskip": {"type": "bigint", "index": 30, "name": "total_emailsendskip", "comment": null}, "total_emailbounce": {"type": "bigint", "index": 31, "name": "total_emailbounce", "comment": null}, "total_inappclick": {"type": "bigint", "index": 32, "name": "total_inappclick", "comment": null}, "total_pushuninstall": {"type": "bigint", "index": 33, "name": "total_pushuninstall", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.iterable__users"}, "seed.iterable_integration_tests.campaign_history_data": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03", "name": "campaign_history_data", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "updated_at": {"type": "string", "index": 2, "name": "updated_at", "comment": null}, "template_id": {"type": "bigint", "index": 3, "name": "template_id", "comment": null}, "recurring_campaign_id": {"type": "bigint", "index": 4, "name": "recurring_campaign_id", "comment": null}, "campaign_state": {"type": "string", "index": 5, "name": "campaign_state", "comment": null}, "created_at": {"type": "string", "index": 6, "name": "created_at", "comment": null}, "created_by_user_id": {"type": "string", "index": 7, "name": "created_by_user_id", "comment": null}, "ended_at": {"type": "bigint", "index": 8, "name": "ended_at", "comment": null}, "name": {"type": "string", "index": 9, "name": "name", "comment": null}, "send_size": {"type": "bigint", "index": 10, "name": "send_size", "comment": null}, "start_at": {"type": "bigint", "index": 11, "name": "start_at", "comment": null}, "type": {"type": "string", "index": 12, "name": "type", "comment": null}, "workflow_id": {"type": "bigint", "index": 13, "name": "workflow_id", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 14, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.iterable_integration_tests.campaign_history_data"}, "seed.iterable_integration_tests.campaign_label_history_data": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03", "name": "campaign_label_history_data", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"campaign_id": {"type": "bigint", "index": 1, "name": "campaign_id", "comment": null}, "label": {"type": "string", "index": 2, "name": "label", "comment": null}, "updated_at": {"type": "string", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.iterable_integration_tests.campaign_label_history_data"}, "seed.iterable_integration_tests.campaign_list_history_data": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03", "name": "campaign_list_history_data", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"list_id": {"type": "bigint", "index": 1, "name": "list_id", "comment": null}, "campaign_id": {"type": "bigint", "index": 2, "name": "campaign_id", "comment": null}, "updated_at": {"type": "string", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.iterable_integration_tests.campaign_list_history_data"}, "seed.iterable_integration_tests.campaign_metrics_data": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03", "name": "campaign_metrics_data", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"date": {"type": "date", "index": 1, "name": "date", "comment": null}, "id": {"type": "bigint", "index": 2, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "average_order_value": {"type": "bigint", "index": 4, "name": "average_order_value", "comment": null}, "purchases": {"type": "bigint", "index": 5, "name": "purchases", "comment": null}, "revenue": {"type": "bigint", "index": 6, "name": "revenue", "comment": null}, "revenue_m": {"type": "bigint", "index": 7, "name": "revenue_m", "comment": null}, "total_app_uninstalls": {"type": "bigint", "index": 8, "name": "total_app_uninstalls", "comment": null}, "total_complaints": {"type": "bigint", "index": 9, "name": "total_complaints", "comment": null}, "total_email_bounced": {"type": "bigint", "index": 10, "name": "total_email_bounced", "comment": null}, "total_email_clicked": {"type": "bigint", "index": 11, "name": "total_email_clicked", "comment": null}, "total_email_delivered": {"type": "bigint", "index": 12, "name": "total_email_delivered", "comment": null}, "total_email_opens": {"type": "bigint", "index": 13, "name": "total_email_opens", "comment": null}, "total_email_sends": {"type": "bigint", "index": 14, "name": "total_email_sends", "comment": null}, "total_hosted_unsubscribe_clicks": {"type": "bigint", "index": 15, "name": "total_hosted_unsubscribe_clicks", "comment": null}, "total_purchases": {"type": "bigint", "index": 16, "name": "total_purchases", "comment": null}, "total_pushes_bounced": {"type": "bigint", "index": 17, "name": "total_pushes_bounced", "comment": null}, "total_pushes_delivered": {"type": "bigint", "index": 18, "name": "total_pushes_delivered", "comment": null}, "total_pushes_opened": {"type": "bigint", "index": 19, "name": "total_pushes_opened", "comment": null}, "total_pushes_sent": {"type": "bigint", "index": 20, "name": "total_pushes_sent", "comment": null}, "total_unsubscribes": {"type": "bigint", "index": 21, "name": "total_unsubscribes", "comment": null}, "unique_email_bounced": {"type": "bigint", "index": 22, "name": "unique_email_bounced", "comment": null}, "unique_email_clicks": {"type": "bigint", "index": 23, "name": "unique_email_clicks", "comment": null}, "unique_email_opens_or_clicks": {"type": "bigint", "index": 24, "name": "unique_email_opens_or_clicks", "comment": null}, "unique_hosted_unsubscribe_clicks": {"type": "bigint", "index": 25, "name": "unique_hosted_unsubscribe_clicks", "comment": null}, "unique_purchases": {"type": "bigint", "index": 26, "name": "unique_purchases", "comment": null}, "unique_pushes_bounced": {"type": "bigint", "index": 27, "name": "unique_pushes_bounced", "comment": null}, "unique_pushes_opened": {"type": "bigint", "index": 28, "name": "unique_pushes_opened", "comment": null}, "unique_pushes_sent": {"type": "bigint", "index": 29, "name": "unique_pushes_sent", "comment": null}, "unique_unsubscribes": {"type": "bigint", "index": 30, "name": "unique_unsubscribes", "comment": null}, "total_push_send_skips": {"type": "bigint", "index": 31, "name": "total_push_send_skips", "comment": null}, "total_in_app_opens": {"type": "bigint", "index": 32, "name": "total_in_app_opens", "comment": null}, "unique_in_apps_delivered": {"type": "bigint", "index": 33, "name": "unique_in_apps_delivered", "comment": null}, "unique_in_app_sends": {"type": "bigint", "index": 34, "name": "unique_in_app_sends", "comment": null}, "total_in_app_closes": {"type": "bigint", "index": 35, "name": "total_in_app_closes", "comment": null}, "total_inbox_impressions": {"type": "bigint", "index": 36, "name": "total_inbox_impressions", "comment": null}, "unique_pushes_delivered": {"type": "bigint", "index": 37, "name": "unique_pushes_delivered", "comment": null}, "unique_in_app_clicks": {"type": "bigint", "index": 38, "name": "unique_in_app_clicks", "comment": null}, "unique_emails_delivered": {"type": "bigint", "index": 39, "name": "unique_emails_delivered", "comment": null}, "total_in_app_clicks": {"type": "bigint", "index": 40, "name": "total_in_app_clicks", "comment": null}, "total_in_app_deletes": {"type": "bigint", "index": 41, "name": "total_in_app_deletes", "comment": null}, "total_in_app_sent": {"type": "bigint", "index": 42, "name": "total_in_app_sent", "comment": null}, "total_in_apps_delivered": {"type": "bigint", "index": 43, "name": "total_in_apps_delivered", "comment": null}, "unique_in_app_opens": {"type": "bigint", "index": 44, "name": "unique_in_app_opens", "comment": null}, "total_email_holdout": {"type": "bigint", "index": 45, "name": "total_email_holdout", "comment": null}, "total_email_send_skips": {"type": "bigint", "index": 46, "name": "total_email_send_skips", "comment": null}, "unique_email_sends": {"type": "bigint", "index": 47, "name": "unique_email_sends", "comment": null}, "unique_emails_opens": {"type": "bigint", "index": 48, "name": "unique_emails_opens", "comment": null}, "total_in_app_holdout": {"type": "bigint", "index": 49, "name": "total_in_app_holdout", "comment": null}, "total_in_app_send_skips": {"type": "bigint", "index": 50, "name": "total_in_app_send_skips", "comment": null}, "total_push_holdout": {"type": "bigint", "index": 51, "name": "total_push_holdout", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 52, "name": "_fivetran_synced", "comment": null}, "total_sms_holdout": {"type": "bigint", "index": 53, "name": "total_sms_holdout", "comment": null}, "unique_sms_sent": {"type": "bigint", "index": 54, "name": "unique_sms_sent", "comment": null}, "total_sms_delivered": {"type": "bigint", "index": 55, "name": "total_sms_delivered", "comment": null}, "total_sms_sent": {"type": "bigint", "index": 56, "name": "total_sms_sent", "comment": null}, "total_inbound_sms": {"type": "bigint", "index": 57, "name": "total_inbound_sms", "comment": null}, "total_sms_bounced": {"type": "bigint", "index": 58, "name": "total_sms_bounced", "comment": null}, "total_sms_send_skips": {"type": "bigint", "index": 59, "name": "total_sms_send_skips", "comment": null}, "unique_inbound_sms": {"type": "bigint", "index": 60, "name": "unique_inbound_sms", "comment": null}, "unique_sms_delivered": {"type": "bigint", "index": 61, "name": "unique_sms_delivered", "comment": null}, "unique_sms_bounced": {"type": "bigint", "index": 62, "name": "unique_sms_bounced", "comment": null}, "revenue_m_sms_": {"type": "bigint", "index": 63, "name": "revenue_m_sms_", "comment": null}, "purchases_m_sms_": {"type": "bigint", "index": 64, "name": "purchases_m_sms_", "comment": null}, "purchases_m_email_": {"type": "bigint", "index": 65, "name": "purchases_m_email_", "comment": null}, "revenue_m_push_": {"type": "bigint", "index": 66, "name": "revenue_m_push_", "comment": null}, "revenue_m_email_": {"type": "bigint", "index": 67, "name": "revenue_m_email_", "comment": null}, "purchases_m_push_": {"type": "bigint", "index": 68, "name": "purchases_m_push_", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.iterable_integration_tests.campaign_metrics_data"}, "seed.iterable_integration_tests.campaign_suppression_list_history_data": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03", "name": "campaign_suppression_list_history_data", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"suppressed_list_id": {"type": "bigint", "index": 1, "name": "suppressed_list_id", "comment": null}, "campaign_id": {"type": "bigint", "index": 2, "name": "campaign_id", "comment": null}, "updated_at": {"type": "string", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.iterable_integration_tests.campaign_suppression_list_history_data"}, "seed.iterable_integration_tests.channel_data": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03", "name": "channel_data", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "name": {"type": "string", "index": 2, "name": "name", "comment": null}, "channel_type": {"type": "string", "index": 3, "name": "channel_type", "comment": null}, "message_medium": {"type": "string", "index": 4, "name": "message_medium", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 5, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 6, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.iterable_integration_tests.channel_data"}, "seed.iterable_integration_tests.event_data": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03", "name": "event_data", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"_fivetran_id": {"type": "string", "index": 1, "name": "_fivetran_id", "comment": null}, "email": {"type": "string", "index": 2, "name": "email", "comment": null}, "campaign_id": {"type": "bigint", "index": 3, "name": "campaign_id", "comment": null}, "message_id": {"type": "bigint", "index": 4, "name": "message_id", "comment": null}, "content_id": {"type": "bigint", "index": 5, "name": "content_id", "comment": null}, "created_at": {"type": "timestamp", "index": 6, "name": "created_at", "comment": null}, "event_name": {"type": "string", "index": 7, "name": "event_name", "comment": null}, "ip": {"type": "bigint", "index": 8, "name": "ip", "comment": null}, "message_bus_id": {"type": "bigint", "index": 9, "name": "message_bus_id", "comment": null}, "message_type_id": {"type": "bigint", "index": 10, "name": "message_type_id", "comment": null}, "recipient_state": {"type": "bigint", "index": 11, "name": "recipient_state", "comment": null}, "status": {"type": "bigint", "index": 12, "name": "status", "comment": null}, "unsub_source": {"type": "bigint", "index": 13, "name": "unsub_source", "comment": null}, "user_agent": {"type": "bigint", "index": 14, "name": "user_agent", "comment": null}, "user_agent_device": {"type": "bigint", "index": 15, "name": "user_agent_device", "comment": null}, "transactional_data": {"type": "string", "index": 16, "name": "transactional_data", "comment": null}, "additional_properties": {"type": "string", "index": 17, "name": "additional_properties", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 18, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.iterable_integration_tests.event_data"}, "seed.iterable_integration_tests.event_extension_data": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03", "name": "event_extension_data", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"_fivetran_id": {"type": "string", "index": 1, "name": "_fivetran_id", "comment": null}, "app_already_running": {"type": "bigint", "index": 2, "name": "app_already_running", "comment": null}, "badge": {"type": "bigint", "index": 3, "name": "badge", "comment": null}, "canonical_url_id": {"type": "bigint", "index": 4, "name": "canonical_url_id", "comment": null}, "content_available": {"type": "bigint", "index": 5, "name": "content_available", "comment": null}, "content_id": {"type": "bigint", "index": 6, "name": "content_id", "comment": null}, "device": {"type": "bigint", "index": 7, "name": "device", "comment": null}, "email_id": {"type": "string", "index": 8, "name": "email_id", "comment": null}, "email_subject": {"type": "string", "index": 9, "name": "email_subject", "comment": null}, "experiment_id": {"type": "bigint", "index": 10, "name": "experiment_id", "comment": null}, "from_phone_number_id": {"type": "bigint", "index": 11, "name": "from_phone_number_id", "comment": null}, "from_smssender_id": {"type": "bigint", "index": 12, "name": "from_smssender_id", "comment": null}, "image_url": {"type": "bigint", "index": 13, "name": "image_url", "comment": null}, "is_ghost_push": {"type": "bigint", "index": 14, "name": "is_ghost_push", "comment": null}, "link_id": {"type": "bigint", "index": 15, "name": "link_id", "comment": null}, "link_url": {"type": "bigint", "index": 16, "name": "link_url", "comment": null}, "platform_endpoint": {"type": "bigint", "index": 17, "name": "platform_endpoint", "comment": null}, "push_message": {"type": "bigint", "index": 18, "name": "push_message", "comment": null}, "region": {"type": "string", "index": 19, "name": "region", "comment": null}, "sms_message": {"type": "bigint", "index": 20, "name": "sms_message", "comment": null}, "sound": {"type": "bigint", "index": 21, "name": "sound", "comment": null}, "to_phone_number": {"type": "bigint", "index": 22, "name": "to_phone_number", "comment": null}, "url": {"type": "bigint", "index": 23, "name": "url", "comment": null}, "workflow_id": {"type": "bigint", "index": 24, "name": "workflow_id", "comment": null}, "workflow_name": {"type": "string", "index": 25, "name": "workflow_name", "comment": null}, "locale": {"type": "bigint", "index": 26, "name": "locale", "comment": null}, "deeplink_android": {"type": "bigint", "index": 27, "name": "deeplink_android", "comment": null}, "deeplink_ios": {"type": "bigint", "index": 28, "name": "deeplink_ios", "comment": null}, "payload": {"type": "string", "index": 29, "name": "payload", "comment": null}, "sms_provider_response_status": {"type": "bigint", "index": 30, "name": "sms_provider_response_status", "comment": null}, "sms_provider_response_message": {"type": "bigint", "index": 31, "name": "sms_provider_response_message", "comment": null}, "sms_provider_response_code": {"type": "bigint", "index": 32, "name": "sms_provider_response_code", "comment": null}, "sms_provider_response_more_info": {"type": "bigint", "index": 33, "name": "sms_provider_response_more_info", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 34, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.iterable_integration_tests.event_extension_data"}, "seed.iterable_integration_tests.list_data": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03", "name": "list_data", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "name": {"type": "string", "index": 2, "name": "name", "comment": null}, "created_at": {"type": "string", "index": 3, "name": "created_at", "comment": null}, "list_type": {"type": "string", "index": 4, "name": "list_type", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 5, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 6, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.iterable_integration_tests.list_data"}, "seed.iterable_integration_tests.message_type_data": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03", "name": "message_type_data", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "name": {"type": "string", "index": 2, "name": "name", "comment": null}, "channel_id": {"type": "bigint", "index": 3, "name": "channel_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 5, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.iterable_integration_tests.message_type_data"}, "seed.iterable_integration_tests.template_history_data": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03", "name": "template_history_data", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "updated_at": {"type": "string", "index": 2, "name": "updated_at", "comment": null}, "message_type_id": {"type": "bigint", "index": 3, "name": "message_type_id", "comment": null}, "client_template_id": {"type": "bigint", "index": 4, "name": "client_template_id", "comment": null}, "created_at": {"type": "string", "index": 5, "name": "created_at", "comment": null}, "creator_user_id": {"type": "string", "index": 6, "name": "creator_user_id", "comment": null}, "name": {"type": "string", "index": 7, "name": "name", "comment": null}, "template_type": {"type": "string", "index": 8, "name": "template_type", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 9, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.iterable_integration_tests.template_history_data"}, "seed.iterable_integration_tests.user_device_history_data": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03", "name": "user_device_history_data", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"email": {"type": "string", "index": 1, "name": "email", "comment": null}, "updated_at": {"type": "string", "index": 2, "name": "updated_at", "comment": null}, "index": {"type": "bigint", "index": 3, "name": "index", "comment": null}, "application_name": {"type": "string", "index": 4, "name": "application_name", "comment": null}, "endpoint_enabled": {"type": "boolean", "index": 5, "name": "endpoint_enabled", "comment": null}, "identifier_for_vendor": {"type": "bigint", "index": 6, "name": "identifier_for_vendor", "comment": null}, "localized_model": {"type": "bigint", "index": 7, "name": "localized_model", "comment": null}, "model": {"type": "bigint", "index": 8, "name": "model", "comment": null}, "platform": {"type": "string", "index": 9, "name": "platform", "comment": null}, "platform_endpoint": {"type": "string", "index": 10, "name": "platform_endpoint", "comment": null}, "system_name": {"type": "bigint", "index": 11, "name": "system_name", "comment": null}, "system_version": {"type": "bigint", "index": 12, "name": "system_version", "comment": null}, "token": {"type": "string", "index": 13, "name": "token", "comment": null}, "user_interface_idiom": {"type": "bigint", "index": 14, "name": "user_interface_idiom", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 15, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.iterable_integration_tests.user_device_history_data"}, "seed.iterable_integration_tests.user_history_data": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03", "name": "user_history_data", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"email": {"type": "string", "index": 1, "name": "email", "comment": null}, "updated_at": {"type": "timestamp", "index": 2, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 3, "name": "_fivetran_synced", "comment": null}, "email_list_ids": {"type": "string", "index": 4, "name": "email_list_ids", "comment": null}, "first_name": {"type": "string", "index": 5, "name": "first_name", "comment": null}, "last_name": {"type": "string", "index": 6, "name": "last_name", "comment": null}, "phone_number": {"type": "bigint", "index": 7, "name": "phone_number", "comment": null}, "phone_number_carrier": {"type": "string", "index": 8, "name": "phone_number_carrier", "comment": null}, "phone_number_country_code_iso": {"type": "bigint", "index": 9, "name": "phone_number_country_code_iso", "comment": null}, "phone_number_details": {"type": "bigint", "index": 10, "name": "phone_number_details", "comment": null}, "phone_number_line_type": {"type": "string", "index": 11, "name": "phone_number_line_type", "comment": null}, "phone_number_updated_at": {"type": "bigint", "index": 12, "name": "phone_number_updated_at", "comment": null}, "signup_date": {"type": "timestamp", "index": 13, "name": "signup_date", "comment": null}, "signup_source": {"type": "string", "index": 14, "name": "signup_source", "comment": null}, "user_id": {"type": "string", "index": 15, "name": "user_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.iterable_integration_tests.user_history_data"}, "seed.iterable_integration_tests.user_unsubscribed_channel_history_data": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03", "name": "user_unsubscribed_channel_history_data", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"email": {"type": "string", "index": 1, "name": "email", "comment": null}, "channel_id": {"type": "bigint", "index": 2, "name": "channel_id", "comment": null}, "updated_at": {"type": "string", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.iterable_integration_tests.user_unsubscribed_channel_history_data"}, "seed.iterable_integration_tests.user_unsubscribed_message_type_history_data": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03", "name": "user_unsubscribed_message_type_history_data", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"message_type_id": {"type": "bigint", "index": 1, "name": "message_type_id", "comment": null}, "email": {"type": "string", "index": 2, "name": "email", "comment": null}, "updated_at": {"type": "string", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.iterable_integration_tests.user_unsubscribed_message_type_history_data"}, "model.iterable_source.stg_iterable__campaign_history": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_history", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"campaign_id": {"type": "bigint", "index": 1, "name": "campaign_id", "comment": null}, "updated_at": {"type": "string", "index": 2, "name": "updated_at", "comment": null}, "campaign_name": {"type": "string", "index": 3, "name": "campaign_name", "comment": null}, "campaign_state": {"type": "string", "index": 4, "name": "campaign_state", "comment": null}, "campaign_type": {"type": "string", "index": 5, "name": "campaign_type", "comment": null}, "send_size": {"type": "bigint", "index": 6, "name": "send_size", "comment": null}, "start_at": {"type": "bigint", "index": 7, "name": "start_at", "comment": null}, "ended_at": {"type": "bigint", "index": 8, "name": "ended_at", "comment": null}, "created_at": {"type": "string", "index": 9, "name": "created_at", "comment": null}, "recurring_campaign_id": {"type": "bigint", "index": 10, "name": "recurring_campaign_id", "comment": null}, "created_by_user_id": {"type": "string", "index": 11, "name": "created_by_user_id", "comment": null}, "template_id": {"type": "bigint", "index": 12, "name": "template_id", "comment": null}, "workflow_id": {"type": "bigint", "index": 13, "name": "workflow_id", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 14, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__campaign_history"}, "model.iterable_source.stg_iterable__campaign_history_tmp": {"metadata": {"type": "view", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_history_tmp", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "updated_at": {"type": "string", "index": 2, "name": "updated_at", "comment": null}, "template_id": {"type": "bigint", "index": 3, "name": "template_id", "comment": null}, "recurring_campaign_id": {"type": "bigint", "index": 4, "name": "recurring_campaign_id", "comment": null}, "campaign_state": {"type": "string", "index": 5, "name": "campaign_state", "comment": null}, "created_at": {"type": "string", "index": 6, "name": "created_at", "comment": null}, "created_by_user_id": {"type": "string", "index": 7, "name": "created_by_user_id", "comment": null}, "ended_at": {"type": "bigint", "index": 8, "name": "ended_at", "comment": null}, "name": {"type": "string", "index": 9, "name": "name", "comment": null}, "send_size": {"type": "bigint", "index": 10, "name": "send_size", "comment": null}, "start_at": {"type": "bigint", "index": 11, "name": "start_at", "comment": null}, "type": {"type": "string", "index": 12, "name": "type", "comment": null}, "workflow_id": {"type": "bigint", "index": 13, "name": "workflow_id", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 14, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__campaign_history_tmp"}, "model.iterable_source.stg_iterable__campaign_label_history": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_label_history", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"campaign_id": {"type": "bigint", "index": 1, "name": "campaign_id", "comment": null}, "label": {"type": "string", "index": 2, "name": "label", "comment": null}, "updated_at": {"type": "string", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__campaign_label_history"}, "model.iterable_source.stg_iterable__campaign_label_history_tmp": {"metadata": {"type": "view", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_label_history_tmp", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"campaign_id": {"type": "bigint", "index": 1, "name": "campaign_id", "comment": null}, "label": {"type": "string", "index": 2, "name": "label", "comment": null}, "updated_at": {"type": "string", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__campaign_label_history_tmp"}, "model.iterable_source.stg_iterable__campaign_list_history": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_list_history", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"campaign_id": {"type": "bigint", "index": 1, "name": "campaign_id", "comment": null}, "list_id": {"type": "bigint", "index": 2, "name": "list_id", "comment": null}, "updated_at": {"type": "string", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__campaign_list_history"}, "model.iterable_source.stg_iterable__campaign_list_history_tmp": {"metadata": {"type": "view", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_list_history_tmp", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"list_id": {"type": "bigint", "index": 1, "name": "list_id", "comment": null}, "campaign_id": {"type": "bigint", "index": 2, "name": "campaign_id", "comment": null}, "updated_at": {"type": "string", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__campaign_list_history_tmp"}, "model.iterable_source.stg_iterable__campaign_suppression_list_history": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_suppression_list_history", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"campaign_id": {"type": "bigint", "index": 1, "name": "campaign_id", "comment": null}, "suppressed_list_id": {"type": "bigint", "index": 2, "name": "suppressed_list_id", "comment": null}, "updated_at": {"type": "string", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__campaign_suppression_list_history"}, "model.iterable_source.stg_iterable__campaign_suppression_list_history_tmp": {"metadata": {"type": "view", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_suppression_list_history_tmp", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"suppressed_list_id": {"type": "bigint", "index": 1, "name": "suppressed_list_id", "comment": null}, "campaign_id": {"type": "bigint", "index": 2, "name": "campaign_id", "comment": null}, "updated_at": {"type": "string", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__campaign_suppression_list_history_tmp"}, "model.iterable_source.stg_iterable__channel": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__channel", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"channel_id": {"type": "bigint", "index": 1, "name": "channel_id", "comment": null}, "channel_name": {"type": "string", "index": 2, "name": "channel_name", "comment": null}, "channel_type": {"type": "string", "index": 3, "name": "channel_type", "comment": null}, "message_medium": {"type": "string", "index": 4, "name": "message_medium", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 5, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__channel"}, "model.iterable_source.stg_iterable__channel_tmp": {"metadata": {"type": "view", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__channel_tmp", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "name": {"type": "string", "index": 2, "name": "name", "comment": null}, "channel_type": {"type": "string", "index": 3, "name": "channel_type", "comment": null}, "message_medium": {"type": "string", "index": 4, "name": "message_medium", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 5, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 6, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__channel_tmp"}, "model.iterable_source.stg_iterable__event": {"metadata": {"type": "view", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__event", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"event_id": {"type": "string", "index": 1, "name": "event_id", "comment": null}, "campaign_id": {"type": "bigint", "index": 2, "name": "campaign_id", "comment": null}, "content_id": {"type": "bigint", "index": 3, "name": "content_id", "comment": null}, "created_at": {"type": "timestamp", "index": 4, "name": "created_at", "comment": null}, "created_on": {"type": "date", "index": 5, "name": "created_on", "comment": null}, "email": {"type": "string", "index": 6, "name": "email", "comment": null}, "additional_properties": {"type": "string", "index": 7, "name": "additional_properties", "comment": null}, "event_name": {"type": "string", "index": 8, "name": "event_name", "comment": null}, "message_bus_id": {"type": "bigint", "index": 9, "name": "message_bus_id", "comment": null}, "message_id": {"type": "bigint", "index": 10, "name": "message_id", "comment": null}, "message_type_id": {"type": "bigint", "index": 11, "name": "message_type_id", "comment": null}, "recipient_state": {"type": "bigint", "index": 12, "name": "recipient_state", "comment": null}, "status": {"type": "bigint", "index": 13, "name": "status", "comment": null}, "transactional_data": {"type": "string", "index": 14, "name": "transactional_data", "comment": null}, "unsub_source": {"type": "bigint", "index": 15, "name": "unsub_source", "comment": null}, "user_agent": {"type": "bigint", "index": 16, "name": "user_agent", "comment": null}, "user_agent_device": {"type": "bigint", "index": 17, "name": "user_agent_device", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 18, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__event"}, "model.iterable_source.stg_iterable__event_extension": {"metadata": {"type": "view", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__event_extension", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"event_id": {"type": "string", "index": 1, "name": "event_id", "comment": null}, "is_app_already_running": {"type": "bigint", "index": 2, "name": "is_app_already_running", "comment": null}, "badge": {"type": "bigint", "index": 3, "name": "badge", "comment": null}, "canonical_url_id": {"type": "bigint", "index": 4, "name": "canonical_url_id", "comment": null}, "is_content_available": {"type": "bigint", "index": 5, "name": "is_content_available", "comment": null}, "content_id": {"type": "bigint", "index": 6, "name": "content_id", "comment": null}, "deeplink_android": {"type": "bigint", "index": 7, "name": "deeplink_android", "comment": null}, "deeplink_ios": {"type": "bigint", "index": 8, "name": "deeplink_ios", "comment": null}, "device": {"type": "bigint", "index": 9, "name": "device", "comment": null}, "email_id": {"type": "string", "index": 10, "name": "email_id", "comment": null}, "email_subject": {"type": "string", "index": 11, "name": "email_subject", "comment": null}, "experiment_id": {"type": "bigint", "index": 12, "name": "experiment_id", "comment": null}, "from_phone_number_id": {"type": "bigint", "index": 13, "name": "from_phone_number_id", "comment": null}, "from_smssender_id": {"type": "bigint", "index": 14, "name": "from_smssender_id", "comment": null}, "image_url": {"type": "bigint", "index": 15, "name": "image_url", "comment": null}, "is_ghost_push": {"type": "bigint", "index": 16, "name": "is_ghost_push", "comment": null}, "link_id": {"type": "bigint", "index": 17, "name": "link_id", "comment": null}, "link_url": {"type": "bigint", "index": 18, "name": "link_url", "comment": null}, "locale": {"type": "bigint", "index": 19, "name": "locale", "comment": null}, "payload": {"type": "string", "index": 20, "name": "payload", "comment": null}, "platform_endpoint": {"type": "bigint", "index": 21, "name": "platform_endpoint", "comment": null}, "push_message": {"type": "bigint", "index": 22, "name": "push_message", "comment": null}, "region": {"type": "string", "index": 23, "name": "region", "comment": null}, "sms_message": {"type": "bigint", "index": 24, "name": "sms_message", "comment": null}, "sms_provider_response_code": {"type": "bigint", "index": 25, "name": "sms_provider_response_code", "comment": null}, "sms_provider_response_message": {"type": "bigint", "index": 26, "name": "sms_provider_response_message", "comment": null}, "sms_provider_response_more_info": {"type": "bigint", "index": 27, "name": "sms_provider_response_more_info", "comment": null}, "sms_provider_response_status": {"type": "bigint", "index": 28, "name": "sms_provider_response_status", "comment": null}, "sound": {"type": "bigint", "index": 29, "name": "sound", "comment": null}, "to_phone_number": {"type": "bigint", "index": 30, "name": "to_phone_number", "comment": null}, "url": {"type": "bigint", "index": 31, "name": "url", "comment": null}, "workflow_id": {"type": "bigint", "index": 32, "name": "workflow_id", "comment": null}, "workflow_name": {"type": "string", "index": 33, "name": "workflow_name", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 34, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__event_extension"}, "model.iterable_source.stg_iterable__event_extension_tmp": {"metadata": {"type": "view", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__event_extension_tmp", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"_fivetran_id": {"type": "string", "index": 1, "name": "_fivetran_id", "comment": null}, "app_already_running": {"type": "bigint", "index": 2, "name": "app_already_running", "comment": null}, "badge": {"type": "bigint", "index": 3, "name": "badge", "comment": null}, "canonical_url_id": {"type": "bigint", "index": 4, "name": "canonical_url_id", "comment": null}, "content_available": {"type": "bigint", "index": 5, "name": "content_available", "comment": null}, "content_id": {"type": "bigint", "index": 6, "name": "content_id", "comment": null}, "device": {"type": "bigint", "index": 7, "name": "device", "comment": null}, "email_id": {"type": "string", "index": 8, "name": "email_id", "comment": null}, "email_subject": {"type": "string", "index": 9, "name": "email_subject", "comment": null}, "experiment_id": {"type": "bigint", "index": 10, "name": "experiment_id", "comment": null}, "from_phone_number_id": {"type": "bigint", "index": 11, "name": "from_phone_number_id", "comment": null}, "from_smssender_id": {"type": "bigint", "index": 12, "name": "from_smssender_id", "comment": null}, "image_url": {"type": "bigint", "index": 13, "name": "image_url", "comment": null}, "is_ghost_push": {"type": "bigint", "index": 14, "name": "is_ghost_push", "comment": null}, "link_id": {"type": "bigint", "index": 15, "name": "link_id", "comment": null}, "link_url": {"type": "bigint", "index": 16, "name": "link_url", "comment": null}, "platform_endpoint": {"type": "bigint", "index": 17, "name": "platform_endpoint", "comment": null}, "push_message": {"type": "bigint", "index": 18, "name": "push_message", "comment": null}, "region": {"type": "string", "index": 19, "name": "region", "comment": null}, "sms_message": {"type": "bigint", "index": 20, "name": "sms_message", "comment": null}, "sound": {"type": "bigint", "index": 21, "name": "sound", "comment": null}, "to_phone_number": {"type": "bigint", "index": 22, "name": "to_phone_number", "comment": null}, "url": {"type": "bigint", "index": 23, "name": "url", "comment": null}, "workflow_id": {"type": "bigint", "index": 24, "name": "workflow_id", "comment": null}, "workflow_name": {"type": "string", "index": 25, "name": "workflow_name", "comment": null}, "locale": {"type": "bigint", "index": 26, "name": "locale", "comment": null}, "deeplink_android": {"type": "bigint", "index": 27, "name": "deeplink_android", "comment": null}, "deeplink_ios": {"type": "bigint", "index": 28, "name": "deeplink_ios", "comment": null}, "payload": {"type": "string", "index": 29, "name": "payload", "comment": null}, "sms_provider_response_status": {"type": "bigint", "index": 30, "name": "sms_provider_response_status", "comment": null}, "sms_provider_response_message": {"type": "bigint", "index": 31, "name": "sms_provider_response_message", "comment": null}, "sms_provider_response_code": {"type": "bigint", "index": 32, "name": "sms_provider_response_code", "comment": null}, "sms_provider_response_more_info": {"type": "bigint", "index": 33, "name": "sms_provider_response_more_info", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 34, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__event_extension_tmp"}, "model.iterable_source.stg_iterable__event_tmp": {"metadata": {"type": "view", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__event_tmp", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"_fivetran_id": {"type": "string", "index": 1, "name": "_fivetran_id", "comment": null}, "email": {"type": "string", "index": 2, "name": "email", "comment": null}, "campaign_id": {"type": "bigint", "index": 3, "name": "campaign_id", "comment": null}, "message_id": {"type": "bigint", "index": 4, "name": "message_id", "comment": null}, "content_id": {"type": "bigint", "index": 5, "name": "content_id", "comment": null}, "created_at": {"type": "timestamp", "index": 6, "name": "created_at", "comment": null}, "event_name": {"type": "string", "index": 7, "name": "event_name", "comment": null}, "ip": {"type": "bigint", "index": 8, "name": "ip", "comment": null}, "message_bus_id": {"type": "bigint", "index": 9, "name": "message_bus_id", "comment": null}, "message_type_id": {"type": "bigint", "index": 10, "name": "message_type_id", "comment": null}, "recipient_state": {"type": "bigint", "index": 11, "name": "recipient_state", "comment": null}, "status": {"type": "bigint", "index": 12, "name": "status", "comment": null}, "unsub_source": {"type": "bigint", "index": 13, "name": "unsub_source", "comment": null}, "user_agent": {"type": "bigint", "index": 14, "name": "user_agent", "comment": null}, "user_agent_device": {"type": "bigint", "index": 15, "name": "user_agent_device", "comment": null}, "transactional_data": {"type": "string", "index": 16, "name": "transactional_data", "comment": null}, "additional_properties": {"type": "string", "index": 17, "name": "additional_properties", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 18, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__event_tmp"}, "model.iterable_source.stg_iterable__list": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__list", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"list_id": {"type": "bigint", "index": 1, "name": "list_id", "comment": null}, "list_name": {"type": "string", "index": 2, "name": "list_name", "comment": null}, "list_type": {"type": "string", "index": 3, "name": "list_type", "comment": null}, "created_at": {"type": "string", "index": 4, "name": "created_at", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 5, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__list"}, "model.iterable_source.stg_iterable__list_tmp": {"metadata": {"type": "view", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__list_tmp", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "name": {"type": "string", "index": 2, "name": "name", "comment": null}, "created_at": {"type": "string", "index": 3, "name": "created_at", "comment": null}, "list_type": {"type": "string", "index": 4, "name": "list_type", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 5, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 6, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__list_tmp"}, "model.iterable_source.stg_iterable__message_type": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__message_type", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"message_type_id": {"type": "bigint", "index": 1, "name": "message_type_id", "comment": null}, "message_type_name": {"type": "string", "index": 2, "name": "message_type_name", "comment": null}, "channel_id": {"type": "bigint", "index": 3, "name": "channel_id", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__message_type"}, "model.iterable_source.stg_iterable__message_type_tmp": {"metadata": {"type": "view", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__message_type_tmp", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "name": {"type": "string", "index": 2, "name": "name", "comment": null}, "channel_id": {"type": "bigint", "index": 3, "name": "channel_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 5, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__message_type_tmp"}, "model.iterable_source.stg_iterable__template_history": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__template_history", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"template_id": {"type": "bigint", "index": 1, "name": "template_id", "comment": null}, "template_name": {"type": "string", "index": 2, "name": "template_name", "comment": null}, "template_type": {"type": "string", "index": 3, "name": "template_type", "comment": null}, "created_at": {"type": "string", "index": 4, "name": "created_at", "comment": null}, "client_template_id": {"type": "bigint", "index": 5, "name": "client_template_id", "comment": null}, "creator_user_id": {"type": "string", "index": 6, "name": "creator_user_id", "comment": null}, "message_type_id": {"type": "bigint", "index": 7, "name": "message_type_id", "comment": null}, "updated_at": {"type": "string", "index": 8, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 9, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__template_history"}, "model.iterable_source.stg_iterable__template_history_tmp": {"metadata": {"type": "view", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__template_history_tmp", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "updated_at": {"type": "string", "index": 2, "name": "updated_at", "comment": null}, "message_type_id": {"type": "bigint", "index": 3, "name": "message_type_id", "comment": null}, "client_template_id": {"type": "bigint", "index": 4, "name": "client_template_id", "comment": null}, "created_at": {"type": "string", "index": 5, "name": "created_at", "comment": null}, "creator_user_id": {"type": "string", "index": 6, "name": "creator_user_id", "comment": null}, "name": {"type": "string", "index": 7, "name": "name", "comment": null}, "template_type": {"type": "string", "index": 8, "name": "template_type", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 9, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__template_history_tmp"}, "model.iterable_source.stg_iterable__user_history": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__user_history", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"email": {"type": "string", "index": 1, "name": "email", "comment": null}, "user_id": {"type": "string", "index": 2, "name": "user_id", "comment": null}, "first_name": {"type": "string", "index": 3, "name": "first_name", "comment": null}, "last_name": {"type": "string", "index": 4, "name": "last_name", "comment": null}, "email_list_ids": {"type": "string", "index": 5, "name": "email_list_ids", "comment": null}, "phone_number": {"type": "bigint", "index": 6, "name": "phone_number", "comment": null}, "signup_date": {"type": "timestamp", "index": 7, "name": "signup_date", "comment": null}, "signup_source": {"type": "string", "index": 8, "name": "signup_source", "comment": null}, "updated_at": {"type": "timestamp", "index": 9, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 10, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__user_history"}, "model.iterable_source.stg_iterable__user_history_tmp": {"metadata": {"type": "view", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__user_history_tmp", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"email": {"type": "string", "index": 1, "name": "email", "comment": null}, "updated_at": {"type": "timestamp", "index": 2, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 3, "name": "_fivetran_synced", "comment": null}, "email_list_ids": {"type": "string", "index": 4, "name": "email_list_ids", "comment": null}, "first_name": {"type": "string", "index": 5, "name": "first_name", "comment": null}, "last_name": {"type": "string", "index": 6, "name": "last_name", "comment": null}, "phone_number": {"type": "bigint", "index": 7, "name": "phone_number", "comment": null}, "phone_number_carrier": {"type": "string", "index": 8, "name": "phone_number_carrier", "comment": null}, "phone_number_country_code_iso": {"type": "bigint", "index": 9, "name": "phone_number_country_code_iso", "comment": null}, "phone_number_details": {"type": "bigint", "index": 10, "name": "phone_number_details", "comment": null}, "phone_number_line_type": {"type": "string", "index": 11, "name": "phone_number_line_type", "comment": null}, "phone_number_updated_at": {"type": "bigint", "index": 12, "name": "phone_number_updated_at", "comment": null}, "signup_date": {"type": "timestamp", "index": 13, "name": "signup_date", "comment": null}, "signup_source": {"type": "string", "index": 14, "name": "signup_source", "comment": null}, "user_id": {"type": "string", "index": 15, "name": "user_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__user_history_tmp"}, "model.iterable_source.stg_iterable__user_unsub_message_type_history": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__user_unsub_message_type_history", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"email": {"type": "string", "index": 1, "name": "email", "comment": null}, "message_type_id": {"type": "bigint", "index": 2, "name": "message_type_id", "comment": null}, "updated_at": {"type": "string", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__user_unsub_message_type_history"}, "model.iterable_source.stg_iterable__user_unsub_message_type_history_tmp": {"metadata": {"type": "view", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__user_unsub_message_type_history_tmp", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"message_type_id": {"type": "bigint", "index": 1, "name": "message_type_id", "comment": null}, "email": {"type": "string", "index": 2, "name": "email", "comment": null}, "updated_at": {"type": "string", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__user_unsub_message_type_history_tmp"}, "model.iterable_source.stg_iterable__user_unsubscribed_channel_history": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__user_unsubscribed_channel_history", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"channel_id": {"type": "bigint", "index": 1, "name": "channel_id", "comment": null}, "email": {"type": "string", "index": 2, "name": "email", "comment": null}, "updated_at": {"type": "string", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__user_unsubscribed_channel_history"}, "model.iterable_source.stg_iterable__user_unsubscribed_channel_history_tmp": {"metadata": {"type": "view", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__user_unsubscribed_channel_history_tmp", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"email": {"type": "string", "index": 1, "name": "email", "comment": null}, "channel_id": {"type": "bigint", "index": 2, "name": "channel_id", "comment": null}, "updated_at": {"type": "string", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__user_unsubscribed_channel_history_tmp"}}, "sources": {"source.iterable_source.iterable.campaign_history": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03", "name": "campaign_history_data", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "updated_at": {"type": "string", "index": 2, "name": "updated_at", "comment": null}, "template_id": {"type": "bigint", "index": 3, "name": "template_id", "comment": null}, "recurring_campaign_id": {"type": "bigint", "index": 4, "name": "recurring_campaign_id", "comment": null}, "campaign_state": {"type": "string", "index": 5, "name": "campaign_state", "comment": null}, "created_at": {"type": "string", "index": 6, "name": "created_at", "comment": null}, "created_by_user_id": {"type": "string", "index": 7, "name": "created_by_user_id", "comment": null}, "ended_at": {"type": "bigint", "index": 8, "name": "ended_at", "comment": null}, "name": {"type": "string", "index": 9, "name": "name", "comment": null}, "send_size": {"type": "bigint", "index": 10, "name": "send_size", "comment": null}, "start_at": {"type": "bigint", "index": 11, "name": "start_at", "comment": null}, "type": {"type": "string", "index": 12, "name": "type", "comment": null}, "workflow_id": {"type": "bigint", "index": 13, "name": "workflow_id", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 14, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.iterable_source.iterable.campaign_history"}, "source.iterable_source.iterable.campaign_label_history": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03", "name": "campaign_label_history_data", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"campaign_id": {"type": "bigint", "index": 1, "name": "campaign_id", "comment": null}, "label": {"type": "string", "index": 2, "name": "label", "comment": null}, "updated_at": {"type": "string", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.iterable_source.iterable.campaign_label_history"}, "source.iterable_source.iterable.campaign_list_history": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03", "name": "campaign_list_history_data", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"list_id": {"type": "bigint", "index": 1, "name": "list_id", "comment": null}, "campaign_id": {"type": "bigint", "index": 2, "name": "campaign_id", "comment": null}, "updated_at": {"type": "string", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.iterable_source.iterable.campaign_list_history"}, "source.iterable_source.iterable.campaign_suppression_list_history": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03", "name": "campaign_suppression_list_history_data", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"suppressed_list_id": {"type": "bigint", "index": 1, "name": "suppressed_list_id", "comment": null}, "campaign_id": {"type": "bigint", "index": 2, "name": "campaign_id", "comment": null}, "updated_at": {"type": "string", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.iterable_source.iterable.campaign_suppression_list_history"}, "source.iterable_source.iterable.channel": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03", "name": "channel_data", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "name": {"type": "string", "index": 2, "name": "name", "comment": null}, "channel_type": {"type": "string", "index": 3, "name": "channel_type", "comment": null}, "message_medium": {"type": "string", "index": 4, "name": "message_medium", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 5, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 6, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.iterable_source.iterable.channel"}, "source.iterable_source.iterable.event": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03", "name": "event_data", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"_fivetran_id": {"type": "string", "index": 1, "name": "_fivetran_id", "comment": null}, "email": {"type": "string", "index": 2, "name": "email", "comment": null}, "campaign_id": {"type": "bigint", "index": 3, "name": "campaign_id", "comment": null}, "message_id": {"type": "bigint", "index": 4, "name": "message_id", "comment": null}, "content_id": {"type": "bigint", "index": 5, "name": "content_id", "comment": null}, "created_at": {"type": "timestamp", "index": 6, "name": "created_at", "comment": null}, "event_name": {"type": "string", "index": 7, "name": "event_name", "comment": null}, "ip": {"type": "bigint", "index": 8, "name": "ip", "comment": null}, "message_bus_id": {"type": "bigint", "index": 9, "name": "message_bus_id", "comment": null}, "message_type_id": {"type": "bigint", "index": 10, "name": "message_type_id", "comment": null}, "recipient_state": {"type": "bigint", "index": 11, "name": "recipient_state", "comment": null}, "status": {"type": "bigint", "index": 12, "name": "status", "comment": null}, "unsub_source": {"type": "bigint", "index": 13, "name": "unsub_source", "comment": null}, "user_agent": {"type": "bigint", "index": 14, "name": "user_agent", "comment": null}, "user_agent_device": {"type": "bigint", "index": 15, "name": "user_agent_device", "comment": null}, "transactional_data": {"type": "string", "index": 16, "name": "transactional_data", "comment": null}, "additional_properties": {"type": "string", "index": 17, "name": "additional_properties", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 18, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.iterable_source.iterable.event"}, "source.iterable_source.iterable.event_extension": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03", "name": "event_extension_data", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"_fivetran_id": {"type": "string", "index": 1, "name": "_fivetran_id", "comment": null}, "app_already_running": {"type": "bigint", "index": 2, "name": "app_already_running", "comment": null}, "badge": {"type": "bigint", "index": 3, "name": "badge", "comment": null}, "canonical_url_id": {"type": "bigint", "index": 4, "name": "canonical_url_id", "comment": null}, "content_available": {"type": "bigint", "index": 5, "name": "content_available", "comment": null}, "content_id": {"type": "bigint", "index": 6, "name": "content_id", "comment": null}, "device": {"type": "bigint", "index": 7, "name": "device", "comment": null}, "email_id": {"type": "string", "index": 8, "name": "email_id", "comment": null}, "email_subject": {"type": "string", "index": 9, "name": "email_subject", "comment": null}, "experiment_id": {"type": "bigint", "index": 10, "name": "experiment_id", "comment": null}, "from_phone_number_id": {"type": "bigint", "index": 11, "name": "from_phone_number_id", "comment": null}, "from_smssender_id": {"type": "bigint", "index": 12, "name": "from_smssender_id", "comment": null}, "image_url": {"type": "bigint", "index": 13, "name": "image_url", "comment": null}, "is_ghost_push": {"type": "bigint", "index": 14, "name": "is_ghost_push", "comment": null}, "link_id": {"type": "bigint", "index": 15, "name": "link_id", "comment": null}, "link_url": {"type": "bigint", "index": 16, "name": "link_url", "comment": null}, "platform_endpoint": {"type": "bigint", "index": 17, "name": "platform_endpoint", "comment": null}, "push_message": {"type": "bigint", "index": 18, "name": "push_message", "comment": null}, "region": {"type": "string", "index": 19, "name": "region", "comment": null}, "sms_message": {"type": "bigint", "index": 20, "name": "sms_message", "comment": null}, "sound": {"type": "bigint", "index": 21, "name": "sound", "comment": null}, "to_phone_number": {"type": "bigint", "index": 22, "name": "to_phone_number", "comment": null}, "url": {"type": "bigint", "index": 23, "name": "url", "comment": null}, "workflow_id": {"type": "bigint", "index": 24, "name": "workflow_id", "comment": null}, "workflow_name": {"type": "string", "index": 25, "name": "workflow_name", "comment": null}, "locale": {"type": "bigint", "index": 26, "name": "locale", "comment": null}, "deeplink_android": {"type": "bigint", "index": 27, "name": "deeplink_android", "comment": null}, "deeplink_ios": {"type": "bigint", "index": 28, "name": "deeplink_ios", "comment": null}, "payload": {"type": "string", "index": 29, "name": "payload", "comment": null}, "sms_provider_response_status": {"type": "bigint", "index": 30, "name": "sms_provider_response_status", "comment": null}, "sms_provider_response_message": {"type": "bigint", "index": 31, "name": "sms_provider_response_message", "comment": null}, "sms_provider_response_code": {"type": "bigint", "index": 32, "name": "sms_provider_response_code", "comment": null}, "sms_provider_response_more_info": {"type": "bigint", "index": 33, "name": "sms_provider_response_more_info", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 34, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.iterable_source.iterable.event_extension"}, "source.iterable_source.iterable.list": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03", "name": "list_data", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "name": {"type": "string", "index": 2, "name": "name", "comment": null}, "created_at": {"type": "string", "index": 3, "name": "created_at", "comment": null}, "list_type": {"type": "string", "index": 4, "name": "list_type", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 5, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 6, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.iterable_source.iterable.list"}, "source.iterable_source.iterable.message_type": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03", "name": "message_type_data", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "name": {"type": "string", "index": 2, "name": "name", "comment": null}, "channel_id": {"type": "bigint", "index": 3, "name": "channel_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 5, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.iterable_source.iterable.message_type"}, "source.iterable_source.iterable.template_history": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03", "name": "template_history_data", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "updated_at": {"type": "string", "index": 2, "name": "updated_at", "comment": null}, "message_type_id": {"type": "bigint", "index": 3, "name": "message_type_id", "comment": null}, "client_template_id": {"type": "bigint", "index": 4, "name": "client_template_id", "comment": null}, "created_at": {"type": "string", "index": 5, "name": "created_at", "comment": null}, "creator_user_id": {"type": "string", "index": 6, "name": "creator_user_id", "comment": null}, "name": {"type": "string", "index": 7, "name": "name", "comment": null}, "template_type": {"type": "string", "index": 8, "name": "template_type", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 9, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.iterable_source.iterable.template_history"}, "source.iterable_source.iterable.user_device_history": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03", "name": "user_device_history_data", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"email": {"type": "string", "index": 1, "name": "email", "comment": null}, "updated_at": {"type": "string", "index": 2, "name": "updated_at", "comment": null}, "index": {"type": "bigint", "index": 3, "name": "index", "comment": null}, "application_name": {"type": "string", "index": 4, "name": "application_name", "comment": null}, "endpoint_enabled": {"type": "boolean", "index": 5, "name": "endpoint_enabled", "comment": null}, "identifier_for_vendor": {"type": "bigint", "index": 6, "name": "identifier_for_vendor", "comment": null}, "localized_model": {"type": "bigint", "index": 7, "name": "localized_model", "comment": null}, "model": {"type": "bigint", "index": 8, "name": "model", "comment": null}, "platform": {"type": "string", "index": 9, "name": "platform", "comment": null}, "platform_endpoint": {"type": "string", "index": 10, "name": "platform_endpoint", "comment": null}, "system_name": {"type": "bigint", "index": 11, "name": "system_name", "comment": null}, "system_version": {"type": "bigint", "index": 12, "name": "system_version", "comment": null}, "token": {"type": "string", "index": 13, "name": "token", "comment": null}, "user_interface_idiom": {"type": "bigint", "index": 14, "name": "user_interface_idiom", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 15, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.iterable_source.iterable.user_device_history"}, "source.iterable_source.iterable.user_history": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03", "name": "user_history_data", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"email": {"type": "string", "index": 1, "name": "email", "comment": null}, "updated_at": {"type": "timestamp", "index": 2, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 3, "name": "_fivetran_synced", "comment": null}, "email_list_ids": {"type": "string", "index": 4, "name": "email_list_ids", "comment": null}, "first_name": {"type": "string", "index": 5, "name": "first_name", "comment": null}, "last_name": {"type": "string", "index": 6, "name": "last_name", "comment": null}, "phone_number": {"type": "bigint", "index": 7, "name": "phone_number", "comment": null}, "phone_number_carrier": {"type": "string", "index": 8, "name": "phone_number_carrier", "comment": null}, "phone_number_country_code_iso": {"type": "bigint", "index": 9, "name": "phone_number_country_code_iso", "comment": null}, "phone_number_details": {"type": "bigint", "index": 10, "name": "phone_number_details", "comment": null}, "phone_number_line_type": {"type": "string", "index": 11, "name": "phone_number_line_type", "comment": null}, "phone_number_updated_at": {"type": "bigint", "index": 12, "name": "phone_number_updated_at", "comment": null}, "signup_date": {"type": "timestamp", "index": 13, "name": "signup_date", "comment": null}, "signup_source": {"type": "string", "index": 14, "name": "signup_source", "comment": null}, "user_id": {"type": "string", "index": 15, "name": "user_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.iterable_source.iterable.user_history"}, "source.iterable_source.iterable.user_unsubscribed_channel_history": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03", "name": "user_unsubscribed_channel_history_data", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"email": {"type": "string", "index": 1, "name": "email", "comment": null}, "channel_id": {"type": "bigint", "index": 2, "name": "channel_id", "comment": null}, "updated_at": {"type": "string", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.iterable_source.iterable.user_unsubscribed_channel_history"}, "source.iterable_source.iterable.user_unsubscribed_message_type_history": {"metadata": {"type": "table", "schema": "iterable_integration_tests_03", "name": "user_unsubscribed_message_type_history_data", "database": "hive_metastore", "comment": null, "owner": "root"}, "columns": {"message_type_id": {"type": "bigint", "index": 1, "name": "message_type_id", "comment": null}, "email": {"type": "string", "index": 2, "name": "email", "comment": null}, "updated_at": {"type": "string", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.iterable_source.iterable.user_unsubscribed_message_type_history"}}, "errors": null} \ No newline at end of file +{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/catalog/v1.json", "dbt_version": "1.5.2", "generated_at": "2023-07-06T19:56:59.769312Z", "invocation_id": "66964340-d877-4856-8b35-70c76ccfd3d8", "env": {}}, "nodes": {"seed.iterable_integration_tests.campaign_history_data": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03", "name": "campaign_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "updated_at": {"type": "text", "index": 2, "name": "updated_at", "comment": null}, "template_id": {"type": "integer", "index": 3, "name": "template_id", "comment": null}, "recurring_campaign_id": {"type": "integer", "index": 4, "name": "recurring_campaign_id", "comment": null}, "campaign_state": {"type": "text", "index": 5, "name": "campaign_state", "comment": null}, "created_at": {"type": "text", "index": 6, "name": "created_at", "comment": null}, "created_by_user_id": {"type": "text", "index": 7, "name": "created_by_user_id", "comment": null}, "ended_at": {"type": "integer", "index": 8, "name": "ended_at", "comment": null}, "name": {"type": "text", "index": 9, "name": "name", "comment": null}, "send_size": {"type": "integer", "index": 10, "name": "send_size", "comment": null}, "start_at": {"type": "integer", "index": 11, "name": "start_at", "comment": null}, "type": {"type": "text", "index": 12, "name": "type", "comment": null}, "workflow_id": {"type": "integer", "index": 13, "name": "workflow_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 14, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.iterable_integration_tests.campaign_history_data"}, "seed.iterable_integration_tests.campaign_label_history_data": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03", "name": "campaign_label_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"campaign_id": {"type": "integer", "index": 1, "name": "campaign_id", "comment": null}, "label": {"type": "text", "index": 2, "name": "label", "comment": null}, "updated_at": {"type": "text", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.iterable_integration_tests.campaign_label_history_data"}, "seed.iterable_integration_tests.campaign_list_history_data": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03", "name": "campaign_list_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"list_id": {"type": "integer", "index": 1, "name": "list_id", "comment": null}, "campaign_id": {"type": "integer", "index": 2, "name": "campaign_id", "comment": null}, "updated_at": {"type": "text", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.iterable_integration_tests.campaign_list_history_data"}, "seed.iterable_integration_tests.campaign_metrics_data": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03", "name": "campaign_metrics_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"date": {"type": "date", "index": 1, "name": "date", "comment": null}, "id": {"type": "integer", "index": 2, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "average_order_value": {"type": "integer", "index": 4, "name": "average_order_value", "comment": null}, "purchases": {"type": "integer", "index": 5, "name": "purchases", "comment": null}, "revenue": {"type": "integer", "index": 6, "name": "revenue", "comment": null}, "revenue_m": {"type": "integer", "index": 7, "name": "revenue_m", "comment": null}, "total_app_uninstalls": {"type": "integer", "index": 8, "name": "total_app_uninstalls", "comment": null}, "total_complaints": {"type": "integer", "index": 9, "name": "total_complaints", "comment": null}, "total_email_bounced": {"type": "integer", "index": 10, "name": "total_email_bounced", "comment": null}, "total_email_clicked": {"type": "integer", "index": 11, "name": "total_email_clicked", "comment": null}, "total_email_delivered": {"type": "integer", "index": 12, "name": "total_email_delivered", "comment": null}, "total_email_opens": {"type": "integer", "index": 13, "name": "total_email_opens", "comment": null}, "total_email_sends": {"type": "integer", "index": 14, "name": "total_email_sends", "comment": null}, "total_hosted_unsubscribe_clicks": {"type": "integer", "index": 15, "name": "total_hosted_unsubscribe_clicks", "comment": null}, "total_purchases": {"type": "integer", "index": 16, "name": "total_purchases", "comment": null}, "total_pushes_bounced": {"type": "integer", "index": 17, "name": "total_pushes_bounced", "comment": null}, "total_pushes_delivered": {"type": "integer", "index": 18, "name": "total_pushes_delivered", "comment": null}, "total_pushes_opened": {"type": "integer", "index": 19, "name": "total_pushes_opened", "comment": null}, "total_pushes_sent": {"type": "integer", "index": 20, "name": "total_pushes_sent", "comment": null}, "total_unsubscribes": {"type": "integer", "index": 21, "name": "total_unsubscribes", "comment": null}, "unique_email_bounced": {"type": "integer", "index": 22, "name": "unique_email_bounced", "comment": null}, "unique_email_clicks": {"type": "integer", "index": 23, "name": "unique_email_clicks", "comment": null}, "unique_email_opens_or_clicks": {"type": "integer", "index": 24, "name": "unique_email_opens_or_clicks", "comment": null}, "unique_hosted_unsubscribe_clicks": {"type": "integer", "index": 25, "name": "unique_hosted_unsubscribe_clicks", "comment": null}, "unique_purchases": {"type": "integer", "index": 26, "name": "unique_purchases", "comment": null}, "unique_pushes_bounced": {"type": "integer", "index": 27, "name": "unique_pushes_bounced", "comment": null}, "unique_pushes_opened": {"type": "integer", "index": 28, "name": "unique_pushes_opened", "comment": null}, "unique_pushes_sent": {"type": "integer", "index": 29, "name": "unique_pushes_sent", "comment": null}, "unique_unsubscribes": {"type": "integer", "index": 30, "name": "unique_unsubscribes", "comment": null}, "total_push_send_skips": {"type": "integer", "index": 31, "name": "total_push_send_skips", "comment": null}, "total_in_app_opens": {"type": "integer", "index": 32, "name": "total_in_app_opens", "comment": null}, "unique_in_apps_delivered": {"type": "integer", "index": 33, "name": "unique_in_apps_delivered", "comment": null}, "unique_in_app_sends": {"type": "integer", "index": 34, "name": "unique_in_app_sends", "comment": null}, "total_in_app_closes": {"type": "integer", "index": 35, "name": "total_in_app_closes", "comment": null}, "total_inbox_impressions": {"type": "integer", "index": 36, "name": "total_inbox_impressions", "comment": null}, "unique_pushes_delivered": {"type": "integer", "index": 37, "name": "unique_pushes_delivered", "comment": null}, "unique_in_app_clicks": {"type": "integer", "index": 38, "name": "unique_in_app_clicks", "comment": null}, "unique_emails_delivered": {"type": "integer", "index": 39, "name": "unique_emails_delivered", "comment": null}, "total_in_app_clicks": {"type": "integer", "index": 40, "name": "total_in_app_clicks", "comment": null}, "total_in_app_deletes": {"type": "integer", "index": 41, "name": "total_in_app_deletes", "comment": null}, "total_in_app_sent": {"type": "integer", "index": 42, "name": "total_in_app_sent", "comment": null}, "total_in_apps_delivered": {"type": "integer", "index": 43, "name": "total_in_apps_delivered", "comment": null}, "unique_in_app_opens": {"type": "integer", "index": 44, "name": "unique_in_app_opens", "comment": null}, "total_email_holdout": {"type": "integer", "index": 45, "name": "total_email_holdout", "comment": null}, "total_email_send_skips": {"type": "integer", "index": 46, "name": "total_email_send_skips", "comment": null}, "unique_email_sends": {"type": "integer", "index": 47, "name": "unique_email_sends", "comment": null}, "unique_emails_opens": {"type": "integer", "index": 48, "name": "unique_emails_opens", "comment": null}, "total_in_app_holdout": {"type": "integer", "index": 49, "name": "total_in_app_holdout", "comment": null}, "total_in_app_send_skips": {"type": "integer", "index": 50, "name": "total_in_app_send_skips", "comment": null}, "total_push_holdout": {"type": "integer", "index": 51, "name": "total_push_holdout", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 52, "name": "_fivetran_synced", "comment": null}, "total_sms_holdout": {"type": "integer", "index": 53, "name": "total_sms_holdout", "comment": null}, "unique_sms_sent": {"type": "integer", "index": 54, "name": "unique_sms_sent", "comment": null}, "total_sms_delivered": {"type": "integer", "index": 55, "name": "total_sms_delivered", "comment": null}, "total_sms_sent": {"type": "integer", "index": 56, "name": "total_sms_sent", "comment": null}, "total_inbound_sms": {"type": "integer", "index": 57, "name": "total_inbound_sms", "comment": null}, "total_sms_bounced": {"type": "integer", "index": 58, "name": "total_sms_bounced", "comment": null}, "total_sms_send_skips": {"type": "integer", "index": 59, "name": "total_sms_send_skips", "comment": null}, "unique_inbound_sms": {"type": "integer", "index": 60, "name": "unique_inbound_sms", "comment": null}, "unique_sms_delivered": {"type": "integer", "index": 61, "name": "unique_sms_delivered", "comment": null}, "unique_sms_bounced": {"type": "integer", "index": 62, "name": "unique_sms_bounced", "comment": null}, "revenue_m_sms_": {"type": "integer", "index": 63, "name": "revenue_m_sms_", "comment": null}, "purchases_m_sms_": {"type": "integer", "index": 64, "name": "purchases_m_sms_", "comment": null}, "purchases_m_email_": {"type": "integer", "index": 65, "name": "purchases_m_email_", "comment": null}, "revenue_m_push_": {"type": "integer", "index": 66, "name": "revenue_m_push_", "comment": null}, "revenue_m_email_": {"type": "integer", "index": 67, "name": "revenue_m_email_", "comment": null}, "purchases_m_push_": {"type": "integer", "index": 68, "name": "purchases_m_push_", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.iterable_integration_tests.campaign_metrics_data"}, "seed.iterable_integration_tests.campaign_suppression_list_history_data": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03", "name": "campaign_suppression_list_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"suppressed_list_id": {"type": "integer", "index": 1, "name": "suppressed_list_id", "comment": null}, "campaign_id": {"type": "integer", "index": 2, "name": "campaign_id", "comment": null}, "updated_at": {"type": "text", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.iterable_integration_tests.campaign_suppression_list_history_data"}, "seed.iterable_integration_tests.channel_data": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03", "name": "channel_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "name": {"type": "text", "index": 2, "name": "name", "comment": null}, "channel_type": {"type": "text", "index": 3, "name": "channel_type", "comment": null}, "message_medium": {"type": "text", "index": 4, "name": "message_medium", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 5, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 6, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.iterable_integration_tests.channel_data"}, "seed.iterable_integration_tests.event_data": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03", "name": "event_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "email": {"type": "text", "index": 2, "name": "email", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "message_id": {"type": "integer", "index": 4, "name": "message_id", "comment": null}, "content_id": {"type": "integer", "index": 5, "name": "content_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 6, "name": "created_at", "comment": null}, "event_name": {"type": "text", "index": 7, "name": "event_name", "comment": null}, "ip": {"type": "integer", "index": 8, "name": "ip", "comment": null}, "message_bus_id": {"type": "integer", "index": 9, "name": "message_bus_id", "comment": null}, "message_type_id": {"type": "integer", "index": 10, "name": "message_type_id", "comment": null}, "recipient_state": {"type": "integer", "index": 11, "name": "recipient_state", "comment": null}, "status": {"type": "integer", "index": 12, "name": "status", "comment": null}, "unsub_source": {"type": "integer", "index": 13, "name": "unsub_source", "comment": null}, "user_agent": {"type": "integer", "index": 14, "name": "user_agent", "comment": null}, "user_agent_device": {"type": "integer", "index": 15, "name": "user_agent_device", "comment": null}, "transactional_data": {"type": "character varying(100)", "index": 16, "name": "transactional_data", "comment": null}, "additional_properties": {"type": "text", "index": 17, "name": "additional_properties", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 18, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.iterable_integration_tests.event_data"}, "seed.iterable_integration_tests.event_extension_data": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03", "name": "event_extension_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "app_already_running": {"type": "integer", "index": 2, "name": "app_already_running", "comment": null}, "badge": {"type": "integer", "index": 3, "name": "badge", "comment": null}, "canonical_url_id": {"type": "integer", "index": 4, "name": "canonical_url_id", "comment": null}, "content_available": {"type": "integer", "index": 5, "name": "content_available", "comment": null}, "content_id": {"type": "integer", "index": 6, "name": "content_id", "comment": null}, "device": {"type": "integer", "index": 7, "name": "device", "comment": null}, "email_id": {"type": "text", "index": 8, "name": "email_id", "comment": null}, "email_subject": {"type": "text", "index": 9, "name": "email_subject", "comment": null}, "experiment_id": {"type": "integer", "index": 10, "name": "experiment_id", "comment": null}, "from_phone_number_id": {"type": "integer", "index": 11, "name": "from_phone_number_id", "comment": null}, "from_smssender_id": {"type": "integer", "index": 12, "name": "from_smssender_id", "comment": null}, "image_url": {"type": "integer", "index": 13, "name": "image_url", "comment": null}, "is_ghost_push": {"type": "integer", "index": 14, "name": "is_ghost_push", "comment": null}, "link_id": {"type": "integer", "index": 15, "name": "link_id", "comment": null}, "link_url": {"type": "integer", "index": 16, "name": "link_url", "comment": null}, "platform_endpoint": {"type": "integer", "index": 17, "name": "platform_endpoint", "comment": null}, "push_message": {"type": "integer", "index": 18, "name": "push_message", "comment": null}, "region": {"type": "text", "index": 19, "name": "region", "comment": null}, "sms_message": {"type": "integer", "index": 20, "name": "sms_message", "comment": null}, "sound": {"type": "integer", "index": 21, "name": "sound", "comment": null}, "to_phone_number": {"type": "integer", "index": 22, "name": "to_phone_number", "comment": null}, "url": {"type": "integer", "index": 23, "name": "url", "comment": null}, "workflow_id": {"type": "integer", "index": 24, "name": "workflow_id", "comment": null}, "workflow_name": {"type": "text", "index": 25, "name": "workflow_name", "comment": null}, "locale": {"type": "integer", "index": 26, "name": "locale", "comment": null}, "deeplink_android": {"type": "integer", "index": 27, "name": "deeplink_android", "comment": null}, "deeplink_ios": {"type": "integer", "index": 28, "name": "deeplink_ios", "comment": null}, "payload": {"type": "character varying(100)", "index": 29, "name": "payload", "comment": null}, "sms_provider_response_status": {"type": "integer", "index": 30, "name": "sms_provider_response_status", "comment": null}, "sms_provider_response_message": {"type": "integer", "index": 31, "name": "sms_provider_response_message", "comment": null}, "sms_provider_response_code": {"type": "integer", "index": 32, "name": "sms_provider_response_code", "comment": null}, "sms_provider_response_more_info": {"type": "integer", "index": 33, "name": "sms_provider_response_more_info", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 34, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.iterable_integration_tests.event_extension_data"}, "seed.iterable_integration_tests.list_data": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03", "name": "list_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "name": {"type": "text", "index": 2, "name": "name", "comment": null}, "created_at": {"type": "text", "index": 3, "name": "created_at", "comment": null}, "list_type": {"type": "text", "index": 4, "name": "list_type", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 5, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 6, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.iterable_integration_tests.list_data"}, "seed.iterable_integration_tests.message_type_data": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03", "name": "message_type_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "name": {"type": "text", "index": 2, "name": "name", "comment": null}, "channel_id": {"type": "bigint", "index": 3, "name": "channel_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.iterable_integration_tests.message_type_data"}, "seed.iterable_integration_tests.template_history_data": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03", "name": "template_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "updated_at": {"type": "text", "index": 2, "name": "updated_at", "comment": null}, "message_type_id": {"type": "integer", "index": 3, "name": "message_type_id", "comment": null}, "client_template_id": {"type": "integer", "index": 4, "name": "client_template_id", "comment": null}, "created_at": {"type": "text", "index": 5, "name": "created_at", "comment": null}, "creator_user_id": {"type": "text", "index": 6, "name": "creator_user_id", "comment": null}, "name": {"type": "text", "index": 7, "name": "name", "comment": null}, "template_type": {"type": "text", "index": 8, "name": "template_type", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 9, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.iterable_integration_tests.template_history_data"}, "seed.iterable_integration_tests.user_device_history_data": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03", "name": "user_device_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"email": {"type": "text", "index": 1, "name": "email", "comment": null}, "updated_at": {"type": "text", "index": 2, "name": "updated_at", "comment": null}, "index": {"type": "integer", "index": 3, "name": "index", "comment": null}, "application_name": {"type": "text", "index": 4, "name": "application_name", "comment": null}, "endpoint_enabled": {"type": "boolean", "index": 5, "name": "endpoint_enabled", "comment": null}, "identifier_for_vendor": {"type": "integer", "index": 6, "name": "identifier_for_vendor", "comment": null}, "localized_model": {"type": "integer", "index": 7, "name": "localized_model", "comment": null}, "model": {"type": "integer", "index": 8, "name": "model", "comment": null}, "platform": {"type": "text", "index": 9, "name": "platform", "comment": null}, "platform_endpoint": {"type": "text", "index": 10, "name": "platform_endpoint", "comment": null}, "system_name": {"type": "integer", "index": 11, "name": "system_name", "comment": null}, "system_version": {"type": "integer", "index": 12, "name": "system_version", "comment": null}, "token": {"type": "text", "index": 13, "name": "token", "comment": null}, "user_interface_idiom": {"type": "integer", "index": 14, "name": "user_interface_idiom", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 15, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.iterable_integration_tests.user_device_history_data"}, "seed.iterable_integration_tests.user_history_data": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03", "name": "user_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"email": {"type": "text", "index": 1, "name": "email", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 2, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "email_list_ids": {"type": "text", "index": 4, "name": "email_list_ids", "comment": null}, "first_name": {"type": "text", "index": 5, "name": "first_name", "comment": null}, "last_name": {"type": "text", "index": 6, "name": "last_name", "comment": null}, "phone_number": {"type": "integer", "index": 7, "name": "phone_number", "comment": null}, "phone_number_carrier": {"type": "text", "index": 8, "name": "phone_number_carrier", "comment": null}, "phone_number_country_code_iso": {"type": "integer", "index": 9, "name": "phone_number_country_code_iso", "comment": null}, "phone_number_details": {"type": "integer", "index": 10, "name": "phone_number_details", "comment": null}, "phone_number_line_type": {"type": "text", "index": 11, "name": "phone_number_line_type", "comment": null}, "phone_number_updated_at": {"type": "integer", "index": 12, "name": "phone_number_updated_at", "comment": null}, "signup_date": {"type": "timestamp without time zone", "index": 13, "name": "signup_date", "comment": null}, "signup_source": {"type": "text", "index": 14, "name": "signup_source", "comment": null}, "user_id": {"type": "text", "index": 15, "name": "user_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.iterable_integration_tests.user_history_data"}, "seed.iterable_integration_tests.user_unsubscribed_channel_history_data": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03", "name": "user_unsubscribed_channel_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"email": {"type": "text", "index": 1, "name": "email", "comment": null}, "channel_id": {"type": "bigint", "index": 2, "name": "channel_id", "comment": null}, "updated_at": {"type": "text", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.iterable_integration_tests.user_unsubscribed_channel_history_data"}, "seed.iterable_integration_tests.user_unsubscribed_message_type_history_data": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03", "name": "user_unsubscribed_message_type_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"message_type_id": {"type": "bigint", "index": 1, "name": "message_type_id", "comment": null}, "email": {"type": "text", "index": 2, "name": "email", "comment": null}, "updated_at": {"type": "text", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.iterable_integration_tests.user_unsubscribed_message_type_history_data"}, "model.iterable.int_iterable__campaign_event_metrics": {"metadata": {"type": "VIEW", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__campaign_event_metrics", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"campaign_id": {"type": "integer", "index": 1, "name": "campaign_id", "comment": null}, "template_id": {"type": "integer", "index": 2, "name": "template_id", "comment": null}, "experiment_id": {"type": "integer", "index": 3, "name": "experiment_id", "comment": null}, "count_unique_users": {"type": "bigint", "index": 4, "name": "count_unique_users", "comment": null}, "total_emailclick": {"type": "numeric", "index": 5, "name": "total_emailclick", "comment": null}, "unique_total_emailclick": {"type": "bigint", "index": 6, "name": "unique_total_emailclick", "comment": null}, "total_emailunsubscribe": {"type": "numeric", "index": 7, "name": "total_emailunsubscribe", "comment": null}, "unique_total_emailunsubscribe": {"type": "bigint", "index": 8, "name": "unique_total_emailunsubscribe", "comment": null}, "total_emailcomplaint": {"type": "numeric", "index": 9, "name": "total_emailcomplaint", "comment": null}, "unique_total_emailcomplaint": {"type": "bigint", "index": 10, "name": "unique_total_emailcomplaint", "comment": null}, "total_customevent": {"type": "numeric", "index": 11, "name": "total_customevent", "comment": null}, "unique_total_customevent": {"type": "bigint", "index": 12, "name": "unique_total_customevent", "comment": null}, "total_emailsubscribe": {"type": "numeric", "index": 13, "name": "total_emailsubscribe", "comment": null}, "unique_total_emailsubscribe": {"type": "bigint", "index": 14, "name": "unique_total_emailsubscribe", "comment": null}, "total_emailopen": {"type": "numeric", "index": 15, "name": "total_emailopen", "comment": null}, "unique_total_emailopen": {"type": "bigint", "index": 16, "name": "unique_total_emailopen", "comment": null}, "total_pushsend": {"type": "numeric", "index": 17, "name": "total_pushsend", "comment": null}, "unique_total_pushsend": {"type": "bigint", "index": 18, "name": "unique_total_pushsend", "comment": null}, "total_smsbounce": {"type": "numeric", "index": 19, "name": "total_smsbounce", "comment": null}, "unique_total_smsbounce": {"type": "bigint", "index": 20, "name": "unique_total_smsbounce", "comment": null}, "total_pushbounce": {"type": "numeric", "index": 21, "name": "total_pushbounce", "comment": null}, "unique_total_pushbounce": {"type": "bigint", "index": 22, "name": "unique_total_pushbounce", "comment": null}, "total_inappsendskip": {"type": "numeric", "index": 23, "name": "total_inappsendskip", "comment": null}, "unique_total_inappsendskip": {"type": "bigint", "index": 24, "name": "unique_total_inappsendskip", "comment": null}, "total_smssend": {"type": "numeric", "index": 25, "name": "total_smssend", "comment": null}, "unique_total_smssend": {"type": "bigint", "index": 26, "name": "unique_total_smssend", "comment": null}, "total_inappsend": {"type": "numeric", "index": 27, "name": "total_inappsend", "comment": null}, "unique_total_inappsend": {"type": "bigint", "index": 28, "name": "unique_total_inappsend", "comment": null}, "total_pushopen": {"type": "numeric", "index": 29, "name": "total_pushopen", "comment": null}, "unique_total_pushopen": {"type": "bigint", "index": 30, "name": "unique_total_pushopen", "comment": null}, "total_emailsend": {"type": "numeric", "index": 31, "name": "total_emailsend", "comment": null}, "unique_total_emailsend": {"type": "bigint", "index": 32, "name": "unique_total_emailsend", "comment": null}, "total_pushsendskip": {"type": "numeric", "index": 33, "name": "total_pushsendskip", "comment": null}, "unique_total_pushsendskip": {"type": "bigint", "index": 34, "name": "unique_total_pushsendskip", "comment": null}, "total_inappopen": {"type": "numeric", "index": 35, "name": "total_inappopen", "comment": null}, "unique_total_inappopen": {"type": "bigint", "index": 36, "name": "unique_total_inappopen", "comment": null}, "total_emailsendskip": {"type": "numeric", "index": 37, "name": "total_emailsendskip", "comment": null}, "unique_total_emailsendskip": {"type": "bigint", "index": 38, "name": "unique_total_emailsendskip", "comment": null}, "total_emailbounce": {"type": "numeric", "index": 39, "name": "total_emailbounce", "comment": null}, "unique_total_emailbounce": {"type": "bigint", "index": 40, "name": "unique_total_emailbounce", "comment": null}, "total_inappclick": {"type": "numeric", "index": 41, "name": "total_inappclick", "comment": null}, "unique_total_inappclick": {"type": "bigint", "index": 42, "name": "unique_total_inappclick", "comment": null}, "total_pushuninstall": {"type": "numeric", "index": 43, "name": "total_pushuninstall", "comment": null}, "unique_total_pushuninstall": {"type": "bigint", "index": 44, "name": "unique_total_pushuninstall", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.int_iterable__campaign_event_metrics"}, "model.iterable.int_iterable__campaign_labels": {"metadata": {"type": "VIEW", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__campaign_labels", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"campaign_id": {"type": "integer", "index": 1, "name": "campaign_id", "comment": null}, "labels": {"type": "text", "index": 2, "name": "labels", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.int_iterable__campaign_labels"}, "model.iterable.int_iterable__campaign_lists": {"metadata": {"type": "VIEW", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__campaign_lists", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"list_id": {"type": "integer", "index": 1, "name": "list_id", "comment": null}, "campaign_id": {"type": "integer", "index": 2, "name": "campaign_id", "comment": null}, "updated_at": {"type": "text", "index": 3, "name": "updated_at", "comment": null}, "list_activity": {"type": "text", "index": 4, "name": "list_activity", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.int_iterable__campaign_lists"}, "model.iterable.int_iterable__latest_campaign": {"metadata": {"type": "VIEW", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__latest_campaign", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"campaign_id": {"type": "integer", "index": 1, "name": "campaign_id", "comment": null}, "updated_at": {"type": "text", "index": 2, "name": "updated_at", "comment": null}, "campaign_name": {"type": "text", "index": 3, "name": "campaign_name", "comment": null}, "campaign_state": {"type": "text", "index": 4, "name": "campaign_state", "comment": null}, "campaign_type": {"type": "text", "index": 5, "name": "campaign_type", "comment": null}, "send_size": {"type": "integer", "index": 6, "name": "send_size", "comment": null}, "start_at": {"type": "integer", "index": 7, "name": "start_at", "comment": null}, "ended_at": {"type": "integer", "index": 8, "name": "ended_at", "comment": null}, "created_at": {"type": "text", "index": 9, "name": "created_at", "comment": null}, "recurring_campaign_id": {"type": "integer", "index": 10, "name": "recurring_campaign_id", "comment": null}, "created_by_user_id": {"type": "text", "index": 11, "name": "created_by_user_id", "comment": null}, "template_id": {"type": "integer", "index": 12, "name": "template_id", "comment": null}, "workflow_id": {"type": "integer", "index": 13, "name": "workflow_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 14, "name": "_fivetran_synced", "comment": null}, "latest_campaign_index": {"type": "bigint", "index": 15, "name": "latest_campaign_index", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.int_iterable__latest_campaign"}, "model.iterable.int_iterable__latest_template": {"metadata": {"type": "VIEW", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__latest_template", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"template_id": {"type": "integer", "index": 1, "name": "template_id", "comment": null}, "template_name": {"type": "text", "index": 2, "name": "template_name", "comment": null}, "template_type": {"type": "text", "index": 3, "name": "template_type", "comment": null}, "created_at": {"type": "text", "index": 4, "name": "created_at", "comment": null}, "client_template_id": {"type": "integer", "index": 5, "name": "client_template_id", "comment": null}, "creator_user_id": {"type": "text", "index": 6, "name": "creator_user_id", "comment": null}, "message_type_id": {"type": "integer", "index": 7, "name": "message_type_id", "comment": null}, "updated_at": {"type": "text", "index": 8, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 9, "name": "_fivetran_synced", "comment": null}, "latest_template_index": {"type": "bigint", "index": 10, "name": "latest_template_index", "comment": null}, "message_type_name": {"type": "text", "index": 11, "name": "message_type_name", "comment": null}, "channel_id": {"type": "bigint", "index": 12, "name": "channel_id", "comment": null}, "channel_name": {"type": "text", "index": 13, "name": "channel_name", "comment": null}, "channel_type": {"type": "text", "index": 14, "name": "channel_type", "comment": null}, "message_medium": {"type": "text", "index": 15, "name": "message_medium", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.int_iterable__latest_template"}, "model.iterable.int_iterable__latest_user": {"metadata": {"type": "VIEW", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__latest_user", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"email": {"type": "text", "index": 1, "name": "email", "comment": null}, "user_id": {"type": "text", "index": 2, "name": "user_id", "comment": null}, "first_name": {"type": "text", "index": 3, "name": "first_name", "comment": null}, "last_name": {"type": "text", "index": 4, "name": "last_name", "comment": null}, "email_list_ids": {"type": "text", "index": 5, "name": "email_list_ids", "comment": null}, "phone_number": {"type": "integer", "index": 6, "name": "phone_number", "comment": null}, "signup_date": {"type": "timestamp without time zone", "index": 7, "name": "signup_date", "comment": null}, "signup_source": {"type": "text", "index": 8, "name": "signup_source", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 9, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 10, "name": "_fivetran_synced", "comment": null}, "latest_user_index": {"type": "bigint", "index": 11, "name": "latest_user_index", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.int_iterable__latest_user"}, "model.iterable.int_iterable__list_user_history": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__list_user_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"email": {"type": "text", "index": 1, "name": "email", "comment": null}, "user_id": {"type": "text", "index": 2, "name": "user_id", "comment": null}, "first_name": {"type": "text", "index": 3, "name": "first_name", "comment": null}, "last_name": {"type": "text", "index": 4, "name": "last_name", "comment": null}, "email_list_ids": {"type": "text", "index": 5, "name": "email_list_ids", "comment": null}, "phone_number": {"type": "integer", "index": 6, "name": "phone_number", "comment": null}, "signup_date": {"type": "timestamp without time zone", "index": 7, "name": "signup_date", "comment": null}, "signup_source": {"type": "text", "index": 8, "name": "signup_source", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 9, "name": "updated_at", "comment": null}, "is_current": {"type": "boolean", "index": 10, "name": "is_current", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.int_iterable__list_user_history"}, "model.iterable.int_iterable__list_user_unnest": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__list_user_unnest", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"email": {"type": "text", "index": 1, "name": "email", "comment": null}, "first_name": {"type": "text", "index": 2, "name": "first_name", "comment": null}, "last_name": {"type": "text", "index": 3, "name": "last_name", "comment": null}, "user_id": {"type": "text", "index": 4, "name": "user_id", "comment": null}, "signup_date": {"type": "timestamp without time zone", "index": 5, "name": "signup_date", "comment": null}, "signup_source": {"type": "text", "index": 6, "name": "signup_source", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 7, "name": "updated_at", "comment": null}, "phone_number": {"type": "integer", "index": 8, "name": "phone_number", "comment": null}, "is_current": {"type": "boolean", "index": 9, "name": "is_current", "comment": null}, "email_list_ids": {"type": "text", "index": 10, "name": "email_list_ids", "comment": null}, "list_id": {"type": "integer", "index": 11, "name": "list_id", "comment": null}, "unique_key": {"type": "text", "index": 12, "name": "unique_key", "comment": null}, "date_day": {"type": "date", "index": 13, "name": "date_day", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.int_iterable__list_user_unnest"}, "model.iterable.int_iterable__message_type_channel": {"metadata": {"type": "VIEW", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__message_type_channel", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"channel_id": {"type": "bigint", "index": 1, "name": "channel_id", "comment": null}, "channel_name": {"type": "text", "index": 2, "name": "channel_name", "comment": null}, "channel_type": {"type": "text", "index": 3, "name": "channel_type", "comment": null}, "message_medium": {"type": "text", "index": 4, "name": "message_medium", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "message_type_name": {"type": "text", "index": 6, "name": "message_type_name", "comment": null}, "message_type_id": {"type": "bigint", "index": 7, "name": "message_type_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.int_iterable__message_type_channel"}, "model.iterable.int_iterable__recurring_campaigns": {"metadata": {"type": "VIEW", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__recurring_campaigns", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"campaign_id": {"type": "integer", "index": 1, "name": "campaign_id", "comment": null}, "campaign_name": {"type": "text", "index": 2, "name": "campaign_name", "comment": null}, "updated_at": {"type": "text", "index": 3, "name": "updated_at", "comment": null}, "campaign_state": {"type": "text", "index": 4, "name": "campaign_state", "comment": null}, "campaign_type": {"type": "text", "index": 5, "name": "campaign_type", "comment": null}, "send_size": {"type": "integer", "index": 6, "name": "send_size", "comment": null}, "start_at": {"type": "integer", "index": 7, "name": "start_at", "comment": null}, "ended_at": {"type": "integer", "index": 8, "name": "ended_at", "comment": null}, "created_at": {"type": "text", "index": 9, "name": "created_at", "comment": null}, "created_by_user_id": {"type": "text", "index": 10, "name": "created_by_user_id", "comment": null}, "template_id": {"type": "integer", "index": 11, "name": "template_id", "comment": null}, "recurring_campaign_id": {"type": "integer", "index": 12, "name": "recurring_campaign_id", "comment": null}, "recurring_campaign_name": {"type": "text", "index": 13, "name": "recurring_campaign_name", "comment": null}, "recurring_campaign_state": {"type": "text", "index": 14, "name": "recurring_campaign_state", "comment": null}, "recurring_campaign_send_size": {"type": "integer", "index": 15, "name": "recurring_campaign_send_size", "comment": null}, "recurring_campaign_start_at": {"type": "integer", "index": 16, "name": "recurring_campaign_start_at", "comment": null}, "is_campaign_recurring": {"type": "boolean", "index": 17, "name": "is_campaign_recurring", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.int_iterable__recurring_campaigns"}, "model.iterable.int_iterable__user_event_metrics": {"metadata": {"type": "VIEW", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__user_event_metrics", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"user_email": {"type": "text", "index": 1, "name": "user_email", "comment": null}, "count_total_campaigns": {"type": "bigint", "index": 2, "name": "count_total_campaigns", "comment": null}, "first_event_at": {"type": "timestamp without time zone", "index": 3, "name": "first_event_at", "comment": null}, "last_event_at": {"type": "timestamp without time zone", "index": 4, "name": "last_event_at", "comment": null}, "total_emailclick": {"type": "numeric", "index": 5, "name": "total_emailclick", "comment": null}, "total_emailunsubscribe": {"type": "numeric", "index": 6, "name": "total_emailunsubscribe", "comment": null}, "total_emailcomplaint": {"type": "numeric", "index": 7, "name": "total_emailcomplaint", "comment": null}, "total_customevent": {"type": "numeric", "index": 8, "name": "total_customevent", "comment": null}, "total_emailsubscribe": {"type": "numeric", "index": 9, "name": "total_emailsubscribe", "comment": null}, "total_emailopen": {"type": "numeric", "index": 10, "name": "total_emailopen", "comment": null}, "total_pushsend": {"type": "numeric", "index": 11, "name": "total_pushsend", "comment": null}, "total_smsbounce": {"type": "numeric", "index": 12, "name": "total_smsbounce", "comment": null}, "total_pushbounce": {"type": "numeric", "index": 13, "name": "total_pushbounce", "comment": null}, "total_inappsendskip": {"type": "numeric", "index": 14, "name": "total_inappsendskip", "comment": null}, "total_smssend": {"type": "numeric", "index": 15, "name": "total_smssend", "comment": null}, "total_inappsend": {"type": "numeric", "index": 16, "name": "total_inappsend", "comment": null}, "total_pushopen": {"type": "numeric", "index": 17, "name": "total_pushopen", "comment": null}, "total_emailsend": {"type": "numeric", "index": 18, "name": "total_emailsend", "comment": null}, "total_pushsendskip": {"type": "numeric", "index": 19, "name": "total_pushsendskip", "comment": null}, "total_inappopen": {"type": "numeric", "index": 20, "name": "total_inappopen", "comment": null}, "total_emailsendskip": {"type": "numeric", "index": 21, "name": "total_emailsendskip", "comment": null}, "total_emailbounce": {"type": "numeric", "index": 22, "name": "total_emailbounce", "comment": null}, "total_inappclick": {"type": "numeric", "index": 23, "name": "total_inappclick", "comment": null}, "total_pushuninstall": {"type": "numeric", "index": 24, "name": "total_pushuninstall", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.int_iterable__user_event_metrics"}, "model.iterable.iterable__campaigns": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03_iterable", "name": "iterable__campaigns", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"campaign_id": {"type": "integer", "index": 1, "name": "campaign_id", "comment": null}, "campaign_name": {"type": "text", "index": 2, "name": "campaign_name", "comment": null}, "updated_at": {"type": "text", "index": 3, "name": "updated_at", "comment": null}, "campaign_state": {"type": "text", "index": 4, "name": "campaign_state", "comment": null}, "campaign_type": {"type": "text", "index": 5, "name": "campaign_type", "comment": null}, "send_size": {"type": "integer", "index": 6, "name": "send_size", "comment": null}, "start_at": {"type": "integer", "index": 7, "name": "start_at", "comment": null}, "ended_at": {"type": "integer", "index": 8, "name": "ended_at", "comment": null}, "created_at": {"type": "text", "index": 9, "name": "created_at", "comment": null}, "created_by_user_id": {"type": "text", "index": 10, "name": "created_by_user_id", "comment": null}, "template_id": {"type": "integer", "index": 11, "name": "template_id", "comment": null}, "recurring_campaign_id": {"type": "integer", "index": 12, "name": "recurring_campaign_id", "comment": null}, "recurring_campaign_name": {"type": "text", "index": 13, "name": "recurring_campaign_name", "comment": null}, "recurring_campaign_state": {"type": "text", "index": 14, "name": "recurring_campaign_state", "comment": null}, "recurring_campaign_send_size": {"type": "integer", "index": 15, "name": "recurring_campaign_send_size", "comment": null}, "recurring_campaign_start_at": {"type": "integer", "index": 16, "name": "recurring_campaign_start_at", "comment": null}, "is_campaign_recurring": {"type": "boolean", "index": 17, "name": "is_campaign_recurring", "comment": null}, "experiment_id": {"type": "integer", "index": 18, "name": "experiment_id", "comment": null}, "count_unique_users": {"type": "bigint", "index": 19, "name": "count_unique_users", "comment": null}, "total_emailclick": {"type": "numeric", "index": 20, "name": "total_emailclick", "comment": null}, "unique_total_emailclick": {"type": "bigint", "index": 21, "name": "unique_total_emailclick", "comment": null}, "total_emailunsubscribe": {"type": "numeric", "index": 22, "name": "total_emailunsubscribe", "comment": null}, "unique_total_emailunsubscribe": {"type": "bigint", "index": 23, "name": "unique_total_emailunsubscribe", "comment": null}, "total_emailcomplaint": {"type": "numeric", "index": 24, "name": "total_emailcomplaint", "comment": null}, "unique_total_emailcomplaint": {"type": "bigint", "index": 25, "name": "unique_total_emailcomplaint", "comment": null}, "total_customevent": {"type": "numeric", "index": 26, "name": "total_customevent", "comment": null}, "unique_total_customevent": {"type": "bigint", "index": 27, "name": "unique_total_customevent", "comment": null}, "total_emailsubscribe": {"type": "numeric", "index": 28, "name": "total_emailsubscribe", "comment": null}, "unique_total_emailsubscribe": {"type": "bigint", "index": 29, "name": "unique_total_emailsubscribe", "comment": null}, "total_emailopen": {"type": "numeric", "index": 30, "name": "total_emailopen", "comment": null}, "unique_total_emailopen": {"type": "bigint", "index": 31, "name": "unique_total_emailopen", "comment": null}, "total_pushsend": {"type": "numeric", "index": 32, "name": "total_pushsend", "comment": null}, "unique_total_pushsend": {"type": "bigint", "index": 33, "name": "unique_total_pushsend", "comment": null}, "total_smsbounce": {"type": "numeric", "index": 34, "name": "total_smsbounce", "comment": null}, "unique_total_smsbounce": {"type": "bigint", "index": 35, "name": "unique_total_smsbounce", "comment": null}, "total_pushbounce": {"type": "numeric", "index": 36, "name": "total_pushbounce", "comment": null}, "unique_total_pushbounce": {"type": "bigint", "index": 37, "name": "unique_total_pushbounce", "comment": null}, "total_inappsendskip": {"type": "numeric", "index": 38, "name": "total_inappsendskip", "comment": null}, "unique_total_inappsendskip": {"type": "bigint", "index": 39, "name": "unique_total_inappsendskip", "comment": null}, "total_smssend": {"type": "numeric", "index": 40, "name": "total_smssend", "comment": null}, "unique_total_smssend": {"type": "bigint", "index": 41, "name": "unique_total_smssend", "comment": null}, "total_inappsend": {"type": "numeric", "index": 42, "name": "total_inappsend", "comment": null}, "unique_total_inappsend": {"type": "bigint", "index": 43, "name": "unique_total_inappsend", "comment": null}, "total_pushopen": {"type": "numeric", "index": 44, "name": "total_pushopen", "comment": null}, "unique_total_pushopen": {"type": "bigint", "index": 45, "name": "unique_total_pushopen", "comment": null}, "total_emailsend": {"type": "numeric", "index": 46, "name": "total_emailsend", "comment": null}, "unique_total_emailsend": {"type": "bigint", "index": 47, "name": "unique_total_emailsend", "comment": null}, "total_pushsendskip": {"type": "numeric", "index": 48, "name": "total_pushsendskip", "comment": null}, "unique_total_pushsendskip": {"type": "bigint", "index": 49, "name": "unique_total_pushsendskip", "comment": null}, "total_inappopen": {"type": "numeric", "index": 50, "name": "total_inappopen", "comment": null}, "unique_total_inappopen": {"type": "bigint", "index": 51, "name": "unique_total_inappopen", "comment": null}, "total_emailsendskip": {"type": "numeric", "index": 52, "name": "total_emailsendskip", "comment": null}, "unique_total_emailsendskip": {"type": "bigint", "index": 53, "name": "unique_total_emailsendskip", "comment": null}, "total_emailbounce": {"type": "numeric", "index": 54, "name": "total_emailbounce", "comment": null}, "unique_total_emailbounce": {"type": "bigint", "index": 55, "name": "unique_total_emailbounce", "comment": null}, "total_inappclick": {"type": "numeric", "index": 56, "name": "total_inappclick", "comment": null}, "unique_total_inappclick": {"type": "bigint", "index": 57, "name": "unique_total_inappclick", "comment": null}, "total_pushuninstall": {"type": "numeric", "index": 58, "name": "total_pushuninstall", "comment": null}, "unique_total_pushuninstall": {"type": "bigint", "index": 59, "name": "unique_total_pushuninstall", "comment": null}, "count_send_lists": {"type": "bigint", "index": 60, "name": "count_send_lists", "comment": null}, "count_suppress_lists": {"type": "bigint", "index": 61, "name": "count_suppress_lists", "comment": null}, "labels": {"type": "text", "index": 62, "name": "labels", "comment": null}, "template_name": {"type": "text", "index": 63, "name": "template_name", "comment": null}, "template_creator_user_id": {"type": "text", "index": 64, "name": "template_creator_user_id", "comment": null}, "message_medium": {"type": "text", "index": 65, "name": "message_medium", "comment": null}, "message_type_name": {"type": "text", "index": 66, "name": "message_type_name", "comment": null}, "channel_name": {"type": "text", "index": 67, "name": "channel_name", "comment": null}, "channel_id": {"type": "bigint", "index": 68, "name": "channel_id", "comment": null}, "channel_type": {"type": "text", "index": 69, "name": "channel_type", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.iterable__campaigns"}, "model.iterable.iterable__events": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03_iterable", "name": "iterable__events", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"event_id": {"type": "text", "index": 1, "name": "event_id", "comment": null}, "campaign_id": {"type": "integer", "index": 2, "name": "campaign_id", "comment": null}, "content_id": {"type": "integer", "index": 3, "name": "content_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 4, "name": "created_at", "comment": null}, "created_on": {"type": "date", "index": 5, "name": "created_on", "comment": null}, "email": {"type": "text", "index": 6, "name": "email", "comment": null}, "additional_properties": {"type": "text", "index": 7, "name": "additional_properties", "comment": null}, "event_name": {"type": "text", "index": 8, "name": "event_name", "comment": null}, "message_bus_id": {"type": "integer", "index": 9, "name": "message_bus_id", "comment": null}, "message_id": {"type": "integer", "index": 10, "name": "message_id", "comment": null}, "message_type_id": {"type": "integer", "index": 11, "name": "message_type_id", "comment": null}, "recipient_state": {"type": "integer", "index": 12, "name": "recipient_state", "comment": null}, "status": {"type": "integer", "index": 13, "name": "status", "comment": null}, "transactional_data": {"type": "character varying(100)", "index": 14, "name": "transactional_data", "comment": null}, "unsub_source": {"type": "integer", "index": 15, "name": "unsub_source", "comment": null}, "user_agent": {"type": "integer", "index": 16, "name": "user_agent", "comment": null}, "user_agent_device": {"type": "integer", "index": 17, "name": "user_agent_device", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 18, "name": "_fivetran_synced", "comment": null}, "campaign_name": {"type": "text", "index": 19, "name": "campaign_name", "comment": null}, "campaign_type": {"type": "text", "index": 20, "name": "campaign_type", "comment": null}, "is_campaign_recurring": {"type": "boolean", "index": 21, "name": "is_campaign_recurring", "comment": null}, "recurring_campaign_name": {"type": "text", "index": 22, "name": "recurring_campaign_name", "comment": null}, "recurring_campaign_id": {"type": "integer", "index": 23, "name": "recurring_campaign_id", "comment": null}, "user_id": {"type": "text", "index": 24, "name": "user_id", "comment": null}, "user_full_name": {"type": "text", "index": 25, "name": "user_full_name", "comment": null}, "message_type_name": {"type": "text", "index": 26, "name": "message_type_name", "comment": null}, "message_medium": {"type": "text", "index": 27, "name": "message_medium", "comment": null}, "channel_id": {"type": "bigint", "index": 28, "name": "channel_id", "comment": null}, "channel_name": {"type": "text", "index": 29, "name": "channel_name", "comment": null}, "channel_type": {"type": "text", "index": 30, "name": "channel_type", "comment": null}, "is_app_already_running": {"type": "integer", "index": 31, "name": "is_app_already_running", "comment": null}, "badge": {"type": "integer", "index": 32, "name": "badge", "comment": null}, "canonical_url_id": {"type": "integer", "index": 33, "name": "canonical_url_id", "comment": null}, "is_content_available": {"type": "integer", "index": 34, "name": "is_content_available", "comment": null}, "deeplink_android": {"type": "integer", "index": 35, "name": "deeplink_android", "comment": null}, "deeplink_ios": {"type": "integer", "index": 36, "name": "deeplink_ios", "comment": null}, "device": {"type": "integer", "index": 37, "name": "device", "comment": null}, "email_id": {"type": "text", "index": 38, "name": "email_id", "comment": null}, "email_subject": {"type": "text", "index": 39, "name": "email_subject", "comment": null}, "experiment_id": {"type": "integer", "index": 40, "name": "experiment_id", "comment": null}, "from_phone_number_id": {"type": "integer", "index": 41, "name": "from_phone_number_id", "comment": null}, "from_smssender_id": {"type": "integer", "index": 42, "name": "from_smssender_id", "comment": null}, "image_url": {"type": "integer", "index": 43, "name": "image_url", "comment": null}, "is_ghost_push": {"type": "integer", "index": 44, "name": "is_ghost_push", "comment": null}, "link_id": {"type": "integer", "index": 45, "name": "link_id", "comment": null}, "link_url": {"type": "integer", "index": 46, "name": "link_url", "comment": null}, "locale": {"type": "integer", "index": 47, "name": "locale", "comment": null}, "payload": {"type": "character varying(100)", "index": 48, "name": "payload", "comment": null}, "platform_endpoint": {"type": "integer", "index": 49, "name": "platform_endpoint", "comment": null}, "push_message": {"type": "integer", "index": 50, "name": "push_message", "comment": null}, "region": {"type": "text", "index": 51, "name": "region", "comment": null}, "sms_message": {"type": "integer", "index": 52, "name": "sms_message", "comment": null}, "sms_provider_response_code": {"type": "integer", "index": 53, "name": "sms_provider_response_code", "comment": null}, "sms_provider_response_message": {"type": "integer", "index": 54, "name": "sms_provider_response_message", "comment": null}, "sms_provider_response_more_info": {"type": "integer", "index": 55, "name": "sms_provider_response_more_info", "comment": null}, "sms_provider_response_status": {"type": "integer", "index": 56, "name": "sms_provider_response_status", "comment": null}, "sound": {"type": "integer", "index": 57, "name": "sound", "comment": null}, "to_phone_number": {"type": "integer", "index": 58, "name": "to_phone_number", "comment": null}, "url": {"type": "integer", "index": 59, "name": "url", "comment": null}, "workflow_id": {"type": "integer", "index": 60, "name": "workflow_id", "comment": null}, "workflow_name": {"type": "text", "index": 61, "name": "workflow_name", "comment": null}, "template_id": {"type": "integer", "index": 62, "name": "template_id", "comment": null}, "template_name": {"type": "text", "index": 63, "name": "template_name", "comment": null}, "template_creator_user_id": {"type": "text", "index": 64, "name": "template_creator_user_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.iterable__events"}, "model.iterable.iterable__list_user_history": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03_iterable", "name": "iterable__list_user_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"user_email": {"type": "text", "index": 1, "name": "user_email", "comment": null}, "user_first_name": {"type": "text", "index": 2, "name": "user_first_name", "comment": null}, "user_last_name": {"type": "text", "index": 3, "name": "user_last_name", "comment": null}, "user_id": {"type": "text", "index": 4, "name": "user_id", "comment": null}, "user_signup_date": {"type": "timestamp without time zone", "index": 5, "name": "user_signup_date", "comment": null}, "user_signup_source": {"type": "text", "index": 6, "name": "user_signup_source", "comment": null}, "user_updated_at": {"type": "timestamp without time zone", "index": 7, "name": "user_updated_at", "comment": null}, "list_id": {"type": "integer", "index": 8, "name": "list_id", "comment": null}, "is_current": {"type": "boolean", "index": 9, "name": "is_current", "comment": null}, "list_name": {"type": "text", "index": 10, "name": "list_name", "comment": null}, "list_type": {"type": "text", "index": 11, "name": "list_type", "comment": null}, "list_created_at": {"type": "text", "index": 12, "name": "list_created_at", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.iterable__list_user_history"}, "model.iterable.iterable__user_campaign": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03_iterable", "name": "iterable__user_campaign", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"user_email": {"type": "text", "index": 1, "name": "user_email", "comment": null}, "user_full_name": {"type": "text", "index": 2, "name": "user_full_name", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "experiment_id": {"type": "integer", "index": 4, "name": "experiment_id", "comment": null}, "campaign_name": {"type": "text", "index": 5, "name": "campaign_name", "comment": null}, "template_id": {"type": "integer", "index": 6, "name": "template_id", "comment": null}, "template_name": {"type": "text", "index": 7, "name": "template_name", "comment": null}, "recurring_campaign_id": {"type": "integer", "index": 8, "name": "recurring_campaign_id", "comment": null}, "recurring_campaign_name": {"type": "text", "index": 9, "name": "recurring_campaign_name", "comment": null}, "first_event_at": {"type": "timestamp without time zone", "index": 10, "name": "first_event_at", "comment": null}, "last_event_at": {"type": "timestamp without time zone", "index": 11, "name": "last_event_at", "comment": null}, "total_emailclick": {"type": "bigint", "index": 12, "name": "total_emailclick", "comment": null}, "total_emailunsubscribe": {"type": "bigint", "index": 13, "name": "total_emailunsubscribe", "comment": null}, "total_emailcomplaint": {"type": "bigint", "index": 14, "name": "total_emailcomplaint", "comment": null}, "total_customevent": {"type": "bigint", "index": 15, "name": "total_customevent", "comment": null}, "total_emailsubscribe": {"type": "bigint", "index": 16, "name": "total_emailsubscribe", "comment": null}, "total_emailopen": {"type": "bigint", "index": 17, "name": "total_emailopen", "comment": null}, "total_pushsend": {"type": "bigint", "index": 18, "name": "total_pushsend", "comment": null}, "total_smsbounce": {"type": "bigint", "index": 19, "name": "total_smsbounce", "comment": null}, "total_pushbounce": {"type": "bigint", "index": 20, "name": "total_pushbounce", "comment": null}, "total_inappsendskip": {"type": "bigint", "index": 21, "name": "total_inappsendskip", "comment": null}, "total_smssend": {"type": "bigint", "index": 22, "name": "total_smssend", "comment": null}, "total_inappsend": {"type": "bigint", "index": 23, "name": "total_inappsend", "comment": null}, "total_pushopen": {"type": "bigint", "index": 24, "name": "total_pushopen", "comment": null}, "total_emailsend": {"type": "bigint", "index": 25, "name": "total_emailsend", "comment": null}, "total_pushsendskip": {"type": "bigint", "index": 26, "name": "total_pushsendskip", "comment": null}, "total_inappopen": {"type": "bigint", "index": 27, "name": "total_inappopen", "comment": null}, "total_emailsendskip": {"type": "bigint", "index": 28, "name": "total_emailsendskip", "comment": null}, "total_emailbounce": {"type": "bigint", "index": 29, "name": "total_emailbounce", "comment": null}, "total_inappclick": {"type": "bigint", "index": 30, "name": "total_inappclick", "comment": null}, "total_pushuninstall": {"type": "bigint", "index": 31, "name": "total_pushuninstall", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.iterable__user_campaign"}, "model.iterable.iterable__user_unsubscriptions": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03_iterable", "name": "iterable__user_unsubscriptions", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"email": {"type": "text", "index": 1, "name": "email", "comment": null}, "channel_id": {"type": "bigint", "index": 2, "name": "channel_id", "comment": null}, "message_type_id": {"type": "bigint", "index": 3, "name": "message_type_id", "comment": null}, "channel_name": {"type": "text", "index": 4, "name": "channel_name", "comment": null}, "message_type_name": {"type": "text", "index": 5, "name": "message_type_name", "comment": null}, "channel_type": {"type": "text", "index": 6, "name": "channel_type", "comment": null}, "message_medium": {"type": "text", "index": 7, "name": "message_medium", "comment": null}, "updated_at": {"type": "text", "index": 8, "name": "updated_at", "comment": null}, "is_unsubscribed_channel_wide": {"type": "boolean", "index": 9, "name": "is_unsubscribed_channel_wide", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.iterable__user_unsubscriptions"}, "model.iterable.iterable__users": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03_iterable", "name": "iterable__users", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"email": {"type": "text", "index": 1, "name": "email", "comment": null}, "first_name": {"type": "text", "index": 2, "name": "first_name", "comment": null}, "last_name": {"type": "text", "index": 3, "name": "last_name", "comment": null}, "user_id": {"type": "text", "index": 4, "name": "user_id", "comment": null}, "signup_date": {"type": "timestamp without time zone", "index": 5, "name": "signup_date", "comment": null}, "signup_source": {"type": "text", "index": 6, "name": "signup_source", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 7, "name": "updated_at", "comment": null}, "phone_number": {"type": "integer", "index": 8, "name": "phone_number", "comment": null}, "email_list_ids": {"type": "text", "index": 9, "name": "email_list_ids", "comment": null}, "count_lists": {"type": "bigint", "index": 10, "name": "count_lists", "comment": null}, "count_total_campaigns": {"type": "bigint", "index": 11, "name": "count_total_campaigns", "comment": null}, "first_event_at": {"type": "timestamp without time zone", "index": 12, "name": "first_event_at", "comment": null}, "last_event_at": {"type": "timestamp without time zone", "index": 13, "name": "last_event_at", "comment": null}, "total_emailclick": {"type": "numeric", "index": 14, "name": "total_emailclick", "comment": null}, "total_emailunsubscribe": {"type": "numeric", "index": 15, "name": "total_emailunsubscribe", "comment": null}, "total_emailcomplaint": {"type": "numeric", "index": 16, "name": "total_emailcomplaint", "comment": null}, "total_customevent": {"type": "numeric", "index": 17, "name": "total_customevent", "comment": null}, "total_emailsubscribe": {"type": "numeric", "index": 18, "name": "total_emailsubscribe", "comment": null}, "total_emailopen": {"type": "numeric", "index": 19, "name": "total_emailopen", "comment": null}, "total_pushsend": {"type": "numeric", "index": 20, "name": "total_pushsend", "comment": null}, "total_smsbounce": {"type": "numeric", "index": 21, "name": "total_smsbounce", "comment": null}, "total_pushbounce": {"type": "numeric", "index": 22, "name": "total_pushbounce", "comment": null}, "total_inappsendskip": {"type": "numeric", "index": 23, "name": "total_inappsendskip", "comment": null}, "total_smssend": {"type": "numeric", "index": 24, "name": "total_smssend", "comment": null}, "total_inappsend": {"type": "numeric", "index": 25, "name": "total_inappsend", "comment": null}, "total_pushopen": {"type": "numeric", "index": 26, "name": "total_pushopen", "comment": null}, "total_emailsend": {"type": "numeric", "index": 27, "name": "total_emailsend", "comment": null}, "total_pushsendskip": {"type": "numeric", "index": 28, "name": "total_pushsendskip", "comment": null}, "total_inappopen": {"type": "numeric", "index": 29, "name": "total_inappopen", "comment": null}, "total_emailsendskip": {"type": "numeric", "index": 30, "name": "total_emailsendskip", "comment": null}, "total_emailbounce": {"type": "numeric", "index": 31, "name": "total_emailbounce", "comment": null}, "total_inappclick": {"type": "numeric", "index": 32, "name": "total_inappclick", "comment": null}, "total_pushuninstall": {"type": "numeric", "index": 33, "name": "total_pushuninstall", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable.iterable__users"}, "model.iterable_source.stg_iterable__campaign_history": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"campaign_id": {"type": "integer", "index": 1, "name": "campaign_id", "comment": null}, "updated_at": {"type": "text", "index": 2, "name": "updated_at", "comment": null}, "campaign_name": {"type": "text", "index": 3, "name": "campaign_name", "comment": null}, "campaign_state": {"type": "text", "index": 4, "name": "campaign_state", "comment": null}, "campaign_type": {"type": "text", "index": 5, "name": "campaign_type", "comment": null}, "send_size": {"type": "integer", "index": 6, "name": "send_size", "comment": null}, "start_at": {"type": "integer", "index": 7, "name": "start_at", "comment": null}, "ended_at": {"type": "integer", "index": 8, "name": "ended_at", "comment": null}, "created_at": {"type": "text", "index": 9, "name": "created_at", "comment": null}, "recurring_campaign_id": {"type": "integer", "index": 10, "name": "recurring_campaign_id", "comment": null}, "created_by_user_id": {"type": "text", "index": 11, "name": "created_by_user_id", "comment": null}, "template_id": {"type": "integer", "index": 12, "name": "template_id", "comment": null}, "workflow_id": {"type": "integer", "index": 13, "name": "workflow_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 14, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__campaign_history"}, "model.iterable_source.stg_iterable__campaign_history_tmp": {"metadata": {"type": "VIEW", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "updated_at": {"type": "text", "index": 2, "name": "updated_at", "comment": null}, "template_id": {"type": "integer", "index": 3, "name": "template_id", "comment": null}, "recurring_campaign_id": {"type": "integer", "index": 4, "name": "recurring_campaign_id", "comment": null}, "campaign_state": {"type": "text", "index": 5, "name": "campaign_state", "comment": null}, "created_at": {"type": "text", "index": 6, "name": "created_at", "comment": null}, "created_by_user_id": {"type": "text", "index": 7, "name": "created_by_user_id", "comment": null}, "ended_at": {"type": "integer", "index": 8, "name": "ended_at", "comment": null}, "name": {"type": "text", "index": 9, "name": "name", "comment": null}, "send_size": {"type": "integer", "index": 10, "name": "send_size", "comment": null}, "start_at": {"type": "integer", "index": 11, "name": "start_at", "comment": null}, "type": {"type": "text", "index": 12, "name": "type", "comment": null}, "workflow_id": {"type": "integer", "index": 13, "name": "workflow_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 14, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__campaign_history_tmp"}, "model.iterable_source.stg_iterable__campaign_label_history": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_label_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"campaign_id": {"type": "integer", "index": 1, "name": "campaign_id", "comment": null}, "label": {"type": "text", "index": 2, "name": "label", "comment": null}, "updated_at": {"type": "text", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__campaign_label_history"}, "model.iterable_source.stg_iterable__campaign_label_history_tmp": {"metadata": {"type": "VIEW", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_label_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"campaign_id": {"type": "integer", "index": 1, "name": "campaign_id", "comment": null}, "label": {"type": "text", "index": 2, "name": "label", "comment": null}, "updated_at": {"type": "text", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__campaign_label_history_tmp"}, "model.iterable_source.stg_iterable__campaign_list_history": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_list_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"campaign_id": {"type": "integer", "index": 1, "name": "campaign_id", "comment": null}, "list_id": {"type": "integer", "index": 2, "name": "list_id", "comment": null}, "updated_at": {"type": "text", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__campaign_list_history"}, "model.iterable_source.stg_iterable__campaign_list_history_tmp": {"metadata": {"type": "VIEW", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_list_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"list_id": {"type": "integer", "index": 1, "name": "list_id", "comment": null}, "campaign_id": {"type": "integer", "index": 2, "name": "campaign_id", "comment": null}, "updated_at": {"type": "text", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__campaign_list_history_tmp"}, "model.iterable_source.stg_iterable__campaign_suppression_list_history": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_suppression_list_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"campaign_id": {"type": "integer", "index": 1, "name": "campaign_id", "comment": null}, "suppressed_list_id": {"type": "integer", "index": 2, "name": "suppressed_list_id", "comment": null}, "updated_at": {"type": "text", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__campaign_suppression_list_history"}, "model.iterable_source.stg_iterable__campaign_suppression_list_history_tmp": {"metadata": {"type": "VIEW", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_suppression_list_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"suppressed_list_id": {"type": "integer", "index": 1, "name": "suppressed_list_id", "comment": null}, "campaign_id": {"type": "integer", "index": 2, "name": "campaign_id", "comment": null}, "updated_at": {"type": "text", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__campaign_suppression_list_history_tmp"}, "model.iterable_source.stg_iterable__channel": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__channel", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"channel_id": {"type": "bigint", "index": 1, "name": "channel_id", "comment": null}, "channel_name": {"type": "text", "index": 2, "name": "channel_name", "comment": null}, "channel_type": {"type": "text", "index": 3, "name": "channel_type", "comment": null}, "message_medium": {"type": "text", "index": 4, "name": "message_medium", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__channel"}, "model.iterable_source.stg_iterable__channel_tmp": {"metadata": {"type": "VIEW", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__channel_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "name": {"type": "text", "index": 2, "name": "name", "comment": null}, "channel_type": {"type": "text", "index": 3, "name": "channel_type", "comment": null}, "message_medium": {"type": "text", "index": 4, "name": "message_medium", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 5, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 6, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__channel_tmp"}, "model.iterable_source.stg_iterable__event": {"metadata": {"type": "VIEW", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__event", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"event_id": {"type": "text", "index": 1, "name": "event_id", "comment": null}, "campaign_id": {"type": "integer", "index": 2, "name": "campaign_id", "comment": null}, "content_id": {"type": "integer", "index": 3, "name": "content_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 4, "name": "created_at", "comment": null}, "created_on": {"type": "date", "index": 5, "name": "created_on", "comment": null}, "email": {"type": "text", "index": 6, "name": "email", "comment": null}, "additional_properties": {"type": "text", "index": 7, "name": "additional_properties", "comment": null}, "event_name": {"type": "text", "index": 8, "name": "event_name", "comment": null}, "message_bus_id": {"type": "integer", "index": 9, "name": "message_bus_id", "comment": null}, "message_id": {"type": "integer", "index": 10, "name": "message_id", "comment": null}, "message_type_id": {"type": "integer", "index": 11, "name": "message_type_id", "comment": null}, "recipient_state": {"type": "integer", "index": 12, "name": "recipient_state", "comment": null}, "status": {"type": "integer", "index": 13, "name": "status", "comment": null}, "transactional_data": {"type": "character varying(100)", "index": 14, "name": "transactional_data", "comment": null}, "unsub_source": {"type": "integer", "index": 15, "name": "unsub_source", "comment": null}, "user_agent": {"type": "integer", "index": 16, "name": "user_agent", "comment": null}, "user_agent_device": {"type": "integer", "index": 17, "name": "user_agent_device", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 18, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__event"}, "model.iterable_source.stg_iterable__event_extension": {"metadata": {"type": "VIEW", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__event_extension", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"event_id": {"type": "text", "index": 1, "name": "event_id", "comment": null}, "is_app_already_running": {"type": "integer", "index": 2, "name": "is_app_already_running", "comment": null}, "badge": {"type": "integer", "index": 3, "name": "badge", "comment": null}, "canonical_url_id": {"type": "integer", "index": 4, "name": "canonical_url_id", "comment": null}, "is_content_available": {"type": "integer", "index": 5, "name": "is_content_available", "comment": null}, "content_id": {"type": "integer", "index": 6, "name": "content_id", "comment": null}, "deeplink_android": {"type": "integer", "index": 7, "name": "deeplink_android", "comment": null}, "deeplink_ios": {"type": "integer", "index": 8, "name": "deeplink_ios", "comment": null}, "device": {"type": "integer", "index": 9, "name": "device", "comment": null}, "email_id": {"type": "text", "index": 10, "name": "email_id", "comment": null}, "email_subject": {"type": "text", "index": 11, "name": "email_subject", "comment": null}, "experiment_id": {"type": "integer", "index": 12, "name": "experiment_id", "comment": null}, "from_phone_number_id": {"type": "integer", "index": 13, "name": "from_phone_number_id", "comment": null}, "from_smssender_id": {"type": "integer", "index": 14, "name": "from_smssender_id", "comment": null}, "image_url": {"type": "integer", "index": 15, "name": "image_url", "comment": null}, "is_ghost_push": {"type": "integer", "index": 16, "name": "is_ghost_push", "comment": null}, "link_id": {"type": "integer", "index": 17, "name": "link_id", "comment": null}, "link_url": {"type": "integer", "index": 18, "name": "link_url", "comment": null}, "locale": {"type": "integer", "index": 19, "name": "locale", "comment": null}, "payload": {"type": "character varying(100)", "index": 20, "name": "payload", "comment": null}, "platform_endpoint": {"type": "integer", "index": 21, "name": "platform_endpoint", "comment": null}, "push_message": {"type": "integer", "index": 22, "name": "push_message", "comment": null}, "region": {"type": "text", "index": 23, "name": "region", "comment": null}, "sms_message": {"type": "integer", "index": 24, "name": "sms_message", "comment": null}, "sms_provider_response_code": {"type": "integer", "index": 25, "name": "sms_provider_response_code", "comment": null}, "sms_provider_response_message": {"type": "integer", "index": 26, "name": "sms_provider_response_message", "comment": null}, "sms_provider_response_more_info": {"type": "integer", "index": 27, "name": "sms_provider_response_more_info", "comment": null}, "sms_provider_response_status": {"type": "integer", "index": 28, "name": "sms_provider_response_status", "comment": null}, "sound": {"type": "integer", "index": 29, "name": "sound", "comment": null}, "to_phone_number": {"type": "integer", "index": 30, "name": "to_phone_number", "comment": null}, "url": {"type": "integer", "index": 31, "name": "url", "comment": null}, "workflow_id": {"type": "integer", "index": 32, "name": "workflow_id", "comment": null}, "workflow_name": {"type": "text", "index": 33, "name": "workflow_name", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 34, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__event_extension"}, "model.iterable_source.stg_iterable__event_extension_tmp": {"metadata": {"type": "VIEW", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__event_extension_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "app_already_running": {"type": "integer", "index": 2, "name": "app_already_running", "comment": null}, "badge": {"type": "integer", "index": 3, "name": "badge", "comment": null}, "canonical_url_id": {"type": "integer", "index": 4, "name": "canonical_url_id", "comment": null}, "content_available": {"type": "integer", "index": 5, "name": "content_available", "comment": null}, "content_id": {"type": "integer", "index": 6, "name": "content_id", "comment": null}, "device": {"type": "integer", "index": 7, "name": "device", "comment": null}, "email_id": {"type": "text", "index": 8, "name": "email_id", "comment": null}, "email_subject": {"type": "text", "index": 9, "name": "email_subject", "comment": null}, "experiment_id": {"type": "integer", "index": 10, "name": "experiment_id", "comment": null}, "from_phone_number_id": {"type": "integer", "index": 11, "name": "from_phone_number_id", "comment": null}, "from_smssender_id": {"type": "integer", "index": 12, "name": "from_smssender_id", "comment": null}, "image_url": {"type": "integer", "index": 13, "name": "image_url", "comment": null}, "is_ghost_push": {"type": "integer", "index": 14, "name": "is_ghost_push", "comment": null}, "link_id": {"type": "integer", "index": 15, "name": "link_id", "comment": null}, "link_url": {"type": "integer", "index": 16, "name": "link_url", "comment": null}, "platform_endpoint": {"type": "integer", "index": 17, "name": "platform_endpoint", "comment": null}, "push_message": {"type": "integer", "index": 18, "name": "push_message", "comment": null}, "region": {"type": "text", "index": 19, "name": "region", "comment": null}, "sms_message": {"type": "integer", "index": 20, "name": "sms_message", "comment": null}, "sound": {"type": "integer", "index": 21, "name": "sound", "comment": null}, "to_phone_number": {"type": "integer", "index": 22, "name": "to_phone_number", "comment": null}, "url": {"type": "integer", "index": 23, "name": "url", "comment": null}, "workflow_id": {"type": "integer", "index": 24, "name": "workflow_id", "comment": null}, "workflow_name": {"type": "text", "index": 25, "name": "workflow_name", "comment": null}, "locale": {"type": "integer", "index": 26, "name": "locale", "comment": null}, "deeplink_android": {"type": "integer", "index": 27, "name": "deeplink_android", "comment": null}, "deeplink_ios": {"type": "integer", "index": 28, "name": "deeplink_ios", "comment": null}, "payload": {"type": "character varying(100)", "index": 29, "name": "payload", "comment": null}, "sms_provider_response_status": {"type": "integer", "index": 30, "name": "sms_provider_response_status", "comment": null}, "sms_provider_response_message": {"type": "integer", "index": 31, "name": "sms_provider_response_message", "comment": null}, "sms_provider_response_code": {"type": "integer", "index": 32, "name": "sms_provider_response_code", "comment": null}, "sms_provider_response_more_info": {"type": "integer", "index": 33, "name": "sms_provider_response_more_info", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 34, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__event_extension_tmp"}, "model.iterable_source.stg_iterable__event_tmp": {"metadata": {"type": "VIEW", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__event_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "email": {"type": "text", "index": 2, "name": "email", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "message_id": {"type": "integer", "index": 4, "name": "message_id", "comment": null}, "content_id": {"type": "integer", "index": 5, "name": "content_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 6, "name": "created_at", "comment": null}, "event_name": {"type": "text", "index": 7, "name": "event_name", "comment": null}, "ip": {"type": "integer", "index": 8, "name": "ip", "comment": null}, "message_bus_id": {"type": "integer", "index": 9, "name": "message_bus_id", "comment": null}, "message_type_id": {"type": "integer", "index": 10, "name": "message_type_id", "comment": null}, "recipient_state": {"type": "integer", "index": 11, "name": "recipient_state", "comment": null}, "status": {"type": "integer", "index": 12, "name": "status", "comment": null}, "unsub_source": {"type": "integer", "index": 13, "name": "unsub_source", "comment": null}, "user_agent": {"type": "integer", "index": 14, "name": "user_agent", "comment": null}, "user_agent_device": {"type": "integer", "index": 15, "name": "user_agent_device", "comment": null}, "transactional_data": {"type": "character varying(100)", "index": 16, "name": "transactional_data", "comment": null}, "additional_properties": {"type": "text", "index": 17, "name": "additional_properties", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 18, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__event_tmp"}, "model.iterable_source.stg_iterable__list": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__list", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"list_id": {"type": "integer", "index": 1, "name": "list_id", "comment": null}, "list_name": {"type": "text", "index": 2, "name": "list_name", "comment": null}, "list_type": {"type": "text", "index": 3, "name": "list_type", "comment": null}, "created_at": {"type": "text", "index": 4, "name": "created_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__list"}, "model.iterable_source.stg_iterable__list_tmp": {"metadata": {"type": "VIEW", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__list_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "name": {"type": "text", "index": 2, "name": "name", "comment": null}, "created_at": {"type": "text", "index": 3, "name": "created_at", "comment": null}, "list_type": {"type": "text", "index": 4, "name": "list_type", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 5, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 6, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__list_tmp"}, "model.iterable_source.stg_iterable__message_type": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__message_type", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"message_type_id": {"type": "bigint", "index": 1, "name": "message_type_id", "comment": null}, "message_type_name": {"type": "text", "index": 2, "name": "message_type_name", "comment": null}, "channel_id": {"type": "bigint", "index": 3, "name": "channel_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__message_type"}, "model.iterable_source.stg_iterable__message_type_tmp": {"metadata": {"type": "VIEW", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__message_type_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "name": {"type": "text", "index": 2, "name": "name", "comment": null}, "channel_id": {"type": "bigint", "index": 3, "name": "channel_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__message_type_tmp"}, "model.iterable_source.stg_iterable__template_history": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__template_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"template_id": {"type": "integer", "index": 1, "name": "template_id", "comment": null}, "template_name": {"type": "text", "index": 2, "name": "template_name", "comment": null}, "template_type": {"type": "text", "index": 3, "name": "template_type", "comment": null}, "created_at": {"type": "text", "index": 4, "name": "created_at", "comment": null}, "client_template_id": {"type": "integer", "index": 5, "name": "client_template_id", "comment": null}, "creator_user_id": {"type": "text", "index": 6, "name": "creator_user_id", "comment": null}, "message_type_id": {"type": "integer", "index": 7, "name": "message_type_id", "comment": null}, "updated_at": {"type": "text", "index": 8, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 9, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__template_history"}, "model.iterable_source.stg_iterable__template_history_tmp": {"metadata": {"type": "VIEW", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__template_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "updated_at": {"type": "text", "index": 2, "name": "updated_at", "comment": null}, "message_type_id": {"type": "integer", "index": 3, "name": "message_type_id", "comment": null}, "client_template_id": {"type": "integer", "index": 4, "name": "client_template_id", "comment": null}, "created_at": {"type": "text", "index": 5, "name": "created_at", "comment": null}, "creator_user_id": {"type": "text", "index": 6, "name": "creator_user_id", "comment": null}, "name": {"type": "text", "index": 7, "name": "name", "comment": null}, "template_type": {"type": "text", "index": 8, "name": "template_type", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 9, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__template_history_tmp"}, "model.iterable_source.stg_iterable__user_history": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__user_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"email": {"type": "text", "index": 1, "name": "email", "comment": null}, "user_id": {"type": "text", "index": 2, "name": "user_id", "comment": null}, "first_name": {"type": "text", "index": 3, "name": "first_name", "comment": null}, "last_name": {"type": "text", "index": 4, "name": "last_name", "comment": null}, "email_list_ids": {"type": "text", "index": 5, "name": "email_list_ids", "comment": null}, "phone_number": {"type": "integer", "index": 6, "name": "phone_number", "comment": null}, "signup_date": {"type": "timestamp without time zone", "index": 7, "name": "signup_date", "comment": null}, "signup_source": {"type": "text", "index": 8, "name": "signup_source", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 9, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 10, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__user_history"}, "model.iterable_source.stg_iterable__user_history_tmp": {"metadata": {"type": "VIEW", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__user_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"email": {"type": "text", "index": 1, "name": "email", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 2, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "email_list_ids": {"type": "text", "index": 4, "name": "email_list_ids", "comment": null}, "first_name": {"type": "text", "index": 5, "name": "first_name", "comment": null}, "last_name": {"type": "text", "index": 6, "name": "last_name", "comment": null}, "phone_number": {"type": "integer", "index": 7, "name": "phone_number", "comment": null}, "phone_number_carrier": {"type": "text", "index": 8, "name": "phone_number_carrier", "comment": null}, "phone_number_country_code_iso": {"type": "integer", "index": 9, "name": "phone_number_country_code_iso", "comment": null}, "phone_number_details": {"type": "integer", "index": 10, "name": "phone_number_details", "comment": null}, "phone_number_line_type": {"type": "text", "index": 11, "name": "phone_number_line_type", "comment": null}, "phone_number_updated_at": {"type": "integer", "index": 12, "name": "phone_number_updated_at", "comment": null}, "signup_date": {"type": "timestamp without time zone", "index": 13, "name": "signup_date", "comment": null}, "signup_source": {"type": "text", "index": 14, "name": "signup_source", "comment": null}, "user_id": {"type": "text", "index": 15, "name": "user_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__user_history_tmp"}, "model.iterable_source.stg_iterable__user_unsub_message_type_history": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__user_unsub_message_type_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"email": {"type": "text", "index": 1, "name": "email", "comment": null}, "message_type_id": {"type": "bigint", "index": 2, "name": "message_type_id", "comment": null}, "updated_at": {"type": "text", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__user_unsub_message_type_history"}, "model.iterable_source.stg_iterable__user_unsub_message_type_history_tmp": {"metadata": {"type": "VIEW", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__user_unsub_message_type_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"message_type_id": {"type": "bigint", "index": 1, "name": "message_type_id", "comment": null}, "email": {"type": "text", "index": 2, "name": "email", "comment": null}, "updated_at": {"type": "text", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__user_unsub_message_type_history_tmp"}, "model.iterable_source.stg_iterable__user_unsubscribed_channel_history": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__user_unsubscribed_channel_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"channel_id": {"type": "bigint", "index": 1, "name": "channel_id", "comment": null}, "email": {"type": "text", "index": 2, "name": "email", "comment": null}, "updated_at": {"type": "text", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__user_unsubscribed_channel_history"}, "model.iterable_source.stg_iterable__user_unsubscribed_channel_history_tmp": {"metadata": {"type": "VIEW", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__user_unsubscribed_channel_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"email": {"type": "text", "index": 1, "name": "email", "comment": null}, "channel_id": {"type": "bigint", "index": 2, "name": "channel_id", "comment": null}, "updated_at": {"type": "text", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.iterable_source.stg_iterable__user_unsubscribed_channel_history_tmp"}}, "sources": {"source.iterable_source.iterable.campaign_history": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03", "name": "campaign_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "updated_at": {"type": "text", "index": 2, "name": "updated_at", "comment": null}, "template_id": {"type": "integer", "index": 3, "name": "template_id", "comment": null}, "recurring_campaign_id": {"type": "integer", "index": 4, "name": "recurring_campaign_id", "comment": null}, "campaign_state": {"type": "text", "index": 5, "name": "campaign_state", "comment": null}, "created_at": {"type": "text", "index": 6, "name": "created_at", "comment": null}, "created_by_user_id": {"type": "text", "index": 7, "name": "created_by_user_id", "comment": null}, "ended_at": {"type": "integer", "index": 8, "name": "ended_at", "comment": null}, "name": {"type": "text", "index": 9, "name": "name", "comment": null}, "send_size": {"type": "integer", "index": 10, "name": "send_size", "comment": null}, "start_at": {"type": "integer", "index": 11, "name": "start_at", "comment": null}, "type": {"type": "text", "index": 12, "name": "type", "comment": null}, "workflow_id": {"type": "integer", "index": 13, "name": "workflow_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 14, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.iterable_source.iterable.campaign_history"}, "source.iterable_source.iterable.campaign_label_history": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03", "name": "campaign_label_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"campaign_id": {"type": "integer", "index": 1, "name": "campaign_id", "comment": null}, "label": {"type": "text", "index": 2, "name": "label", "comment": null}, "updated_at": {"type": "text", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.iterable_source.iterable.campaign_label_history"}, "source.iterable_source.iterable.campaign_list_history": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03", "name": "campaign_list_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"list_id": {"type": "integer", "index": 1, "name": "list_id", "comment": null}, "campaign_id": {"type": "integer", "index": 2, "name": "campaign_id", "comment": null}, "updated_at": {"type": "text", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.iterable_source.iterable.campaign_list_history"}, "source.iterable_source.iterable.campaign_suppression_list_history": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03", "name": "campaign_suppression_list_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"suppressed_list_id": {"type": "integer", "index": 1, "name": "suppressed_list_id", "comment": null}, "campaign_id": {"type": "integer", "index": 2, "name": "campaign_id", "comment": null}, "updated_at": {"type": "text", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.iterable_source.iterable.campaign_suppression_list_history"}, "source.iterable_source.iterable.channel": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03", "name": "channel_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "name": {"type": "text", "index": 2, "name": "name", "comment": null}, "channel_type": {"type": "text", "index": 3, "name": "channel_type", "comment": null}, "message_medium": {"type": "text", "index": 4, "name": "message_medium", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 5, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 6, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.iterable_source.iterable.channel"}, "source.iterable_source.iterable.event": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03", "name": "event_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "email": {"type": "text", "index": 2, "name": "email", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "message_id": {"type": "integer", "index": 4, "name": "message_id", "comment": null}, "content_id": {"type": "integer", "index": 5, "name": "content_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 6, "name": "created_at", "comment": null}, "event_name": {"type": "text", "index": 7, "name": "event_name", "comment": null}, "ip": {"type": "integer", "index": 8, "name": "ip", "comment": null}, "message_bus_id": {"type": "integer", "index": 9, "name": "message_bus_id", "comment": null}, "message_type_id": {"type": "integer", "index": 10, "name": "message_type_id", "comment": null}, "recipient_state": {"type": "integer", "index": 11, "name": "recipient_state", "comment": null}, "status": {"type": "integer", "index": 12, "name": "status", "comment": null}, "unsub_source": {"type": "integer", "index": 13, "name": "unsub_source", "comment": null}, "user_agent": {"type": "integer", "index": 14, "name": "user_agent", "comment": null}, "user_agent_device": {"type": "integer", "index": 15, "name": "user_agent_device", "comment": null}, "transactional_data": {"type": "character varying(100)", "index": 16, "name": "transactional_data", "comment": null}, "additional_properties": {"type": "text", "index": 17, "name": "additional_properties", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 18, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.iterable_source.iterable.event"}, "source.iterable_source.iterable.event_extension": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03", "name": "event_extension_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "app_already_running": {"type": "integer", "index": 2, "name": "app_already_running", "comment": null}, "badge": {"type": "integer", "index": 3, "name": "badge", "comment": null}, "canonical_url_id": {"type": "integer", "index": 4, "name": "canonical_url_id", "comment": null}, "content_available": {"type": "integer", "index": 5, "name": "content_available", "comment": null}, "content_id": {"type": "integer", "index": 6, "name": "content_id", "comment": null}, "device": {"type": "integer", "index": 7, "name": "device", "comment": null}, "email_id": {"type": "text", "index": 8, "name": "email_id", "comment": null}, "email_subject": {"type": "text", "index": 9, "name": "email_subject", "comment": null}, "experiment_id": {"type": "integer", "index": 10, "name": "experiment_id", "comment": null}, "from_phone_number_id": {"type": "integer", "index": 11, "name": "from_phone_number_id", "comment": null}, "from_smssender_id": {"type": "integer", "index": 12, "name": "from_smssender_id", "comment": null}, "image_url": {"type": "integer", "index": 13, "name": "image_url", "comment": null}, "is_ghost_push": {"type": "integer", "index": 14, "name": "is_ghost_push", "comment": null}, "link_id": {"type": "integer", "index": 15, "name": "link_id", "comment": null}, "link_url": {"type": "integer", "index": 16, "name": "link_url", "comment": null}, "platform_endpoint": {"type": "integer", "index": 17, "name": "platform_endpoint", "comment": null}, "push_message": {"type": "integer", "index": 18, "name": "push_message", "comment": null}, "region": {"type": "text", "index": 19, "name": "region", "comment": null}, "sms_message": {"type": "integer", "index": 20, "name": "sms_message", "comment": null}, "sound": {"type": "integer", "index": 21, "name": "sound", "comment": null}, "to_phone_number": {"type": "integer", "index": 22, "name": "to_phone_number", "comment": null}, "url": {"type": "integer", "index": 23, "name": "url", "comment": null}, "workflow_id": {"type": "integer", "index": 24, "name": "workflow_id", "comment": null}, "workflow_name": {"type": "text", "index": 25, "name": "workflow_name", "comment": null}, "locale": {"type": "integer", "index": 26, "name": "locale", "comment": null}, "deeplink_android": {"type": "integer", "index": 27, "name": "deeplink_android", "comment": null}, "deeplink_ios": {"type": "integer", "index": 28, "name": "deeplink_ios", "comment": null}, "payload": {"type": "character varying(100)", "index": 29, "name": "payload", "comment": null}, "sms_provider_response_status": {"type": "integer", "index": 30, "name": "sms_provider_response_status", "comment": null}, "sms_provider_response_message": {"type": "integer", "index": 31, "name": "sms_provider_response_message", "comment": null}, "sms_provider_response_code": {"type": "integer", "index": 32, "name": "sms_provider_response_code", "comment": null}, "sms_provider_response_more_info": {"type": "integer", "index": 33, "name": "sms_provider_response_more_info", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 34, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.iterable_source.iterable.event_extension"}, "source.iterable_source.iterable.list": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03", "name": "list_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "name": {"type": "text", "index": 2, "name": "name", "comment": null}, "created_at": {"type": "text", "index": 3, "name": "created_at", "comment": null}, "list_type": {"type": "text", "index": 4, "name": "list_type", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 5, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 6, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.iterable_source.iterable.list"}, "source.iterable_source.iterable.message_type": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03", "name": "message_type_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "name": {"type": "text", "index": 2, "name": "name", "comment": null}, "channel_id": {"type": "bigint", "index": 3, "name": "channel_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.iterable_source.iterable.message_type"}, "source.iterable_source.iterable.template_history": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03", "name": "template_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "updated_at": {"type": "text", "index": 2, "name": "updated_at", "comment": null}, "message_type_id": {"type": "integer", "index": 3, "name": "message_type_id", "comment": null}, "client_template_id": {"type": "integer", "index": 4, "name": "client_template_id", "comment": null}, "created_at": {"type": "text", "index": 5, "name": "created_at", "comment": null}, "creator_user_id": {"type": "text", "index": 6, "name": "creator_user_id", "comment": null}, "name": {"type": "text", "index": 7, "name": "name", "comment": null}, "template_type": {"type": "text", "index": 8, "name": "template_type", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 9, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.iterable_source.iterable.template_history"}, "source.iterable_source.iterable.user_device_history": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03", "name": "user_device_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"email": {"type": "text", "index": 1, "name": "email", "comment": null}, "updated_at": {"type": "text", "index": 2, "name": "updated_at", "comment": null}, "index": {"type": "integer", "index": 3, "name": "index", "comment": null}, "application_name": {"type": "text", "index": 4, "name": "application_name", "comment": null}, "endpoint_enabled": {"type": "boolean", "index": 5, "name": "endpoint_enabled", "comment": null}, "identifier_for_vendor": {"type": "integer", "index": 6, "name": "identifier_for_vendor", "comment": null}, "localized_model": {"type": "integer", "index": 7, "name": "localized_model", "comment": null}, "model": {"type": "integer", "index": 8, "name": "model", "comment": null}, "platform": {"type": "text", "index": 9, "name": "platform", "comment": null}, "platform_endpoint": {"type": "text", "index": 10, "name": "platform_endpoint", "comment": null}, "system_name": {"type": "integer", "index": 11, "name": "system_name", "comment": null}, "system_version": {"type": "integer", "index": 12, "name": "system_version", "comment": null}, "token": {"type": "text", "index": 13, "name": "token", "comment": null}, "user_interface_idiom": {"type": "integer", "index": 14, "name": "user_interface_idiom", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 15, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.iterable_source.iterable.user_device_history"}, "source.iterable_source.iterable.user_history": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03", "name": "user_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"email": {"type": "text", "index": 1, "name": "email", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 2, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "email_list_ids": {"type": "text", "index": 4, "name": "email_list_ids", "comment": null}, "first_name": {"type": "text", "index": 5, "name": "first_name", "comment": null}, "last_name": {"type": "text", "index": 6, "name": "last_name", "comment": null}, "phone_number": {"type": "integer", "index": 7, "name": "phone_number", "comment": null}, "phone_number_carrier": {"type": "text", "index": 8, "name": "phone_number_carrier", "comment": null}, "phone_number_country_code_iso": {"type": "integer", "index": 9, "name": "phone_number_country_code_iso", "comment": null}, "phone_number_details": {"type": "integer", "index": 10, "name": "phone_number_details", "comment": null}, "phone_number_line_type": {"type": "text", "index": 11, "name": "phone_number_line_type", "comment": null}, "phone_number_updated_at": {"type": "integer", "index": 12, "name": "phone_number_updated_at", "comment": null}, "signup_date": {"type": "timestamp without time zone", "index": 13, "name": "signup_date", "comment": null}, "signup_source": {"type": "text", "index": 14, "name": "signup_source", "comment": null}, "user_id": {"type": "text", "index": 15, "name": "user_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.iterable_source.iterable.user_history"}, "source.iterable_source.iterable.user_unsubscribed_channel_history": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03", "name": "user_unsubscribed_channel_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"email": {"type": "text", "index": 1, "name": "email", "comment": null}, "channel_id": {"type": "bigint", "index": 2, "name": "channel_id", "comment": null}, "updated_at": {"type": "text", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.iterable_source.iterable.user_unsubscribed_channel_history"}, "source.iterable_source.iterable.user_unsubscribed_message_type_history": {"metadata": {"type": "BASE TABLE", "schema": "iterable_integration_tests_03", "name": "user_unsubscribed_message_type_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"message_type_id": {"type": "bigint", "index": 1, "name": "message_type_id", "comment": null}, "email": {"type": "text", "index": 2, "name": "email", "comment": null}, "updated_at": {"type": "text", "index": 3, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.iterable_source.iterable.user_unsubscribed_message_type_history"}}, "errors": null} \ No newline at end of file diff --git a/docs/manifest.json b/docs/manifest.json index 230e8b5..b23c607 100644 --- a/docs/manifest.json +++ b/docs/manifest.json @@ -1 +1 @@ -{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/manifest/v9.json", "dbt_version": "1.5.2", "generated_at": "2023-06-23T21:48:29.889552Z", "invocation_id": "26ee648e-a4f2-407d-899e-8602673a7291", "env": {}, "project_id": "726648524a3768595307d45548dac26e", "user_id": "8268eefe-e8f7-472e-ab2a-a92f0135d76d", "send_anonymous_usage_stats": true, "adapter_type": "databricks"}, "nodes": {"seed.iterable_integration_tests.user_unsubscribed_message_type_history_data": {"database": "hive_metastore", "schema": "iterable_integration_tests_03", "name": "user_unsubscribed_message_type_history_data", "resource_type": "seed", "package_name": "iterable_integration_tests", "path": "user_unsubscribed_message_type_history_data.csv", "original_file_path": "seeds/user_unsubscribed_message_type_history_data.csv", "unique_id": "seed.iterable_integration_tests.user_unsubscribed_message_type_history_data", "fqn": ["iterable_integration_tests", "user_unsubscribed_message_type_history_data"], "alias": "user_unsubscribed_message_type_history_data", "checksum": {"name": "sha256", "checksum": "fc48afe6cd985667c411e549e65f6ced089d09f40ec2cdc80dd6ae59d7204c0d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "message_type_id": "bigint"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": false, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"quote_columns": "{{ true if target.type == 'redshift' else false }}", "column_types": {"message_type_id": "{%- if target.type == 'bigquery' -%} INT64 {%- else -%} bigint {%- endif -%}"}}, "created_at": 1687556572.716127, "relation_name": "`hive_metastore`.`iterable_integration_tests_03`.`user_unsubscribed_message_type_history_data`", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "depends_on": {"macros": []}}, "seed.iterable_integration_tests.user_history_data": {"database": "hive_metastore", "schema": "iterable_integration_tests_03", "name": "user_history_data", "resource_type": "seed", "package_name": "iterable_integration_tests", "path": "user_history_data.csv", "original_file_path": "seeds/user_history_data.csv", "unique_id": "seed.iterable_integration_tests.user_history_data", "fqn": ["iterable_integration_tests", "user_history_data"], "alias": "user_history_data", "checksum": {"name": "sha256", "checksum": "89aa99b15681c6e66f0c3ac57ae78d98cdca35c4284af1a4ee724037ebd80ad9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "updated_at": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": false, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"quote_columns": "{{ true if target.type == 'redshift' else false }}", "column_types": {"updated_at": "timestamp"}}, "created_at": 1687556572.723799, "relation_name": "`hive_metastore`.`iterable_integration_tests_03`.`user_history_data`", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "depends_on": {"macros": []}}, "seed.iterable_integration_tests.campaign_suppression_list_history_data": {"database": "hive_metastore", "schema": "iterable_integration_tests_03", "name": "campaign_suppression_list_history_data", "resource_type": "seed", "package_name": "iterable_integration_tests", "path": "campaign_suppression_list_history_data.csv", "original_file_path": "seeds/campaign_suppression_list_history_data.csv", "unique_id": "seed.iterable_integration_tests.campaign_suppression_list_history_data", "fqn": ["iterable_integration_tests", "campaign_suppression_list_history_data"], "alias": "campaign_suppression_list_history_data", "checksum": {"name": "sha256", "checksum": "c5c35e247b3a31225afddec1a2f5beb0adfcaf4bf60721121f07a9db64f3fbbc"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"_fivetran_synced": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": false, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"quote_columns": "{{ true if target.type == 'redshift' else false }}", "column_types": {"_fivetran_synced": "timestamp"}}, "created_at": 1687556572.72576, "relation_name": "`hive_metastore`.`iterable_integration_tests_03`.`campaign_suppression_list_history_data`", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "depends_on": {"macros": []}}, "seed.iterable_integration_tests.campaign_list_history_data": {"database": "hive_metastore", "schema": "iterable_integration_tests_03", "name": "campaign_list_history_data", "resource_type": "seed", "package_name": "iterable_integration_tests", "path": "campaign_list_history_data.csv", "original_file_path": "seeds/campaign_list_history_data.csv", "unique_id": "seed.iterable_integration_tests.campaign_list_history_data", "fqn": ["iterable_integration_tests", "campaign_list_history_data"], "alias": "campaign_list_history_data", "checksum": {"name": "sha256", "checksum": "6b5a41243873190001d23094e5aa29b9fa1330cf852cb3c79f9ef53df5763292"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"_fivetran_synced": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": false, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"quote_columns": "{{ true if target.type == 'redshift' else false }}", "column_types": {"_fivetran_synced": "timestamp"}}, "created_at": 1687556572.727624, "relation_name": "`hive_metastore`.`iterable_integration_tests_03`.`campaign_list_history_data`", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "depends_on": {"macros": []}}, "seed.iterable_integration_tests.template_history_data": {"database": "hive_metastore", "schema": "iterable_integration_tests_03", "name": "template_history_data", "resource_type": "seed", "package_name": "iterable_integration_tests", "path": "template_history_data.csv", "original_file_path": "seeds/template_history_data.csv", "unique_id": "seed.iterable_integration_tests.template_history_data", "fqn": ["iterable_integration_tests", "template_history_data"], "alias": "template_history_data", "checksum": {"name": "sha256", "checksum": "1bb816e86e95c24ae4b18f12c876c8ce09c81eb3c31273f5e8e8a40271cbbd92"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"_fivetran_synced": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": false, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"quote_columns": "{{ true if target.type == 'redshift' else false }}", "column_types": {"_fivetran_synced": "timestamp"}}, "created_at": 1687556572.729611, "relation_name": "`hive_metastore`.`iterable_integration_tests_03`.`template_history_data`", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "depends_on": {"macros": []}}, "seed.iterable_integration_tests.event_extension_data": {"database": "hive_metastore", "schema": "iterable_integration_tests_03", "name": "event_extension_data", "resource_type": "seed", "package_name": "iterable_integration_tests", "path": "event_extension_data.csv", "original_file_path": "seeds/event_extension_data.csv", "unique_id": "seed.iterable_integration_tests.event_extension_data", "fqn": ["iterable_integration_tests", "event_extension_data"], "alias": "event_extension_data", "checksum": {"name": "sha256", "checksum": "8bb0120c5aec7717e04ee9bb0d91be54525aa88b8d94419267923d2d51dbc8aa"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "payload": "string"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": false, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"quote_columns": "{{ true if target.type == 'redshift' else false }}", "column_types": {"payload": "{{ 'varchar(100)' if target.type in ('redshift', 'postgres') else 'string'}}"}}, "created_at": 1687556572.731473, "relation_name": "`hive_metastore`.`iterable_integration_tests_03`.`event_extension_data`", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "depends_on": {"macros": []}}, "seed.iterable_integration_tests.channel_data": {"database": "hive_metastore", "schema": "iterable_integration_tests_03", "name": "channel_data", "resource_type": "seed", "package_name": "iterable_integration_tests", "path": "channel_data.csv", "original_file_path": "seeds/channel_data.csv", "unique_id": "seed.iterable_integration_tests.channel_data", "fqn": ["iterable_integration_tests", "channel_data"], "alias": "channel_data", "checksum": {"name": "sha256", "checksum": "123db5a6b276a09bad786967fe3eb0060738508a0235bcd92fb878059f1418c4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "id": "bigint"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": false, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"quote_columns": "{{ true if target.type == 'redshift' else false }}", "column_types": {"id": "{%- if target.type == 'bigquery' -%} INT64 {%- else -%} bigint {%- endif -%}"}}, "created_at": 1687556572.733391, "relation_name": "`hive_metastore`.`iterable_integration_tests_03`.`channel_data`", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "depends_on": {"macros": []}}, "seed.iterable_integration_tests.user_unsubscribed_channel_history_data": {"database": "hive_metastore", "schema": "iterable_integration_tests_03", "name": "user_unsubscribed_channel_history_data", "resource_type": "seed", "package_name": "iterable_integration_tests", "path": "user_unsubscribed_channel_history_data.csv", "original_file_path": "seeds/user_unsubscribed_channel_history_data.csv", "unique_id": "seed.iterable_integration_tests.user_unsubscribed_channel_history_data", "fqn": ["iterable_integration_tests", "user_unsubscribed_channel_history_data"], "alias": "user_unsubscribed_channel_history_data", "checksum": {"name": "sha256", "checksum": "cbcf35dbe806ae22ba30067e46ada18f4e49fac5c0a063a866fe5d15853339af"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "channel_id": "bigint"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": false, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"quote_columns": "{{ true if target.type == 'redshift' else false }}", "column_types": {"channel_id": "{%- if target.type == 'bigquery' -%} INT64 {%- else -%} bigint {%- endif -%}"}}, "created_at": 1687556572.735274, "relation_name": "`hive_metastore`.`iterable_integration_tests_03`.`user_unsubscribed_channel_history_data`", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "depends_on": {"macros": []}}, "seed.iterable_integration_tests.user_device_history_data": {"database": "hive_metastore", "schema": "iterable_integration_tests_03", "name": "user_device_history_data", "resource_type": "seed", "package_name": "iterable_integration_tests", "path": "user_device_history_data.csv", "original_file_path": "seeds/user_device_history_data.csv", "unique_id": "seed.iterable_integration_tests.user_device_history_data", "fqn": ["iterable_integration_tests", "user_device_history_data"], "alias": "user_device_history_data", "checksum": {"name": "sha256", "checksum": "5ee0aa8024231fcdf2581fa0a05f41910236f05ecbcd202e1eaefeaa19e9b942"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"_fivetran_synced": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": false, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"quote_columns": "{{ true if target.type == 'redshift' else false }}", "column_types": {"_fivetran_synced": "timestamp"}}, "created_at": 1687556572.737275, "relation_name": "`hive_metastore`.`iterable_integration_tests_03`.`user_device_history_data`", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "depends_on": {"macros": []}}, "seed.iterable_integration_tests.campaign_label_history_data": {"database": "hive_metastore", "schema": "iterable_integration_tests_03", "name": "campaign_label_history_data", "resource_type": "seed", "package_name": "iterable_integration_tests", "path": "campaign_label_history_data.csv", "original_file_path": "seeds/campaign_label_history_data.csv", "unique_id": "seed.iterable_integration_tests.campaign_label_history_data", "fqn": ["iterable_integration_tests", "campaign_label_history_data"], "alias": "campaign_label_history_data", "checksum": {"name": "sha256", "checksum": "779ac5d0dc0f1b647e197af3378d3226ec92c9fefa1cfd05ed5f447f81645bb3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"_fivetran_synced": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": false, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"quote_columns": "{{ true if target.type == 'redshift' else false }}", "column_types": {"_fivetran_synced": "timestamp"}}, "created_at": 1687556572.739106, "relation_name": "`hive_metastore`.`iterable_integration_tests_03`.`campaign_label_history_data`", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "depends_on": {"macros": []}}, "seed.iterable_integration_tests.campaign_history_data": {"database": "hive_metastore", "schema": "iterable_integration_tests_03", "name": "campaign_history_data", "resource_type": "seed", "package_name": "iterable_integration_tests", "path": "campaign_history_data.csv", "original_file_path": "seeds/campaign_history_data.csv", "unique_id": "seed.iterable_integration_tests.campaign_history_data", "fqn": ["iterable_integration_tests", "campaign_history_data"], "alias": "campaign_history_data", "checksum": {"name": "sha256", "checksum": "67af6f24672ccfd401d619f204b27324254979c25f1b296da9978c10da88d43d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"_fivetran_synced": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": false, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"quote_columns": "{{ true if target.type == 'redshift' else false }}", "column_types": {"_fivetran_synced": "timestamp"}}, "created_at": 1687556572.740924, "relation_name": "`hive_metastore`.`iterable_integration_tests_03`.`campaign_history_data`", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "depends_on": {"macros": []}}, "seed.iterable_integration_tests.message_type_data": {"database": "hive_metastore", "schema": "iterable_integration_tests_03", "name": "message_type_data", "resource_type": "seed", "package_name": "iterable_integration_tests", "path": "message_type_data.csv", "original_file_path": "seeds/message_type_data.csv", "unique_id": "seed.iterable_integration_tests.message_type_data", "fqn": ["iterable_integration_tests", "message_type_data"], "alias": "message_type_data", "checksum": {"name": "sha256", "checksum": "554080d0fffca5b9ff6524541513e63f2f251f36823cd9f40393d83f1c082eef"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "id": "bigint", "channel_id": "bigint"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": false, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"quote_columns": "{{ true if target.type == 'redshift' else false }}", "column_types": {"id": "{%- if target.type == 'bigquery' -%} INT64 {%- else -%} bigint {%- endif -%}", "channel_id": "{%- if target.type == 'bigquery' -%} INT64 {%- else -%} bigint {%- endif -%}"}}, "created_at": 1687556572.742912, "relation_name": "`hive_metastore`.`iterable_integration_tests_03`.`message_type_data`", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "depends_on": {"macros": []}}, "seed.iterable_integration_tests.campaign_metrics_data": {"database": "hive_metastore", "schema": "iterable_integration_tests_03", "name": "campaign_metrics_data", "resource_type": "seed", "package_name": "iterable_integration_tests", "path": "campaign_metrics_data.csv", "original_file_path": "seeds/campaign_metrics_data.csv", "unique_id": "seed.iterable_integration_tests.campaign_metrics_data", "fqn": ["iterable_integration_tests", "campaign_metrics_data"], "alias": "campaign_metrics_data", "checksum": {"name": "sha256", "checksum": "0d8bd317f335734235dbe14136baacfb49d72f697ddbd03a8e4ebc52c80de06b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"_fivetran_synced": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": false, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"quote_columns": "{{ true if target.type == 'redshift' else false }}", "column_types": {"_fivetran_synced": "timestamp"}}, "created_at": 1687556572.7447739, "relation_name": "`hive_metastore`.`iterable_integration_tests_03`.`campaign_metrics_data`", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "depends_on": {"macros": []}}, "seed.iterable_integration_tests.list_data": {"database": "hive_metastore", "schema": "iterable_integration_tests_03", "name": "list_data", "resource_type": "seed", "package_name": "iterable_integration_tests", "path": "list_data.csv", "original_file_path": "seeds/list_data.csv", "unique_id": "seed.iterable_integration_tests.list_data", "fqn": ["iterable_integration_tests", "list_data"], "alias": "list_data", "checksum": {"name": "sha256", "checksum": "0a60614611d2f3d75c45056e49e0ce829e0145bd867c7a25ae9bb6cec988f2f5"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"_fivetran_synced": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": false, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"quote_columns": "{{ true if target.type == 'redshift' else false }}", "column_types": {"_fivetran_synced": "timestamp"}}, "created_at": 1687556572.746597, "relation_name": "`hive_metastore`.`iterable_integration_tests_03`.`list_data`", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "depends_on": {"macros": []}}, "seed.iterable_integration_tests.event_data": {"database": "hive_metastore", "schema": "iterable_integration_tests_03", "name": "event_data", "resource_type": "seed", "package_name": "iterable_integration_tests", "path": "event_data.csv", "original_file_path": "seeds/event_data.csv", "unique_id": "seed.iterable_integration_tests.event_data", "fqn": ["iterable_integration_tests", "event_data"], "alias": "event_data", "checksum": {"name": "sha256", "checksum": "d3518c86fcfaf17b0436480adcc6d16d5af3f4f32a07ccfbf4fe20617a867eed"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "transactional_data": "string", "created_at": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": false, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"quote_columns": "{{ true if target.type == 'redshift' else false }}", "column_types": {"transactional_data": "{{ 'varchar(100)' if target.type in ('redshift', 'postgres') else 'string'}}", "created_at": "timestamp"}}, "created_at": 1687556572.7485828, "relation_name": "`hive_metastore`.`iterable_integration_tests_03`.`event_data`", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "depends_on": {"macros": []}}, "model.iterable.iterable__events": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_iterable", "name": "iterable__events", "resource_type": "model", "package_name": "iterable", "path": "iterable__events.sql", "original_file_path": "models/iterable__events.sql", "unique_id": "model.iterable.iterable__events", "fqn": ["iterable", "iterable__events"], "alias": "iterable__events", "checksum": {"name": "sha256", "checksum": "c7e1c1190388242d2fc15d5a7e3ada805750a8f7809813e07e728934a7f3ed84"}, "config": {"enabled": true, "alias": null, "schema": "iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": "event_id", "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "file_format": "delta", "partition_by": null, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that provides a comprehensive view of all events with enriched information such as the campaign, user effected, and template used.", "columns": {"event_id": {"name": "event_id", "description": "Unique id of the event generated by Fivetran", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "Reference to the campaign from which the event originated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "content_id": {"name": "content_id", "description": "Reference to the content the event is associated with", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "Creation timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email": {"name": "email", "description": "Reference to the unique user the event was applied to", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "additional_properties": {"name": "additional_properties", "description": "json object containing addition event properties", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "event_name": {"name": "event_name", "description": "Name provided to the individual event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_bus_id": {"name": "message_bus_id", "description": "Reference to the message bus associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_id": {"name": "message_id", "description": "Reference to the message the event is associated with", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_type_id": {"name": "message_type_id", "description": "Reference to the type of message the event is associated with", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_state": {"name": "recipient_state", "description": "The state of the recipient upon receiving the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "status": {"name": "status", "description": "Status of the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "transactional_data": {"name": "transactional_data", "description": "Transactional data associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unsub_source": {"name": "unsub_source", "description": "Source of the unsubscribe event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_agent": {"name": "user_agent", "description": "User agent associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_agent_device": {"name": "user_agent_device", "description": "The device of the user agent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "Timestamp of when the event record was synced by Fivetran", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "campaign_name": {"name": "campaign_name", "description": "The name of the campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "campaign_type": {"name": "campaign_type", "description": "The type of campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_campaign_recurring": {"name": "is_campaign_recurring", "description": "Boolean indicating if the campaign is recurrent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recurring_campaign_name": {"name": "recurring_campaign_name", "description": "The name of the recurring campaign (if applicable)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recurring_campaign_id": {"name": "recurring_campaign_id", "description": "The campaign if of the recurring campaign (if applicable)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_id": {"name": "user_id", "description": "User defined identifier of the user. This is not a unique field", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_full_name": {"name": "user_full_name", "description": "Full name of the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_type_name": {"name": "message_type_name", "description": "Name of the message type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_medium": {"name": "message_medium", "description": "Medium of the message", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "channel_id": {"name": "channel_id", "description": "Unique identifier of the channel", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "channel_name": {"name": "channel_name", "description": "The channel name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "channel_type": {"name": "channel_type", "description": "The type of channel", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_app_already_running": {"name": "is_app_already_running", "description": "Boolean indicating if the app is already running", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "badge": {"name": "badge", "description": "Badge associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "canonical_url_id": {"name": "canonical_url_id", "description": "Reference to the url associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_content_available": {"name": "is_content_available", "description": "Content available from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "deeplink_android": {"name": "deeplink_android", "description": "Deeplink associated with the event from an android device", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "deeplink_ios": {"name": "deeplink_ios", "description": "Deeplink associated with the event from an ios device", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "device": {"name": "device", "description": "The device associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email_id": {"name": "email_id", "description": "Reference to the email associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email_subject": {"name": "email_subject", "description": "Subject of the email associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "experiment_id": {"name": "experiment_id", "description": "Reference to the experiment used if the event is an experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "from_phone_number_id": {"name": "from_phone_number_id", "description": "Reference to the phone number which the event is from", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "from_smssender_id": {"name": "from_smssender_id", "description": "Reference to the sms sender which the event is from", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "image_url": {"name": "image_url", "description": "Image url of the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_ghost_push": {"name": "is_ghost_push", "description": "Boolean indicating if the event is a result of a ghost push", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "link_id": {"name": "link_id", "description": "Reference to the link associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "link_url": {"name": "link_url", "description": "Url of the link associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "locale": {"name": "locale", "description": "Locale associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "payload": {"name": "payload", "description": "Payload resulted from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "platform_endpoint": {"name": "platform_endpoint", "description": "The specific platform endpoint of the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "push_message": {"name": "push_message", "description": "Boolean indicating if the event is a push message", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "region": {"name": "region", "description": "Region of the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sms_message": {"name": "sms_message", "description": "Boolean indicating if the event is an sms message", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sms_provider_response_code": {"name": "sms_provider_response_code", "description": "sms provider response code from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sms_provider_response_message": {"name": "sms_provider_response_message", "description": "sms provider response message from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sms_provider_response_more_info": {"name": "sms_provider_response_more_info", "description": "sms provider response addition info from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sms_provider_response_status": {"name": "sms_provider_response_status", "description": "Status of the sms provider response from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sound": {"name": "sound", "description": "Boolean indicating if a sound was used with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "to_phone_number": {"name": "to_phone_number", "description": "To phone number associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "url": {"name": "url", "description": "Url associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "workflow_id": {"name": "workflow_id", "description": "Reference to the workflow which the event originated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "workflow_name": {"name": "workflow_name", "description": "Name of the workflow which the event originated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "template_id": {"name": "template_id", "description": "Unique identifer of the template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "template_name": {"name": "template_name", "description": "User defined name of the template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "template_creator_user_id": {"name": "template_creator_user_id", "description": "Reference to the user who created the template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_on": {"name": "created_on", "description": "Timestamp of when the event was created", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "incremental", "schema": "iterable", "unique_key": "event_id", "partition_by": null, "incremental_strategy": "merge", "file_format": "delta"}, "created_at": 1687556573.212227, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_iterable`.`iterable__events`", "raw_code": "{{\n config(\n materialized='incremental',\n unique_key='event_id',\n partition_by={\n \"field\": \"created_on\",\n \"data_type\": \"date\"\n } if target.type == 'bigquery' else none,\n incremental_strategy = 'merge' if target.type not in ('snowflake', 'postgres', 'redshift') else 'delete+insert',\n file_format = 'delta'\n )\n}}\n\nwith events as (\n\n select *\n from {{ var('event') }}\n\n {% if is_incremental() %}\n where created_at >= (select max(created_at) from {{ this }} )\n {% endif %}\n\n), campaign as (\n\n select *\n from {{ ref('int_iterable__recurring_campaigns') }}\n\n), event_extension as (\n\n select *\n from {{ var('event_extension') }}\n\n), users as (\n\n select *\n from {{ ref('int_iterable__latest_user') }}\n\n), message_type_channel as (\n\n select *\n from {{ ref('int_iterable__message_type_channel') }}\n\n), template as (\n\n select *\n from {{ ref('int_iterable__latest_template') }}\n\n), event_join as (\n\n select \n events.*,\n campaign.campaign_name,\n campaign.campaign_type,\n campaign.is_campaign_recurring,\n campaign.recurring_campaign_name,\n campaign.recurring_campaign_id,\n\n users.user_id,\n users.first_name || ' ' || users.last_name as user_full_name,\n\n message_type_channel.message_type_name,\n message_type_channel.message_medium,\n message_type_channel.channel_id,\n message_type_channel.channel_name,\n message_type_channel.channel_type,\n\n {% set exclude_fields = [\"event_id\", \"content_id\", \"_fivetran_synced\"] %}\n {{ dbt_utils.star(from=ref('stg_iterable__event_extension'), except= exclude_fields ) }}\n ,\n campaign.template_id,\n template.template_name,\n template.creator_user_id as template_creator_user_id\n \n from events \n left join event_extension \n on events.event_id = event_extension.event_id\n left join campaign \n on events.campaign_id = campaign.campaign_id\n left join users\n on events.email = users.email\n left join message_type_channel\n on events.message_type_id = message_type_channel.message_type_id\n left join template \n on campaign.template_id = template.template_id\n)\n\nselect *\nfrom event_join", "language": "sql", "refs": [{"name": "stg_iterable__event", "package": null, "version": null}, {"name": "int_iterable__recurring_campaigns", "package": null, "version": null}, {"name": "stg_iterable__event_extension", "package": null, "version": null}, {"name": "int_iterable__latest_user", "package": null, "version": null}, {"name": "int_iterable__message_type_channel", "package": null, "version": null}, {"name": "int_iterable__latest_template", "package": null, "version": null}, {"name": "stg_iterable__event_extension", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.is_incremental", "macro.dbt_utils.star"], "nodes": ["model.iterable_source.stg_iterable__event", "model.iterable.int_iterable__recurring_campaigns", "model.iterable_source.stg_iterable__event_extension", "model.iterable.int_iterable__latest_user", "model.iterable.int_iterable__message_type_channel", "model.iterable.int_iterable__latest_template", "model.iterable_source.stg_iterable__event_extension"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.iterable__campaigns": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_iterable", "name": "iterable__campaigns", "resource_type": "model", "package_name": "iterable", "path": "iterable__campaigns.sql", "original_file_path": "models/iterable__campaigns.sql", "unique_id": "model.iterable.iterable__campaigns", "fqn": ["iterable", "iterable__campaigns"], "alias": "iterable__campaigns", "checksum": {"name": "sha256", "checksum": "89e11c24b53dd7eca956b891278bd4b21b83b3b6c65243f8e3c661772bd9d67b"}, "config": {"enabled": true, "alias": null, "schema": "iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that provides aggregations for campaigns at the experiment grain.", "columns": {"campaign_id": {"name": "campaign_id", "description": "Unique identifier of the campaign record", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "campaign_name": {"name": "campaign_name", "description": "User defined name of the campaign.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "campaign_state": {"name": "campaign_state", "description": "State of the campaign. Can be Draft, Ready, Scheduled, Running, Finished, Starting, Aborted or Recurring", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "campaign_type": {"name": "campaign_type", "description": "The campaign type. Can be Blast or Triggered", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "send_size": {"name": "send_size", "description": "Size of the campaign. Number of individuals included in the campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "start_at": {"name": "start_at", "description": "Start timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "ended_at": {"name": "ended_at", "description": "Ended timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "Creation timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_by_user_id": {"name": "created_by_user_id", "description": "Reference to the user who created the campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "template_id": {"name": "template_id", "description": "Reference to the campaign template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recurring_campaign_id": {"name": "recurring_campaign_id", "description": "Unique identifier of the recurring campaign (if applicable)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recurring_campaign_name": {"name": "recurring_campaign_name", "description": "Name of the recurring campaign (if applicable)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recurring_campaign_state": {"name": "recurring_campaign_state", "description": "State of the recurring campaign (if applicable)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recurring_campaign_send_size": {"name": "recurring_campaign_send_size", "description": "Size of the recurring campaign. Number of individuals included in the recurring campaign (if applicable)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recurring_campaign_start_at": {"name": "recurring_campaign_start_at", "description": "Timestamp of when the recurring campaign started (if applicable)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_campaign_recurring": {"name": "is_campaign_recurring", "description": "Boolean indicating if the campaign is a recurring campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "experiment_id": {"name": "experiment_id", "description": "Reference to the experiment used if the event is an experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "count_unique_users": {"name": "count_unique_users", "description": "Count of total unique users within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailclick": {"name": "total_emailclick", "description": "Total email clicks within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_emailclick": {"name": "unique_total_emailclick", "description": "Unique email clicks within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailunsubscribe": {"name": "total_emailunsubscribe", "description": "Total email unsubscribe events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_emailunsubscribe": {"name": "unique_total_emailunsubscribe", "description": "Unique total email unsubscribe events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailcomplaint": {"name": "total_emailcomplaint", "description": "Total email complaints within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_emailcomplaint": {"name": "unique_total_emailcomplaint", "description": "Unique total email complaints within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_customevent": {"name": "total_customevent", "description": "Total custom events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_customevent": {"name": "unique_total_customevent", "description": "Unique total custom events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailsubscribe": {"name": "total_emailsubscribe", "description": "Total email subscribe events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_emailsubscribe": {"name": "unique_total_emailsubscribe", "description": "Unique total email subscribe events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailopen": {"name": "total_emailopen", "description": "Total email open events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_emailopen": {"name": "unique_total_emailopen", "description": "Unique total email open events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_pushsend": {"name": "total_pushsend", "description": "Total push send event within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_pushsend": {"name": "unique_total_pushsend", "description": "Unique total push send events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_smsbounce": {"name": "total_smsbounce", "description": "Total sms bounce events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_smsbounce": {"name": "unique_total_smsbounce", "description": "Unique total sms bounce events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_pushbounce": {"name": "total_pushbounce", "description": "Total push bounce events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_pushbounce": {"name": "unique_total_pushbounce", "description": "Unique total push bounce events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_inappsendskip": {"name": "total_inappsendskip", "description": "Total in app send skip events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_inappsendskip": {"name": "unique_total_inappsendskip", "description": "Unique total in app send skip events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_smssend": {"name": "total_smssend", "description": "Total sms send events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_smssend": {"name": "unique_total_smssend", "description": "Unique total sms send events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_inappsend": {"name": "total_inappsend", "description": "Total in app send events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_inappsend": {"name": "unique_total_inappsend", "description": "Unique total in app send events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_pushopen": {"name": "total_pushopen", "description": "Total push open events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_pushopen": {"name": "unique_total_pushopen", "description": "Unique total push open events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailsend": {"name": "total_emailsend", "description": "Total email send events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_emailsend": {"name": "unique_total_emailsend", "description": "Unique total email send events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_pushsendskip": {"name": "total_pushsendskip", "description": "Total push send skip events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_pushsendskip": {"name": "unique_total_pushsendskip", "description": "Unique total push send skip events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_inappopen": {"name": "total_inappopen", "description": "Total in app open events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_inappopen": {"name": "unique_total_inappopen", "description": "Unique total in app open events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailsendskip": {"name": "total_emailsendskip", "description": "Total email send skip events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_emailsendskip": {"name": "unique_total_emailsendskip", "description": "Unique total email send skip events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailbounce": {"name": "total_emailbounce", "description": "Total email bounce events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_emailbounce": {"name": "unique_total_emailbounce", "description": "Unique total email bounce events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_inappclick": {"name": "total_inappclick", "description": "Total in app click events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_inappclick": {"name": "unique_total_inappclick", "description": "Unique total in app click events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_pushuninstall": {"name": "total_pushuninstall", "description": "Total push uninstall events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_pushuninstall": {"name": "unique_total_pushuninstall", "description": "Unique total push uninstall events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "count_send_lists": {"name": "count_send_lists", "description": "Count of send lists within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "count_suppress_lists": {"name": "count_suppress_lists", "description": "Count of suppress lists within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "labels": {"name": "labels", "description": "List of labels associated with the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "template_name": {"name": "template_name", "description": "Name of the template associated with the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "template_creator_user_id": {"name": "template_creator_user_id", "description": "The creator user id of the template associated with the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_medium": {"name": "message_medium", "description": "The medium which the message was provided", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_type_name": {"name": "message_type_name", "description": "The message type name associated with the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "channel_name": {"name": "channel_name", "description": "The channel name associated with the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "channel_id": {"name": "channel_id", "description": "The channel identifier associated with the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "channel_type": {"name": "channel_type", "description": "The channel type associated with the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "iterable"}, "created_at": 1687556573.2004008, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_iterable`.`iterable__campaigns`", "raw_code": "with campaign_event_metrics as (\n\n select *\n from {{ ref('int_iterable__campaign_event_metrics') }}\n\n), campaign_list_metrics as (\n\n select\n campaign_id,\n sum(case when list_activity = 'send' then 1 else 0 end) as count_send_lists,\n sum(case when list_activity = 'suppress' then 1 else 0 end) as count_suppress_lists\n \n from {{ ref('int_iterable__campaign_lists') }}\n group by campaign_id\n\n), campaign as (\n\n select *\n from {{ ref('int_iterable__recurring_campaigns') }}\n \n{% if var('iterable__using_campaign_label_history', true) %}\n), campaign_labels as (\n\n select *\n from {{ ref('int_iterable__campaign_labels') }}\n\n{% endif %}\n\n), template as (\n -- rebringing this in (it is brought in iterable__events) in case any campaigns don't have events yet\n -- this will result in some DAG ugliness but maintains template info for non-sent campaigns\n select *\n from {{ ref('int_iterable__latest_template') }}\n\n), campaign_join as (\n\n {% set exclude_fields = [ 'campaign_id', 'template_id'] %} -- these are both in campaigns\n\n -- this query will be at the campaign-experiment variation grain\n select\n campaign.*,\n {{ dbt_utils.star(from=ref('int_iterable__campaign_event_metrics'), except=exclude_fields) }}\n , \n campaign_list_metrics.count_send_lists,\n campaign_list_metrics.count_suppress_lists,\n {% if var('iterable__using_campaign_label_history', true) %}\n campaign_labels.labels,\n {% endif %}\n template.template_name,\n template.creator_user_id as template_creator_user_id,\n template.message_medium,\n template.message_type_name,\n template.channel_name,\n template.channel_id,\n template.channel_type\n\n from campaign\n left join campaign_event_metrics \n on campaign.campaign_id = campaign_event_metrics.campaign_id\n left join campaign_list_metrics \n on campaign.campaign_id = campaign_list_metrics.campaign_id\n\n {% if var('iterable__using_campaign_label_history', true) %}\n left join campaign_labels \n on campaign.campaign_id = campaign_labels.campaign_id\n {% endif %}\n \n left join template\n on campaign.template_id = template.template_id\n)\n\nselect *\nfrom campaign_join", "language": "sql", "refs": [{"name": "int_iterable__campaign_event_metrics", "package": null, "version": null}, {"name": "int_iterable__campaign_lists", "package": null, "version": null}, {"name": "int_iterable__recurring_campaigns", "package": null, "version": null}, {"name": "int_iterable__campaign_labels", "package": null, "version": null}, {"name": "int_iterable__latest_template", "package": null, "version": null}, {"name": "int_iterable__campaign_event_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.star"], "nodes": ["model.iterable.int_iterable__campaign_event_metrics", "model.iterable.int_iterable__campaign_lists", "model.iterable.int_iterable__recurring_campaigns", "model.iterable.int_iterable__campaign_labels", "model.iterable.int_iterable__latest_template", "model.iterable.int_iterable__campaign_event_metrics"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.iterable__user_unsubscriptions": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_iterable", "name": "iterable__user_unsubscriptions", "resource_type": "model", "package_name": "iterable", "path": "iterable__user_unsubscriptions.sql", "original_file_path": "models/iterable__user_unsubscriptions.sql", "unique_id": "model.iterable.iterable__user_unsubscriptions", "fqn": ["iterable", "iterable__user_unsubscriptions"], "alias": "iterable__user_unsubscriptions", "checksum": {"name": "sha256", "checksum": "f6351a64deac081b12ce790fd5dbc2b30c3cba4a535a89b0684deaac6080b1c4"}, "config": {"enabled": true, "alias": null, "schema": "iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that generates the total channel and message types a user has chosen to unsubscribe.", "columns": {"email": {"name": "email", "description": "Unique identifier of the user as well as their email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "channel_id": {"name": "channel_id", "description": "Unique identifier of the channel which the user is unsubscribed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_type_id": {"name": "message_type_id", "description": "Unique identifer of the message type which the user is unsubscribed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "channel_name": {"name": "channel_name", "description": "The name of the channel which the user is unsubscribed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_type_name": {"name": "message_type_name", "description": "The name of the message type which the user is unsubscribed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "channel_type": {"name": "channel_type", "description": "The channel type which the user is unsubscribed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_medium": {"name": "message_medium", "description": "The medium type the message was provided which the user is unsubscribed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Timestamp of when the user unsubscribed from the channel or message type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_unsubscribed_channel_wide": {"name": "is_unsubscribed_channel_wide", "description": "Boolean indicating if the user unsubscribed at the channel level (i.e. unsubscribed to all message types) or if they unsubscribed from only an individual message type.\n", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "iterable"}, "created_at": 1687556573.2223449, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_iterable`.`iterable__user_unsubscriptions`", "raw_code": "with message_type_channel as (\n\n select *\n from {{ ref('int_iterable__message_type_channel') }}\n\n), user_unsubscribed_channel_history as (\n\n select \n *,\n rank() over(partition by email order by updated_at desc) as latest_batch_index\n\n from {{ var('user_unsubscribed_channel_history') }}\n\n{% if var('iterable__using_user_unsubscribed_message_type_history', True) %}\n), user_unsubscribed_message_type_history as (\n\n select \n *,\n rank() over(partition by email order by updated_at desc) as latest_batch_index\n\n from {{ var('user_unsubscribed_message_type_history') }}\n\n{% endif %}\n), combine_histories as (\n\n-- we are combining because channels are effectively parents of message types\n select \n email,\n channel_id,\n cast(null as {{ dbt.type_int() }}) as message_type_id,\n updated_at\n\n from user_unsubscribed_channel_history\n where latest_batch_index = 1\n\n{% if var('iterable__using_user_unsubscribed_message_type_history', True) %}\n union all\n\n select \n email,\n cast(null as {{ dbt.type_int() }}) as channel_id,\n message_type_id,\n updated_at\n \n from user_unsubscribed_message_type_history\n where latest_batch_index = 1\n{% endif %}\n\n), final as (\n\n select \n combine_histories.email,\n -- coalescing since message_type -> channel goes up a grain\n coalesce(combine_histories.channel_id, message_type_channel.channel_id) as channel_id,\n coalesce(combine_histories.message_type_id, message_type_channel.message_type_id) as message_type_id,\n message_type_channel.channel_name,\n message_type_channel.message_type_name,\n message_type_channel.channel_type,\n message_type_channel.message_medium,\n combine_histories.updated_at,\n case when combine_histories.channel_id is not null then true else false end as is_unsubscribed_channel_wide\n\n from combine_histories\n\n -- unsubscribing from an entire channel unsubscribes a user from all message types in that channel\n join message_type_channel \n on combine_histories.channel_id = message_type_channel.channel_id\n or combine_histories.message_type_id = message_type_channel.message_type_id\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "int_iterable__message_type_channel", "package": null, "version": null}, {"name": "stg_iterable__user_unsubscribed_channel_history", "package": null, "version": null}, {"name": "stg_iterable__user_unsub_message_type_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.type_int"], "nodes": ["model.iterable.int_iterable__message_type_channel", "model.iterable_source.stg_iterable__user_unsubscribed_channel_history", "model.iterable_source.stg_iterable__user_unsub_message_type_history"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.iterable__users": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_iterable", "name": "iterable__users", "resource_type": "model", "package_name": "iterable", "path": "iterable__users.sql", "original_file_path": "models/iterable__users.sql", "unique_id": "model.iterable.iterable__users", "fqn": ["iterable", "iterable__users"], "alias": "iterable__users", "checksum": {"name": "sha256", "checksum": "612b1081e40ae0f83294ba9826df3a17e26847bafe1efde632f656fc54ab9571"}, "config": {"enabled": true, "alias": null, "schema": "iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that provides unique user enriched information.", "columns": {"email": {"name": "email", "description": "Unique identifier of the user as well as their email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "first_name": {"name": "first_name", "description": "First name of the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_name": {"name": "last_name", "description": "Last name of the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_id": {"name": "user_id", "description": "User defined identifier of the user. This is not a unique field", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "signup_date": {"name": "signup_date", "description": "Timestamp as epoch time in milliseconds of when the user signed up", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "signup_source": {"name": "signup_source", "description": "Source where the user signed up", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "phone_number": {"name": "phone_number", "description": "Phone number associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email_list_ids": {"name": "email_list_ids", "description": "Array of all email lists associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "count_lists": {"name": "count_lists", "description": "Total count of lists associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "count_total_campaigns": {"name": "count_total_campaigns", "description": "Count of all campaigns the user has been in", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "first_event_at": {"name": "first_event_at", "description": "The first event the user ever encountered", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_event_at": {"name": "last_event_at", "description": "The most recent event the user has encountered", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailclick": {"name": "total_emailclick", "description": "Total number of email clicks the user has performed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailunsubscribe": {"name": "total_emailunsubscribe", "description": "Total unsubscription events the user has performed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailcomplaint": {"name": "total_emailcomplaint", "description": "Total email complaints the user has performed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_customevent": {"name": "total_customevent", "description": "Total custom events associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailsubscribe": {"name": "total_emailsubscribe", "description": "Total subscription events the user has performed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailopen": {"name": "total_emailopen", "description": "Total email opened events the user has performed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_pushsend": {"name": "total_pushsend", "description": "The push send events the user has experienced", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_smsbounce": {"name": "total_smsbounce", "description": "Total sms bounces that are associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_pushbounce": {"name": "total_pushbounce", "description": "Total number of push bounces associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_inappsendskip": {"name": "total_inappsendskip", "description": "Total in app send skips associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_smssend": {"name": "total_smssend", "description": "Total sms sends that the user has experienced", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_inappsend": {"name": "total_inappsend", "description": "Total in app sends the user has experienced", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_pushopen": {"name": "total_pushopen", "description": "Total push messages the user has opened", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailsend": {"name": "total_emailsend", "description": "Total emails that have been sent to the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_pushsendskip": {"name": "total_pushsendskip", "description": "Total push sends the user has skipped", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_inappopen": {"name": "total_inappopen", "description": "Total in app opens the user has performed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailsendskip": {"name": "total_emailsendskip", "description": "Total email sends the user has skipped", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailbounce": {"name": "total_emailbounce", "description": "Total number of emails that have bounced from the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_inappclick": {"name": "total_inappclick", "description": "Total in app clicks associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_pushuninstall": {"name": "total_pushuninstall", "description": "Total push uninstall events the user has performed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "count_devices": {"name": "count_devices", "description": "Count of all devices that are associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "iterable"}, "created_at": 1687556573.228792, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_iterable`.`iterable__users`", "raw_code": "with user_event_metrics as (\n\n select *\n from {{ ref('int_iterable__user_event_metrics') }}\n\n{% if var('iterable__using_user_device_history', false) %}\n), user_devices as (\n\n select *\n from {{ ref('int_iterable__latest_user_device') }}\n\n{% endif %}\n\n), user_unnested as (\n -- this has all the user fields we're looking to pass through\n\n select *\n from {{ ref('int_iterable__list_user_unnest') }}\n\n -- limit to current lists they are a member of. each list-user combo is a unique row, which we will roll up\n where is_current\n\n), user_with_list_metrics as (\n\n select\n email,\n first_name,\n last_name,\n user_id,\n signup_date,\n signup_source,\n updated_at,\n phone_number,\n email_list_ids,\n count(distinct list_id) as count_lists\n\n from user_unnested\n -- roll up to the user\n {{ dbt_utils.group_by(n=9) }}\n\n), user_join as (\n\n select \n user_with_list_metrics.*,\n {{ dbt_utils.star(from=ref('int_iterable__user_event_metrics'), except=['user_email']) }}\n {% if var('iterable__using_user_device_history', false) %}\n ,\n user_devices.count_devices\n {% endif %}\n\n from user_with_list_metrics\n left join user_event_metrics \n on user_with_list_metrics.email = user_event_metrics.user_email\n \n {% if var('iterable__using_user_device_history', false) %}\n left join user_devices\n on user_with_list_metrics.email = user_devices.email\n {% endif %}\n)\n\nselect *\nfrom user_join", "language": "sql", "refs": [{"name": "int_iterable__user_event_metrics", "package": null, "version": null}, {"name": "int_iterable__list_user_unnest", "package": null, "version": null}, {"name": "int_iterable__user_event_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.group_by", "macro.dbt_utils.star"], "nodes": ["model.iterable.int_iterable__user_event_metrics", "model.iterable.int_iterable__list_user_unnest", "model.iterable.int_iterable__user_event_metrics"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.iterable__user_campaign": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_iterable", "name": "iterable__user_campaign", "resource_type": "model", "package_name": "iterable", "path": "iterable__user_campaign.sql", "original_file_path": "models/iterable__user_campaign.sql", "unique_id": "model.iterable.iterable__user_campaign", "fqn": ["iterable", "iterable__user_campaign"], "alias": "iterable__user_campaign", "checksum": {"name": "sha256", "checksum": "13b5c6554709c51dd0613796627846b67d0d97659536d5b57e4ed466cb563505"}, "config": {"enabled": true, "alias": null, "schema": "iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that provides total and unique metrics for a user associated with particular campaigns.", "columns": {"user_email": {"name": "user_email", "description": "Unique identifier of the user as well as their email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_full_name": {"name": "user_full_name", "description": "The users first and last name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The unique identifier of the campaign which the user metrics are associated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "campaign_name": {"name": "campaign_name", "description": "The name of the campaign which the user metrics are associated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "template_id": {"name": "template_id", "description": "The unique identifier of the template used within the campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "template_name": {"name": "template_name", "description": "The name of the template used for the campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "experiment_id": {"name": "experiment_id", "description": "The unique experiment variation of the campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recurring_campaign_id": {"name": "recurring_campaign_id", "description": "The unique identifier of the recurring campaign which the campaign is tied to", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recurring_campaign_name": {"name": "recurring_campaign_name", "description": "The name of the recurring campaign which the campaign is tied to", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "first_event_at": {"name": "first_event_at", "description": "Timestamp of the first campaign/experiment event associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_event_at": {"name": "last_event_at", "description": "Timestamp of the most recent campaign/experiment event associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailclick": {"name": "total_emailclick", "description": "Total email clicks events the user took within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailunsubscribe": {"name": "total_emailunsubscribe", "description": "Total email unsubscription events the user performed within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailcomplaint": {"name": "total_emailcomplaint", "description": "Total email complaint events the user performed within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_customevent": {"name": "total_customevent", "description": "Total custom events associated with the user within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailsubscribe": {"name": "total_emailsubscribe", "description": "Total email subscription events associate with the user within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailopen": {"name": "total_emailopen", "description": "Total email open events the user performed within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_pushsend": {"name": "total_pushsend", "description": "Total push send events the user performed within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_smsbounce": {"name": "total_smsbounce", "description": "Total sms bounce events associated with the user within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_pushbounce": {"name": "total_pushbounce", "description": "Total push bounce events associated with the user within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_inappsendskip": {"name": "total_inappsendskip", "description": "Total in app send skip events the user performed within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_smssend": {"name": "total_smssend", "description": "Total sms send events associated with the user within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_inappsend": {"name": "total_inappsend", "description": "Total in app send events associated with the user within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_pushopen": {"name": "total_pushopen", "description": "Total push open events the user performed within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailsend": {"name": "total_emailsend", "description": "Total email send event associated with the user within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_pushsendskip": {"name": "total_pushsendskip", "description": "Total push send skip events associated with the user within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_inappopen": {"name": "total_inappopen", "description": "Total in app open events associated with the user within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailsendskip": {"name": "total_emailsendskip", "description": "Total email send skip events associated with the user within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailbounce": {"name": "total_emailbounce", "description": "Total email bounce events associated with the user within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_inappclick": {"name": "total_inappclick", "description": "Total in app click events associated with the user within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_pushuninstall": {"name": "total_pushuninstall", "description": "Total push uninstall events associated with the user within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "iterable"}, "created_at": 1687556573.220459, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_iterable`.`iterable__user_campaign`", "raw_code": "with events as (\n\n select *\n from {{ ref('iterable__events') }}\n\n), pivot_out_events as (\n\n-- this will be at the user-campaign-experiment variation level\n-- if experiment_id is null, the user-campaign interactions happened outside of an experiment\n-- if campaign_id is null, the user interactions are organic\n select \n email as user_email,\n user_full_name,\n campaign_id,\n experiment_id,\n case when campaign_id is null then 'organic' else campaign_name end as campaign_name,\n template_id,\n template_name,\n \n\n recurring_campaign_id,\n recurring_campaign_name,\n\n min(created_at) as first_event_at,\n max(created_at) as last_event_at\n\n -- count up the number of instances of each metric\n -- `iterable__event_metrics` is set by default to all events brought in by fivetran+iterable\n -- https://fivetran.com/docs/applications/iterable#schemanotes\n {% for em in var('iterable__event_metrics') %}\n , sum(case when lower(event_name) = '{{ em | lower }}' then 1 else 0 end) \n as {{ 'total_' ~ em | replace(' ', '_') | replace('(', '') | replace(')', '') | lower }} \n {% endfor %}\n\n from events\n {{ dbt_utils.group_by(n=9) }}\n\n)\n\nselect *\nfrom pivot_out_events", "language": "sql", "refs": [{"name": "iterable__events", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.group_by"], "nodes": ["model.iterable.iterable__events"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.iterable__list_user_history": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_iterable", "name": "iterable__list_user_history", "resource_type": "model", "package_name": "iterable", "path": "iterable__list_user_history.sql", "original_file_path": "models/iterable__list_user_history.sql", "unique_id": "model.iterable.iterable__list_user_history", "fqn": ["iterable", "iterable__list_user_history"], "alias": "iterable__list_user_history", "checksum": {"name": "sha256", "checksum": "7f044fa45d5fc42e163c61ca45d840cd6216047bbc0a633ced0e2be26eda0070"}, "config": {"enabled": true, "alias": null, "schema": "iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that recreates the `list_user_history` source table. Additionally, this table provides an `is_current` field to identify the current lists associated with the user. Additionally, the grain of this table is at the user/list/updated_at grain.\n", "columns": {"user_email": {"name": "user_email", "description": "Unique identifier of the user as well as their email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_first_name": {"name": "user_first_name", "description": "First name of the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_last_name": {"name": "user_last_name", "description": "Last name of the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_id": {"name": "user_id", "description": "User defined identifier of the user. This is not a unique field", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_signup_date": {"name": "user_signup_date", "description": "Timestamp as epoch time in milliseconds of when the user signed up", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_signup_source": {"name": "user_signup_source", "description": "Source where the user signed up", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_updated_at": {"name": "user_updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "list_id": {"name": "list_id", "description": "The list associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_current": {"name": "is_current", "description": "Boolean indicating if the current list is active", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "list_name": {"name": "list_name", "description": "Name of the list associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "list_type": {"name": "list_type", "description": "Type of list associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "list_created_at": {"name": "list_created_at", "description": "Date the list was created", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "iterable"}, "created_at": 1687556573.214656, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_iterable`.`iterable__list_user_history`", "raw_code": "with user_list_unnest as (\n\n select * \n from {{ ref('int_iterable__list_user_unnest') }}\n\n), lists as (\n\n select * \n from {{ var('list') }}\n\n), final as (\n select\n user_list_unnest.email as user_email,\n user_list_unnest.first_name as user_first_name,\n user_list_unnest.last_name as user_last_name,\n user_list_unnest.user_id,\n user_list_unnest.signup_date as user_signup_date,\n user_list_unnest.signup_source as user_signup_source,\n user_list_unnest.updated_at as user_updated_at,\n user_list_unnest.list_id,\n user_list_unnest.is_current,\n lists.list_name,\n lists.list_type,\n lists.created_at as list_created_at \n\n from user_list_unnest\n left join lists\n on lists.list_id = user_list_unnest.list_id\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "int_iterable__list_user_unnest", "package": null, "version": null}, {"name": "stg_iterable__list", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": [], "nodes": ["model.iterable.int_iterable__list_user_unnest", "model.iterable_source.stg_iterable__list"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.int_iterable__list_user_unnest": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__list_user_unnest", "resource_type": "model", "package_name": "iterable", "path": "intermediate/int_iterable__list_user_unnest.sql", "original_file_path": "models/intermediate/int_iterable__list_user_unnest.sql", "unique_id": "model.iterable.int_iterable__list_user_unnest", "fqn": ["iterable", "intermediate", "int_iterable__list_user_unnest"], "alias": "int_iterable__list_user_unnest", "checksum": {"name": "sha256", "checksum": "bb2c692ab1c4ebb799d706fb8f4254d73914a48efb59712a86a20b27748fdf5f"}, "config": {"enabled": true, "alias": null, "schema": "int_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "incremental", "incremental_strategy": "insert_overwrite", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": "unique_key", "on_schema_change": "fail", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "file_format": "delta", "partition_by": ["date_day"], "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that unnests the `email_list_id` field for each user to create a new record for each user and the unique list it was associated with at a unique update. Due to the unnesting functions varying greatly between warehouses, conditional logic is applied throughout the model to appropriately accommodate the model being ran within Redshift, Snowflake, BigQuery, and Postgres.\n", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/intermediate/int_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "incremental", "schema": "int_iterable", "unique_key": "unique_key", "incremental_strategy": "insert_overwrite", "partition_by": ["date_day"], "file_format": "delta", "on_schema_change": "fail"}, "created_at": 1687556573.271635, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_int_iterable`.`int_iterable__list_user_unnest`", "raw_code": "{{ config(\n materialized='incremental',\n unique_key='unique_key',\n incremental_strategy='insert_overwrite' if target.type in ('bigquery', 'spark', 'databricks') else 'delete+insert',\n partition_by={\"field\": \"date_day\", \"data_type\": \"date\"} if target.type not in ('spark','databricks') else ['date_day'],\n file_format='delta',\n on_schema_change='fail'\n ) \n}}\n\nwith user_history as (\n\n select * \n from {{ ref('int_iterable__list_user_history') }} as user_history\n\n {% if is_incremental() %}\n {# the only rows we potentially want to overwrite are active ones #}\n where user_history.updated_at >= coalesce((select min(updated_at) from {{ this }} where is_current), '2010-01-01')\n {% endif %}\n\n{% if target.type == 'redshift' %}\n{# using PartiQL syntax to work with redshift's SUPER types #}\n), redshift_parse_email_lists as (\n\n select\n email,\n first_name,\n last_name,\n user_id,\n signup_date,\n signup_source,\n phone_number,\n updated_at,\n is_current,\n email_list_ids,\n {# let's not remove empty array-rows #}\n json_parse(case when email_list_ids = '[]' then '[\"is_null\"]' else email_list_ids end) as super_email_list_ids\n \n from user_history\n\n), unnest_email_array as (\n\n select\n email,\n first_name,\n last_name,\n user_id,\n signup_date,\n signup_source,\n phone_number,\n updated_at,\n is_current,\n {# go back to strings #}\n cast(email_list_ids as {{ dbt.type_string() }}) as email_list_ids, \n cast(email_list_id as {{ dbt.type_string() }}) as email_list_id\n\n from redshift_parse_email_lists as emails, emails.super_email_list_ids as email_list_id\n\n{% else %}\n), unnest_email_array as (\n\n select\n email,\n first_name,\n last_name,\n user_id,\n signup_date,\n signup_source,\n phone_number,\n updated_at,\n is_current,\n email_list_ids,\n case when email_list_ids != '[]' then\n {% if target.type == 'snowflake' %}\n email_list_id.value\n {% elif target.type in ('spark','databricks') %}\n email_list_id.col\n {% else %} email_list_id {% endif %} \n else null \n end as email_list_id\n\n from user_history\n\n {% if target.type == 'snowflake' %}\n cross join \n table(flatten(input => parse_json(email_list_ids))) as email_list_id\n {% elif target.type == 'bigquery' %}\n cross join \n unnest(JSON_EXTRACT_STRING_ARRAY(email_list_ids)) as email_list_id\n {% elif target.type in ('spark','databricks') %}\n cross join \n lateral explode_outer(from_json(email_list_ids, 'array')) as email_list_id\n {% else %} {# target is postgres #}\n cross join \n json_array_elements_text(cast((\n case when email_list_ids = '[]' then '[\"is_null\"]' {# to not remove empty array-rows #}\n else email_list_ids end) as json)) as email_list_id\n {%- endif %}\n\n{%- endif -%}\n), adjust_nulls as (\n\n select\n email,\n first_name,\n last_name,\n user_id,\n signup_date,\n signup_source,\n updated_at,\n phone_number,\n is_current,\n case when email_list_ids = '[\"is_null\"]' then '[]' else email_list_ids end as email_list_ids,\n cast(NULLIF(email_list_id, 'is_null') as {{ dbt.type_int() }}) as list_id\n\n from unnest_email_array\n\n), final as (\n\n select\n email,\n first_name,\n last_name,\n user_id,\n signup_date,\n signup_source,\n updated_at,\n phone_number,\n is_current,\n email_list_ids,\n list_id,\n {{ dbt_utils.generate_surrogate_key([\"email\", \"list_id\", \"updated_at\"]) }} as unique_key,\n cast( {{ dbt.date_trunc('day', 'updated_at') }} as date) as date_day\n \n from adjust_nulls\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "int_iterable__list_user_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.is_incremental", "macro.dbt.type_int", "macro.dbt_utils.generate_surrogate_key", "macro.dbt.date_trunc"], "nodes": ["model.iterable.int_iterable__list_user_history"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.int_iterable__latest_campaign": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__latest_campaign", "resource_type": "model", "package_name": "iterable", "path": "intermediate/int_iterable__latest_campaign.sql", "original_file_path": "models/intermediate/int_iterable__latest_campaign.sql", "unique_id": "model.iterable.int_iterable__latest_campaign", "fqn": ["iterable", "intermediate", "int_iterable__latest_campaign"], "alias": "int_iterable__latest_campaign", "checksum": {"name": "sha256", "checksum": "02638804ee58aa752c0cd0374948f66a3a0b57a1e29e1903ab882a0ee6471138"}, "config": {"enabled": true, "alias": null, "schema": "int_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that filters out historical versions of the campaign, and returns the most recent campaign version.", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/intermediate/int_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "int_iterable"}, "created_at": 1687556573.270352, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_int_iterable`.`int_iterable__latest_campaign`", "raw_code": "with campaign_history as (\n select *\n from {{ var('campaign_history') }}\n\n), latest_campaign as (\n select\n *,\n row_number() over(partition by campaign_id order by updated_at desc) as latest_campaign_index\n from campaign_history\n)\n\nselect *\nfrom latest_campaign\nwhere latest_campaign_index = 1", "language": "sql", "refs": [{"name": "stg_iterable__campaign_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": [], "nodes": ["model.iterable_source.stg_iterable__campaign_history"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.int_iterable__campaign_event_metrics": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__campaign_event_metrics", "resource_type": "model", "package_name": "iterable", "path": "intermediate/int_iterable__campaign_event_metrics.sql", "original_file_path": "models/intermediate/int_iterable__campaign_event_metrics.sql", "unique_id": "model.iterable.int_iterable__campaign_event_metrics", "fqn": ["iterable", "intermediate", "int_iterable__campaign_event_metrics"], "alias": "int_iterable__campaign_event_metrics", "checksum": {"name": "sha256", "checksum": "3eed84d176de96b3c92efaf784758a7c8040a67eff8b88d1a3c2c2893bd4b6e9"}, "config": {"enabled": true, "alias": null, "schema": "int_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that generates relevant total and unique campaign/experiment level aggregations.", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/intermediate/int_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "int_iterable"}, "created_at": 1687556573.269539, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_int_iterable`.`int_iterable__campaign_event_metrics`", "raw_code": "with user_campaign as (\n\n select *\n from {{ ref('iterable__user_campaign') }}\n\n), campaign_user_event_metrics as (\n\n{%- set user_campaign_columns = adapter.get_columns_in_relation(ref('iterable__user_campaign')) %}\n\n select\n campaign_id, \n template_id,\n experiment_id,\n count(distinct user_email) as count_unique_users\n {% for col in user_campaign_columns %}\n {% if col.name|lower not in ['user_email', 'user_full_name', 'campaign_id', 'campaign_name', 'recurring_campaign_id', \n 'recurring_campaign_name', 'first_event_at', 'last_event_at', 'template_id', 'template_name',\n 'experiment_id'] %}\n , sum( {{ col.name }} ) as {{ col.name }}\n , sum(case when {{ col.name }} > 0 then 1 else 0 end) as {{ 'unique_' ~ col.name }}\n\n {% endif %}\n {% endfor -%}\n\n from user_campaign\n group by 1,2,3\n\n)\n\nselect *\nfrom campaign_user_event_metrics", "language": "sql", "refs": [{"name": "iterable__user_campaign", "package": null, "version": null}, {"name": "iterable__user_campaign", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": [], "nodes": ["model.iterable.iterable__user_campaign", "model.iterable.iterable__user_campaign"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.int_iterable__campaign_lists": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__campaign_lists", "resource_type": "model", "package_name": "iterable", "path": "intermediate/int_iterable__campaign_lists.sql", "original_file_path": "models/intermediate/int_iterable__campaign_lists.sql", "unique_id": "model.iterable.int_iterable__campaign_lists", "fqn": ["iterable", "intermediate", "int_iterable__campaign_lists"], "alias": "int_iterable__campaign_lists", "checksum": {"name": "sha256", "checksum": "76c681170c2099129bb9a3e99431bcd6fc5f7132fe5c6feb8abbbdcaa105df89"}, "config": {"enabled": true, "alias": null, "schema": "int_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that identifies the suppressed and send lists associated with a campaign.", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/intermediate/int_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "int_iterable"}, "created_at": 1687556573.27009, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_int_iterable`.`int_iterable__campaign_lists`", "raw_code": "with \n\n{% if var('iterable__using_campaign_suppression_list_history', True) %}\n\ncampaign_suppression_list_history as (\n\n select *\n from {{ var('campaign_suppression_list_history') }}\n\n), \n\n{% endif %}\n\ncampaign_send_list_history as (\n\n select *\n from {{ var('campaign_list_history') }}\n\n), combine_list_histories as (\n\n{% if var('iterable__using_campaign_suppression_list_history', True) %}\n\n select \n suppressed_list_id as list_id,\n campaign_id,\n updated_at,\n 'suppress' as list_activity\n from campaign_suppression_list_history\n\n union all \n\n{% endif %}\n\n select \n list_id,\n campaign_id,\n updated_at,\n 'send' as list_activity\n from campaign_send_list_history\n\n), order_campaign_list_history as (\n\n select\n *,\n row_number() over(partition by list_id, campaign_id order by updated_at desc) as latest_list_index\n from combine_list_histories\n\n), latest_campaign_list_history as (\n\n select \n list_id,\n campaign_id,\n updated_at,\n list_activity\n\n from order_campaign_list_history \n where latest_list_index = 1\n)\n\nselect *\nfrom latest_campaign_list_history", "language": "sql", "refs": [{"name": "stg_iterable__campaign_suppression_list_history", "package": null, "version": null}, {"name": "stg_iterable__campaign_list_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": [], "nodes": ["model.iterable_source.stg_iterable__campaign_suppression_list_history", "model.iterable_source.stg_iterable__campaign_list_history"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.int_iterable__latest_user": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__latest_user", "resource_type": "model", "package_name": "iterable", "path": "intermediate/int_iterable__latest_user.sql", "original_file_path": "models/intermediate/int_iterable__latest_user.sql", "unique_id": "model.iterable.int_iterable__latest_user", "fqn": ["iterable", "intermediate", "int_iterable__latest_user"], "alias": "int_iterable__latest_user", "checksum": {"name": "sha256", "checksum": "bd44577fee9b3734789ddafd51e670549da1eea9d748cb38c1cb3cc11852be59"}, "config": {"enabled": true, "alias": null, "schema": "int_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that filters out historical versions of the user, and returns only the most recent version.", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/intermediate/int_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "int_iterable"}, "created_at": 1687556573.271124, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_int_iterable`.`int_iterable__latest_user`", "raw_code": "with user_history as (\n select *\n from {{ var('user_history') }}\n\n), latest_user as (\n select\n *,\n row_number() over(partition by email order by updated_at desc) as latest_user_index\n from user_history\n)\n\nselect *\nfrom latest_user\nwhere latest_user_index = 1", "language": "sql", "refs": [{"name": "stg_iterable__user_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": [], "nodes": ["model.iterable_source.stg_iterable__user_history"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.int_iterable__campaign_labels": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__campaign_labels", "resource_type": "model", "package_name": "iterable", "path": "intermediate/int_iterable__campaign_labels.sql", "original_file_path": "models/intermediate/int_iterable__campaign_labels.sql", "unique_id": "model.iterable.int_iterable__campaign_labels", "fqn": ["iterable", "intermediate", "int_iterable__campaign_labels"], "alias": "int_iterable__campaign_labels", "checksum": {"name": "sha256", "checksum": "53f0cae6b442f3d6de9a2543afb815951ff196ff1d61f1bf2ed74e27ecfc359b"}, "config": {"enabled": true, "alias": null, "schema": "int_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that provides the distinct string aggregation of labels for each campaign.", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/intermediate/int_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "int_iterable", "enabled": true}, "created_at": 1687556573.269824, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_int_iterable`.`int_iterable__campaign_labels`", "raw_code": "{{ config(enabled=var('iterable__using_campaign_label_history', True)) }}\n\nwith campaign_label_history as (\n\n select *\n from {{ var('campaign_label_history') }}\n\n), order_campaign_labels as (\n\n select \n *,\n rank() over(partition by campaign_id order by updated_at desc) as latest_label_batch_index\n\n from campaign_label_history\n\n), latest_labels as (\n\n select *\n from order_campaign_labels\n where latest_label_batch_index = 1\n\n), aggregate_labels as (\n\n select \n campaign_id,\n {{ fivetran_utils.string_agg('distinct label', \"', '\") }} as labels \n\n from latest_labels\n group by campaign_id\n)\n\nselect * from aggregate_labels", "language": "sql", "refs": [{"name": "stg_iterable__campaign_label_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.string_agg"], "nodes": ["model.iterable_source.stg_iterable__campaign_label_history"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.int_iterable__message_type_channel": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__message_type_channel", "resource_type": "model", "package_name": "iterable", "path": "intermediate/int_iterable__message_type_channel.sql", "original_file_path": "models/intermediate/int_iterable__message_type_channel.sql", "unique_id": "model.iterable.int_iterable__message_type_channel", "fqn": ["iterable", "intermediate", "int_iterable__message_type_channel"], "alias": "int_iterable__message_type_channel", "checksum": {"name": "sha256", "checksum": "7675596443596d8bd27ae247ea53d0d3b69e035bffa631505ee4e0c0dd17c2e5"}, "config": {"enabled": true, "alias": null, "schema": "int_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that joins the message type and channel records together into one comprehensive model to be referenced downstream.", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/intermediate/int_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "int_iterable"}, "created_at": 1687556573.2718909, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_int_iterable`.`int_iterable__message_type_channel`", "raw_code": "with message_type as (\n\n select *\n from {{ var('message_type') }}\n\n), channel as (\n\n select *\n from {{ var('channel') }}\n\n), final as (\n\n select \n channel.*,\n message_type.message_type_name,\n message_type.message_type_id\n from channel\n left join message_type on channel.channel_id = message_type.channel_id\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_iterable__message_type", "package": null, "version": null}, {"name": "stg_iterable__channel", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": [], "nodes": ["model.iterable_source.stg_iterable__message_type", "model.iterable_source.stg_iterable__channel"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.int_iterable__latest_template": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__latest_template", "resource_type": "model", "package_name": "iterable", "path": "intermediate/int_iterable__latest_template.sql", "original_file_path": "models/intermediate/int_iterable__latest_template.sql", "unique_id": "model.iterable.int_iterable__latest_template", "fqn": ["iterable", "intermediate", "int_iterable__latest_template"], "alias": "int_iterable__latest_template", "checksum": {"name": "sha256", "checksum": "031c6f50ed5e2a6f0182fcfd3686b20c298c4175850cf3a73a002740ad27174b"}, "config": {"enabled": true, "alias": null, "schema": "int_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that provides the most recent version of the template as well as joining relevant message type information.", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/intermediate/int_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "int_iterable"}, "created_at": 1687556573.2706099, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_int_iterable`.`int_iterable__latest_template`", "raw_code": "with template_history as (\n select *\n from {{ var('template_history') }}\n\n), order_template as (\n select\n *,\n row_number() over(partition by template_id order by updated_at desc) as latest_template_index\n from template_history\n\n), latest_template as (\n\n select *\n from order_template\n where latest_template_index = 1\n\n), message_type_channel as (\n\n select *\n from {{ ref('int_iterable__message_type_channel') }}\n\n), template_join as (\n\n select \n latest_template.*,\n message_type_channel.message_type_name,\n message_type_channel.channel_id,\n message_type_channel.channel_name,\n message_type_channel.channel_type,\n message_type_channel.message_medium\n\n from latest_template \n left join message_type_channel \n on latest_template.message_type_id = message_type_channel.message_type_id\n)\n\nselect *\nfrom template_join", "language": "sql", "refs": [{"name": "stg_iterable__template_history", "package": null, "version": null}, {"name": "int_iterable__message_type_channel", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": [], "nodes": ["model.iterable_source.stg_iterable__template_history", "model.iterable.int_iterable__message_type_channel"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.int_iterable__user_event_metrics": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__user_event_metrics", "resource_type": "model", "package_name": "iterable", "path": "intermediate/int_iterable__user_event_metrics.sql", "original_file_path": "models/intermediate/int_iterable__user_event_metrics.sql", "unique_id": "model.iterable.int_iterable__user_event_metrics", "fqn": ["iterable", "intermediate", "int_iterable__user_event_metrics"], "alias": "int_iterable__user_event_metrics", "checksum": {"name": "sha256", "checksum": "7e1ce19ecac5f23dd6ee473a0799cbc19f3ac02f6f3c21060f217b6a5271e408"}, "config": {"enabled": true, "alias": null, "schema": "int_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that generates user aggregations at the campaign level.", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/intermediate/int_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "int_iterable"}, "created_at": 1687556573.272714, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_int_iterable`.`int_iterable__user_event_metrics`", "raw_code": "with user_campaign as (\n\n select *\n from {{ ref('iterable__user_campaign') }}\n\n), user_event_metrics as (\n\n{%- set user_campaign_columns = adapter.get_columns_in_relation(ref('iterable__user_campaign')) %}\n\n select\n user_email, \n count(distinct campaign_id) as count_total_campaigns,\n min(first_event_at) as first_event_at,\n max(last_event_at) as last_event_at\n\n {% for col in user_campaign_columns %}\n {% if col.name|lower not in ['user_email', 'user_full_name', 'campaign_id', 'campaign_name', 'recurring_campaign_id', \n 'recurring_campaign_name', 'first_event_at', 'last_event_at', 'template_id', 'template_name',\n 'experiment_id'] %}\n , sum( {{ col.name }} ) as {{ col.name }}\n {% endif %}\n {% endfor -%}\n\n from user_campaign\n group by user_email\n\n)\n\nselect *\nfrom user_event_metrics", "language": "sql", "refs": [{"name": "iterable__user_campaign", "package": null, "version": null}, {"name": "iterable__user_campaign", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": [], "nodes": ["model.iterable.iterable__user_campaign", "model.iterable.iterable__user_campaign"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.int_iterable__list_user_history": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__list_user_history", "resource_type": "model", "package_name": "iterable", "path": "intermediate/int_iterable__list_user_history.sql", "original_file_path": "models/intermediate/int_iterable__list_user_history.sql", "unique_id": "model.iterable.int_iterable__list_user_history", "fqn": ["iterable", "intermediate", "int_iterable__list_user_history"], "alias": "int_iterable__list_user_history", "checksum": {"name": "sha256", "checksum": "3e94b1e49f8579ff27fc3c016f0e9de39555096ec6b4fd9d4236a9fa76c4f7ae"}, "config": {"enabled": true, "alias": null, "schema": "int_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that provides a history of all lists the user has been associated with.", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/intermediate/int_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "int_iterable"}, "created_at": 1687556573.271379, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_int_iterable`.`int_iterable__list_user_history`", "raw_code": "-- this model will serve to extract only email-list changes\nwith user_history as (\n\n select *\n from {{ var('user_history') }}\n\n), previous_email_list_ids as (\n\n select\n *,\n lag(email_list_ids) over(partition by email order by updated_at asc) as previous_ids\n\n from user_history \n\n), only_new_email_list_ids as (\n\n select \n email,\n user_id,\n first_name,\n last_name,\n email_list_ids,\n phone_number,\n signup_date,\n signup_source,\n updated_at\n\n from previous_email_list_ids\n where email_list_ids != coalesce(previous_ids, 'this is new') -- list ids are always stored in their arrays in numerical order\n\n), most_recent_list_ids as (\n\n select \n *,\n row_number() over(partition by email order by updated_at desc) as latest_user_index\n \n from only_new_email_list_ids\n\n), final as (\n\n select \n email,\n user_id,\n first_name,\n last_name,\n email_list_ids,\n phone_number,\n signup_date,\n signup_source,\n updated_at,\n latest_user_index = 1 as is_current\n\n from most_recent_list_ids\n)\n\nselect * from final", "language": "sql", "refs": [{"name": "stg_iterable__user_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": [], "nodes": ["model.iterable_source.stg_iterable__user_history"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.int_iterable__recurring_campaigns": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__recurring_campaigns", "resource_type": "model", "package_name": "iterable", "path": "intermediate/int_iterable__recurring_campaigns.sql", "original_file_path": "models/intermediate/int_iterable__recurring_campaigns.sql", "unique_id": "model.iterable.int_iterable__recurring_campaigns", "fqn": ["iterable", "intermediate", "int_iterable__recurring_campaigns"], "alias": "int_iterable__recurring_campaigns", "checksum": {"name": "sha256", "checksum": "e74aa500d7ec1ab63d75bccff6f7091cc16d99652d4d9ea2513a2e06dd6f8a40"}, "config": {"enabled": true, "alias": null, "schema": "int_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that identifies when a campaign is associated with a recurring campaign and provides additional enriched recurring campaign information.", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/intermediate/int_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "int_iterable"}, "created_at": 1687556573.2724512, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_int_iterable`.`int_iterable__recurring_campaigns`", "raw_code": "with latest_campaign as (\n\n select * \n from {{ ref('int_iterable__latest_campaign') }}\n\n), recurring_campaign_join as (\n select\n latest_campaign.campaign_id,\n latest_campaign.campaign_name,\n latest_campaign.updated_at,\n latest_campaign.campaign_state,\n latest_campaign.campaign_type,\n latest_campaign.send_size,\n latest_campaign.start_at,\n latest_campaign.ended_at,\n latest_campaign.created_at,\n latest_campaign.created_by_user_id,\n latest_campaign.template_id,\n latest_campaign.recurring_campaign_id,\n\n recurring_campaign.campaign_name as recurring_campaign_name,\n recurring_campaign.campaign_state as recurring_campaign_state,\n recurring_campaign.send_size as recurring_campaign_send_size,\n recurring_campaign.start_at as recurring_campaign_start_at\n\n from latest_campaign\n\n left join latest_campaign as recurring_campaign\n on latest_campaign.recurring_campaign_id = recurring_campaign.campaign_id\n\n), final as (\n\n select\n recurring_campaign_join.*,\n case when latest_campaign.recurring_campaign_id is not null then true \n else false end as is_campaign_recurring\n\n from recurring_campaign_join\n left join latest_campaign on recurring_campaign_join.campaign_id = latest_campaign.recurring_campaign_id\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "int_iterable__latest_campaign", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": [], "nodes": ["model.iterable.int_iterable__latest_campaign"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__user_unsub_message_type_history": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__user_unsub_message_type_history", "resource_type": "model", "package_name": "iterable_source", "path": "stg_iterable__user_unsub_message_type_history.sql", "original_file_path": "models/stg_iterable__user_unsub_message_type_history.sql", "unique_id": "model.iterable_source.stg_iterable__user_unsub_message_type_history", "fqn": ["iterable_source", "stg_iterable__user_unsub_message_type_history"], "alias": "stg_iterable__user_unsub_message_type_history", "checksum": {"name": "sha256", "checksum": "dd1f083c091aaf65ea53c8c7679f59bb1c3a6892771e8bddd8aa35d34b45a703"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table containing the history of message types from which a user has unsubscribed. \"Unsubscribed\" is shortened to \"unsub\" for postgres compatibility.", "columns": {"message_type_id": {"name": "message_type_id", "description": "Reference to the message type from which the user unsubscribed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email": {"name": "email", "description": "Unique identifier of the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable_source://models/stg_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "stg_iterable", "enabled": true}, "created_at": 1687556573.299989, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_stg_iterable`.`stg_iterable__user_unsub_message_type_history`", "raw_code": "{{ config(enabled=var('iterable__using_user_unsubscribed_message_type_history', True)) }}\n\nwith base as (\n\n select * \n from {{ ref('stg_iterable__user_unsub_message_type_history_tmp') }}\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_iterable__user_unsub_message_type_history_tmp')),\n staging_columns=get_user_unsubscribed_message_type_history_columns()\n )\n }}\n \n from base\n),\n\nfinal as (\n \n select \n email,\n message_type_id,\n updated_at,\n _fivetran_synced\n from fields\n)\n\nselect * from final", "language": "sql", "refs": [{"name": "stg_iterable__user_unsub_message_type_history_tmp", "package": null, "version": null}, {"name": "stg_iterable__user_unsub_message_type_history_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.iterable_source.get_user_unsubscribed_message_type_history_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": ["model.iterable_source.stg_iterable__user_unsub_message_type_history_tmp", "model.iterable_source.stg_iterable__user_unsub_message_type_history_tmp"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__event_extension": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__event_extension", "resource_type": "model", "package_name": "iterable_source", "path": "stg_iterable__event_extension.sql", "original_file_path": "models/stg_iterable__event_extension.sql", "unique_id": "model.iterable_source.stg_iterable__event_extension", "fqn": ["iterable_source", "stg_iterable__event_extension"], "alias": "stg_iterable__event_extension", "checksum": {"name": "sha256", "checksum": "59817ce3436e64a80edbe368adf5f8d1debdac47193acb7ad1a1259671eab15d"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table containing addition properties from the event table.", "columns": {"event_id": {"name": "event_id", "description": "Unique identifier of the event. Generated by Fivetran", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_app_already_running": {"name": "is_app_already_running", "description": "Boolean indicating if the app is currently running or not", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "badge": {"name": "badge", "description": "Badge associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "canonical_url_id": {"name": "canonical_url_id", "description": "Reference to the url associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_content_available": {"name": "is_content_available", "description": "Content available from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "content_id": {"name": "content_id", "description": "Reference to the content associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "deeplink_android": {"name": "deeplink_android", "description": "Deeplink associated with the event from an android device", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "deeplink_ios": {"name": "deeplink_ios", "description": "Deeplink associated with the event from an ios device", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "device": {"name": "device", "description": "The device associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email_id": {"name": "email_id", "description": "Reference to the email associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email_subject": {"name": "email_subject", "description": "Subject of the email associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "experiment_id": {"name": "experiment_id", "description": "Reference to the experiment used if the event is an experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "from_phone_number_id": {"name": "from_phone_number_id", "description": "Reference to the phone number which the event is from", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "from_smssender_id": {"name": "from_smssender_id", "description": "Reference to the sms sender which the event is from", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "image_url": {"name": "image_url", "description": "Image url of the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_ghost_push": {"name": "is_ghost_push", "description": "Boolean indicating if the event is a result of a ghost push", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "link_id": {"name": "link_id", "description": "Reference to the link associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "link_url": {"name": "link_url", "description": "Url of the link associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "locale": {"name": "locale", "description": "Locale associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "payload": {"name": "payload", "description": "Payload resulted from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "platform_endpoint": {"name": "platform_endpoint", "description": "The specific platform endpoint of the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "push_message": {"name": "push_message", "description": "Boolean indicating if the event is a push message", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "region": {"name": "region", "description": "Region of the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sms_message": {"name": "sms_message", "description": "Boolean indicating if the event is an sms message", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sms_provider_response_code": {"name": "sms_provider_response_code", "description": "sms provider response code from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sms_provider_response_message": {"name": "sms_provider_response_message", "description": "sms provider response message from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sms_provider_response_more_info": {"name": "sms_provider_response_more_info", "description": "sms provider response addition info from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sms_provider_response_status": {"name": "sms_provider_response_status", "description": "Status of the sms provider response from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sound": {"name": "sound", "description": "Boolean indicating if a sound was used with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "to_phone_number": {"name": "to_phone_number", "description": "To phone number associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "url": {"name": "url", "description": "Url associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "workflow_id": {"name": "workflow_id", "description": "Reference to the workflow which the event originated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "workflow_name": {"name": "workflow_name", "description": "Name of the workflow which the event originated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable_source://models/stg_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable"}, "created_at": 1687556573.292325, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_stg_iterable`.`stg_iterable__event_extension`", "raw_code": "{{\n config( materialized='view' )\n}}\n\nwith base as (\n\n select * \n from {{ ref('stg_iterable__event_extension_tmp') }}\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_iterable__event_extension_tmp')),\n staging_columns=get_event_extension_columns()\n )\n }}\n \n from base\n),\n\nfinal as (\n select\n _fivetran_id as event_id,\n app_already_running as is_app_already_running,\n badge,\n canonical_url_id,\n content_available as is_content_available,\n content_id,\n deeplink_android,\n deeplink_ios,\n device,\n email_id,\n email_subject,\n experiment_id,\n from_phone_number_id,\n from_smssender_id,\n image_url,\n is_ghost_push,\n link_id,\n link_url,\n locale,\n payload,\n platform_endpoint,\n push_message,\n region,\n sms_message,\n sms_provider_response_code,\n sms_provider_response_message,\n sms_provider_response_more_info,\n sms_provider_response_status,\n sound,\n to_phone_number,\n url,\n workflow_id,\n workflow_name,\n _fivetran_synced\n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_iterable__event_extension_tmp", "package": null, "version": null}, {"name": "stg_iterable__event_extension_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.iterable_source.get_event_extension_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": ["model.iterable_source.stg_iterable__event_extension_tmp", "model.iterable_source.stg_iterable__event_extension_tmp"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__list": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__list", "resource_type": "model", "package_name": "iterable_source", "path": "stg_iterable__list.sql", "original_file_path": "models/stg_iterable__list.sql", "unique_id": "model.iterable_source.stg_iterable__list", "fqn": ["iterable_source", "stg_iterable__list"], "alias": "stg_iterable__list", "checksum": {"name": "sha256", "checksum": "3eab07c1791503eab83c97fc80fd872a230267615fb8be09526f9abce0f6fbc3"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table containing users and the lists the users are associated with.", "columns": {"list_id": {"name": "list_id", "description": "Unique identifier of the list", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "list_name": {"name": "list_name", "description": "User defined name of the list", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "list_type": {"name": "list_type", "description": "The list type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "Creation timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable_source://models/stg_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "stg_iterable"}, "created_at": 1687556573.293431, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_stg_iterable`.`stg_iterable__list`", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_iterable__list_tmp') }}\n where not coalesce(_fivetran_deleted, true)\n\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_iterable__list_tmp')),\n staging_columns=get_list_columns()\n )\n }}\n \n from base\n),\n\nfinal as (\n \n select \n id as list_id,\n name as list_name,\n list_type,\n created_at,\n _fivetran_synced\n from fields\n)\n\nselect * \nfrom final", "language": "sql", "refs": [{"name": "stg_iterable__list_tmp", "package": null, "version": null}, {"name": "stg_iterable__list_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.iterable_source.get_list_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": ["model.iterable_source.stg_iterable__list_tmp", "model.iterable_source.stg_iterable__list_tmp"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__campaign_suppression_list_history": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_suppression_list_history", "resource_type": "model", "package_name": "iterable_source", "path": "stg_iterable__campaign_suppression_list_history.sql", "original_file_path": "models/stg_iterable__campaign_suppression_list_history.sql", "unique_id": "model.iterable_source.stg_iterable__campaign_suppression_list_history", "fqn": ["iterable_source", "stg_iterable__campaign_suppression_list_history"], "alias": "stg_iterable__campaign_suppression_list_history", "checksum": {"name": "sha256", "checksum": "b26245c60e0878874be4fa8c33ba64558883756ac79d0972e05b8acafdc95d87"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table containing a history of suppression lists.", "columns": {"campaign_id": {"name": "campaign_id", "description": "Reference to the campaign associated with the label", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "suppressed_list_id": {"name": "suppressed_list_id", "description": "Reference to the list used", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable_source://models/stg_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "stg_iterable", "enabled": true}, "created_at": 1687556573.2820039, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_stg_iterable`.`stg_iterable__campaign_suppression_list_history`", "raw_code": "{{ config(enabled=var('iterable__using_campaign_suppression_list_history', True)) }}\n\nwith base as (\n\n select * \n from {{ ref('stg_iterable__campaign_suppression_list_history_tmp') }}\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_iterable__campaign_suppression_list_history_tmp')),\n staging_columns=get_campaign_suppression_list_history_columns()\n )\n }}\n \n from base\n),\n\nfinal as (\n \n select \n campaign_id,\n suppressed_list_id,\n updated_at,\n _fivetran_synced\n from fields\n)\n\nselect * \nfrom final", "language": "sql", "refs": [{"name": "stg_iterable__campaign_suppression_list_history_tmp", "package": null, "version": null}, {"name": "stg_iterable__campaign_suppression_list_history_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.iterable_source.get_campaign_suppression_list_history_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": ["model.iterable_source.stg_iterable__campaign_suppression_list_history_tmp", "model.iterable_source.stg_iterable__campaign_suppression_list_history_tmp"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__campaign_list_history": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_list_history", "resource_type": "model", "package_name": "iterable_source", "path": "stg_iterable__campaign_list_history.sql", "original_file_path": "models/stg_iterable__campaign_list_history.sql", "unique_id": "model.iterable_source.stg_iterable__campaign_list_history", "fqn": ["iterable_source", "stg_iterable__campaign_list_history"], "alias": "stg_iterable__campaign_list_history", "checksum": {"name": "sha256", "checksum": "20a57369f8e5b742fc3db8aef5a0226acbec06496e2c7d9c62048f7379422523"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table containing a history of lists.", "columns": {"campaign_id": {"name": "campaign_id", "description": "Reference to the campaign associated with the label", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "list_id": {"name": "list_id", "description": "Reference to the list used", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable_source://models/stg_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "stg_iterable"}, "created_at": 1687556573.281143, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_stg_iterable`.`stg_iterable__campaign_list_history`", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_iterable__campaign_list_history_tmp') }}\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_iterable__campaign_list_history_tmp')),\n staging_columns=get_campaign_list_history_columns()\n )\n }}\n \n from base\n),\n\nfinal as (\n \n select \n campaign_id,\n list_id,\n updated_at,\n _fivetran_synced\n from fields\n)\n\nselect * \nfrom final", "language": "sql", "refs": [{"name": "stg_iterable__campaign_list_history_tmp", "package": null, "version": null}, {"name": "stg_iterable__campaign_list_history_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.iterable_source.get_campaign_list_history_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": ["model.iterable_source.stg_iterable__campaign_list_history_tmp", "model.iterable_source.stg_iterable__campaign_list_history_tmp"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__user_history": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__user_history", "resource_type": "model", "package_name": "iterable_source", "path": "stg_iterable__user_history.sql", "original_file_path": "models/stg_iterable__user_history.sql", "unique_id": "model.iterable_source.stg_iterable__user_history", "fqn": ["iterable_source", "stg_iterable__user_history"], "alias": "stg_iterable__user_history", "checksum": {"name": "sha256", "checksum": "9e00d5fcf91c3422906d33a4540c19603b7911f9e3036c8d740edebb9c649fb5"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table containing individual user history information.", "columns": {"email": {"name": "email", "description": "Unique identifier of the user as well as their email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_id": {"name": "user_id", "description": "User defined identifier of the user. This is not a unique field", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "first_name": {"name": "first_name", "description": "First name of the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_name": {"name": "last_name", "description": "Last name of the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email_list_ids": {"name": "email_list_ids", "description": "Array of references to the lists associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "signup_date": {"name": "signup_date", "description": "Timestamp as epoch time in milliseconds of when the user signed up", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "signup_source": {"name": "signup_source", "description": "Source where the user signed up", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "phone_number": {"name": "phone_number", "description": "Phone number associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable_source://models/stg_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "stg_iterable"}, "created_at": 1687556573.298215, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_stg_iterable`.`stg_iterable__user_history`", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_iterable__user_history_tmp') }}\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_iterable__user_history_tmp')),\n staging_columns=get_user_history_columns()\n )\n }}\n \n from base\n),\n\nfinal as (\n \n select \n lower(email) as email,\n user_id,\n first_name,\n last_name,\n email_list_ids,\n phone_number,\n signup_date,\n signup_source,\n updated_at,\n _fivetran_synced\n from fields\n)\n\nselect * \nfrom final", "language": "sql", "refs": [{"name": "stg_iterable__user_history_tmp", "package": null, "version": null}, {"name": "stg_iterable__user_history_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.iterable_source.get_user_history_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": ["model.iterable_source.stg_iterable__user_history_tmp", "model.iterable_source.stg_iterable__user_history_tmp"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__campaign_label_history": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_label_history", "resource_type": "model", "package_name": "iterable_source", "path": "stg_iterable__campaign_label_history.sql", "original_file_path": "models/stg_iterable__campaign_label_history.sql", "unique_id": "model.iterable_source.stg_iterable__campaign_label_history", "fqn": ["iterable_source", "stg_iterable__campaign_label_history"], "alias": "stg_iterable__campaign_label_history", "checksum": {"name": "sha256", "checksum": "6d11fed62c5b00f24c4b13c246650dab16dc2ce8520e116e9dffcd0bdc589767"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table containing a history of labels.", "columns": {"campaign_id": {"name": "campaign_id", "description": "Reference to the campaign associated with the label", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "label": {"name": "label", "description": "Name of the label", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable_source://models/stg_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "stg_iterable", "enabled": true}, "created_at": 1687556573.280278, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_stg_iterable`.`stg_iterable__campaign_label_history`", "raw_code": "{{ config(enabled=var('iterable__using_campaign_label_history', True)) }}\n\nwith base as (\n\n select * \n from {{ ref('stg_iterable__campaign_label_history_tmp') }}\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_iterable__campaign_label_history_tmp')),\n staging_columns=get_campaign_label_history_columns()\n )\n }}\n \n from base\n),\n\nfinal as (\n \n select \n campaign_id,\n label,\n updated_at,\n _fivetran_synced\n from fields\n)\n\nselect * \nfrom final", "language": "sql", "refs": [{"name": "stg_iterable__campaign_label_history_tmp", "package": null, "version": null}, {"name": "stg_iterable__campaign_label_history_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.iterable_source.get_campaign_label_history_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": ["model.iterable_source.stg_iterable__campaign_label_history_tmp", "model.iterable_source.stg_iterable__campaign_label_history_tmp"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__event": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__event", "resource_type": "model", "package_name": "iterable_source", "path": "stg_iterable__event.sql", "original_file_path": "models/stg_iterable__event.sql", "unique_id": "model.iterable_source.stg_iterable__event", "fqn": ["iterable_source", "stg_iterable__event"], "alias": "stg_iterable__event", "checksum": {"name": "sha256", "checksum": "e067289423db2c6b5bd5907c5914590f54c55f84b88b56779f8526cacf0456de"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table containing individual events within campaigns.", "columns": {"event_id": {"name": "event_id", "description": "Unique id of the event generated by Fivetran", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "Reference to the campaign from which the event originated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "content_id": {"name": "content_id", "description": "Reference to the content the event is associated with", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "Creation timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email": {"name": "email", "description": "Reference to the unique user the event was applied to", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "additional_properties": {"name": "additional_properties", "description": "json object containing addition event properties", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "event_name": {"name": "event_name", "description": "Name provided to the individual event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_bus_id": {"name": "message_bus_id", "description": "Reference to the message bus associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_id": {"name": "message_id", "description": "Reference to the message the event is associated with", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_type_id": {"name": "message_type_id", "description": "Reference to the type of message the event is associated with", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_state": {"name": "recipient_state", "description": "The state of the recipient upon receiving the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "status": {"name": "status", "description": "Status of the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "transactional_data": {"name": "transactional_data", "description": "Transactional data associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unsub_source": {"name": "unsub_source", "description": "Source of the unsubscribe event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_agent": {"name": "user_agent", "description": "User agent associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_agent_device": {"name": "user_agent_device", "description": "The device of the user agent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable_source://models/stg_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable"}, "created_at": 1687556573.286245, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_stg_iterable`.`stg_iterable__event`", "raw_code": "{{ config( materialized = 'view' ) }}\n\nwith base as (\n\n select * \n from {{ ref('stg_iterable__event_tmp') }}\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_iterable__event_tmp')),\n staging_columns=get_event_columns()\n )\n }}\n \n from base\n),\n\nfinal as (\n \n select \n _fivetran_id as event_id,\n campaign_id,\n content_id,\n created_at,\n cast( {{ dbt.date_trunc('day', 'created_at') }} as date) as created_on,\n lower(email) as email,\n additional_properties,\n event_name,\n message_bus_id,\n message_id,\n message_type_id,\n recipient_state,\n status,\n transactional_data,\n unsub_source,\n user_agent,\n user_agent_device,\n _fivetran_synced\n from fields\n)\n\nselect * \nfrom final", "language": "sql", "refs": [{"name": "stg_iterable__event_tmp", "package": null, "version": null}, {"name": "stg_iterable__event_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.iterable_source.get_event_columns", "macro.fivetran_utils.fill_staging_columns", "macro.dbt.date_trunc"], "nodes": ["model.iterable_source.stg_iterable__event_tmp", "model.iterable_source.stg_iterable__event_tmp"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__user_unsubscribed_channel_history": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__user_unsubscribed_channel_history", "resource_type": "model", "package_name": "iterable_source", "path": "stg_iterable__user_unsubscribed_channel_history.sql", "original_file_path": "models/stg_iterable__user_unsubscribed_channel_history.sql", "unique_id": "model.iterable_source.stg_iterable__user_unsubscribed_channel_history", "fqn": ["iterable_source", "stg_iterable__user_unsubscribed_channel_history"], "alias": "stg_iterable__user_unsubscribed_channel_history", "checksum": {"name": "sha256", "checksum": "9de6da09c129c04712e0cd2c5f5f60390cd332a42a149ff12f62eee6e3c4630b"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table containing the history of channels from which a user has unsubscribed.", "columns": {"channel_id": {"name": "channel_id", "description": "Reference to the channel from which the user unsubscribed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email": {"name": "email", "description": "Unique identifier of the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable_source://models/stg_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "stg_iterable"}, "created_at": 1687556573.299118, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_stg_iterable`.`stg_iterable__user_unsubscribed_channel_history`", "raw_code": "with base as (\n select *\n from {{ ref('stg_iterable__user_unsubscribed_channel_history_tmp') }}\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_iterable__user_unsubscribed_channel_history_tmp')),\n staging_columns=get_user_unsubscribed_channel_history_columns()\n )\n }}\n \n from base\n),\n\nfinal as (\n \n select \n channel_id,\n email,\n updated_at,\n _fivetran_synced\n from fields\n)\n\nselect * \nfrom final", "language": "sql", "refs": [{"name": "stg_iterable__user_unsubscribed_channel_history_tmp", "package": null, "version": null}, {"name": "stg_iterable__user_unsubscribed_channel_history_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.iterable_source.get_user_unsubscribed_channel_history_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": ["model.iterable_source.stg_iterable__user_unsubscribed_channel_history_tmp", "model.iterable_source.stg_iterable__user_unsubscribed_channel_history_tmp"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__template_history": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__template_history", "resource_type": "model", "package_name": "iterable_source", "path": "stg_iterable__template_history.sql", "original_file_path": "models/stg_iterable__template_history.sql", "unique_id": "model.iterable_source.stg_iterable__template_history", "fqn": ["iterable_source", "stg_iterable__template_history"], "alias": "stg_iterable__template_history", "checksum": {"name": "sha256", "checksum": "12bf0ab232197e22a37f8dd9338202e614f9121904e1d863a2d8cad9774d186e"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table containing unique templates used across campaigns.", "columns": {"template_id": {"name": "template_id", "description": "Unique identifer of the template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "template_name": {"name": "template_name", "description": "User defined name of the template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "template_type": {"name": "template_type", "description": "The type of the template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "Creation timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "client_template_id": {"name": "client_template_id", "description": "Reference to the client template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "creator_user_id": {"name": "creator_user_id", "description": "Reference to the user who created the template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_type_id": {"name": "message_type_id", "description": "Reference to the message type associated with the template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable_source://models/stg_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "stg_iterable"}, "created_at": 1687556573.29618, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_stg_iterable`.`stg_iterable__template_history`", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_iterable__template_history_tmp') }}\n\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_iterable__template_history_tmp')),\n staging_columns=get_template_history_columns()\n )\n }}\n \n from base\n),\n\nfinal as (\n \n select \n id as template_id,\n name as template_name,\n template_type,\n created_at,\n client_template_id,\n creator_user_id,\n message_type_id,\n updated_at,\n _fivetran_synced\n from fields\n)\n\nselect * \nfrom final", "language": "sql", "refs": [{"name": "stg_iterable__template_history_tmp", "package": null, "version": null}, {"name": "stg_iterable__template_history_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.iterable_source.get_template_history_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": ["model.iterable_source.stg_iterable__template_history_tmp", "model.iterable_source.stg_iterable__template_history_tmp"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__channel": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__channel", "resource_type": "model", "package_name": "iterable_source", "path": "stg_iterable__channel.sql", "original_file_path": "models/stg_iterable__channel.sql", "unique_id": "model.iterable_source.stg_iterable__channel", "fqn": ["iterable_source", "stg_iterable__channel"], "alias": "stg_iterable__channel", "checksum": {"name": "sha256", "checksum": "1053da5bc8d71d897e14858bbe412ffda90715aecd2a69d04d81afefca7bdd01"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table containing unique channels.", "columns": {"channel_id": {"name": "channel_id", "description": "Unique identifier of the channel", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "channel_name": {"name": "channel_name", "description": "User defined name of the channel", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "channel_type": {"name": "channel_type", "description": "The channel type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_medium": {"name": "message_medium", "description": "The message medium associated with the channel", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable_source://models/stg_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "stg_iterable"}, "created_at": 1687556573.283041, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_stg_iterable`.`stg_iterable__channel`", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_iterable__channel_tmp') }}\n where not coalesce(_fivetran_deleted, false)\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_iterable__channel_tmp')),\n staging_columns=get_channel_columns()\n )\n }}\n \n from base\n),\n\nfinal as (\n \n select \n id as channel_id, \n name as channel_name,\n channel_type,\n message_medium,\n _fivetran_synced\n \n from fields\n)\n\nselect * \nfrom final", "language": "sql", "refs": [{"name": "stg_iterable__channel_tmp", "package": null, "version": null}, {"name": "stg_iterable__channel_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.iterable_source.get_channel_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": ["model.iterable_source.stg_iterable__channel_tmp", "model.iterable_source.stg_iterable__channel_tmp"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__campaign_history": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_history", "resource_type": "model", "package_name": "iterable_source", "path": "stg_iterable__campaign_history.sql", "original_file_path": "models/stg_iterable__campaign_history.sql", "unique_id": "model.iterable_source.stg_iterable__campaign_history", "fqn": ["iterable_source", "stg_iterable__campaign_history"], "alias": "stg_iterable__campaign_history", "checksum": {"name": "sha256", "checksum": "7422ec697a075451761011fa2463c050e190c39766846c1da298407417a53e2b"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table containing a history of campaigns.", "columns": {"campaign_id": {"name": "campaign_id", "description": "Unique identifier of the campaign record", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "campaign_name": {"name": "campaign_name", "description": "User defined name of the campaign.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "campaign_state": {"name": "campaign_state", "description": "State of the campaign. Can be Draft, Ready, Scheduled, Running, Finished, Starting, Aborted or Recurring", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "type": {"name": "type", "description": "The campaign type. Can be Blast or Triggered", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "send_size": {"name": "send_size", "description": "Size of the campaign. Number of individuals included in the campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "start_at": {"name": "start_at", "description": "Start timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "ended_at": {"name": "ended_at", "description": "Ended timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "Creation timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recurring_campaign_id": {"name": "recurring_campaign_id", "description": "Reference to the recurring campaign, if applicable", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_by_user_id": {"name": "created_by_user_id", "description": "Reference to the user who created the campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "template_id": {"name": "template_id", "description": "Reference to the campaign template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable_source://models/stg_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "stg_iterable"}, "created_at": 1687556573.279317, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_stg_iterable`.`stg_iterable__campaign_history`", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_iterable__campaign_history_tmp') }}\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_iterable__campaign_history_tmp')),\n staging_columns=get_campaign_history_columns()\n )\n }}\n \n from base\n),\n\nfinal as (\n \n select \n id as campaign_id,\n updated_at,\n name as campaign_name,\n campaign_state,\n type as campaign_type,\n send_size,\n start_at,\n ended_at,\n created_at,\n recurring_campaign_id,\n created_by_user_id,\n template_id,\n workflow_id,\n _fivetran_synced\n\n from fields\n)\n\nselect * \nfrom final", "language": "sql", "refs": [{"name": "stg_iterable__campaign_history_tmp", "package": null, "version": null}, {"name": "stg_iterable__campaign_history_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.iterable_source.get_campaign_history_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": ["model.iterable_source.stg_iterable__campaign_history_tmp", "model.iterable_source.stg_iterable__campaign_history_tmp"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__message_type": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__message_type", "resource_type": "model", "package_name": "iterable_source", "path": "stg_iterable__message_type.sql", "original_file_path": "models/stg_iterable__message_type.sql", "unique_id": "model.iterable_source.stg_iterable__message_type", "fqn": ["iterable_source", "stg_iterable__message_type"], "alias": "stg_iterable__message_type", "checksum": {"name": "sha256", "checksum": "39e49a10bdc33327588264335a5eb77b8251039f75148bb6f9ad1382c91ad274"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table containing unique message types.", "columns": {"message_type_id": {"name": "message_type_id", "description": "Unique identifer of the message type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_type_name": {"name": "message_type_name", "description": "User defined name of the message type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "channel_id": {"name": "channel_id", "description": "Channel that this message type belongs to", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable_source://models/stg_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "stg_iterable"}, "created_at": 1687556573.2943301, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_stg_iterable`.`stg_iterable__message_type`", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_iterable__message_type_tmp') }}\n where not coalesce(_fivetran_deleted, false)\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_iterable__message_type_tmp')),\n staging_columns=get_message_type_columns()\n )\n }}\n \n from base\n),\n\nfinal as (\n \n select \n id as message_type_id,\n name as message_type_name,\n channel_id,\n _fivetran_synced\n from fields\n)\n\nselect * \nfrom final", "language": "sql", "refs": [{"name": "stg_iterable__message_type_tmp", "package": null, "version": null}, {"name": "stg_iterable__message_type_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.iterable_source.get_message_type_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": ["model.iterable_source.stg_iterable__message_type_tmp", "model.iterable_source.stg_iterable__message_type_tmp"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__campaign_history_tmp": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_history_tmp", "resource_type": "model", "package_name": "iterable_source", "path": "tmp/stg_iterable__campaign_history_tmp.sql", "original_file_path": "models/tmp/stg_iterable__campaign_history_tmp.sql", "unique_id": "model.iterable_source.stg_iterable__campaign_history_tmp", "fqn": ["iterable_source", "tmp", "stg_iterable__campaign_history_tmp"], "alias": "stg_iterable__campaign_history_tmp", "checksum": {"name": "sha256", "checksum": "bb282de99b1ae9fa6a15f3eb0b34af502256cd91fcb75ea82a3a9e056b88c41d"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable"}, "created_at": 1687556573.0638669, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_stg_iterable`.`stg_iterable__campaign_history_tmp`", "raw_code": "select * \nfrom {{ var('campaign_history') }}", "language": "sql", "refs": [], "sources": [["iterable", "campaign_history"]], "metrics": [], "depends_on": {"macros": [], "nodes": ["source.iterable_source.iterable.campaign_history"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__list_tmp": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__list_tmp", "resource_type": "model", "package_name": "iterable_source", "path": "tmp/stg_iterable__list_tmp.sql", "original_file_path": "models/tmp/stg_iterable__list_tmp.sql", "unique_id": "model.iterable_source.stg_iterable__list_tmp", "fqn": ["iterable_source", "tmp", "stg_iterable__list_tmp"], "alias": "stg_iterable__list_tmp", "checksum": {"name": "sha256", "checksum": "95a022b0a2a9952f8accd09104d65a377006ce43624ce801ad19a862342e1a40"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable"}, "created_at": 1687556573.068767, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_stg_iterable`.`stg_iterable__list_tmp`", "raw_code": "select *\nfrom {{ var('list') }}", "language": "sql", "refs": [], "sources": [["iterable", "list"]], "metrics": [], "depends_on": {"macros": [], "nodes": ["source.iterable_source.iterable.list"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__campaign_suppression_list_history_tmp": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_suppression_list_history_tmp", "resource_type": "model", "package_name": "iterable_source", "path": "tmp/stg_iterable__campaign_suppression_list_history_tmp.sql", "original_file_path": "models/tmp/stg_iterable__campaign_suppression_list_history_tmp.sql", "unique_id": "model.iterable_source.stg_iterable__campaign_suppression_list_history_tmp", "fqn": ["iterable_source", "tmp", "stg_iterable__campaign_suppression_list_history_tmp"], "alias": "stg_iterable__campaign_suppression_list_history_tmp", "checksum": {"name": "sha256", "checksum": "37cb068fdbbe8edec7c153113909064e74bfa24bf15c7018d9838f0e43726d0c"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable", "enabled": true}, "created_at": 1687556573.074754, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_stg_iterable`.`stg_iterable__campaign_suppression_list_history_tmp`", "raw_code": "{{ config(enabled=var('iterable__using_campaign_suppression_list_history', True)) }}\n\nselect *\nfrom {{ var('campaign_suppression_list_history') }}", "language": "sql", "refs": [], "sources": [["iterable", "campaign_suppression_list_history"]], "metrics": [], "depends_on": {"macros": [], "nodes": ["source.iterable_source.iterable.campaign_suppression_list_history"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__template_history_tmp": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__template_history_tmp", "resource_type": "model", "package_name": "iterable_source", "path": "tmp/stg_iterable__template_history_tmp.sql", "original_file_path": "models/tmp/stg_iterable__template_history_tmp.sql", "unique_id": "model.iterable_source.stg_iterable__template_history_tmp", "fqn": ["iterable_source", "tmp", "stg_iterable__template_history_tmp"], "alias": "stg_iterable__template_history_tmp", "checksum": {"name": "sha256", "checksum": "d1e566c6334325cd48d85f8375986a9f55f0e51f17669475c1666c1ab89d1dc3"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable"}, "created_at": 1687556573.080655, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_stg_iterable`.`stg_iterable__template_history_tmp`", "raw_code": "select *\nfrom {{ var('template_history') }}", "language": "sql", "refs": [], "sources": [["iterable", "template_history"]], "metrics": [], "depends_on": {"macros": [], "nodes": ["source.iterable_source.iterable.template_history"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__campaign_list_history_tmp": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_list_history_tmp", "resource_type": "model", "package_name": "iterable_source", "path": "tmp/stg_iterable__campaign_list_history_tmp.sql", "original_file_path": "models/tmp/stg_iterable__campaign_list_history_tmp.sql", "unique_id": "model.iterable_source.stg_iterable__campaign_list_history_tmp", "fqn": ["iterable_source", "tmp", "stg_iterable__campaign_list_history_tmp"], "alias": "stg_iterable__campaign_list_history_tmp", "checksum": {"name": "sha256", "checksum": "4e82db7dd5777da80046052b6432a53b38bf1db40480ed344da0a19ad4004045"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable"}, "created_at": 1687556573.085442, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_stg_iterable`.`stg_iterable__campaign_list_history_tmp`", "raw_code": "select *\nfrom {{ var('campaign_list_history') }}", "language": "sql", "refs": [], "sources": [["iterable", "campaign_list_history"]], "metrics": [], "depends_on": {"macros": [], "nodes": ["source.iterable_source.iterable.campaign_list_history"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__channel_tmp": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__channel_tmp", "resource_type": "model", "package_name": "iterable_source", "path": "tmp/stg_iterable__channel_tmp.sql", "original_file_path": "models/tmp/stg_iterable__channel_tmp.sql", "unique_id": "model.iterable_source.stg_iterable__channel_tmp", "fqn": ["iterable_source", "tmp", "stg_iterable__channel_tmp"], "alias": "stg_iterable__channel_tmp", "checksum": {"name": "sha256", "checksum": "310586f3e5676006e7bff72a94d157fcef31260b5013768d7775515929f33fb2"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable"}, "created_at": 1687556573.090395, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_stg_iterable`.`stg_iterable__channel_tmp`", "raw_code": "select *\nfrom {{ var('channel') }}", "language": "sql", "refs": [], "sources": [["iterable", "channel"]], "metrics": [], "depends_on": {"macros": [], "nodes": ["source.iterable_source.iterable.channel"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__event_tmp": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__event_tmp", "resource_type": "model", "package_name": "iterable_source", "path": "tmp/stg_iterable__event_tmp.sql", "original_file_path": "models/tmp/stg_iterable__event_tmp.sql", "unique_id": "model.iterable_source.stg_iterable__event_tmp", "fqn": ["iterable_source", "tmp", "stg_iterable__event_tmp"], "alias": "stg_iterable__event_tmp", "checksum": {"name": "sha256", "checksum": "6ad43717502fb55c95be8a00eb132a0002a9b0021ce33fe301345069b44e9bb5"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable"}, "created_at": 1687556573.095018, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_stg_iterable`.`stg_iterable__event_tmp`", "raw_code": "select * \nfrom {{ var('event') }}", "language": "sql", "refs": [], "sources": [["iterable", "event"]], "metrics": [], "depends_on": {"macros": [], "nodes": ["source.iterable_source.iterable.event"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__user_unsubscribed_channel_history_tmp": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__user_unsubscribed_channel_history_tmp", "resource_type": "model", "package_name": "iterable_source", "path": "tmp/stg_iterable__user_unsubscribed_channel_history_tmp.sql", "original_file_path": "models/tmp/stg_iterable__user_unsubscribed_channel_history_tmp.sql", "unique_id": "model.iterable_source.stg_iterable__user_unsubscribed_channel_history_tmp", "fqn": ["iterable_source", "tmp", "stg_iterable__user_unsubscribed_channel_history_tmp"], "alias": "stg_iterable__user_unsubscribed_channel_history_tmp", "checksum": {"name": "sha256", "checksum": "334ad9a49cd15cf5a1848f41622cd1db20c510157fbec13dfe16d18af0ba7b45"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable"}, "created_at": 1687556573.0995939, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_stg_iterable`.`stg_iterable__user_unsubscribed_channel_history_tmp`", "raw_code": "select *\nfrom {{ var('user_unsubscribed_channel_history') }}", "language": "sql", "refs": [], "sources": [["iterable", "user_unsubscribed_channel_history"]], "metrics": [], "depends_on": {"macros": [], "nodes": ["source.iterable_source.iterable.user_unsubscribed_channel_history"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__user_unsub_message_type_history_tmp": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__user_unsub_message_type_history_tmp", "resource_type": "model", "package_name": "iterable_source", "path": "tmp/stg_iterable__user_unsub_message_type_history_tmp.sql", "original_file_path": "models/tmp/stg_iterable__user_unsub_message_type_history_tmp.sql", "unique_id": "model.iterable_source.stg_iterable__user_unsub_message_type_history_tmp", "fqn": ["iterable_source", "tmp", "stg_iterable__user_unsub_message_type_history_tmp"], "alias": "stg_iterable__user_unsub_message_type_history_tmp", "checksum": {"name": "sha256", "checksum": "02cafc5d720f202a67fe2583752304fd9ef8156f78b8e11b4b38ed2173ca601f"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable", "enabled": true}, "created_at": 1687556573.148213, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_stg_iterable`.`stg_iterable__user_unsub_message_type_history_tmp`", "raw_code": "{{ config(enabled=var('iterable__using_user_unsubscribed_message_type_history', True)) }}\n\nselect * \nfrom {{ var('user_unsubscribed_message_type_history') }}\n-- had to rename this to be compatible with postgres....", "language": "sql", "refs": [], "sources": [["iterable", "user_unsubscribed_message_type_history"]], "metrics": [], "depends_on": {"macros": [], "nodes": ["source.iterable_source.iterable.user_unsubscribed_message_type_history"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__event_extension_tmp": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__event_extension_tmp", "resource_type": "model", "package_name": "iterable_source", "path": "tmp/stg_iterable__event_extension_tmp.sql", "original_file_path": "models/tmp/stg_iterable__event_extension_tmp.sql", "unique_id": "model.iterable_source.stg_iterable__event_extension_tmp", "fqn": ["iterable_source", "tmp", "stg_iterable__event_extension_tmp"], "alias": "stg_iterable__event_extension_tmp", "checksum": {"name": "sha256", "checksum": "1265f2807dba4556722c0b5ab9a5950665913aafc1e545dade856ddfbbbc6016"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable"}, "created_at": 1687556573.153506, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_stg_iterable`.`stg_iterable__event_extension_tmp`", "raw_code": "select * \nfrom {{ var('event_extension') }}", "language": "sql", "refs": [], "sources": [["iterable", "event_extension"]], "metrics": [], "depends_on": {"macros": [], "nodes": ["source.iterable_source.iterable.event_extension"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__campaign_label_history_tmp": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_label_history_tmp", "resource_type": "model", "package_name": "iterable_source", "path": "tmp/stg_iterable__campaign_label_history_tmp.sql", "original_file_path": "models/tmp/stg_iterable__campaign_label_history_tmp.sql", "unique_id": "model.iterable_source.stg_iterable__campaign_label_history_tmp", "fqn": ["iterable_source", "tmp", "stg_iterable__campaign_label_history_tmp"], "alias": "stg_iterable__campaign_label_history_tmp", "checksum": {"name": "sha256", "checksum": "98880bf131f348167891de3ff5b7203ebf154f2b2113b1153524bcec63f6a278"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable", "enabled": true}, "created_at": 1687556573.158324, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_stg_iterable`.`stg_iterable__campaign_label_history_tmp`", "raw_code": "{{ config(enabled=var('iterable__using_campaign_label_history', True)) }}\n\nselect *\nfrom {{ var('campaign_label_history') }}", "language": "sql", "refs": [], "sources": [["iterable", "campaign_label_history"]], "metrics": [], "depends_on": {"macros": [], "nodes": ["source.iterable_source.iterable.campaign_label_history"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__user_history_tmp": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__user_history_tmp", "resource_type": "model", "package_name": "iterable_source", "path": "tmp/stg_iterable__user_history_tmp.sql", "original_file_path": "models/tmp/stg_iterable__user_history_tmp.sql", "unique_id": "model.iterable_source.stg_iterable__user_history_tmp", "fqn": ["iterable_source", "tmp", "stg_iterable__user_history_tmp"], "alias": "stg_iterable__user_history_tmp", "checksum": {"name": "sha256", "checksum": "9baf9df0022d95316b7767c47e2188e1c11d1d67e820430689cbfe651211ba49"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable"}, "created_at": 1687556573.1633039, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_stg_iterable`.`stg_iterable__user_history_tmp`", "raw_code": "select * \nfrom {{ var('user_history') }}", "language": "sql", "refs": [], "sources": [["iterable", "user_history"]], "metrics": [], "depends_on": {"macros": [], "nodes": ["source.iterable_source.iterable.user_history"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__message_type_tmp": {"database": "hive_metastore", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__message_type_tmp", "resource_type": "model", "package_name": "iterable_source", "path": "tmp/stg_iterable__message_type_tmp.sql", "original_file_path": "models/tmp/stg_iterable__message_type_tmp.sql", "unique_id": "model.iterable_source.stg_iterable__message_type_tmp", "fqn": ["iterable_source", "tmp", "stg_iterable__message_type_tmp"], "alias": "stg_iterable__message_type_tmp", "checksum": {"name": "sha256", "checksum": "78c2e59be0171cfb3676085cb4e9bb485e579b97e2d2859520d533488fed4acb"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable"}, "created_at": 1687556573.167488, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_stg_iterable`.`stg_iterable__message_type_tmp`", "raw_code": "select *\nfrom {{ var('message_type') }}", "language": "sql", "refs": [], "sources": [["iterable", "message_type"]], "metrics": [], "depends_on": {"macros": [], "nodes": ["source.iterable_source.iterable.message_type"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "test.iterable.not_null_iterable__campaigns_campaign_id.03c9448919": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "campaign_id", "model": "{{ get_where_subquery(ref('iterable__campaigns')) }}"}, "namespace": null}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_iterable__campaigns_campaign_id", "resource_type": "test", "package_name": "iterable", "path": "not_null_iterable__campaigns_campaign_id.sql", "original_file_path": "models/iterable.yml", "unique_id": "test.iterable.not_null_iterable__campaigns_campaign_id.03c9448919", "fqn": ["iterable", "not_null_iterable__campaigns_campaign_id"], "alias": "not_null_iterable__campaigns_campaign_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1687556573.239375, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "iterable__campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.iterable.iterable__campaigns"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": "campaign_id", "file_key_name": "models.iterable__campaigns", "attached_node": "model.iterable.iterable__campaigns"}, "test.iterable.dbt_utils_unique_combination_of_columns_iterable__campaigns_campaign_id__experiment_id.be21d4243f": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["campaign_id", "experiment_id"], "model": "{{ get_where_subquery(ref('iterable__campaigns')) }}"}, "namespace": "dbt_utils"}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_iterable__campaigns_campaign_id__experiment_id", "resource_type": "test", "package_name": "iterable", "path": "dbt_utils_unique_combination_o_a69a99bf843115cbe2afcb5886237041.sql", "original_file_path": "models/iterable.yml", "unique_id": "test.iterable.dbt_utils_unique_combination_of_columns_iterable__campaigns_campaign_id__experiment_id.be21d4243f", "fqn": ["iterable", "dbt_utils_unique_combination_of_columns_iterable__campaigns_campaign_id__experiment_id"], "alias": "dbt_utils_unique_combination_o_a69a99bf843115cbe2afcb5886237041", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_a69a99bf843115cbe2afcb5886237041", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_a69a99bf843115cbe2afcb5886237041"}, "created_at": 1687556573.24123, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_a69a99bf843115cbe2afcb5886237041\") }}", "language": "sql", "refs": [{"name": "iterable__campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable.iterable__campaigns"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.iterable__campaigns", "attached_node": "model.iterable.iterable__campaigns"}, "test.iterable.unique_iterable__events_event_id.93e30d3c2c": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('iterable__events')) }}"}, "namespace": null}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "unique_iterable__events_event_id", "resource_type": "test", "package_name": "iterable", "path": "unique_iterable__events_event_id.sql", "original_file_path": "models/iterable.yml", "unique_id": "test.iterable.unique_iterable__events_event_id.93e30d3c2c", "fqn": ["iterable", "unique_iterable__events_event_id"], "alias": "unique_iterable__events_event_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1687556573.24982, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "iterable__events", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_unique"], "nodes": ["model.iterable.iterable__events"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.iterable__events", "attached_node": "model.iterable.iterable__events"}, "test.iterable.not_null_iterable__events_event_id.ed1d28a650": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('iterable__events')) }}"}, "namespace": null}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_iterable__events_event_id", "resource_type": "test", "package_name": "iterable", "path": "not_null_iterable__events_event_id.sql", "original_file_path": "models/iterable.yml", "unique_id": "test.iterable.not_null_iterable__events_event_id.ed1d28a650", "fqn": ["iterable", "not_null_iterable__events_event_id"], "alias": "not_null_iterable__events_event_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1687556573.251352, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "iterable__events", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.iterable.iterable__events"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.iterable__events", "attached_node": "model.iterable.iterable__events"}, "test.iterable.dbt_utils_unique_combination_of_columns_iterable__list_user_history_user_email__list_id__user_updated_at.3d3daf3864": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["user_email", "list_id", "user_updated_at"], "model": "{{ get_where_subquery(ref('iterable__list_user_history')) }}"}, "namespace": "dbt_utils"}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_iterable__list_user_history_user_email__list_id__user_updated_at", "resource_type": "test", "package_name": "iterable", "path": "dbt_utils_unique_combination_o_ab92bcc4ef27f7d64d2de97fdef39bbd.sql", "original_file_path": "models/iterable.yml", "unique_id": "test.iterable.dbt_utils_unique_combination_of_columns_iterable__list_user_history_user_email__list_id__user_updated_at.3d3daf3864", "fqn": ["iterable", "dbt_utils_unique_combination_of_columns_iterable__list_user_history_user_email__list_id__user_updated_at"], "alias": "dbt_utils_unique_combination_o_ab92bcc4ef27f7d64d2de97fdef39bbd", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_ab92bcc4ef27f7d64d2de97fdef39bbd", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_ab92bcc4ef27f7d64d2de97fdef39bbd"}, "created_at": 1687556573.2531111, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_ab92bcc4ef27f7d64d2de97fdef39bbd\") }}", "language": "sql", "refs": [{"name": "iterable__list_user_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable.iterable__list_user_history"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.iterable__list_user_history", "attached_node": "model.iterable.iterable__list_user_history"}, "test.iterable.not_null_iterable__user_campaign_user_email.e040b968fa": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "user_email", "model": "{{ get_where_subquery(ref('iterable__user_campaign')) }}"}, "namespace": null}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_iterable__user_campaign_user_email", "resource_type": "test", "package_name": "iterable", "path": "not_null_iterable__user_campaign_user_email.sql", "original_file_path": "models/iterable.yml", "unique_id": "test.iterable.not_null_iterable__user_campaign_user_email.e040b968fa", "fqn": ["iterable", "not_null_iterable__user_campaign_user_email"], "alias": "not_null_iterable__user_campaign_user_email", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1687556573.257108, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "iterable__user_campaign", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.iterable.iterable__user_campaign"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": "user_email", "file_key_name": "models.iterable__user_campaign", "attached_node": "model.iterable.iterable__user_campaign"}, "test.iterable.dbt_utils_unique_combination_of_columns_iterable__user_campaign_user_email__campaign_id__experiment_id.e8e117b7aa": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["user_email", "campaign_id", "experiment_id"], "model": "{{ get_where_subquery(ref('iterable__user_campaign')) }}"}, "namespace": "dbt_utils"}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_iterable__user_campaign_user_email__campaign_id__experiment_id", "resource_type": "test", "package_name": "iterable", "path": "dbt_utils_unique_combination_o_bc6e8d53089f3f7f49fefc8ad95453d8.sql", "original_file_path": "models/iterable.yml", "unique_id": "test.iterable.dbt_utils_unique_combination_of_columns_iterable__user_campaign_user_email__campaign_id__experiment_id.e8e117b7aa", "fqn": ["iterable", "dbt_utils_unique_combination_of_columns_iterable__user_campaign_user_email__campaign_id__experiment_id"], "alias": "dbt_utils_unique_combination_o_bc6e8d53089f3f7f49fefc8ad95453d8", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_bc6e8d53089f3f7f49fefc8ad95453d8", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_bc6e8d53089f3f7f49fefc8ad95453d8"}, "created_at": 1687556573.258753, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_bc6e8d53089f3f7f49fefc8ad95453d8\") }}", "language": "sql", "refs": [{"name": "iterable__user_campaign", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable.iterable__user_campaign"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.iterable__user_campaign", "attached_node": "model.iterable.iterable__user_campaign"}, "test.iterable.dbt_utils_unique_combination_of_columns_iterable__user_unsubscriptions_email__message_type_id__is_unsubscribed_channel_wide.08cf764cb7": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["email", "message_type_id", "is_unsubscribed_channel_wide"], "model": "{{ get_where_subquery(ref('iterable__user_unsubscriptions')) }}"}, "namespace": "dbt_utils"}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_iterable__user_unsubscriptions_email__message_type_id__is_unsubscribed_channel_wide", "resource_type": "test", "package_name": "iterable", "path": "dbt_utils_unique_combination_o_6e778368f021e025c54f760d15c94542.sql", "original_file_path": "models/iterable.yml", "unique_id": "test.iterable.dbt_utils_unique_combination_of_columns_iterable__user_unsubscriptions_email__message_type_id__is_unsubscribed_channel_wide.08cf764cb7", "fqn": ["iterable", "dbt_utils_unique_combination_of_columns_iterable__user_unsubscriptions_email__message_type_id__is_unsubscribed_channel_wide"], "alias": "dbt_utils_unique_combination_o_6e778368f021e025c54f760d15c94542", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_6e778368f021e025c54f760d15c94542", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_6e778368f021e025c54f760d15c94542"}, "created_at": 1687556573.262752, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_6e778368f021e025c54f760d15c94542\") }}", "language": "sql", "refs": [{"name": "iterable__user_unsubscriptions", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable.iterable__user_unsubscriptions"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.iterable__user_unsubscriptions", "attached_node": "model.iterable.iterable__user_unsubscriptions"}, "test.iterable.unique_iterable__users_email.5917fa5069": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "email", "model": "{{ get_where_subquery(ref('iterable__users')) }}"}, "namespace": null}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "unique_iterable__users_email", "resource_type": "test", "package_name": "iterable", "path": "unique_iterable__users_email.sql", "original_file_path": "models/iterable.yml", "unique_id": "test.iterable.unique_iterable__users_email.5917fa5069", "fqn": ["iterable", "unique_iterable__users_email"], "alias": "unique_iterable__users_email", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1687556573.266677, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "iterable__users", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_unique"], "nodes": ["model.iterable.iterable__users"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": "email", "file_key_name": "models.iterable__users", "attached_node": "model.iterable.iterable__users"}, "test.iterable.not_null_iterable__users_email.ffe9c8a4c4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "email", "model": "{{ get_where_subquery(ref('iterable__users')) }}"}, "namespace": null}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_iterable__users_email", "resource_type": "test", "package_name": "iterable", "path": "not_null_iterable__users_email.sql", "original_file_path": "models/iterable.yml", "unique_id": "test.iterable.not_null_iterable__users_email.ffe9c8a4c4", "fqn": ["iterable", "not_null_iterable__users_email"], "alias": "not_null_iterable__users_email", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1687556573.268188, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "iterable__users", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.iterable.iterable__users"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": "email", "file_key_name": "models.iterable__users", "attached_node": "model.iterable.iterable__users"}, "test.iterable_source.not_null_stg_iterable__campaign_history_campaign_id.b7c36e4525": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "campaign_id", "model": "{{ get_where_subquery(ref('stg_iterable__campaign_history')) }}"}, "namespace": null}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_stg_iterable__campaign_history_campaign_id", "resource_type": "test", "package_name": "iterable_source", "path": "not_null_stg_iterable__campaign_history_campaign_id.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.not_null_stg_iterable__campaign_history_campaign_id.b7c36e4525", "fqn": ["iterable_source", "not_null_stg_iterable__campaign_history_campaign_id"], "alias": "not_null_stg_iterable__campaign_history_campaign_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1687556573.3024151, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_iterable__campaign_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.iterable_source.stg_iterable__campaign_history"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": "campaign_id", "file_key_name": "models.stg_iterable__campaign_history", "attached_node": "model.iterable_source.stg_iterable__campaign_history"}, "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__campaign_history_campaign_id__updated_at.81e1a1b9b5": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["campaign_id", "updated_at"], "model": "{{ get_where_subquery(ref('stg_iterable__campaign_history')) }}"}, "namespace": "dbt_utils"}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_iterable__campaign_history_campaign_id__updated_at", "resource_type": "test", "package_name": "iterable_source", "path": "dbt_utils_unique_combination_o_291a386e6835dbc855f54cbe574e4abc.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__campaign_history_campaign_id__updated_at.81e1a1b9b5", "fqn": ["iterable_source", "dbt_utils_unique_combination_of_columns_stg_iterable__campaign_history_campaign_id__updated_at"], "alias": "dbt_utils_unique_combination_o_291a386e6835dbc855f54cbe574e4abc", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_291a386e6835dbc855f54cbe574e4abc", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_291a386e6835dbc855f54cbe574e4abc"}, "created_at": 1687556573.3041122, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_291a386e6835dbc855f54cbe574e4abc\") }}", "language": "sql", "refs": [{"name": "stg_iterable__campaign_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable_source.stg_iterable__campaign_history"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.stg_iterable__campaign_history", "attached_node": "model.iterable_source.stg_iterable__campaign_history"}, "test.iterable_source.not_null_stg_iterable__campaign_label_history_campaign_id.1918cef89a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "campaign_id", "model": "{{ get_where_subquery(ref('stg_iterable__campaign_label_history')) }}"}, "namespace": null}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_stg_iterable__campaign_label_history_campaign_id", "resource_type": "test", "package_name": "iterable_source", "path": "not_null_stg_iterable__campaign_label_history_campaign_id.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.not_null_stg_iterable__campaign_label_history_campaign_id.1918cef89a", "fqn": ["iterable_source", "not_null_stg_iterable__campaign_label_history_campaign_id"], "alias": "not_null_stg_iterable__campaign_label_history_campaign_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1687556573.3078651, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_iterable__campaign_label_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.iterable_source.stg_iterable__campaign_label_history"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": "campaign_id", "file_key_name": "models.stg_iterable__campaign_label_history", "attached_node": "model.iterable_source.stg_iterable__campaign_label_history"}, "test.iterable_source.not_null_stg_iterable__campaign_list_history_campaign_id.208f9bf9ed": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "campaign_id", "model": "{{ get_where_subquery(ref('stg_iterable__campaign_list_history')) }}"}, "namespace": null}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_stg_iterable__campaign_list_history_campaign_id", "resource_type": "test", "package_name": "iterable_source", "path": "not_null_stg_iterable__campaign_list_history_campaign_id.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.not_null_stg_iterable__campaign_list_history_campaign_id.208f9bf9ed", "fqn": ["iterable_source", "not_null_stg_iterable__campaign_list_history_campaign_id"], "alias": "not_null_stg_iterable__campaign_list_history_campaign_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1687556573.309412, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_iterable__campaign_list_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.iterable_source.stg_iterable__campaign_list_history"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": "campaign_id", "file_key_name": "models.stg_iterable__campaign_list_history", "attached_node": "model.iterable_source.stg_iterable__campaign_list_history"}, "test.iterable_source.not_null_stg_iterable__campaign_suppression_list_history_campaign_id.3921289710": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "campaign_id", "model": "{{ get_where_subquery(ref('stg_iterable__campaign_suppression_list_history')) }}"}, "namespace": null}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_stg_iterable__campaign_suppression_list_history_campaign_id", "resource_type": "test", "package_name": "iterable_source", "path": "not_null_stg_iterable__campaig_3ce753a10225cac67c8a1434b5541997.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.not_null_stg_iterable__campaign_suppression_list_history_campaign_id.3921289710", "fqn": ["iterable_source", "not_null_stg_iterable__campaign_suppression_list_history_campaign_id"], "alias": "not_null_stg_iterable__campaig_3ce753a10225cac67c8a1434b5541997", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_stg_iterable__campaig_3ce753a10225cac67c8a1434b5541997", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_stg_iterable__campaig_3ce753a10225cac67c8a1434b5541997"}, "created_at": 1687556573.311114, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_stg_iterable__campaig_3ce753a10225cac67c8a1434b5541997\") }}", "language": "sql", "refs": [{"name": "stg_iterable__campaign_suppression_list_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.iterable_source.stg_iterable__campaign_suppression_list_history"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": "campaign_id", "file_key_name": "models.stg_iterable__campaign_suppression_list_history", "attached_node": "model.iterable_source.stg_iterable__campaign_suppression_list_history"}, "test.iterable_source.unique_stg_iterable__channel_channel_id.fc1eec7fbc": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "channel_id", "model": "{{ get_where_subquery(ref('stg_iterable__channel')) }}"}, "namespace": null}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "unique_stg_iterable__channel_channel_id", "resource_type": "test", "package_name": "iterable_source", "path": "unique_stg_iterable__channel_channel_id.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.unique_stg_iterable__channel_channel_id.fc1eec7fbc", "fqn": ["iterable_source", "unique_stg_iterable__channel_channel_id"], "alias": "unique_stg_iterable__channel_channel_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1687556573.312622, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_iterable__channel", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_unique"], "nodes": ["model.iterable_source.stg_iterable__channel"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": "channel_id", "file_key_name": "models.stg_iterable__channel", "attached_node": "model.iterable_source.stg_iterable__channel"}, "test.iterable_source.not_null_stg_iterable__channel_channel_id.182ceb9636": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "channel_id", "model": "{{ get_where_subquery(ref('stg_iterable__channel')) }}"}, "namespace": null}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_stg_iterable__channel_channel_id", "resource_type": "test", "package_name": "iterable_source", "path": "not_null_stg_iterable__channel_channel_id.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.not_null_stg_iterable__channel_channel_id.182ceb9636", "fqn": ["iterable_source", "not_null_stg_iterable__channel_channel_id"], "alias": "not_null_stg_iterable__channel_channel_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1687556573.314128, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_iterable__channel", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.iterable_source.stg_iterable__channel"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": "channel_id", "file_key_name": "models.stg_iterable__channel", "attached_node": "model.iterable_source.stg_iterable__channel"}, "test.iterable_source.unique_stg_iterable__event_event_id.ddb8510fc1": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('stg_iterable__event')) }}"}, "namespace": null}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "unique_stg_iterable__event_event_id", "resource_type": "test", "package_name": "iterable_source", "path": "unique_stg_iterable__event_event_id.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.unique_stg_iterable__event_event_id.ddb8510fc1", "fqn": ["iterable_source", "unique_stg_iterable__event_event_id"], "alias": "unique_stg_iterable__event_event_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1687556573.316103, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_iterable__event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_unique"], "nodes": ["model.iterable_source.stg_iterable__event"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.stg_iterable__event", "attached_node": "model.iterable_source.stg_iterable__event"}, "test.iterable_source.not_null_stg_iterable__event_event_id.370cd4bc9d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('stg_iterable__event')) }}"}, "namespace": null}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_stg_iterable__event_event_id", "resource_type": "test", "package_name": "iterable_source", "path": "not_null_stg_iterable__event_event_id.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.not_null_stg_iterable__event_event_id.370cd4bc9d", "fqn": ["iterable_source", "not_null_stg_iterable__event_event_id"], "alias": "not_null_stg_iterable__event_event_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1687556573.3177118, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_iterable__event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.iterable_source.stg_iterable__event"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.stg_iterable__event", "attached_node": "model.iterable_source.stg_iterable__event"}, "test.iterable_source.unique_stg_iterable__event_extension_event_id.4553cb5979": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('stg_iterable__event_extension')) }}"}, "namespace": null}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "unique_stg_iterable__event_extension_event_id", "resource_type": "test", "package_name": "iterable_source", "path": "unique_stg_iterable__event_extension_event_id.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.unique_stg_iterable__event_extension_event_id.4553cb5979", "fqn": ["iterable_source", "unique_stg_iterable__event_extension_event_id"], "alias": "unique_stg_iterable__event_extension_event_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1687556573.319277, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_iterable__event_extension", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_unique"], "nodes": ["model.iterable_source.stg_iterable__event_extension"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.stg_iterable__event_extension", "attached_node": "model.iterable_source.stg_iterable__event_extension"}, "test.iterable_source.not_null_stg_iterable__event_extension_event_id.144dedcd30": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('stg_iterable__event_extension')) }}"}, "namespace": null}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_stg_iterable__event_extension_event_id", "resource_type": "test", "package_name": "iterable_source", "path": "not_null_stg_iterable__event_extension_event_id.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.not_null_stg_iterable__event_extension_event_id.144dedcd30", "fqn": ["iterable_source", "not_null_stg_iterable__event_extension_event_id"], "alias": "not_null_stg_iterable__event_extension_event_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1687556573.320833, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_iterable__event_extension", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.iterable_source.stg_iterable__event_extension"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.stg_iterable__event_extension", "attached_node": "model.iterable_source.stg_iterable__event_extension"}, "test.iterable_source.unique_stg_iterable__list_list_id.1e73c3def7": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "list_id", "model": "{{ get_where_subquery(ref('stg_iterable__list')) }}"}, "namespace": null}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "unique_stg_iterable__list_list_id", "resource_type": "test", "package_name": "iterable_source", "path": "unique_stg_iterable__list_list_id.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.unique_stg_iterable__list_list_id.1e73c3def7", "fqn": ["iterable_source", "unique_stg_iterable__list_list_id"], "alias": "unique_stg_iterable__list_list_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1687556573.322588, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_iterable__list", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_unique"], "nodes": ["model.iterable_source.stg_iterable__list"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": "list_id", "file_key_name": "models.stg_iterable__list", "attached_node": "model.iterable_source.stg_iterable__list"}, "test.iterable_source.not_null_stg_iterable__list_list_id.47029d839a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "list_id", "model": "{{ get_where_subquery(ref('stg_iterable__list')) }}"}, "namespace": null}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_stg_iterable__list_list_id", "resource_type": "test", "package_name": "iterable_source", "path": "not_null_stg_iterable__list_list_id.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.not_null_stg_iterable__list_list_id.47029d839a", "fqn": ["iterable_source", "not_null_stg_iterable__list_list_id"], "alias": "not_null_stg_iterable__list_list_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1687556573.324112, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_iterable__list", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.iterable_source.stg_iterable__list"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": "list_id", "file_key_name": "models.stg_iterable__list", "attached_node": "model.iterable_source.stg_iterable__list"}, "test.iterable_source.unique_stg_iterable__message_type_message_type_id.0f75f83a34": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "message_type_id", "model": "{{ get_where_subquery(ref('stg_iterable__message_type')) }}"}, "namespace": null}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "unique_stg_iterable__message_type_message_type_id", "resource_type": "test", "package_name": "iterable_source", "path": "unique_stg_iterable__message_type_message_type_id.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.unique_stg_iterable__message_type_message_type_id.0f75f83a34", "fqn": ["iterable_source", "unique_stg_iterable__message_type_message_type_id"], "alias": "unique_stg_iterable__message_type_message_type_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1687556573.325664, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_iterable__message_type", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_unique"], "nodes": ["model.iterable_source.stg_iterable__message_type"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": "message_type_id", "file_key_name": "models.stg_iterable__message_type", "attached_node": "model.iterable_source.stg_iterable__message_type"}, "test.iterable_source.not_null_stg_iterable__message_type_message_type_id.75eaa6fa62": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "message_type_id", "model": "{{ get_where_subquery(ref('stg_iterable__message_type')) }}"}, "namespace": null}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_stg_iterable__message_type_message_type_id", "resource_type": "test", "package_name": "iterable_source", "path": "not_null_stg_iterable__message_type_message_type_id.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.not_null_stg_iterable__message_type_message_type_id.75eaa6fa62", "fqn": ["iterable_source", "not_null_stg_iterable__message_type_message_type_id"], "alias": "not_null_stg_iterable__message_type_message_type_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1687556573.327382, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_iterable__message_type", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.iterable_source.stg_iterable__message_type"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": "message_type_id", "file_key_name": "models.stg_iterable__message_type", "attached_node": "model.iterable_source.stg_iterable__message_type"}, "test.iterable_source.not_null_stg_iterable__template_history_template_id.14b24a1dfe": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "template_id", "model": "{{ get_where_subquery(ref('stg_iterable__template_history')) }}"}, "namespace": null}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_stg_iterable__template_history_template_id", "resource_type": "test", "package_name": "iterable_source", "path": "not_null_stg_iterable__template_history_template_id.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.not_null_stg_iterable__template_history_template_id.14b24a1dfe", "fqn": ["iterable_source", "not_null_stg_iterable__template_history_template_id"], "alias": "not_null_stg_iterable__template_history_template_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1687556573.328973, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_iterable__template_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.iterable_source.stg_iterable__template_history"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": "template_id", "file_key_name": "models.stg_iterable__template_history", "attached_node": "model.iterable_source.stg_iterable__template_history"}, "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__template_history_template_id__updated_at.e0b90faa8d": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["template_id", "updated_at"], "model": "{{ get_where_subquery(ref('stg_iterable__template_history')) }}"}, "namespace": "dbt_utils"}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_iterable__template_history_template_id__updated_at", "resource_type": "test", "package_name": "iterable_source", "path": "dbt_utils_unique_combination_o_99dd1e1cb3e7ff0badf3d0de717a98ce.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__template_history_template_id__updated_at.e0b90faa8d", "fqn": ["iterable_source", "dbt_utils_unique_combination_of_columns_stg_iterable__template_history_template_id__updated_at"], "alias": "dbt_utils_unique_combination_o_99dd1e1cb3e7ff0badf3d0de717a98ce", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_99dd1e1cb3e7ff0badf3d0de717a98ce", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_99dd1e1cb3e7ff0badf3d0de717a98ce"}, "created_at": 1687556573.3305259, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_99dd1e1cb3e7ff0badf3d0de717a98ce\") }}", "language": "sql", "refs": [{"name": "stg_iterable__template_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable_source.stg_iterable__template_history"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.stg_iterable__template_history", "attached_node": "model.iterable_source.stg_iterable__template_history"}, "test.iterable_source.not_null_stg_iterable__user_history_email.14ff93a17c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "email", "model": "{{ get_where_subquery(ref('stg_iterable__user_history')) }}"}, "namespace": null}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_stg_iterable__user_history_email", "resource_type": "test", "package_name": "iterable_source", "path": "not_null_stg_iterable__user_history_email.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.not_null_stg_iterable__user_history_email.14ff93a17c", "fqn": ["iterable_source", "not_null_stg_iterable__user_history_email"], "alias": "not_null_stg_iterable__user_history_email", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1687556573.334393, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_iterable__user_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.iterable_source.stg_iterable__user_history"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": "email", "file_key_name": "models.stg_iterable__user_history", "attached_node": "model.iterable_source.stg_iterable__user_history"}, "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__user_history_email__updated_at.cb12f59c15": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["email", "updated_at"], "model": "{{ get_where_subquery(ref('stg_iterable__user_history')) }}"}, "namespace": "dbt_utils"}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_iterable__user_history_email__updated_at", "resource_type": "test", "package_name": "iterable_source", "path": "dbt_utils_unique_combination_o_9b39bbb5083d5d1d6ae8f94f3a6e073b.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__user_history_email__updated_at.cb12f59c15", "fqn": ["iterable_source", "dbt_utils_unique_combination_of_columns_stg_iterable__user_history_email__updated_at"], "alias": "dbt_utils_unique_combination_o_9b39bbb5083d5d1d6ae8f94f3a6e073b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_9b39bbb5083d5d1d6ae8f94f3a6e073b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_9b39bbb5083d5d1d6ae8f94f3a6e073b"}, "created_at": 1687556573.335962, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_9b39bbb5083d5d1d6ae8f94f3a6e073b\") }}", "language": "sql", "refs": [{"name": "stg_iterable__user_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable_source.stg_iterable__user_history"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.stg_iterable__user_history", "attached_node": "model.iterable_source.stg_iterable__user_history"}, "test.iterable_source.not_null_stg_iterable__user_unsubscribed_channel_history_channel_id.b4667878b9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "channel_id", "model": "{{ get_where_subquery(ref('stg_iterable__user_unsubscribed_channel_history')) }}"}, "namespace": null}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_stg_iterable__user_unsubscribed_channel_history_channel_id", "resource_type": "test", "package_name": "iterable_source", "path": "not_null_stg_iterable__user_un_19677928d89aeed4fd3fa200e21ce879.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.not_null_stg_iterable__user_unsubscribed_channel_history_channel_id.b4667878b9", "fqn": ["iterable_source", "not_null_stg_iterable__user_unsubscribed_channel_history_channel_id"], "alias": "not_null_stg_iterable__user_un_19677928d89aeed4fd3fa200e21ce879", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_stg_iterable__user_un_19677928d89aeed4fd3fa200e21ce879", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_stg_iterable__user_un_19677928d89aeed4fd3fa200e21ce879"}, "created_at": 1687556573.339744, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_stg_iterable__user_un_19677928d89aeed4fd3fa200e21ce879\") }}", "language": "sql", "refs": [{"name": "stg_iterable__user_unsubscribed_channel_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.iterable_source.stg_iterable__user_unsubscribed_channel_history"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": "channel_id", "file_key_name": "models.stg_iterable__user_unsubscribed_channel_history", "attached_node": "model.iterable_source.stg_iterable__user_unsubscribed_channel_history"}, "test.iterable_source.not_null_stg_iterable__user_unsub_message_type_history_message_type_id.948c8b7127": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "message_type_id", "model": "{{ get_where_subquery(ref('stg_iterable__user_unsub_message_type_history')) }}"}, "namespace": null}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_stg_iterable__user_unsub_message_type_history_message_type_id", "resource_type": "test", "package_name": "iterable_source", "path": "not_null_stg_iterable__user_un_f732ee711ea960e00499ed50cf222090.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.not_null_stg_iterable__user_unsub_message_type_history_message_type_id.948c8b7127", "fqn": ["iterable_source", "not_null_stg_iterable__user_unsub_message_type_history_message_type_id"], "alias": "not_null_stg_iterable__user_un_f732ee711ea960e00499ed50cf222090", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_stg_iterable__user_un_f732ee711ea960e00499ed50cf222090", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_stg_iterable__user_un_f732ee711ea960e00499ed50cf222090"}, "created_at": 1687556573.341299, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_stg_iterable__user_un_f732ee711ea960e00499ed50cf222090\") }}", "language": "sql", "refs": [{"name": "stg_iterable__user_unsub_message_type_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.iterable_source.stg_iterable__user_unsub_message_type_history"]}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": "message_type_id", "file_key_name": "models.stg_iterable__user_unsub_message_type_history", "attached_node": "model.iterable_source.stg_iterable__user_unsub_message_type_history"}, "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__user_device_history_email__updated_at__index.9c0dac7320": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["email", "updated_at", "index"], "model": "{{ get_where_subquery(ref('stg_iterable__user_device_history')) }}"}, "namespace": "dbt_utils"}, "database": "hive_metastore", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_iterable__user_device_history_email__updated_at__index", "resource_type": "test", "package_name": "iterable_source", "path": "dbt_utils_unique_combination_o_454ac6ab9d7f92f7eb89416e2065a84e.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__user_device_history_email__updated_at__index.9c0dac7320", "fqn": ["iterable_source", "dbt_utils_unique_combination_of_columns_stg_iterable__user_device_history_email__updated_at__index"], "alias": "dbt_utils_unique_combination_o_454ac6ab9d7f92f7eb89416e2065a84e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": false, "alias": "dbt_utils_unique_combination_o_454ac6ab9d7f92f7eb89416e2065a84e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_454ac6ab9d7f92f7eb89416e2065a84e"}, "created_at": 1687556573.3429902, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_454ac6ab9d7f92f7eb89416e2065a84e\") }}", "language": "sql", "refs": [{"name": "stg_iterable__user_device_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": []}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.stg_iterable__user_device_history", "attached_node": "model.iterable_source.stg_iterable__user_device_history"}}, "sources": {"source.iterable_source.iterable.campaign_history": {"database": "hive_metastore", "schema": "iterable_integration_tests_03", "name": "campaign_history", "resource_type": "source", "package_name": "iterable_source", "path": "models/src_iterable.yml", "original_file_path": "models/src_iterable.yml", "unique_id": "source.iterable_source.iterable.campaign_history", "fqn": ["iterable_source", "iterable", "campaign_history"], "source_name": "iterable", "source_description": "", "loader": "fivetran", "identifier": "campaign_history_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": "_fivetran_synced", "freshness": {"warn_after": {"count": 72, "period": "hour"}, "error_after": {"count": 168, "period": "hour"}, "filter": null}, "external": null, "description": "Table containing a history of campaigns.", "columns": {"id": {"name": "id", "description": "Unique identifier of the campaign record", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update's timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "name": {"name": "name", "description": "User defined name of the campaign.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "campaign_state": {"name": "campaign_state", "description": "State of the campaign. Can be Draft, Ready, Scheduled, Running, Finished, Starting, Aborted or Recurring", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "type": {"name": "type", "description": "The campaign type. Can be Blast or Triggered", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "send_size": {"name": "send_size", "description": "Size of the campaign. Number of individuals included in the campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "start_at": {"name": "start_at", "description": "Start timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "ended_at": {"name": "ended_at", "description": "Ended timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "Creation timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recurring_campaign_id": {"name": "recurring_campaign_id", "description": "Reference to the recurring campaign, if applicable", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_by_user_id": {"name": "created_by_user_id", "description": "Reference to the user who created the campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "template_id": {"name": "template_id", "description": "Reference to the campaign template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "`hive_metastore`.`iterable_integration_tests_03`.`campaign_history_data`", "created_at": 1687556573.383544}, "source.iterable_source.iterable.campaign_label_history": {"database": "hive_metastore", "schema": "iterable_integration_tests_03", "name": "campaign_label_history", "resource_type": "source", "package_name": "iterable_source", "path": "models/src_iterable.yml", "original_file_path": "models/src_iterable.yml", "unique_id": "source.iterable_source.iterable.campaign_label_history", "fqn": ["iterable_source", "iterable", "campaign_label_history"], "source_name": "iterable", "source_description": "", "loader": "fivetran", "identifier": "campaign_label_history_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": "_fivetran_synced", "freshness": {"warn_after": {"count": 72, "period": "hour"}, "error_after": {"count": 168, "period": "hour"}, "filter": null}, "external": null, "description": "Table containing a history of labels.", "columns": {"campaign_id": {"name": "campaign_id", "description": "Reference to the campaign associated with the label", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "label": {"name": "label", "description": "Name of the label", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {"is_enabled": true}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "`hive_metastore`.`iterable_integration_tests_03`.`campaign_label_history_data`", "created_at": 1687556573.3837068}, "source.iterable_source.iterable.campaign_list_history": {"database": "hive_metastore", "schema": "iterable_integration_tests_03", "name": "campaign_list_history", "resource_type": "source", "package_name": "iterable_source", "path": "models/src_iterable.yml", "original_file_path": "models/src_iterable.yml", "unique_id": "source.iterable_source.iterable.campaign_list_history", "fqn": ["iterable_source", "iterable", "campaign_list_history"], "source_name": "iterable", "source_description": "", "loader": "fivetran", "identifier": "campaign_list_history_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": "_fivetran_synced", "freshness": {"warn_after": {"count": 72, "period": "hour"}, "error_after": {"count": 168, "period": "hour"}, "filter": null}, "external": null, "description": "Table containing a history of lists.", "columns": {"campaign_id": {"name": "campaign_id", "description": "Reference to the campaign associated with the label", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "list_id": {"name": "list_id", "description": "Reference to the list used", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "`hive_metastore`.`iterable_integration_tests_03`.`campaign_list_history_data`", "created_at": 1687556573.3838358}, "source.iterable_source.iterable.campaign_suppression_list_history": {"database": "hive_metastore", "schema": "iterable_integration_tests_03", "name": "campaign_suppression_list_history", "resource_type": "source", "package_name": "iterable_source", "path": "models/src_iterable.yml", "original_file_path": "models/src_iterable.yml", "unique_id": "source.iterable_source.iterable.campaign_suppression_list_history", "fqn": ["iterable_source", "iterable", "campaign_suppression_list_history"], "source_name": "iterable", "source_description": "", "loader": "fivetran", "identifier": "campaign_suppression_list_history_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": "_fivetran_synced", "freshness": {"warn_after": {"count": 72, "period": "hour"}, "error_after": {"count": 168, "period": "hour"}, "filter": null}, "external": null, "description": "Table containing a history of suppression lists.\n", "columns": {"campaign_id": {"name": "campaign_id", "description": "Reference to the campaign associated with the label", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "suppressed_list_id": {"name": "suppressed_list_id", "description": "Reference to the list used", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "`hive_metastore`.`iterable_integration_tests_03`.`campaign_suppression_list_history_data`", "created_at": 1687556573.3839622}, "source.iterable_source.iterable.channel": {"database": "hive_metastore", "schema": "iterable_integration_tests_03", "name": "channel", "resource_type": "source", "package_name": "iterable_source", "path": "models/src_iterable.yml", "original_file_path": "models/src_iterable.yml", "unique_id": "source.iterable_source.iterable.channel", "fqn": ["iterable_source", "iterable", "channel"], "source_name": "iterable", "source_description": "", "loader": "fivetran", "identifier": "channel_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": "_fivetran_synced", "freshness": {"warn_after": {"count": 72, "period": "hour"}, "error_after": {"count": 168, "period": "hour"}, "filter": null}, "external": null, "description": "Table containing unique channels.", "columns": {"id": {"name": "id", "description": "Unique identifier of the channel", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "name": {"name": "name", "description": "User defined name of the channel", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "channel_type": {"name": "channel_type", "description": "The channel type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_medium": {"name": "message_medium", "description": "The message medium associated with the channel", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "`hive_metastore`.`iterable_integration_tests_03`.`channel_data`", "created_at": 1687556573.384088}, "source.iterable_source.iterable.event": {"database": "hive_metastore", "schema": "iterable_integration_tests_03", "name": "event", "resource_type": "source", "package_name": "iterable_source", "path": "models/src_iterable.yml", "original_file_path": "models/src_iterable.yml", "unique_id": "source.iterable_source.iterable.event", "fqn": ["iterable_source", "iterable", "event"], "source_name": "iterable", "source_description": "", "loader": "fivetran", "identifier": "event_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": "_fivetran_synced", "freshness": {"warn_after": {"count": 72, "period": "hour"}, "error_after": {"count": 168, "period": "hour"}, "filter": null}, "external": null, "description": "Table containing individual events within campaigns.", "columns": {"_fivetran_id": {"name": "_fivetran_id", "description": "Unique id of the event generated by Fivetran", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "Reference to the campaign from which the event originated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "content_id": {"name": "content_id", "description": "Reference to the content the event is associated with.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "Creation timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email": {"name": "email", "description": "Reference to the unique user the event was applied to", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "additional_properties": {"name": "additional_properties", "description": "json object containing addition event properties", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "event_name": {"name": "event_name", "description": "Name provided to the individual event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_bus_id": {"name": "message_bus_id", "description": "Reference to the message bus associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_id": {"name": "message_id", "description": "Reference to the message the event is associated with", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_type_id": {"name": "message_type_id", "description": "Reference to the type of message the event is associated with", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_state": {"name": "recipient_state", "description": "The state of the recipient upon receiving the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "status": {"name": "status", "description": "Status of the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "transactional_data": {"name": "transactional_data", "description": "Transactional data associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unsub_source": {"name": "unsub_source", "description": "Source of the unsubscribe event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_agent": {"name": "user_agent", "description": "User agent associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_agent_device": {"name": "user_agent_device", "description": "The device of the user agent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "`hive_metastore`.`iterable_integration_tests_03`.`event_data`", "created_at": 1687556573.384235}, "source.iterable_source.iterable.event_extension": {"database": "hive_metastore", "schema": "iterable_integration_tests_03", "name": "event_extension", "resource_type": "source", "package_name": "iterable_source", "path": "models/src_iterable.yml", "original_file_path": "models/src_iterable.yml", "unique_id": "source.iterable_source.iterable.event_extension", "fqn": ["iterable_source", "iterable", "event_extension"], "source_name": "iterable", "source_description": "", "loader": "fivetran", "identifier": "event_extension_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": "_fivetran_synced", "freshness": {"warn_after": {"count": 72, "period": "hour"}, "error_after": {"count": 168, "period": "hour"}, "filter": null}, "external": null, "description": "Table containing additional properties from the event table.", "columns": {"_fivetran_id": {"name": "_fivetran_id", "description": "Unique identifier of the event. Generated by Fivetran", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "app_already_running": {"name": "app_already_running", "description": "Boolean indicating if the app is currently running or not", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "badge": {"name": "badge", "description": "Badge associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "canonical_url_id": {"name": "canonical_url_id", "description": "Reference to the url associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "content_available": {"name": "content_available", "description": "Content available from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "content_id": {"name": "content_id", "description": "Reference to the content associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "deeplink_android": {"name": "deeplink_android", "description": "Deeplink associated with the event from an android device", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "deeplink_ios": {"name": "deeplink_ios", "description": "Deeplink associated with the event from an ios device", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "device": {"name": "device", "description": "The device associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email_id": {"name": "email_id", "description": "Reference to the email associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email_subject": {"name": "email_subject", "description": "Subject of the email associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "experiment_id": {"name": "experiment_id", "description": "Reference to the experiment used if the event is an experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "from_phone_number_id": {"name": "from_phone_number_id", "description": "Reference to the phone number which the event is from", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "from_smssender_id": {"name": "from_smssender_id", "description": "Reference to the sms sender which the event is from", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "image_url": {"name": "image_url", "description": "Image url of the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_ghost_push": {"name": "is_ghost_push", "description": "Boolean indicating if the event is a result of a ghost push", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "link_id": {"name": "link_id", "description": "Reference to the link associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "link_url": {"name": "link_url", "description": "Url of the link associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "locale": {"name": "locale", "description": "Locale associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "payload": {"name": "payload", "description": "Payload resulted from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "platform_endpoint": {"name": "platform_endpoint", "description": "The specific platform endpoint of the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "push_message": {"name": "push_message", "description": "Boolean indicating if the event is a push message", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "region": {"name": "region", "description": "Region of the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sms_message": {"name": "sms_message", "description": "Boolean indicating if the event is an sms message", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sms_provider_response_code": {"name": "sms_provider_response_code", "description": "sms provider response code from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sms_provider_response_message": {"name": "sms_provider_response_message", "description": "sms provider response message from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sms_provider_response_more_info": {"name": "sms_provider_response_more_info", "description": "sms provider response addition info from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sms_provider_response_status": {"name": "sms_provider_response_status", "description": "Status of the sms provider response from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sound": {"name": "sound", "description": "Boolean indicating if a sound was used with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "to_phone_number": {"name": "to_phone_number", "description": "To phone number associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "url": {"name": "url", "description": "Url associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "workflow_id": {"name": "workflow_id", "description": "Reference to the workflow which the event originated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "workflow_name": {"name": "workflow_name", "description": "Name of the workflow which the event originated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "`hive_metastore`.`iterable_integration_tests_03`.`event_extension_data`", "created_at": 1687556573.3844612}, "source.iterable_source.iterable.list": {"database": "hive_metastore", "schema": "iterable_integration_tests_03", "name": "list", "resource_type": "source", "package_name": "iterable_source", "path": "models/src_iterable.yml", "original_file_path": "models/src_iterable.yml", "unique_id": "source.iterable_source.iterable.list", "fqn": ["iterable_source", "iterable", "list"], "source_name": "iterable", "source_description": "", "loader": "fivetran", "identifier": "list_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": "_fivetran_synced", "freshness": {"warn_after": {"count": 72, "period": "hour"}, "error_after": {"count": 168, "period": "hour"}, "filter": null}, "external": null, "description": "Table containing users and the lists the users are associated with.", "columns": {"id": {"name": "id", "description": "Unique identifier of the list", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "name": {"name": "name", "description": "User defined name of the list", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "list_type": {"name": "list_type", "description": "The list type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "Creation timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "`hive_metastore`.`iterable_integration_tests_03`.`list_data`", "created_at": 1687556573.384578}, "source.iterable_source.iterable.message_type": {"database": "hive_metastore", "schema": "iterable_integration_tests_03", "name": "message_type", "resource_type": "source", "package_name": "iterable_source", "path": "models/src_iterable.yml", "original_file_path": "models/src_iterable.yml", "unique_id": "source.iterable_source.iterable.message_type", "fqn": ["iterable_source", "iterable", "message_type"], "source_name": "iterable", "source_description": "", "loader": "fivetran", "identifier": "message_type_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": "_fivetran_synced", "freshness": {"warn_after": {"count": 72, "period": "hour"}, "error_after": {"count": 168, "period": "hour"}, "filter": null}, "external": null, "description": "Table containing unique message types.", "columns": {"id": {"name": "id", "description": "Unique identifer of the message type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "name": {"name": "name", "description": "User defined name of the message type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "channel_id": {"name": "channel_id", "description": "Channel that this message type belongs to", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "`hive_metastore`.`iterable_integration_tests_03`.`message_type_data`", "created_at": 1687556573.384696}, "source.iterable_source.iterable.template_history": {"database": "hive_metastore", "schema": "iterable_integration_tests_03", "name": "template_history", "resource_type": "source", "package_name": "iterable_source", "path": "models/src_iterable.yml", "original_file_path": "models/src_iterable.yml", "unique_id": "source.iterable_source.iterable.template_history", "fqn": ["iterable_source", "iterable", "template_history"], "source_name": "iterable", "source_description": "", "loader": "fivetran", "identifier": "template_history_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": "_fivetran_synced", "freshness": {"warn_after": {"count": 72, "period": "hour"}, "error_after": {"count": 168, "period": "hour"}, "filter": null}, "external": null, "description": "Table containing unique templates used across campaigns.", "columns": {"id": {"name": "id", "description": "Unique identifer of the template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "name": {"name": "name", "description": "User defined name of the template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "template_type": {"name": "template_type", "description": "The type of the template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "Creation timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "client_template_id": {"name": "client_template_id", "description": "Reference to the client template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "creator_user_id": {"name": "creator_user_id", "description": "Reference to the user who created the template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_type_id": {"name": "message_type_id", "description": "Reference to the message type associated with the template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "`hive_metastore`.`iterable_integration_tests_03`.`template_history_data`", "created_at": 1687556573.384821}, "source.iterable_source.iterable.user_history": {"database": "hive_metastore", "schema": "iterable_integration_tests_03", "name": "user_history", "resource_type": "source", "package_name": "iterable_source", "path": "models/src_iterable.yml", "original_file_path": "models/src_iterable.yml", "unique_id": "source.iterable_source.iterable.user_history", "fqn": ["iterable_source", "iterable", "user_history"], "source_name": "iterable", "source_description": "", "loader": "fivetran", "identifier": "user_history_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": "_fivetran_synced", "freshness": {"warn_after": {"count": 72, "period": "hour"}, "error_after": {"count": 168, "period": "hour"}, "filter": null}, "external": null, "description": "Table containing individual user history information.", "columns": {"email": {"name": "email", "description": "Unique identifier of the user as well as their email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_id": {"name": "user_id", "description": "User defined identifier of the user. This is not a unique field", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "first_name": {"name": "first_name", "description": "First name of the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_name": {"name": "last_name", "description": "Last name of the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email_list_ids": {"name": "email_list_ids", "description": "Array of references to the lists associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "signup_date": {"name": "signup_date", "description": "Timestamp as epoch time in milliseconds of when the user signed up", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "signup_source": {"name": "signup_source", "description": "Source where the user signed up", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "`hive_metastore`.`iterable_integration_tests_03`.`user_history_data`", "created_at": 1687556573.384945}, "source.iterable_source.iterable.user_device_history": {"database": "hive_metastore", "schema": "iterable_integration_tests_03", "name": "user_device_history", "resource_type": "source", "package_name": "iterable_source", "path": "models/src_iterable.yml", "original_file_path": "models/src_iterable.yml", "unique_id": "source.iterable_source.iterable.user_device_history", "fqn": ["iterable_source", "iterable", "user_device_history"], "source_name": "iterable", "source_description": "", "loader": "fivetran", "identifier": "user_device_history_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": "_fivetran_synced", "freshness": {"warn_after": {"count": 72, "period": "hour"}, "error_after": {"count": 168, "period": "hour"}, "filter": null}, "external": null, "description": "Table capturing the history of devices associated with in-app and push notifications to a user.", "columns": {"application_name": {"name": "application_name", "description": "The Iterable push integration to associate with the device token. Usually matches the package name (or bundle ID) of the relevant mobile app. \n", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email": {"name": "email", "description": "User email associated with the device.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "endpoint_enabled": {"name": "endpoint_enabled", "description": "Boolean that is true if the user has not disabled Push notifications and their endpoint remains enabled.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "identifier_for_vendor": {"name": "identifier_for_vendor", "description": "An alphanumeric string that uniquely identifies a device to the app's vendor.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "index": {"name": "index", "description": "Index representing the order in which devices were added to a user.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "platform": {"name": "platform", "description": "The device platform. Can be APNS, APNS_SANDBOX or GCM", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "platform_endpoint": {"name": "platform_endpoint", "description": "The platform's endpoint.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "token": {"name": "token", "description": "Device token registered for push notifications.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Timestamp of when this device was updated last.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {"is_enabled": false}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "`hive_metastore`.`iterable_integration_tests_03`.`user_device_history_data`", "created_at": 1687556573.385068}, "source.iterable_source.iterable.user_unsubscribed_channel_history": {"database": "hive_metastore", "schema": "iterable_integration_tests_03", "name": "user_unsubscribed_channel_history", "resource_type": "source", "package_name": "iterable_source", "path": "models/src_iterable.yml", "original_file_path": "models/src_iterable.yml", "unique_id": "source.iterable_source.iterable.user_unsubscribed_channel_history", "fqn": ["iterable_source", "iterable", "user_unsubscribed_channel_history"], "source_name": "iterable", "source_description": "", "loader": "fivetran", "identifier": "user_unsubscribed_channel_history_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": "_fivetran_synced", "freshness": {"warn_after": {"count": 72, "period": "hour"}, "error_after": {"count": 168, "period": "hour"}, "filter": null}, "external": null, "description": "Table containing the history of channels from which a user has unsubscribed.", "columns": {"channel_id": {"name": "channel_id", "description": "Reference to the channel from which the user unsubscribed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email": {"name": "email", "description": "Unique identifier of the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "`hive_metastore`.`iterable_integration_tests_03`.`user_unsubscribed_channel_history_data`", "created_at": 1687556573.385182}, "source.iterable_source.iterable.user_unsubscribed_message_type_history": {"database": "hive_metastore", "schema": "iterable_integration_tests_03", "name": "user_unsubscribed_message_type_history", "resource_type": "source", "package_name": "iterable_source", "path": "models/src_iterable.yml", "original_file_path": "models/src_iterable.yml", "unique_id": "source.iterable_source.iterable.user_unsubscribed_message_type_history", "fqn": ["iterable_source", "iterable", "user_unsubscribed_message_type_history"], "source_name": "iterable", "source_description": "", "loader": "fivetran", "identifier": "user_unsubscribed_message_type_history_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": "_fivetran_synced", "freshness": {"warn_after": {"count": 72, "period": "hour"}, "error_after": {"count": 168, "period": "hour"}, "filter": null}, "external": null, "description": "Table containing the history of message types from which a user has unsubscribed.", "columns": {"message_type_id": {"name": "message_type_id", "description": "Reference to the message type from which the user unsubscribed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email": {"name": "email", "description": "Unique identifier of the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {"is_enabled": true}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "`hive_metastore`.`iterable_integration_tests_03`.`user_unsubscribed_message_type_history_data`", "created_at": 1687556573.385299}}, "macros": {"macro.dbt_databricks.statement_with_staging_table": {"name": "statement_with_staging_table", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/statement.sql", "original_file_path": "macros/statement.sql", "unique_id": "macro.dbt_databricks.statement_with_staging_table", "macro_sql": "{% macro statement_with_staging_table(name=None, staging_table=None, fetch_result=False, auto_begin=True) -%}\n {%- if execute: -%}\n {%- set sql = caller() -%}\n\n {%- if name == 'main' -%}\n {{ log('Writing runtime SQL for node \"{}\"'.format(model['unique_id'])) }}\n {{ write(sql) }}\n {%- endif -%}\n\n {%- set res, table = adapter.execute(sql, auto_begin=auto_begin, fetch=fetch_result, staging_table=staging_table) -%}\n {%- if name is not none -%}\n {{ store_result(name, response=res, agate_table=table) }}\n {%- endif -%}\n\n {%- endif -%}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.896415, "supported_languages": null}, "macro.dbt_databricks.databricks_copy_into": {"name": "databricks_copy_into", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/copy_into.sql", "original_file_path": "macros/copy_into.sql", "unique_id": "macro.dbt_databricks.databricks_copy_into", "macro_sql": "{% macro databricks_copy_into(\n target_table,\n source,\n file_format,\n expression_list=none,\n source_credential=none,\n source_encryption=none,\n validate=none,\n files=none,\n pattern=none,\n format_options=none,\n copy_options=none) -%}\n\n {% set target_relation_exists, target_relation = get_or_create_relation(\n database=target.database,\n schema=target.schema,\n identifier=target_table,\n type='table') -%}\n\n {%- set source_clause -%}\n {%- if expression_list -%}\n ( select {{ expression_list }} from '{{ source }}' )\n {%- else -%}\n '{{ source }}'\n {%- endif -%}\n {%- if source_credential or source_encryption %}\n WITH (\n {%- if source_credential %}\n credential (\n {%- for name in source_credential -%}\n '{{ name }}' = '{{ source_credential[name] }}' {%- if not loop.last %}, {% endif -%}\n {%- endfor -%}\n )\n {%- endif %}\n {%- if source_encryption %}\n encryption (\n {%- for name in source_encryption -%}\n '{{ name }}' = '{{ source_encryption[name] }}' {%- if not loop.last %}, {% endif -%}\n {%- endfor -%}\n )\n {%- endif %}\n )\n {%- endif -%}\n {%- endset -%}\n\n {% set query %}\n copy into {{ target_relation }}\n from {{ source_clause }}\n fileformat = {{ file_format }}\n {% if validate -%} validate {{ validate }} {%- endif %}\n {% if files and pattern %}\n {{ exceptions.raise_compiler_error(\"You can only specify one of 'files' or 'pattern'\") }}\n {% endif %}\n {% if files -%}\n files = (\n {%- for file in files -%}\n '{{ file }}' {%- if not loop.last %}, {% endif -%}\n {%- endfor -%}\n )\n {%- endif %}\n {% if pattern -%}\n pattern = '{{ pattern }}'\n {%- endif %}\n {% if format_options -%}\n format_options (\n {%- for key in format_options -%}\n '{{ key }}' = '{{ format_options[key] }}' {%- if not loop.last %}, {% endif -%}\n {%- endfor -%}\n )\n {%- endif %}\n {% if copy_options -%}\n copy_options (\n {%- for key in copy_options -%}\n '{{ key }}' = '{{ copy_options[key] }}' {%- if not loop.last %}, {% endif -%}\n {%- endfor -%}\n )\n {%- endif %}\n {% endset %}\n\n {% do log(\"Running COPY INTO\" ~ adapter.redact_credentials(query), info=True) %}\n {% do run_query(query) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_or_create_relation", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.901027, "supported_languages": null}, "macro.dbt_databricks.current_catalog": {"name": "current_catalog", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/catalog.sql", "original_file_path": "macros/catalog.sql", "unique_id": "macro.dbt_databricks.current_catalog", "macro_sql": "{% macro current_catalog() -%}\n {{ return(adapter.dispatch('current_catalog', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks__current_catalog"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.9014359, "supported_languages": null}, "macro.dbt_databricks.databricks__current_catalog": {"name": "databricks__current_catalog", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/catalog.sql", "original_file_path": "macros/catalog.sql", "unique_id": "macro.dbt_databricks.databricks__current_catalog", "macro_sql": "{% macro databricks__current_catalog() -%}\n {% call statement('current_catalog', fetch_result=True) %}\n select current_catalog()\n {% endcall %}\n {% do return(load_result('current_catalog').table) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.90169, "supported_languages": null}, "macro.dbt_databricks.use_catalog": {"name": "use_catalog", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/catalog.sql", "original_file_path": "macros/catalog.sql", "unique_id": "macro.dbt_databricks.use_catalog", "macro_sql": "{% macro use_catalog(catalog) -%}\n {{ return(adapter.dispatch('use_catalog', 'dbt')(catalog)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks__use_catalog"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.901879, "supported_languages": null}, "macro.dbt_databricks.databricks__use_catalog": {"name": "databricks__use_catalog", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/catalog.sql", "original_file_path": "macros/catalog.sql", "unique_id": "macro.dbt_databricks.databricks__use_catalog", "macro_sql": "{% macro databricks__use_catalog(catalog) -%}\n {% call statement() %}\n use catalog {{ adapter.quote(catalog) }}\n {% endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.902069, "supported_languages": null}, "macro.dbt_databricks.databricks__file_format_clause": {"name": "databricks__file_format_clause", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.databricks__file_format_clause", "macro_sql": "{% macro databricks__file_format_clause() %}\n {%- set file_format = config.get('file_format', default='delta') -%}\n {%- if file_format is not none %}\n using {{ file_format }}\n {%- endif %}\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.92209, "supported_languages": null}, "macro.dbt_databricks.databricks__options_clause": {"name": "databricks__options_clause", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.databricks__options_clause", "macro_sql": "{% macro databricks__options_clause() -%}\n {%- set options = config.get('options') -%}\n {%- if config.get('file_format', default='delta') == 'hudi' -%}\n {%- set unique_key = config.get('unique_key') -%}\n {%- if unique_key is not none and options is none -%}\n {%- set options = {'primaryKey': config.get('unique_key')} -%}\n {%- elif unique_key is not none and options is not none and 'primaryKey' not in options -%}\n {%- set _ = options.update({'primaryKey': config.get('unique_key')}) -%}\n {%- elif options is not none and 'primaryKey' in options and options['primaryKey'] != unique_key -%}\n {{ exceptions.raise_compiler_error(\"unique_key and options('primaryKey') should be the same column(s).\") }}\n {%- endif %}\n {%- endif %}\n\n {%- if options is not none %}\n options (\n {%- for option in options -%}\n {{ option }} \"{{ options[option] }}\" {% if not loop.last %}, {% endif %}\n {%- endfor %}\n )\n {%- endif %}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.923351, "supported_languages": null}, "macro.dbt_databricks.tblproperties_clause": {"name": "tblproperties_clause", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.tblproperties_clause", "macro_sql": "{% macro tblproperties_clause() -%}\n {{ return(adapter.dispatch('tblproperties_clause', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_databricks.databricks__tblproperties_clause"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.9235468, "supported_languages": null}, "macro.dbt_databricks.databricks__tblproperties_clause": {"name": "databricks__tblproperties_clause", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.databricks__tblproperties_clause", "macro_sql": "{% macro databricks__tblproperties_clause() -%}\n {%- set tblproperties = config.get('tblproperties') -%}\n {%- if tblproperties is not none %}\n tblproperties (\n {%- for prop in tblproperties -%}\n '{{ prop }}' = '{{ tblproperties[prop] }}' {% if not loop.last %}, {% endif %}\n {%- endfor %}\n )\n {%- endif %}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.923959, "supported_languages": null}, "macro.dbt_databricks.databricks__create_table_as": {"name": "databricks__create_table_as", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.databricks__create_table_as", "macro_sql": "{% macro databricks__create_table_as(temporary, relation, compiled_code, language='sql') -%}\n {%- if language == 'sql' -%}\n {%- if temporary -%}\n {{ create_temporary_view(relation, compiled_code) }}\n {%- else -%}\n {% if config.get('file_format', default='delta') == 'delta' %}\n create or replace table {{ relation }}\n {% else %}\n create table {{ relation }}\n {% endif %}\n {%- set contract_config = config.get('contract') -%}\n {% if contract_config and contract_config.enforced %}\n {{ get_assert_columns_equivalent(compiled_code) }}\n {%- set compiled_code = get_select_subquery(compiled_code) %}\n {% endif %}\n {{ file_format_clause() }}\n {{ options_clause() }}\n {{ partition_cols(label=\"partitioned by\") }}\n {{ clustered_cols(label=\"clustered by\") }}\n {{ location_clause() }}\n {{ comment_clause() }}\n {{ tblproperties_clause() }}\n as\n {{ compiled_code }}\n {%- endif -%}\n {%- elif language == 'python' -%}\n {#--\n N.B. Python models _can_ write to temp views HOWEVER they use a different session\n and have already expired by the time they need to be used (I.E. in merges for incremental models)\n\n TODO: Deep dive into spark sessions to see if we can reuse a single session for an entire\n dbt invocation.\n --#}\n {{ py_write_table(compiled_code=compiled_code, target_relation=relation) }}\n {%- endif -%}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_spark.create_temporary_view", "macro.dbt.get_assert_columns_equivalent", "macro.dbt.get_select_subquery", "macro.dbt_spark.file_format_clause", "macro.dbt_spark.options_clause", "macro.dbt_spark.partition_cols", "macro.dbt_spark.clustered_cols", "macro.dbt_spark.location_clause", "macro.dbt_spark.comment_clause", "macro.dbt_databricks.tblproperties_clause", "macro.dbt_spark.py_write_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.925083, "supported_languages": null}, "macro.dbt_databricks.databricks__create_view_as": {"name": "databricks__create_view_as", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.databricks__create_view_as", "macro_sql": "{% macro databricks__create_view_as(relation, sql) -%}\n create or replace view {{ relation }}\n {{ comment_clause() }}\n {%- set contract_config = config.get('contract') -%}\n {% if contract_config and contract_config.enforced %}\n {{ get_assert_columns_equivalent(sql) }}\n {%- endif %}\n {{ tblproperties_clause() }}\n as\n {{ sql }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.comment_clause", "macro.dbt.get_assert_columns_equivalent", "macro.dbt_databricks.tblproperties_clause"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.9254668, "supported_languages": null}, "macro.dbt_databricks.databricks__alter_column_comment": {"name": "databricks__alter_column_comment", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.databricks__alter_column_comment", "macro_sql": "{% macro databricks__alter_column_comment(relation, column_dict) %}\n {% if config.get('file_format', default='delta') in ['delta', 'hudi'] %}\n {% for column_name in column_dict %}\n {% set comment = column_dict[column_name]['description'] %}\n {% set escaped_comment = comment | replace('\\'', '\\\\\\'') %}\n {% set comment_query %}\n alter table {{ relation }} change column\n {{ adapter.quote(column_name) if column_dict[column_name]['quote'] else column_name }}\n comment '{{ escaped_comment }}';\n {% endset %}\n {% do run_query(comment_query) %}\n {% endfor %}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.926247, "supported_languages": null}, "macro.dbt_databricks.persist_constraints": {"name": "persist_constraints", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.persist_constraints", "macro_sql": "{% macro persist_constraints(relation, model) %}\n {{ return(adapter.dispatch('persist_constraints', 'dbt')(relation, model)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks__persist_constraints"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.9264698, "supported_languages": null}, "macro.dbt_databricks.databricks__persist_constraints": {"name": "databricks__persist_constraints", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.databricks__persist_constraints", "macro_sql": "{% macro databricks__persist_constraints(relation, model) %}\n {%- set contract_config = config.get('contract') -%}\n {% set has_model_contract = contract_config and contract_config.enforced %}\n {% set has_databricks_constraints = config.get('persist_constraints', False) %}\n\n {% if (has_model_contract or has_databricks_constraints) %}\n {% if config.get('file_format', 'delta') != 'delta' %}\n {# Constraints are only supported for delta tables #}\n {{ exceptions.warn(\"Constraints not supported for file format: \" ~ config.get('file_format')) }}\n {% elif relation.is_view %}\n {# Constraints are not supported for views. This point in the code should not have been reached. #}\n {{ exceptions.raise_compiler_error(\"Constraints not supported for views.\") }}\n {% elif is_incremental() %}\n {# Constraints are not applied for incremental updates. This point in the code should not have been reached #}\n {{ exceptions.raise_compiler_error(\"Constraints are not applied for incremental updates. Full refresh is required to update constraints.\") }}\n {% else %}\n {% do alter_table_add_constraints(relation, model) %}\n {% do alter_column_set_constraints(relation, model) %}\n {% endif %}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.is_incremental", "macro.dbt_databricks.alter_table_add_constraints", "macro.dbt_databricks.alter_column_set_constraints"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.9274912, "supported_languages": null}, "macro.dbt_databricks.alter_table_add_constraints": {"name": "alter_table_add_constraints", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.alter_table_add_constraints", "macro_sql": "{% macro alter_table_add_constraints(relation, constraints) %}\n {{ return(adapter.dispatch('alter_table_add_constraints', 'dbt')(relation, constraints)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks__alter_table_add_constraints"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.9277172, "supported_languages": null}, "macro.dbt_databricks.databricks__alter_table_add_constraints": {"name": "databricks__alter_table_add_constraints", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.databricks__alter_table_add_constraints", "macro_sql": "{% macro databricks__alter_table_add_constraints(relation, model) %}\n {% set constraints = get_model_constraints(model) %}\n {% set statements = get_constraints_sql(relation, constraints, model) %}\n {% for stmt in statements %}\n {% call statement() %}\n {{ stmt }}\n {% endcall %}\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.get_model_constraints", "macro.dbt_databricks.get_constraints_sql", "macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.928112, "supported_languages": null}, "macro.dbt_databricks.get_model_constraints": {"name": "get_model_constraints", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.get_model_constraints", "macro_sql": "{% macro get_model_constraints(model) %}\n {% set constraints = model.get('constraints', []) %}\n {% if config.get('persist_constraints', False) and model.get('meta', {}).get('constraints') is sequence %}\n {# Databricks constraints implementation. Constraints are in the meta property. #}\n {% set db_constraints = model.get('meta', {}).get('constraints', []) %}\n {% set constraints = databricks_constraints_to_dbt(db_constraints) %}\n {% endif %}\n {{ return(constraints) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks_constraints_to_dbt"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.92873, "supported_languages": null}, "macro.dbt_databricks.get_column_constraints": {"name": "get_column_constraints", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.get_column_constraints", "macro_sql": "{% macro get_column_constraints(column) %}\n {% set constraints = column.get('constraints', []) %}\n {% if config.get('persist_constraints', False) and column.get('meta', {}).get('constraint') %}\n {# Databricks constraints implementation. Constraint is in the meta property. #}\n {% set db_constraints = [column.get('meta', {}).get('constraint')] %}\n {% set constraints = databricks_constraints_to_dbt(db_constraints, column) %}\n {% endif %}\n {{ return(constraints) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks_constraints_to_dbt"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.9293492, "supported_languages": null}, "macro.dbt_databricks.alter_column_set_constraints": {"name": "alter_column_set_constraints", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.alter_column_set_constraints", "macro_sql": "{% macro alter_column_set_constraints(relation, column_dict) %}\n {{ return(adapter.dispatch('alter_column_set_constraints', 'dbt')(relation, column_dict)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks__alter_column_set_constraints"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.92957, "supported_languages": null}, "macro.dbt_databricks.databricks__alter_column_set_constraints": {"name": "databricks__alter_column_set_constraints", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.databricks__alter_column_set_constraints", "macro_sql": "{% macro databricks__alter_column_set_constraints(relation, model) %}\n {% set column_dict = model.columns %}\n {% for column_name in column_dict %}\n {% set column = column_dict[column_name] %}\n {% set constraints = get_column_constraints(column) %}\n {% set statements = get_constraints_sql(relation, constraints, model, column) %}\n {% for stmt in statements %}\n {% call statement() %}\n {{ stmt }}\n {% endcall %}\n {% endfor %}\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.get_column_constraints", "macro.dbt_databricks.get_constraints_sql", "macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.9301472, "supported_languages": null}, "macro.dbt_databricks.get_constraints_sql": {"name": "get_constraints_sql", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.get_constraints_sql", "macro_sql": "{% macro get_constraints_sql(relation, constraints, model, column) %}\n {% set statements = [] %}\n {% for constraint in constraints %}\n {% if constraint %}\n {% set constraint_statements = get_constraint_sql(relation, constraint, model, column) %}\n {% for statement in constraint_statements %}\n {% if statement %}\n {% do statements.append(statement) %}\n {% endif %}\n {% endfor %} \n {% endif %}\n {% endfor %}\n\n {{ return(statements) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.get_constraint_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.930739, "supported_languages": null}, "macro.dbt_databricks.get_constraint_sql": {"name": "get_constraint_sql", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.get_constraint_sql", "macro_sql": "{% macro get_constraint_sql(relation, constraint, model, column={}) %}\n {% set statements = [] %}\n {% set type = constraint.get(\"type\", \"\") %}\n\n {% if type == 'check' %}\n {% set expression = constraint.get(\"expression\", \"\") %}\n {% if not expression %}\n {{ exceptions.raise_compiler_error('Invalid check constraint expression') }}\n {% endif %}\n\n {% set name = constraint.get(\"name\") %}\n {% if not name and local_md5 %}\n {{ exceptions.warn(\"Constraint of type \" ~ type ~ \" with no `name` provided. Generating hash instead.\") }}\n {%- set name = local_md5 (column.get(\"name\", \"\") ~ \";\" ~ expression ~ \";\") -%}\n {% endif %}\n {% set stmt = \"alter table \" ~ relation ~ \" add constraint \" ~ name ~ \" check (\" ~ expression ~ \");\" %}\n {% do statements.append(stmt) %}\n {% elif type == 'not_null' %}\n {% set column_names = constraint.get(\"columns\", []) %}\n {% if column and not column_names %}\n {% set column_names = [column['name']] %}\n {% endif %}\n {% for column_name in column_names %}\n {% set column = model.get('columns', {}).get(column_name) %}\n {% if column %}\n {% set quoted_name = adapter.quote(column['name']) if column['quote'] else column['name'] %}\n {% set stmt = \"alter table \" ~ relation ~ \" change column \" ~ quoted_name ~ \" set not null \" ~ (constraint.expression or \"\") ~ \";\" %}\n {% do statements.append(stmt) %}\n {% else %}\n {{ exceptions.warn('not_null constraint on invalid column: ' ~ column_name) }}\n {% endif %}\n {% endfor %}\n {% elif type == 'primary_key' %}\n {% if constraint.get('warn_unenforced') %}\n {{ exceptions.warn(\"unenforced constraint type: \" ~ type)}}\n {% endif %}\n {% set column_names = constraint.get(\"columns\", []) %}\n {% if column and not column_names %}\n {% set column_names = [column['name']] %}\n {% endif %}\n {% set quoted_names = [] %}\n {% for column_name in column_names %}\n {% set column = model.get('columns', {}).get(column_name) %}\n {% if not column %}\n {{ exceptions.warn('Invalid primary key column: ' ~ column_name) }}\n {% else %}\n {% set quoted_name = adapter.quote(column['name']) if column['quote'] else column['name'] %}\n {% do quoted_names.append(quoted_name) %}\n {% endif %}\n {% endfor %}\n\n {% set joined_names = quoted_names|join(\", \") %}\n\n {% set name = constraint.get(\"name\") %}\n {% if not name and local_md5 %}\n {{ exceptions.warn(\"Constraint of type \" ~ type ~ \" with no `name` provided. Generating hash instead.\") }}\n {%- set name = local_md5(\"primary_key;\" ~ column_names ~ \";\") -%}\n {% endif %}\n {% set stmt = \"alter table \" ~ relation ~ \" add constraint \" ~ name ~ \" primary key(\" ~ joined_names ~ \");\" %}\n {% do statements.append(stmt) %}\n {% elif type == 'foreign_key' %}\n\n {% if constraint.get('warn_unenforced') %}\n {{ exceptions.warn(\"unenforced constraint type: \" ~ constraint.type)}}\n {% endif %}\n\n {% set column_names = constraint.get(\"columns\", []) %}\n {% if column and not column_names %}\n {% set column_names = [column['name']] %}\n {% endif %}\n {% set quoted_names = [] %}\n {% for column_name in column_names %}\n {% set column = model.get('columns', {}).get(column_name) %}\n {% if not column %}\n {{ exceptions.warn('Invalid foreign key column: ' ~ column_name) }}\n {% else %}\n {% set quoted_name = adapter.quote(column['name']) if column['quote'] else column['name'] %}\n {% do quoted_names.append(quoted_name) %}\n {% endif %}\n {% endfor %}\n\n {% set joined_names = quoted_names|join(\", \") %}\n\n {% set name = constraint.get(\"name\") %}\n {% if not name and local_md5 %}\n {{ exceptions.warn(\"Constraint of type \" ~ type ~ \" with no `name` provided. Generating hash instead.\") }}\n {%- set name = local_md5(\"primary_key;\" ~ column_names ~ \";\") -%}\n {% endif %}\n\n {% set parent = constraint.get(\"parent\") %}\n {% if not parent %} \n {{ exceptions.raise_compiler_error('No parent table defined for foreign key: ' ~ expression) }}\n {% endif %}\n {% if not \".\" in parent %}\n {% set parent = relation.schema ~ \".\" ~ parent%}\n {% endif %}\n {% set stmt = \"alter table \" ~ relation ~ \" add constraint \" ~ name ~ \" foreign key(\" ~ joined_names ~ \") references \" ~ parent %}\n {% set parent_columns = constraint.get(\"parent_columns\") %}\n {% if parent_columns %}\n {% set stmt = stmt ~ \"(\" ~ parent_columns|join(\", \") ~ \")\"%}\n {% endif %}\n {% set stmt = stmt ~ \";\" %}\n {% do statements.append(stmt) %}\n {% elif constraint.get('warn_unsupported') %}\n {{ exceptions.warn(\"unsupported constraint type: \" ~ constraint.type)}}\n {% endif %}\n\n {{ return(statements) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.936733, "supported_languages": null}, "macro.dbt_databricks.databricks_constraints_to_dbt": {"name": "databricks_constraints_to_dbt", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.databricks_constraints_to_dbt", "macro_sql": "{% macro databricks_constraints_to_dbt(constraints, column) %}\n {# convert constraints defined using the original databricks format #}\n {% set dbt_constraints = [] %}\n {% for constraint in constraints %}\n {% if constraint.get and constraint.get(\"type\") %}\n {# already in model contract format #}\n {% do dbt_constraints.append(constraint) %}\n {% else %}\n {% if column %}\n {% if constraint == \"not_null\" %}\n {% do dbt_constraints.append({\"type\": \"not_null\", \"columns\": [column.get(\"name\")]}) %}\n {% else %}\n {{ exceptions.raise_compiler_error('Invalid constraint for column ' ~ column.get(\"name\", \"\") ~ '. Only `not_null` is supported.') }}\n {% endif %}\n {% else %}\n {% set name = constraint['name'] %}\n {% if not name %}\n {{ exceptions.raise_compiler_error('Invalid check constraint name') }}\n {% endif %}\n {% set condition = constraint['condition'] %}\n {% if not condition %}\n {{ exceptions.raise_compiler_error('Invalid check constraint condition') }}\n {% endif %}\n {% do dbt_constraints.append({\"name\": name, \"type\": \"check\", \"expression\": condition}) %}\n {% endif %}\n {% endif %}\n {% endfor %}\n\n {{ return(dbt_constraints) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.938168, "supported_languages": null}, "macro.dbt_databricks.optimize": {"name": "optimize", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.optimize", "macro_sql": "{% macro optimize(relation) %}\n {{ return(adapter.dispatch('optimize', 'dbt')(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks__optimize"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.9383838, "supported_languages": null}, "macro.dbt_databricks.databricks__optimize": {"name": "databricks__optimize", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.databricks__optimize", "macro_sql": "{% macro databricks__optimize(relation) %}\n {% if config.get('zorder', False) and config.get('file_format', 'delta') == 'delta' %}\n {% if var('DATABRICKS_SKIP_OPTIMIZE', 'false')|lower != 'true' and var('databricks_skip_optimize', 'false')|lower != 'true' %}\n {% call statement('run_optimize_stmt') %}\n {{ get_optimize_sql(relation) }}\n {% endcall %}\n {% endif %}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt_databricks.get_optimize_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.9389398, "supported_languages": null}, "macro.dbt_databricks.get_optimize_sql": {"name": "get_optimize_sql", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.get_optimize_sql", "macro_sql": "{% macro get_optimize_sql(relation) %}\n {% if config.get('zorder', False) and config.get('file_format', 'delta') == 'delta' %}\n {%- set zorder = config.get('zorder', none) -%}\n optimize {{ relation }}\n {# TODO: predicates here? WHERE ... #}\n {% if zorder is sequence and zorder is not string %}\n zorder by (\n {%- for col in zorder -%}\n {{ col }}{% if not loop.last %}, {% endif %}\n {%- endfor -%}\n )\n {% else %}\n zorder by ({{zorder}})\n {% endif %}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.939583, "supported_languages": null}, "macro.dbt_databricks.databricks__list_relations_without_caching": {"name": "databricks__list_relations_without_caching", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.databricks__list_relations_without_caching", "macro_sql": "{% macro databricks__list_relations_without_caching(schema_relation) %}\n {{ return(adapter.get_relations_without_caching(schema_relation)) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.9397519, "supported_languages": null}, "macro.dbt_databricks.show_table_extended": {"name": "show_table_extended", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.show_table_extended", "macro_sql": "{% macro show_table_extended(schema_relation) %}\n {{ return(adapter.dispatch('show_table_extended', 'dbt')(schema_relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks__show_table_extended"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.939944, "supported_languages": null}, "macro.dbt_databricks.databricks__show_table_extended": {"name": "databricks__show_table_extended", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.databricks__show_table_extended", "macro_sql": "{% macro databricks__show_table_extended(schema_relation) %}\n {% call statement('show_table_extended', fetch_result=True) -%}\n show table extended in {{ schema_relation.without_identifier() }} like '{{ schema_relation.identifier }}'\n {% endcall %}\n\n {% do return(load_result('show_table_extended').table) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.940277, "supported_languages": null}, "macro.dbt_databricks.show_tables": {"name": "show_tables", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.show_tables", "macro_sql": "{% macro show_tables(relation) %}\n {{ return(adapter.dispatch('show_tables', 'dbt')(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks__show_tables"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.940476, "supported_languages": null}, "macro.dbt_databricks.databricks__show_tables": {"name": "databricks__show_tables", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.databricks__show_tables", "macro_sql": "{% macro databricks__show_tables(relation) %}\n {% call statement('show_tables', fetch_result=True) -%}\n show tables in {{ relation }}\n {% endcall %}\n\n {% do return(load_result('show_tables').table) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.940758, "supported_languages": null}, "macro.dbt_databricks.show_views": {"name": "show_views", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.show_views", "macro_sql": "{% macro show_views(relation) %}\n {{ return(adapter.dispatch('show_views', 'dbt')(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks__show_views"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.9409568, "supported_languages": null}, "macro.dbt_databricks.databricks__show_views": {"name": "databricks__show_views", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.databricks__show_views", "macro_sql": "{% macro databricks__show_views(relation) %}\n {% call statement('show_views', fetch_result=True) -%}\n show views in {{ relation }}\n {% endcall %}\n\n {% do return(load_result('show_views').table) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.941239, "supported_languages": null}, "macro.dbt_databricks.databricks__generate_database_name": {"name": "databricks__generate_database_name", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.databricks__generate_database_name", "macro_sql": "{% macro databricks__generate_database_name(custom_database_name=none, node=none) -%}\n {%- set default_database = target.database -%}\n {%- if custom_database_name is none -%}\n {{ return(default_database) }}\n {%- else -%}\n {{ return(custom_database_name) }}\n {%- endif -%}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.941549, "supported_languages": null}, "macro.dbt_databricks.databricks__make_temp_relation": {"name": "databricks__make_temp_relation", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.databricks__make_temp_relation", "macro_sql": "{% macro databricks__make_temp_relation(base_relation, suffix='__dbt_tmp', as_table=False) %}\n {% set tmp_identifier = base_relation.identifier ~ suffix %}\n {%- if as_table -%}\n {% set tmp_relation = api.Relation.create(\n identifier=tmp_identifier,\n schema=base_relation.schema,\n database=base_relation.database,\n type='table') %}\n {%- else -%}\n {% set tmp_relation = api.Relation.create(identifier=tmp_identifier, type='view') %}\n {%- endif -%}\n {% do return(tmp_relation) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.942108, "supported_languages": null}, "macro.dbt_databricks.databricks__get_or_create_relation": {"name": "databricks__get_or_create_relation", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_databricks.databricks__get_or_create_relation", "macro_sql": "{% macro databricks__get_or_create_relation(database, schema, identifier, type, needs_information=False) %}\n {%- set target_relation = adapter.get_relation(\n database=database,\n schema=schema,\n identifier=identifier,\n needs_information=needs_information) %}\n\n {% if target_relation %}\n {% do return([true, target_relation]) %}\n {% endif %}\n\n {%- set new_relation = api.Relation.create(\n database=database,\n schema=schema,\n identifier=identifier,\n type=type\n ) -%}\n {% do return([false, new_relation]) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.9427478, "supported_languages": null}, "macro.dbt_databricks.databricks__get_binding_char": {"name": "databricks__get_binding_char", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/materializations/seed.sql", "original_file_path": "macros/materializations/seed.sql", "unique_id": "macro.dbt_databricks.databricks__get_binding_char", "macro_sql": "{% macro databricks__get_binding_char() %}\n {{ return('%s') }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.944486, "supported_languages": null}, "macro.dbt_databricks.databricks__load_csv_rows": {"name": "databricks__load_csv_rows", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/materializations/seed.sql", "original_file_path": "macros/materializations/seed.sql", "unique_id": "macro.dbt_databricks.databricks__load_csv_rows", "macro_sql": "{% macro databricks__load_csv_rows(model, agate_table) %}\n\n {% set batch_size = get_batch_size() %}\n {% set column_override = model['config'].get('column_types', {}) %}\n\n {% set statements = [] %}\n\n {% for chunk in agate_table.rows | batch(batch_size) %}\n {% set bindings = [] %}\n\n {% for row in chunk %}\n {% do bindings.extend(row) %}\n {% endfor %}\n\n {% set sql %}\n insert {% if loop.index0 == 0 -%} overwrite {% else -%} into {% endif -%} {{ this.render() }} values\n {% for row in chunk -%}\n ({%- for col_name in agate_table.column_names -%}\n {%- set inferred_type = adapter.convert_type(agate_table, loop.index0) -%}\n {%- set type = column_override.get(col_name, inferred_type) -%}\n cast({{ get_binding_char() }} as {{type}})\n {%- if not loop.last%},{%- endif %}\n {%- endfor -%})\n {%- if not loop.last%},{%- endif %}\n {%- endfor %}\n {% endset %}\n\n {% do adapter.add_query(sql, bindings=bindings, abridge_sql_log=True, close_cursor=True) %}\n\n {% if loop.index0 == 0 %}\n {% do statements.append(sql) %}\n {% endif %}\n {% endfor %}\n\n {# Return SQL so we can render it out into the compiled files #}\n {{ return(statements[0]) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_batch_size", "macro.dbt.get_binding_char"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.946111, "supported_languages": null}, "macro.dbt_databricks.databricks__create_csv_table": {"name": "databricks__create_csv_table", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/materializations/seed.sql", "original_file_path": "macros/materializations/seed.sql", "unique_id": "macro.dbt_databricks.databricks__create_csv_table", "macro_sql": "{% macro databricks__create_csv_table(model, agate_table) %}\n {%- set column_override = model['config'].get('column_types', {}) -%}\n {%- set quote_seed_column = model['config'].get('quote_columns', None) -%}\n\n {% set sql %}\n create table {{ this.render() }} (\n {%- for col_name in agate_table.column_names -%}\n {%- set inferred_type = adapter.convert_type(agate_table, loop.index0) -%}\n {%- set type = column_override.get(col_name, inferred_type) -%}\n {%- set column_name = (col_name | string) -%}\n {{ adapter.quote_seed_column(column_name, quote_seed_column) }} {{ type }} {%- if not loop.last -%}, {%- endif -%}\n {%- endfor -%}\n )\n {{ file_format_clause() }}\n {{ partition_cols(label=\"partitioned by\") }}\n {{ clustered_cols(label=\"clustered by\") }}\n {{ location_clause() }}\n {{ comment_clause() }}\n {{ tblproperties_clause() }}\n {% endset %}\n\n {% call statement('_') -%}\n {{ sql }}\n {%- endcall %}\n\n {{ return(sql) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.file_format_clause", "macro.dbt_spark.partition_cols", "macro.dbt_spark.clustered_cols", "macro.dbt_spark.location_clause", "macro.dbt_spark.comment_clause", "macro.dbt_databricks.tblproperties_clause", "macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.9472792, "supported_languages": null}, "macro.dbt_databricks.materialization_view_databricks": {"name": "materialization_view_databricks", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/materializations/view.sql", "original_file_path": "macros/materializations/view.sql", "unique_id": "macro.dbt_databricks.materialization_view_databricks", "macro_sql": "{% materialization view, adapter='databricks' -%}\n {{ return(create_or_replace_view()) }}\n{%- endmaterialization %}", "depends_on": {"macros": ["macro.dbt.create_or_replace_view"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.947486, "supported_languages": ["sql"]}, "macro.dbt_databricks.materialization_table_databricks": {"name": "materialization_table_databricks", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/materializations/table.sql", "original_file_path": "macros/materializations/table.sql", "unique_id": "macro.dbt_databricks.materialization_table_databricks", "macro_sql": "{% materialization table, adapter = 'databricks', supported_languages=['sql', 'python'] %}\n {%- set language = model['language'] -%}\n {%- set identifier = model['alias'] -%}\n {%- set grant_config = config.get('grants') -%}\n\n {%- set old_relation = adapter.get_relation(database=database, schema=schema, identifier=identifier, needs_information=True) -%}\n {%- set target_relation = api.Relation.create(identifier=identifier,\n schema=schema,\n database=database,\n type='table') -%}\n\n {{ run_hooks(pre_hooks) }}\n\n -- setup: if the target relation already exists, drop it\n -- in case if the existing and future table is delta, we want to do a\n -- create or replace table instead of dropping, so we don't have the table unavailable\n {% if old_relation and not (old_relation.is_delta and config.get('file_format', default='delta') == 'delta') -%}\n {{ adapter.drop_relation(old_relation) }}\n {%- endif %}\n\n -- build model\n\n {%- call statement('main', language=language) -%}\n {{ create_table_as(False, target_relation, compiled_code, language) }}\n {%- endcall -%}\n\n {% set should_revoke = should_revoke(old_relation, full_refresh_mode=True) %}\n {% do apply_grants(target_relation, grant_config, should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n {% do persist_constraints(target_relation, model) %}\n\n {% do optimize(target_relation) %}\n\n {{ run_hooks(post_hooks) }}\n\n {{ return({'relations': [target_relation]})}}\n\n{% endmaterialization %}", "depends_on": {"macros": ["macro.dbt.run_hooks", "macro.dbt.statement", "macro.dbt.create_table_as", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs", "macro.dbt_databricks.persist_constraints", "macro.dbt_databricks.optimize"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.9496121, "supported_languages": ["sql", "python"]}, "macro.dbt_databricks.databricks_build_snapshot_staging_table": {"name": "databricks_build_snapshot_staging_table", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/materializations/snapshot.sql", "original_file_path": "macros/materializations/snapshot.sql", "unique_id": "macro.dbt_databricks.databricks_build_snapshot_staging_table", "macro_sql": "{% macro databricks_build_snapshot_staging_table(strategy, sql, target_relation) %}\n {% set tmp_identifier = target_relation.identifier ~ '__dbt_tmp' %}\n\n {%- set tmp_relation = api.Relation.create(identifier=tmp_identifier,\n schema=target_relation.schema,\n database=target_relation.database,\n type='view') -%}\n\n {% set select = snapshot_staging_table(strategy, sql, target_relation) %}\n\n {# needs to be a non-temp view so that its columns can be ascertained via `describe` #}\n {% call statement('build_snapshot_staging_relation') %}\n {{ create_view_as(tmp_relation, select) }}\n {% endcall %}\n\n {% do return(tmp_relation) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.snapshot_staging_table", "macro.dbt.statement", "macro.dbt.create_view_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.957042, "supported_languages": null}, "macro.dbt_databricks.materialization_snapshot_databricks": {"name": "materialization_snapshot_databricks", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/materializations/snapshot.sql", "original_file_path": "macros/materializations/snapshot.sql", "unique_id": "macro.dbt_databricks.materialization_snapshot_databricks", "macro_sql": "{% materialization snapshot, adapter='databricks' %}\n {%- set config = model['config'] -%}\n\n {%- set target_table = model.get('alias', model.get('name')) -%}\n\n {%- set strategy_name = config.get('strategy') -%}\n {%- set unique_key = config.get('unique_key') %}\n {%- set file_format = config.get('file_format', 'delta') -%}\n {%- set grant_config = config.get('grants') -%}\n\n {% set target_relation_exists, target_relation = databricks__get_or_create_relation(\n database=model.database,\n schema=model.schema,\n identifier=target_table,\n type='table',\n needs_information=True) -%}\n\n {%- if file_format not in ['delta', 'hudi'] -%}\n {% set invalid_format_msg -%}\n Invalid file format: {{ file_format }}\n Snapshot functionality requires file_format be set to 'delta' or 'hudi'\n {%- endset %}\n {% do exceptions.raise_compiler_error(invalid_format_msg) %}\n {% endif %}\n\n {%- if target_relation_exists -%}\n {%- if not target_relation.is_delta and not target_relation.is_hudi -%}\n {% set invalid_format_msg -%}\n The existing table {{ model.schema }}.{{ target_table }} is in another format than 'delta' or 'hudi'\n {%- endset %}\n {% do exceptions.raise_compiler_error(invalid_format_msg) %}\n {% endif %}\n {% endif %}\n\n {%- if not target_relation.is_table -%}\n {% do exceptions.relation_wrong_type(target_relation, 'table') %}\n {%- endif -%}\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\n\n {% set strategy_macro = strategy_dispatch(strategy_name) %}\n {% set strategy = strategy_macro(model, \"snapshotted_data\", \"source_data\", config, target_relation_exists) %}\n\n {% if not target_relation_exists %}\n\n {% set build_sql = build_snapshot_table(strategy, model['compiled_code']) %}\n {% set final_sql = create_table_as(False, target_relation, build_sql) %}\n\n {% call statement('main') %}\n {{ final_sql }}\n {% endcall %}\n\n {% else %}\n\n {{ adapter.valid_snapshot_target(target_relation) }}\n\n {% if target_relation.database is none %}\n {% set staging_table = spark_build_snapshot_staging_table(strategy, sql, target_relation) %}\n {% else %}\n {% set staging_table = databricks_build_snapshot_staging_table(strategy, sql, target_relation) %}\n {% endif %}\n\n -- this may no-op if the database does not require column expansion\n {% do adapter.expand_target_column_types(from_relation=staging_table,\n to_relation=target_relation) %}\n\n {% set missing_columns = adapter.get_missing_columns(staging_table, target_relation)\n | rejectattr('name', 'equalto', 'dbt_change_type')\n | rejectattr('name', 'equalto', 'DBT_CHANGE_TYPE')\n | rejectattr('name', 'equalto', 'dbt_unique_key')\n | rejectattr('name', 'equalto', 'DBT_UNIQUE_KEY')\n | list %}\n\n {% do create_columns(target_relation, missing_columns) %}\n\n {% set source_columns = adapter.get_columns_in_relation(staging_table)\n | rejectattr('name', 'equalto', 'dbt_change_type')\n | rejectattr('name', 'equalto', 'DBT_CHANGE_TYPE')\n | rejectattr('name', 'equalto', 'dbt_unique_key')\n | rejectattr('name', 'equalto', 'DBT_UNIQUE_KEY')\n | list %}\n\n {% set quoted_source_columns = [] %}\n {% for column in source_columns %}\n {% do quoted_source_columns.append(adapter.quote(column.name)) %}\n {% endfor %}\n\n {% set final_sql = snapshot_merge_sql(\n target = target_relation,\n source = staging_table,\n insert_cols = quoted_source_columns\n )\n %}\n\n {% call statement_with_staging_table('main', staging_table) %}\n {{ final_sql }}\n {% endcall %}\n\n {% endif %}\n\n {% set should_revoke = should_revoke(target_relation_exists, full_refresh_mode) %}\n {% do apply_grants(target_relation, grant_config, should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n {% do persist_constraints(target_relation, model) %}\n\n {{ run_hooks(post_hooks, inside_transaction=True) }}\n\n {{ adapter.commit() }}\n\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{% endmaterialization %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks__get_or_create_relation", "macro.dbt.run_hooks", "macro.dbt.strategy_dispatch", "macro.dbt.build_snapshot_table", "macro.dbt.create_table_as", "macro.dbt.statement", "macro.dbt_spark.spark_build_snapshot_staging_table", "macro.dbt_databricks.databricks_build_snapshot_staging_table", "macro.dbt.create_columns", "macro.dbt.snapshot_merge_sql", "macro.dbt_databricks.statement_with_staging_table", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs", "macro.dbt_databricks.persist_constraints"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.96126, "supported_languages": ["sql"]}, "macro.dbt_databricks.dbt_databricks_validate_get_file_format": {"name": "dbt_databricks_validate_get_file_format", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/materializations/incremental/validate.sql", "original_file_path": "macros/materializations/incremental/validate.sql", "unique_id": "macro.dbt_databricks.dbt_databricks_validate_get_file_format", "macro_sql": "{% macro dbt_databricks_validate_get_file_format(raw_file_format) %}\n {#-- Validate the file format #}\n\n {% set accepted_formats = ['text', 'csv', 'json', 'jdbc', 'parquet', 'orc', 'hive', 'delta', 'libsvm', 'hudi'] %}\n\n {% set invalid_file_format_msg -%}\n Invalid file format provided: {{ raw_file_format }}\n Expected one of: {{ accepted_formats | join(', ') }}\n {%- endset %}\n\n {% if raw_file_format not in accepted_formats %}\n {% do exceptions.raise_compiler_error(invalid_file_format_msg) %}\n {% endif %}\n\n {% do return(raw_file_format) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.9625988, "supported_languages": null}, "macro.dbt_databricks.dbt_databricks_validate_get_incremental_strategy": {"name": "dbt_databricks_validate_get_incremental_strategy", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/materializations/incremental/validate.sql", "original_file_path": "macros/materializations/incremental/validate.sql", "unique_id": "macro.dbt_databricks.dbt_databricks_validate_get_incremental_strategy", "macro_sql": "{% macro dbt_databricks_validate_get_incremental_strategy(raw_strategy, file_format) %}\n {#-- Validate the incremental strategy #}\n\n {% set invalid_strategy_msg -%}\n Invalid incremental strategy provided: {{ raw_strategy }}\n Expected one of: 'merge', 'replace_where', 'append', 'insert_overwrite'\n {%- endset %}\n\n {% set invalid_delta_only_msg -%}\n Invalid incremental strategy provided: {{ raw_strategy }}\n You can only choose this strategy when file_format is set to 'delta'\n {%- endset %}\n\n {% set invalid_insert_overwrite_endpoint_msg -%}\n Invalid incremental strategy provided: {{ raw_strategy }}\n You cannot use this strategy when connecting via warehouse\n Use the 'merge' or 'replace_where' strategy instead\n {%- endset %}\n\n {% if raw_strategy not in ['append', 'merge', 'insert_overwrite', 'replace_where'] %}\n {% do exceptions.raise_compiler_error(invalid_strategy_msg) %}\n {%-else %}\n {% if raw_strategy == 'merge' and file_format not in ['delta', 'hudi'] %}\n {% do exceptions.raise_compiler_error(invalid_delta_only_msg) %}\n {% endif %}\n {% if raw_strategy == 'replace_where' and file_format not in ['delta'] %}\n {% do exceptions.raise_compiler_error(invalid_delta_only_msg) %}\n {% endif %}\n {% if raw_strategy == 'insert_overwrite' and target.endpoint %}\n {% do exceptions.raise_compiler_error(invalid_insert_overwrite_endpoint_msg) %}\n {% endif %}\n {% endif %}\n\n {% do return(raw_strategy) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.963695, "supported_languages": null}, "macro.dbt_databricks.databricks__get_incremental_default_sql": {"name": "databricks__get_incremental_default_sql", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/materializations/incremental/strategies.sql", "original_file_path": "macros/materializations/incremental/strategies.sql", "unique_id": "macro.dbt_databricks.databricks__get_incremental_default_sql", "macro_sql": "{% macro databricks__get_incremental_default_sql(arg_dict) %}\n {{ return(get_incremental_merge_sql(arg_dict)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_incremental_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.9663072, "supported_languages": null}, "macro.dbt_databricks.databricks__get_incremental_append_sql": {"name": "databricks__get_incremental_append_sql", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/materializations/incremental/strategies.sql", "original_file_path": "macros/materializations/incremental/strategies.sql", "unique_id": "macro.dbt_databricks.databricks__get_incremental_append_sql", "macro_sql": "{% macro databricks__get_incremental_append_sql(arg_dict) %}\n {% do return(get_insert_into_sql(arg_dict[\"temp_relation\"], arg_dict[\"target_relation\"])) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.get_insert_into_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.966523, "supported_languages": null}, "macro.dbt_databricks.databricks__get_incremental_replace_where_sql": {"name": "databricks__get_incremental_replace_where_sql", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/materializations/incremental/strategies.sql", "original_file_path": "macros/materializations/incremental/strategies.sql", "unique_id": "macro.dbt_databricks.databricks__get_incremental_replace_where_sql", "macro_sql": "{% macro databricks__get_incremental_replace_where_sql(arg_dict) %}\n {% do return(get_replace_where_sql(arg_dict)) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.get_replace_where_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.966681, "supported_languages": null}, "macro.dbt_databricks.get_incremental_replace_where_sql": {"name": "get_incremental_replace_where_sql", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/materializations/incremental/strategies.sql", "original_file_path": "macros/materializations/incremental/strategies.sql", "unique_id": "macro.dbt_databricks.get_incremental_replace_where_sql", "macro_sql": "{% macro get_incremental_replace_where_sql(arg_dict) %}\n\n {{ return(adapter.dispatch('get_incremental_replace_where_sql', 'dbt')(arg_dict)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks__get_incremental_replace_where_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.966879, "supported_languages": null}, "macro.dbt_databricks.databricks__get_insert_overwrite_merge_sql": {"name": "databricks__get_insert_overwrite_merge_sql", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/materializations/incremental/strategies.sql", "original_file_path": "macros/materializations/incremental/strategies.sql", "unique_id": "macro.dbt_databricks.databricks__get_insert_overwrite_merge_sql", "macro_sql": "{% macro databricks__get_insert_overwrite_merge_sql(target, source, dest_columns, predicates, include_sql_header) %}\n {{ return(get_insert_overwrite_sql(source, target)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.get_insert_overwrite_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.9670799, "supported_languages": null}, "macro.dbt_databricks.get_insert_overwrite_sql": {"name": "get_insert_overwrite_sql", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/materializations/incremental/strategies.sql", "original_file_path": "macros/materializations/incremental/strategies.sql", "unique_id": "macro.dbt_databricks.get_insert_overwrite_sql", "macro_sql": "{% macro get_insert_overwrite_sql(source_relation, target_relation) %}\n\n {%- set dest_columns = adapter.get_columns_in_relation(target_relation) -%}\n {%- set dest_cols_csv = dest_columns | map(attribute='quoted') | join(', ') -%}\n insert overwrite table {{ target_relation }}\n {{ partition_cols(label=\"partition\") }}\n select {{dest_cols_csv}} from {{ source_relation }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.partition_cols"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.9674618, "supported_languages": null}, "macro.dbt_databricks.get_replace_where_sql": {"name": "get_replace_where_sql", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/materializations/incremental/strategies.sql", "original_file_path": "macros/materializations/incremental/strategies.sql", "unique_id": "macro.dbt_databricks.get_replace_where_sql", "macro_sql": "{% macro get_replace_where_sql(args_dict) -%}\n {%- set predicates = args_dict['incremental_predicates'] -%}\n {%- set target_relation = args_dict['target_relation'] -%}\n {%- set temp_relation = args_dict['temp_relation'] -%}\n\n insert into {{ target_relation }}\n {% if predicates %}\n {% if predicates is sequence and predicates is not string %}\n replace where {{ predicates | join(' and ') }}\n {% else %}\n replace where {{ predicates }}\n {% endif %}\n {% endif %}\n table {{ temp_relation }}\n \n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.967998, "supported_languages": null}, "macro.dbt_databricks.get_insert_into_sql": {"name": "get_insert_into_sql", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/materializations/incremental/strategies.sql", "original_file_path": "macros/materializations/incremental/strategies.sql", "unique_id": "macro.dbt_databricks.get_insert_into_sql", "macro_sql": "{% macro get_insert_into_sql(source_relation, target_relation) %}\n\n {%- set dest_columns = adapter.get_columns_in_relation(target_relation) -%}\n {%- set dest_cols_csv = dest_columns | map(attribute='quoted') | join(', ') -%}\n insert into table {{ target_relation }}\n select {{dest_cols_csv}} from {{ source_relation }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.968333, "supported_languages": null}, "macro.dbt_databricks.databricks__get_merge_sql": {"name": "databricks__get_merge_sql", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/materializations/incremental/strategies.sql", "original_file_path": "macros/materializations/incremental/strategies.sql", "unique_id": "macro.dbt_databricks.databricks__get_merge_sql", "macro_sql": "{% macro databricks__get_merge_sql(target, source, unique_key, dest_columns, incremental_predicates) %}\n {# need dest_columns for merge_exclude_columns, default to use \"*\" #}\n {%- set predicates = [] if incremental_predicates is none else [] + incremental_predicates -%}\n {%- set dest_columns = adapter.get_columns_in_relation(target) -%}\n {%- set merge_update_columns = config.get('merge_update_columns') -%}\n {%- set merge_exclude_columns = config.get('merge_exclude_columns') -%}\n {%- set update_columns = get_merge_update_columns(merge_update_columns, merge_exclude_columns, dest_columns) -%}\n\n {% if unique_key %}\n {% if unique_key is sequence and unique_key is not mapping and unique_key is not string %}\n {% for key in unique_key %}\n {% set this_key_match %}\n DBT_INTERNAL_SOURCE.{{ key }} = DBT_INTERNAL_DEST.{{ key }}\n {% endset %}\n {% do predicates.append(this_key_match) %}\n {% endfor %}\n {% else %}\n {% set unique_key_match %}\n DBT_INTERNAL_SOURCE.{{ unique_key }} = DBT_INTERNAL_DEST.{{ unique_key }}\n {% endset %}\n {% do predicates.append(unique_key_match) %}\n {% endif %}\n {% else %}\n {% do predicates.append('FALSE') %}\n {% endif %}\n\n {{ sql_header if sql_header is not none }}\n\n merge into {{ target }} as DBT_INTERNAL_DEST\n using {{ source }} as DBT_INTERNAL_SOURCE\n on {{ predicates | join(' and ') }}\n\n when matched then update set\n {% if update_columns -%}{%- for column_name in update_columns %}\n {{ column_name }} = DBT_INTERNAL_SOURCE.{{ column_name }}\n {%- if not loop.last %}, {%- endif %}\n {%- endfor %}\n {%- else %} * {% endif %}\n\n when not matched then insert *\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_merge_update_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.9699042, "supported_languages": null}, "macro.dbt_databricks.materialization_incremental_databricks": {"name": "materialization_incremental_databricks", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/materializations/incremental/incremental.sql", "original_file_path": "macros/materializations/incremental/incremental.sql", "unique_id": "macro.dbt_databricks.materialization_incremental_databricks", "macro_sql": "{% materialization incremental, adapter='databricks', supported_languages=['sql', 'python'] -%}\n {#-- Validate early so we don't run SQL if the file_format + strategy combo is invalid --#}\n {%- set raw_file_format = config.get('file_format', default='delta') -%}\n {%- set raw_strategy = config.get('incremental_strategy') or 'merge' -%}\n {%- set grant_config = config.get('grants') -%}\n\n {%- set file_format = dbt_databricks_validate_get_file_format(raw_file_format) -%}\n {%- set incremental_strategy = dbt_databricks_validate_get_incremental_strategy(raw_strategy, file_format) -%}\n\n {#-- Set vars --#}\n\n {%- set incremental_predicates = config.get('predicates', default=none) or config.get('incremental_predicates', default=none) -%}\n {%- set unique_key = config.get('unique_key', none) -%}\n {%- set partition_by = config.get('partition_by', none) -%}\n {%- set language = model['language'] -%}\n {%- set on_schema_change = incremental_validate_on_schema_change(config.get('on_schema_change'), default='ignore') -%}\n {%- set target_relation = this -%}\n {%- set existing_relation = adapter.get_relation(database=this.database, schema=this.schema, identifier=this.identifier, needs_information=True) -%}\n\n {#-- Set Overwrite Mode - does not work for warehouses --#}\n {%- if incremental_strategy == 'insert_overwrite' and partition_by -%}\n {%- call statement() -%}\n set spark.sql.sources.partitionOverwriteMode = DYNAMIC\n {%- endcall -%}\n {%- endif -%}\n\n {#-- Run pre-hooks --#}\n {{ run_hooks(pre_hooks) }}\n\n {#-- Incremental run logic --#}\n {%- if existing_relation is none -%}\n {#-- Relation must be created --#}\n {%- call statement('main', language=language) -%}\n {{ create_table_as(False, target_relation, compiled_code, language) }}\n {%- endcall -%}\n {% do persist_constraints(target_relation, model) %}\n {%- elif existing_relation.is_view or should_full_refresh() -%}\n {#-- Relation must be dropped & recreated --#}\n {% set is_delta = (file_format == 'delta' and existing_relation.is_delta) %}\n {% if not is_delta %} {#-- If Delta, we will `create or replace` below, so no need to drop --#}\n {% do adapter.drop_relation(existing_relation) %}\n {% endif %}\n {%- call statement('main', language=language) -%}\n {{ create_table_as(False, target_relation, compiled_code, language) }}\n {%- endcall -%}\n\n {% if not existing_relation.is_view %}\n {% do persist_constraints(target_relation, model) %}\n {% endif %}\n {%- else -%}\n {#-- Relation must be merged --#}\n {%- set temp_relation = databricks__make_temp_relation(target_relation, as_table=language != 'sql') -%}\n {%- call statement('create_temp_relation', language=language) -%}\n {{ create_table_as(True, temp_relation, compiled_code, language) }}\n {%- endcall -%}\n {%- do process_schema_changes(on_schema_change, temp_relation, existing_relation) -%}\n {%- set strategy_sql_macro_func = adapter.get_incremental_strategy_macro(context, incremental_strategy) -%}\n {%- set strategy_arg_dict = ({\n 'target_relation': target_relation,\n 'temp_relation': temp_relation,\n 'unique_key': unique_key,\n 'dest_columns': none,\n 'incremental_predicates': incremental_predicates}) -%}\n {%- set build_sql = strategy_sql_macro_func(strategy_arg_dict) -%}\n {%- if language == 'sql' -%}\n {%- call statement('main') -%}\n {{ build_sql }}\n {%- endcall -%}\n {%- elif language == 'python' -%}\n {%- call statement_with_staging_table('main', temp_relation) -%}\n {{ build_sql }}\n {%- endcall -%}\n {#--\n This is yucky.\n See note in dbt-spark/dbt/include/spark/macros/adapters.sql\n re: python models and temporary views.\n\n Also, why does not either drop_relation or adapter.drop_relation work here?!\n --#}\n {%- endif -%}\n {%- endif -%}\n\n {% set should_revoke = should_revoke(existing_relation, full_refresh_mode) %}\n {% do apply_grants(target_relation, grant_config, should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n\n {% do optimize(target_relation) %}\n\n {{ run_hooks(post_hooks) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{%- endmaterialization %}", "depends_on": {"macros": ["macro.dbt_databricks.dbt_databricks_validate_get_file_format", "macro.dbt_databricks.dbt_databricks_validate_get_incremental_strategy", "macro.dbt.incremental_validate_on_schema_change", "macro.dbt.statement", "macro.dbt.run_hooks", "macro.dbt.create_table_as", "macro.dbt_databricks.persist_constraints", "macro.dbt.should_full_refresh", "macro.dbt_databricks.databricks__make_temp_relation", "macro.dbt.process_schema_changes", "macro.dbt_databricks.statement_with_staging_table", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs", "macro.dbt_databricks.optimize"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.974388, "supported_languages": ["sql", "python"]}, "macro.dbt_databricks.databricks__dateadd": {"name": "databricks__dateadd", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/utils/dateadd.sql", "original_file_path": "macros/utils/dateadd.sql", "unique_id": "macro.dbt_databricks.databricks__dateadd", "macro_sql": "{% macro databricks__dateadd(datepart, interval, from_date_or_timestamp) %}\n {%- if adapter.compare_dbr_version(10, 4) >= 0 -%}\n timestampadd({{datepart}}, {{interval}}, {{from_date_or_timestamp}})\n {%- else -%}\n {{ spark__dateadd(datepart, interval, from_date_or_timestamp) }}\n {%- endif -%}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.9748638, "supported_languages": null}, "macro.dbt_databricks.databricks__datediff": {"name": "databricks__datediff", "resource_type": "macro", "package_name": "dbt_databricks", "path": "macros/utils/datediff.sql", "original_file_path": "macros/utils/datediff.sql", "unique_id": "macro.dbt_databricks.databricks__datediff", "macro_sql": "{% macro databricks__datediff(first_date, second_date, datepart) %}\n {%- if adapter.compare_dbr_version(10, 4) >= 0 -%}\n timestampdiff({{datepart}}, {{date_trunc(datepart, first_date)}}, {{date_trunc(datepart, second_date)}})\n {%- else -%}\n {{ spark__datediff(first_date, second_date, datepart) }}\n {%- endif -%}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.date_trunc", "macro.dbt_spark.spark__datediff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.975376, "supported_languages": null}, "macro.dbt_spark.dbt_spark_tblproperties_clause": {"name": "dbt_spark_tblproperties_clause", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.dbt_spark_tblproperties_clause", "macro_sql": "{% macro dbt_spark_tblproperties_clause() -%}\n {%- set tblproperties = config.get('tblproperties') -%}\n {%- if tblproperties is not none %}\n tblproperties (\n {%- for prop in tblproperties -%}\n '{{ prop }}' = '{{ tblproperties[prop] }}' {% if not loop.last %}, {% endif %}\n {%- endfor %}\n )\n {%- endif %}\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.993165, "supported_languages": null}, "macro.dbt_spark.file_format_clause": {"name": "file_format_clause", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.file_format_clause", "macro_sql": "{% macro file_format_clause() %}\n {{ return(adapter.dispatch('file_format_clause', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_databricks.databricks__file_format_clause"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.9933481, "supported_languages": null}, "macro.dbt_spark.spark__file_format_clause": {"name": "spark__file_format_clause", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__file_format_clause", "macro_sql": "{% macro spark__file_format_clause() %}\n {%- set file_format = config.get('file_format', validator=validation.any[basestring]) -%}\n {%- if file_format is not none %}\n using {{ file_format }}\n {%- endif %}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.993623, "supported_languages": null}, "macro.dbt_spark.location_clause": {"name": "location_clause", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.location_clause", "macro_sql": "{% macro location_clause() %}\n {{ return(adapter.dispatch('location_clause', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_spark.spark__location_clause"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.9938009, "supported_languages": null}, "macro.dbt_spark.spark__location_clause": {"name": "spark__location_clause", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__location_clause", "macro_sql": "{% macro spark__location_clause() %}\n {%- set location_root = config.get('location_root', validator=validation.any[basestring]) -%}\n {%- set identifier = model['alias'] -%}\n {%- if location_root is not none %}\n location '{{ location_root }}/{{ identifier }}'\n {%- endif %}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.994155, "supported_languages": null}, "macro.dbt_spark.options_clause": {"name": "options_clause", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.options_clause", "macro_sql": "{% macro options_clause() -%}\n {{ return(adapter.dispatch('options_clause', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_databricks.databricks__options_clause"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.994329, "supported_languages": null}, "macro.dbt_spark.spark__options_clause": {"name": "spark__options_clause", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__options_clause", "macro_sql": "{% macro spark__options_clause() -%}\n {%- set options = config.get('options') -%}\n {%- if config.get('file_format') == 'hudi' -%}\n {%- set unique_key = config.get('unique_key') -%}\n {%- if unique_key is not none and options is none -%}\n {%- set options = {'primaryKey': config.get('unique_key')} -%}\n {%- elif unique_key is not none and options is not none and 'primaryKey' not in options -%}\n {%- set _ = options.update({'primaryKey': config.get('unique_key')}) -%}\n {%- elif options is not none and 'primaryKey' in options and options['primaryKey'] != unique_key -%}\n {{ exceptions.raise_compiler_error(\"unique_key and options('primaryKey') should be the same column(s).\") }}\n {%- endif %}\n {%- endif %}\n\n {%- if options is not none %}\n options (\n {%- for option in options -%}\n {{ option }} \"{{ options[option] }}\" {% if not loop.last %}, {% endif %}\n {%- endfor %}\n )\n {%- endif %}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.995476, "supported_languages": null}, "macro.dbt_spark.comment_clause": {"name": "comment_clause", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.comment_clause", "macro_sql": "{% macro comment_clause() %}\n {{ return(adapter.dispatch('comment_clause', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_spark.spark__comment_clause"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.9956648, "supported_languages": null}, "macro.dbt_spark.spark__comment_clause": {"name": "spark__comment_clause", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__comment_clause", "macro_sql": "{% macro spark__comment_clause() %}\n {%- set raw_persist_docs = config.get('persist_docs', {}) -%}\n\n {%- if raw_persist_docs is mapping -%}\n {%- set raw_relation = raw_persist_docs.get('relation', false) -%}\n {%- if raw_relation -%}\n comment '{{ model.description | replace(\"'\", \"\\\\'\") }}'\n {% endif %}\n {%- elif raw_persist_docs -%}\n {{ exceptions.raise_compiler_error(\"Invalid value provided for 'persist_docs'. Expected dict but got value: \" ~ raw_persist_docs) }}\n {% endif %}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.996174, "supported_languages": null}, "macro.dbt_spark.partition_cols": {"name": "partition_cols", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.partition_cols", "macro_sql": "{% macro partition_cols(label, required=false) %}\n {{ return(adapter.dispatch('partition_cols', 'dbt')(label, required)) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_spark.spark__partition_cols"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.996403, "supported_languages": null}, "macro.dbt_spark.spark__partition_cols": {"name": "spark__partition_cols", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__partition_cols", "macro_sql": "{% macro spark__partition_cols(label, required=false) %}\n {%- set cols = config.get('partition_by', validator=validation.any[list, basestring]) -%}\n {%- if cols is not none %}\n {%- if cols is string -%}\n {%- set cols = [cols] -%}\n {%- endif -%}\n {{ label }} (\n {%- for item in cols -%}\n {{ item }}\n {%- if not loop.last -%},{%- endif -%}\n {%- endfor -%}\n )\n {%- endif %}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.9969559, "supported_languages": null}, "macro.dbt_spark.clustered_cols": {"name": "clustered_cols", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.clustered_cols", "macro_sql": "{% macro clustered_cols(label, required=false) %}\n {{ return(adapter.dispatch('clustered_cols', 'dbt')(label, required)) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_spark.spark__clustered_cols"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.9971871, "supported_languages": null}, "macro.dbt_spark.spark__clustered_cols": {"name": "spark__clustered_cols", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__clustered_cols", "macro_sql": "{% macro spark__clustered_cols(label, required=false) %}\n {%- set cols = config.get('clustered_by', validator=validation.any[list, basestring]) -%}\n {%- set buckets = config.get('buckets', validator=validation.any[int]) -%}\n {%- if (cols is not none) and (buckets is not none) %}\n {%- if cols is string -%}\n {%- set cols = [cols] -%}\n {%- endif -%}\n {{ label }} (\n {%- for item in cols -%}\n {{ item }}\n {%- if not loop.last -%},{%- endif -%}\n {%- endfor -%}\n ) into {{ buckets }} buckets\n {%- endif %}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.997994, "supported_languages": null}, "macro.dbt_spark.fetch_tbl_properties": {"name": "fetch_tbl_properties", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.fetch_tbl_properties", "macro_sql": "{% macro fetch_tbl_properties(relation) -%}\n {% call statement('list_properties', fetch_result=True) -%}\n SHOW TBLPROPERTIES {{ relation }}\n {% endcall %}\n {% do return(load_result('list_properties').table) %}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.998278, "supported_languages": null}, "macro.dbt_spark.create_temporary_view": {"name": "create_temporary_view", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.create_temporary_view", "macro_sql": "{% macro create_temporary_view(relation, compiled_code) -%}\n {{ return(adapter.dispatch('create_temporary_view', 'dbt')(relation, compiled_code)) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_spark.spark__create_temporary_view"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.998493, "supported_languages": null}, "macro.dbt_spark.spark__create_temporary_view": {"name": "spark__create_temporary_view", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__create_temporary_view", "macro_sql": "{% macro spark__create_temporary_view(relation, compiled_code) -%}\n create temporary view {{ relation }} as\n {{ compiled_code }}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.998631, "supported_languages": null}, "macro.dbt_spark.spark__create_table_as": {"name": "spark__create_table_as", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__create_table_as", "macro_sql": "{%- macro spark__create_table_as(temporary, relation, compiled_code, language='sql') -%}\n {%- if language == 'sql' -%}\n {%- if temporary -%}\n {{ create_temporary_view(relation, compiled_code) }}\n {%- else -%}\n {% if config.get('file_format', validator=validation.any[basestring]) in ['delta', 'iceberg'] %}\n create or replace table {{ relation }}\n {% else %}\n create table {{ relation }}\n {% endif %}\n {%- set contract_config = config.get('contract') -%}\n {%- if contract_config.enforced -%}\n {{ get_assert_columns_equivalent(compiled_code) }}\n {%- set compiled_code = get_select_subquery(compiled_code) %}\n {% endif %}\n {{ file_format_clause() }}\n {{ options_clause() }}\n {{ partition_cols(label=\"partitioned by\") }}\n {{ clustered_cols(label=\"clustered by\") }}\n {{ location_clause() }}\n {{ comment_clause() }}\n as\n {{ compiled_code }}\n {%- endif -%}\n {%- elif language == 'python' -%}\n {#--\n N.B. Python models _can_ write to temp views HOWEVER they use a different session\n and have already expired by the time they need to be used (I.E. in merges for incremental models)\n\n TODO: Deep dive into spark sessions to see if we can reuse a single session for an entire\n dbt invocation.\n --#}\n {{ py_write_table(compiled_code=compiled_code, target_relation=relation) }}\n {%- endif -%}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": ["macro.dbt_spark.create_temporary_view", "macro.dbt.get_assert_columns_equivalent", "macro.dbt.get_select_subquery", "macro.dbt_spark.file_format_clause", "macro.dbt_spark.options_clause", "macro.dbt_spark.partition_cols", "macro.dbt_spark.clustered_cols", "macro.dbt_spark.location_clause", "macro.dbt_spark.comment_clause", "macro.dbt_spark.py_write_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.999736, "supported_languages": null}, "macro.dbt_spark.persist_constraints": {"name": "persist_constraints", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.persist_constraints", "macro_sql": "{% macro persist_constraints(relation, model) %}\n {{ return(adapter.dispatch('persist_constraints', 'dbt')(relation, model)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks__persist_constraints"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556571.999965, "supported_languages": null}, "macro.dbt_spark.spark__persist_constraints": {"name": "spark__persist_constraints", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__persist_constraints", "macro_sql": "{% macro spark__persist_constraints(relation, model) %}\n {%- set contract_config = config.get('contract') -%}\n {% if contract_config.enforced and config.get('file_format', 'delta') == 'delta' %}\n {% do alter_table_add_constraints(relation, model.columns) %}\n {% do alter_column_set_constraints(relation, model.columns) %}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.alter_table_add_constraints", "macro.dbt_spark.alter_column_set_constraints"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.000403, "supported_languages": null}, "macro.dbt_spark.alter_table_add_constraints": {"name": "alter_table_add_constraints", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.alter_table_add_constraints", "macro_sql": "{% macro alter_table_add_constraints(relation, constraints) %}\n {{ return(adapter.dispatch('alter_table_add_constraints', 'dbt')(relation, constraints)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks__alter_table_add_constraints"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0007029, "supported_languages": null}, "macro.dbt_spark.spark__alter_table_add_constraints": {"name": "spark__alter_table_add_constraints", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__alter_table_add_constraints", "macro_sql": "{% macro spark__alter_table_add_constraints(relation, column_dict) %}\n\n {% for column_name in column_dict %}\n {% set constraints = column_dict[column_name]['constraints'] %}\n {% for constraint in constraints %}\n {% if constraint.type == 'check' and not is_incremental() %}\n {%- set constraint_hash = local_md5(column_name ~ \";\" ~ constraint.expression ~ \";\" ~ loop.index) -%}\n {% call statement() %}\n alter table {{ relation }} add constraint {{ constraint_hash }} check {{ constraint.expression }};\n {% endcall %}\n {% endif %}\n {% endfor %}\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.is_incremental", "macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.001361, "supported_languages": null}, "macro.dbt_spark.alter_column_set_constraints": {"name": "alter_column_set_constraints", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.alter_column_set_constraints", "macro_sql": "{% macro alter_column_set_constraints(relation, column_dict) %}\n {{ return(adapter.dispatch('alter_column_set_constraints', 'dbt')(relation, column_dict)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks__alter_column_set_constraints"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.001584, "supported_languages": null}, "macro.dbt_spark.spark__alter_column_set_constraints": {"name": "spark__alter_column_set_constraints", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__alter_column_set_constraints", "macro_sql": "{% macro spark__alter_column_set_constraints(relation, column_dict) %}\n {% for column_name in column_dict %}\n {% set constraints = column_dict[column_name]['constraints'] %}\n {% for constraint in constraints %}\n {% if constraint.type != 'not_null' %}\n {{ exceptions.warn('Invalid constraint for column ' ~ column_name ~ '. Only `not_null` is supported.') }}\n {% else %}\n {% set quoted_name = adapter.quote(column_name) if column_dict[column_name]['quote'] else column_name %}\n {% call statement() %}\n alter table {{ relation }} change column {{ quoted_name }} set not null {{ constraint.expression or \"\" }};\n {% endcall %}\n {% endif %}\n {% endfor %}\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.002341, "supported_languages": null}, "macro.dbt_spark.spark__create_view_as": {"name": "spark__create_view_as", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__create_view_as", "macro_sql": "{% macro spark__create_view_as(relation, sql) -%}\n create or replace view {{ relation }}\n {{ comment_clause() }}\n {%- set contract_config = config.get('contract') -%}\n {%- if contract_config.enforced -%}\n {{ get_assert_columns_equivalent(sql) }}\n {%- endif %}\n as\n {{ sql }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.comment_clause", "macro.dbt.get_assert_columns_equivalent"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.002676, "supported_languages": null}, "macro.dbt_spark.spark__create_schema": {"name": "spark__create_schema", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__create_schema", "macro_sql": "{% macro spark__create_schema(relation) -%}\n {%- call statement('create_schema') -%}\n create schema if not exists {{relation}}\n {% endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.002849, "supported_languages": null}, "macro.dbt_spark.spark__drop_schema": {"name": "spark__drop_schema", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__drop_schema", "macro_sql": "{% macro spark__drop_schema(relation) -%}\n {%- call statement('drop_schema') -%}\n drop schema if exists {{ relation }} cascade\n {%- endcall -%}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0030138, "supported_languages": null}, "macro.dbt_spark.get_columns_in_relation_raw": {"name": "get_columns_in_relation_raw", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.get_columns_in_relation_raw", "macro_sql": "{% macro get_columns_in_relation_raw(relation) -%}\n {{ return(adapter.dispatch('get_columns_in_relation_raw', 'dbt')(relation)) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_spark.spark__get_columns_in_relation_raw"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0031989, "supported_languages": null}, "macro.dbt_spark.spark__get_columns_in_relation_raw": {"name": "spark__get_columns_in_relation_raw", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__get_columns_in_relation_raw", "macro_sql": "{% macro spark__get_columns_in_relation_raw(relation) -%}\n {% call statement('get_columns_in_relation_raw', fetch_result=True) %}\n describe extended {{ relation }}\n {% endcall %}\n {% do return(load_result('get_columns_in_relation_raw').table) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.00348, "supported_languages": null}, "macro.dbt_spark.spark__get_columns_in_relation": {"name": "spark__get_columns_in_relation", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__get_columns_in_relation", "macro_sql": "{% macro spark__get_columns_in_relation(relation) -%}\n {% call statement('get_columns_in_relation', fetch_result=True) %}\n describe extended {{ relation.include(schema=(schema is not none)) }}\n {% endcall %}\n {% do return(load_result('get_columns_in_relation').table) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.003829, "supported_languages": null}, "macro.dbt_spark.spark__list_relations_without_caching": {"name": "spark__list_relations_without_caching", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__list_relations_without_caching", "macro_sql": "{% macro spark__list_relations_without_caching(relation) %}\n {% call statement('list_relations_without_caching', fetch_result=True) -%}\n show table extended in {{ relation }} like '*'\n {% endcall %}\n\n {% do return(load_result('list_relations_without_caching').table) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.004111, "supported_languages": null}, "macro.dbt_spark.list_relations_show_tables_without_caching": {"name": "list_relations_show_tables_without_caching", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.list_relations_show_tables_without_caching", "macro_sql": "{% macro list_relations_show_tables_without_caching(schema_relation) %}\n {#-- Spark with iceberg tables don't work with show table extended for #}\n {#-- V2 iceberg tables #}\n {#-- https://issues.apache.org/jira/browse/SPARK-33393 #}\n {% call statement('list_relations_without_caching_show_tables', fetch_result=True) -%}\n show tables in {{ schema_relation }} like '*'\n {% endcall %}\n\n {% do return(load_result('list_relations_without_caching_show_tables').table) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.004416, "supported_languages": null}, "macro.dbt_spark.describe_table_extended_without_caching": {"name": "describe_table_extended_without_caching", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.describe_table_extended_without_caching", "macro_sql": "{% macro describe_table_extended_without_caching(table_name) %}\n {#-- Spark with iceberg tables don't work with show table extended for #}\n {#-- V2 iceberg tables #}\n {#-- https://issues.apache.org/jira/browse/SPARK-33393 #}\n {% call statement('describe_table_extended_without_caching', fetch_result=True) -%}\n describe extended {{ table_name }}\n {% endcall %}\n {% do return(load_result('describe_table_extended_without_caching').table) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0047119, "supported_languages": null}, "macro.dbt_spark.spark__list_schemas": {"name": "spark__list_schemas", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__list_schemas", "macro_sql": "{% macro spark__list_schemas(database) -%}\n {% call statement('list_schemas', fetch_result=True, auto_begin=False) %}\n show databases\n {% endcall %}\n {{ return(load_result('list_schemas').table) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.005054, "supported_languages": null}, "macro.dbt_spark.spark__rename_relation": {"name": "spark__rename_relation", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__rename_relation", "macro_sql": "{% macro spark__rename_relation(from_relation, to_relation) -%}\n {% call statement('rename_relation') -%}\n {% if not from_relation.type %}\n {% do exceptions.raise_database_error(\"Cannot rename a relation with a blank type: \" ~ from_relation.identifier) %}\n {% elif from_relation.type in ('table') %}\n alter table {{ from_relation }} rename to {{ to_relation }}\n {% elif from_relation.type == 'view' %}\n alter view {{ from_relation }} rename to {{ to_relation }}\n {% else %}\n {% do exceptions.raise_database_error(\"Unknown type '\" ~ from_relation.type ~ \"' for relation: \" ~ from_relation.identifier) %}\n {% endif %}\n {%- endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0056791, "supported_languages": null}, "macro.dbt_spark.spark__drop_relation": {"name": "spark__drop_relation", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__drop_relation", "macro_sql": "{% macro spark__drop_relation(relation) -%}\n {% call statement('drop_relation', auto_begin=False) -%}\n drop {{ relation.type }} if exists {{ relation }}\n {%- endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.005905, "supported_languages": null}, "macro.dbt_spark.spark__generate_database_name": {"name": "spark__generate_database_name", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__generate_database_name", "macro_sql": "{% macro spark__generate_database_name(custom_database_name=none, node=none) -%}\n {% do return(None) %}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.006068, "supported_languages": null}, "macro.dbt_spark.spark__persist_docs": {"name": "spark__persist_docs", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__persist_docs", "macro_sql": "{% macro spark__persist_docs(relation, model, for_relation, for_columns) -%}\n {% if for_columns and config.persist_column_docs() and model.columns %}\n {% do alter_column_comment(relation, model.columns) %}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.alter_column_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.00635, "supported_languages": null}, "macro.dbt_spark.spark__alter_column_comment": {"name": "spark__alter_column_comment", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__alter_column_comment", "macro_sql": "{% macro spark__alter_column_comment(relation, column_dict) %}\n {% if config.get('file_format', validator=validation.any[basestring]) in ['delta', 'hudi', 'iceberg'] %}\n {% for column_name in column_dict %}\n {% set comment = column_dict[column_name]['description'] %}\n {% set escaped_comment = comment | replace('\\'', '\\\\\\'') %}\n {% set comment_query %}\n {% if relation.is_iceberg %}\n alter table {{ relation }} alter column\n {{ adapter.quote(column_name) if column_dict[column_name]['quote'] else column_name }}\n comment '{{ escaped_comment }}';\n {% else %}\n alter table {{ relation }} change column\n {{ adapter.quote(column_name) if column_dict[column_name]['quote'] else column_name }}\n comment '{{ escaped_comment }}';\n {% endif %}\n {% endset %}\n {% do run_query(comment_query) %}\n {% endfor %}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.007356, "supported_languages": null}, "macro.dbt_spark.spark__make_temp_relation": {"name": "spark__make_temp_relation", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__make_temp_relation", "macro_sql": "{% macro spark__make_temp_relation(base_relation, suffix) %}\n {% set tmp_identifier = base_relation.identifier ~ suffix %}\n {% set tmp_relation = base_relation.incorporate(path = {\n \"identifier\": tmp_identifier\n }) -%}\n\n {% do return(tmp_relation) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.007683, "supported_languages": null}, "macro.dbt_spark.spark__alter_column_type": {"name": "spark__alter_column_type", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__alter_column_type", "macro_sql": "{% macro spark__alter_column_type(relation, column_name, new_column_type) -%}\n {% call statement('alter_column_type') %}\n alter table {{ relation }} alter column {{ column_name }} type {{ new_column_type }};\n {% endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0079129, "supported_languages": null}, "macro.dbt_spark.spark__alter_relation_add_remove_columns": {"name": "spark__alter_relation_add_remove_columns", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_spark.spark__alter_relation_add_remove_columns", "macro_sql": "{% macro spark__alter_relation_add_remove_columns(relation, add_columns, remove_columns) %}\n\n {% if remove_columns %}\n {% if relation.is_delta %}\n {% set platform_name = 'Delta Lake' %}\n {% elif relation.is_iceberg %}\n {% set platform_name = 'Iceberg' %}\n {% else %}\n {% set platform_name = 'Apache Spark' %}\n {% endif %}\n {{ exceptions.raise_compiler_error(platform_name + ' does not support dropping columns from tables') }}\n {% endif %}\n\n {% if add_columns is none %}\n {% set add_columns = [] %}\n {% endif %}\n\n {% set sql -%}\n\n alter {{ relation.type }} {{ relation }}\n\n {% if add_columns %} add columns {% endif %}\n {% for column in add_columns %}\n {{ column.name }} {{ column.data_type }}{{ ',' if not loop.last }}\n {% endfor %}\n\n {%- endset -%}\n\n {% do run_query(sql) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.008828, "supported_languages": null}, "macro.dbt_spark.spark__copy_grants": {"name": "spark__copy_grants", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/apply_grants.sql", "original_file_path": "macros/apply_grants.sql", "unique_id": "macro.dbt_spark.spark__copy_grants", "macro_sql": "{% macro spark__copy_grants() %}\n\n {% if config.materialized == 'view' %}\n {#-- Spark views don't copy grants when they're replaced --#}\n {{ return(False) }}\n\n {% else %}\n {#-- This depends on how we're replacing the table, which depends on its file format\n -- Just play it safe by assuming that grants have been copied over, and need to be checked / possibly revoked\n -- We can make this more efficient in the future\n #}\n {{ return(True) }}\n\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.009585, "supported_languages": null}, "macro.dbt_spark.spark__get_grant_sql": {"name": "spark__get_grant_sql", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/apply_grants.sql", "original_file_path": "macros/apply_grants.sql", "unique_id": "macro.dbt_spark.spark__get_grant_sql", "macro_sql": "\n\n\n{%- macro spark__get_grant_sql(relation, privilege, grantees) -%}\n grant {{ privilege }} on {{ relation }} to {{ adapter.quote(grantees[0]) }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.009802, "supported_languages": null}, "macro.dbt_spark.spark__get_revoke_sql": {"name": "spark__get_revoke_sql", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/apply_grants.sql", "original_file_path": "macros/apply_grants.sql", "unique_id": "macro.dbt_spark.spark__get_revoke_sql", "macro_sql": "\n\n\n{%- macro spark__get_revoke_sql(relation, privilege, grantees) -%}\n revoke {{ privilege }} on {{ relation }} from {{ adapter.quote(grantees[0]) }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.010019, "supported_languages": null}, "macro.dbt_spark.spark__support_multiple_grantees_per_dcl_statement": {"name": "spark__support_multiple_grantees_per_dcl_statement", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/apply_grants.sql", "original_file_path": "macros/apply_grants.sql", "unique_id": "macro.dbt_spark.spark__support_multiple_grantees_per_dcl_statement", "macro_sql": "\n\n\n{%- macro spark__support_multiple_grantees_per_dcl_statement() -%}\n {{ return(False) }}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.010135, "supported_languages": null}, "macro.dbt_spark.spark__call_dcl_statements": {"name": "spark__call_dcl_statements", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/apply_grants.sql", "original_file_path": "macros/apply_grants.sql", "unique_id": "macro.dbt_spark.spark__call_dcl_statements", "macro_sql": "{% macro spark__call_dcl_statements(dcl_statement_list) %}\n {% for dcl_statement in dcl_statement_list %}\n {% call statement('grant_or_revoke') %}\n {{ dcl_statement }}\n {% endcall %}\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0103738, "supported_languages": null}, "macro.dbt_spark.spark__get_binding_char": {"name": "spark__get_binding_char", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/seed.sql", "original_file_path": "macros/materializations/seed.sql", "unique_id": "macro.dbt_spark.spark__get_binding_char", "macro_sql": "{% macro spark__get_binding_char() %}\n {{ return('?' if target.method == 'odbc' else '%s') }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.012314, "supported_languages": null}, "macro.dbt_spark.spark__reset_csv_table": {"name": "spark__reset_csv_table", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/seed.sql", "original_file_path": "macros/materializations/seed.sql", "unique_id": "macro.dbt_spark.spark__reset_csv_table", "macro_sql": "{% macro spark__reset_csv_table(model, full_refresh, old_relation, agate_table) %}\n {% if old_relation %}\n {{ adapter.drop_relation(old_relation) }}\n {% endif %}\n {% set sql = create_csv_table(model, agate_table) %}\n {{ return(sql) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.create_csv_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0126479, "supported_languages": null}, "macro.dbt_spark.spark__load_csv_rows": {"name": "spark__load_csv_rows", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/seed.sql", "original_file_path": "macros/materializations/seed.sql", "unique_id": "macro.dbt_spark.spark__load_csv_rows", "macro_sql": "{% macro spark__load_csv_rows(model, agate_table) %}\n\n {% set batch_size = get_batch_size() %}\n {% set column_override = model['config'].get('column_types', {}) %}\n\n {% set statements = [] %}\n\n {% for chunk in agate_table.rows | batch(batch_size) %}\n {% set bindings = [] %}\n\n {% for row in chunk %}\n {% do bindings.extend(row) %}\n {% endfor %}\n\n {% set sql %}\n insert into {{ this.render() }} values\n {% for row in chunk -%}\n ({%- for col_name in agate_table.column_names -%}\n {%- set inferred_type = adapter.convert_type(agate_table, loop.index0) -%}\n {%- set type = column_override.get(col_name, inferred_type) -%}\n cast({{ get_binding_char() }} as {{type}})\n {%- if not loop.last%},{%- endif %}\n {%- endfor -%})\n {%- if not loop.last%},{%- endif %}\n {%- endfor %}\n {% endset %}\n\n {% do adapter.add_query(sql, bindings=bindings, abridge_sql_log=True) %}\n\n {% if loop.index0 == 0 %}\n {% do statements.append(sql) %}\n {% endif %}\n {% endfor %}\n\n {# Return SQL so we can render it out into the compiled files #}\n {{ return(statements[0]) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_batch_size", "macro.dbt.get_binding_char"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.014281, "supported_languages": null}, "macro.dbt_spark.spark__create_csv_table": {"name": "spark__create_csv_table", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/seed.sql", "original_file_path": "macros/materializations/seed.sql", "unique_id": "macro.dbt_spark.spark__create_csv_table", "macro_sql": "{% macro spark__create_csv_table(model, agate_table) %}\n {%- set column_override = model['config'].get('column_types', {}) -%}\n {%- set quote_seed_column = model['config'].get('quote_columns', None) -%}\n\n {% set sql %}\n create table {{ this.render() }} (\n {%- for col_name in agate_table.column_names -%}\n {%- set inferred_type = adapter.convert_type(agate_table, loop.index0) -%}\n {%- set type = column_override.get(col_name, inferred_type) -%}\n {%- set column_name = (col_name | string) -%}\n {{ adapter.quote_seed_column(column_name, quote_seed_column) }} {{ type }} {%- if not loop.last -%}, {%- endif -%}\n {%- endfor -%}\n )\n {{ file_format_clause() }}\n {{ partition_cols(label=\"partitioned by\") }}\n {{ clustered_cols(label=\"clustered by\") }}\n {{ location_clause() }}\n {{ comment_clause() }}\n {% endset %}\n\n {% call statement('_') -%}\n {{ sql }}\n {%- endcall %}\n\n {{ return(sql) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.file_format_clause", "macro.dbt_spark.partition_cols", "macro.dbt_spark.clustered_cols", "macro.dbt_spark.location_clause", "macro.dbt_spark.comment_clause", "macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.015414, "supported_languages": null}, "macro.dbt_spark.materialization_view_spark": {"name": "materialization_view_spark", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/view.sql", "original_file_path": "macros/materializations/view.sql", "unique_id": "macro.dbt_spark.materialization_view_spark", "macro_sql": "{% materialization view, adapter='spark' -%}\n {{ return(create_or_replace_view()) }}\n{%- endmaterialization %}", "depends_on": {"macros": ["macro.dbt.create_or_replace_view"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.015611, "supported_languages": ["sql"]}, "macro.dbt_spark.materialization_table_spark": {"name": "materialization_table_spark", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/table.sql", "original_file_path": "macros/materializations/table.sql", "unique_id": "macro.dbt_spark.materialization_table_spark", "macro_sql": "{% materialization table, adapter = 'spark', supported_languages=['sql', 'python'] %}\n {%- set language = model['language'] -%}\n {%- set identifier = model['alias'] -%}\n {%- set grant_config = config.get('grants') -%}\n\n {%- set old_relation = adapter.get_relation(database=database, schema=schema, identifier=identifier) -%}\n {%- set target_relation = api.Relation.create(identifier=identifier,\n schema=schema,\n database=database,\n type='table') -%}\n\n {{ run_hooks(pre_hooks) }}\n\n -- setup: if the target relation already exists, drop it\n -- in case if the existing and future table is delta or iceberg, we want to do a\n -- create or replace table instead of dropping, so we don't have the table unavailable\n {% if old_relation is not none %}\n {% set is_delta = (old_relation.is_delta and config.get('file_format', validator=validation.any[basestring]) == 'delta') %}\n {% set is_iceberg = (old_relation.is_iceberg and config.get('file_format', validator=validation.any[basestring]) == 'iceberg') %}\n {% set old_relation_type = old_relation.type %}\n {% else %}\n {% set is_delta = false %}\n {% set is_iceberg = false %}\n {% set old_relation_type = target_relation.type %}\n {% endif %}\n\n {% if not is_delta and not is_iceberg %}\n {% set existing_relation = target_relation %}\n {{ adapter.drop_relation(existing_relation.incorporate(type=old_relation_type)) }}\n {% endif %}\n\n -- build model\n {%- call statement('main', language=language) -%}\n {{ create_table_as(False, target_relation, compiled_code, language) }}\n {%- endcall -%}\n\n {% set should_revoke = should_revoke(old_relation, full_refresh_mode=True) %}\n {% do apply_grants(target_relation, grant_config, should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n {% do persist_constraints(target_relation, model) %}\n\n {{ run_hooks(post_hooks) }}\n\n {{ return({'relations': [target_relation]})}}\n\n{% endmaterialization %}", "depends_on": {"macros": ["macro.dbt.run_hooks", "macro.dbt.statement", "macro.dbt.create_table_as", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs", "macro.dbt_spark.persist_constraints"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0200498, "supported_languages": ["sql", "python"]}, "macro.dbt_spark.py_write_table": {"name": "py_write_table", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/table.sql", "original_file_path": "macros/materializations/table.sql", "unique_id": "macro.dbt_spark.py_write_table", "macro_sql": "{% macro py_write_table(compiled_code, target_relation) %}\n{{ compiled_code }}\n# --- Autogenerated dbt materialization code. --- #\ndbt = dbtObj(spark.table)\ndf = model(dbt, spark)\n\n# make sure pyspark exists in the namepace, for 7.3.x-scala2.12 it does not exist\nimport pyspark\n# make sure pandas exists before using it\ntry:\n import pandas\n pandas_available = True\nexcept ImportError:\n pandas_available = False\n\n# make sure pyspark.pandas exists before using it\ntry:\n import pyspark.pandas\n pyspark_pandas_api_available = True\nexcept ImportError:\n pyspark_pandas_api_available = False\n\n# make sure databricks.koalas exists before using it\ntry:\n import databricks.koalas\n koalas_available = True\nexcept ImportError:\n koalas_available = False\n\n# preferentially convert pandas DataFrames to pandas-on-Spark or Koalas DataFrames first\n# since they know how to convert pandas DataFrames better than `spark.createDataFrame(df)`\n# and converting from pandas-on-Spark to Spark DataFrame has no overhead\nif pyspark_pandas_api_available and pandas_available and isinstance(df, pandas.core.frame.DataFrame):\n df = pyspark.pandas.frame.DataFrame(df)\nelif koalas_available and pandas_available and isinstance(df, pandas.core.frame.DataFrame):\n df = databricks.koalas.frame.DataFrame(df)\n\n# convert to pyspark.sql.dataframe.DataFrame\nif isinstance(df, pyspark.sql.dataframe.DataFrame):\n pass # since it is already a Spark DataFrame\nelif pyspark_pandas_api_available and isinstance(df, pyspark.pandas.frame.DataFrame):\n df = df.to_spark()\nelif koalas_available and isinstance(df, databricks.koalas.frame.DataFrame):\n df = df.to_spark()\nelif pandas_available and isinstance(df, pandas.core.frame.DataFrame):\n df = spark.createDataFrame(df)\nelse:\n msg = f\"{type(df)} is not a supported type for dbt Python materialization\"\n raise Exception(msg)\n\ndf.write.mode(\"overwrite\").format(\"delta\").option(\"overwriteSchema\", \"true\").saveAsTable(\"{{ target_relation }}\")\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.020328, "supported_languages": null}, "macro.dbt_spark.py_script_comment": {"name": "py_script_comment", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/table.sql", "original_file_path": "macros/materializations/table.sql", "unique_id": "macro.dbt_spark.py_script_comment", "macro_sql": "{%macro py_script_comment()%}\n# how to execute python model in notebook\n# dbt = dbtObj(spark.table)\n# df = model(dbt, spark)\n{%endmacro%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.02041, "supported_languages": null}, "macro.dbt_spark.spark__snapshot_hash_arguments": {"name": "spark__snapshot_hash_arguments", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/snapshot.sql", "original_file_path": "macros/materializations/snapshot.sql", "unique_id": "macro.dbt_spark.spark__snapshot_hash_arguments", "macro_sql": "{% macro spark__snapshot_hash_arguments(args) -%}\n md5({%- for arg in args -%}\n coalesce(cast({{ arg }} as string ), '')\n {% if not loop.last %} || '|' || {% endif %}\n {%- endfor -%})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0294888, "supported_languages": null}, "macro.dbt_spark.spark__snapshot_string_as_time": {"name": "spark__snapshot_string_as_time", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/snapshot.sql", "original_file_path": "macros/materializations/snapshot.sql", "unique_id": "macro.dbt_spark.spark__snapshot_string_as_time", "macro_sql": "{% macro spark__snapshot_string_as_time(timestamp) -%}\n {%- set result = \"to_timestamp('\" ~ timestamp ~ \"')\" -%}\n {{ return(result) }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.029675, "supported_languages": null}, "macro.dbt_spark.spark__snapshot_merge_sql": {"name": "spark__snapshot_merge_sql", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/snapshot.sql", "original_file_path": "macros/materializations/snapshot.sql", "unique_id": "macro.dbt_spark.spark__snapshot_merge_sql", "macro_sql": "{% macro spark__snapshot_merge_sql(target, source, insert_cols) -%}\n\n merge into {{ target }} as DBT_INTERNAL_DEST\n {% if target.is_iceberg %}\n {# create view only supports a name (no catalog, or schema) #}\n using {{ source.identifier }} as DBT_INTERNAL_SOURCE\n {% else %}\n using {{ source }} as DBT_INTERNAL_SOURCE\n {% endif %}\n on DBT_INTERNAL_SOURCE.dbt_scd_id = DBT_INTERNAL_DEST.dbt_scd_id\n when matched\n and DBT_INTERNAL_DEST.dbt_valid_to is null\n and DBT_INTERNAL_SOURCE.dbt_change_type in ('update', 'delete')\n then update\n set dbt_valid_to = DBT_INTERNAL_SOURCE.dbt_valid_to\n\n when not matched\n and DBT_INTERNAL_SOURCE.dbt_change_type = 'insert'\n then insert *\n ;\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0299652, "supported_languages": null}, "macro.dbt_spark.spark_build_snapshot_staging_table": {"name": "spark_build_snapshot_staging_table", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/snapshot.sql", "original_file_path": "macros/materializations/snapshot.sql", "unique_id": "macro.dbt_spark.spark_build_snapshot_staging_table", "macro_sql": "{% macro spark_build_snapshot_staging_table(strategy, sql, target_relation) %}\n {% set tmp_identifier = target_relation.identifier ~ '__dbt_tmp' %}\n\n {% if target_relation.is_iceberg %}\n {# iceberg catalog does not support create view, but regular spark does. We removed the catalog and schema #}\n {%- set tmp_relation = api.Relation.create(identifier=tmp_identifier,\n schema=none,\n database=none,\n type='view') -%}\n {% else %}\n {%- set tmp_relation = api.Relation.create(identifier=tmp_identifier,\n schema=target_relation.schema,\n database=none,\n type='view') -%}\n {% endif %}\n\n {% set select = snapshot_staging_table(strategy, sql, target_relation) %}\n\n {# needs to be a non-temp view so that its columns can be ascertained via `describe` #}\n {% call statement('build_snapshot_staging_relation') %}\n {{ create_view_as(tmp_relation, select) }}\n {% endcall %}\n\n {% do return(tmp_relation) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.snapshot_staging_table", "macro.dbt.statement", "macro.dbt.create_view_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0307891, "supported_languages": null}, "macro.dbt_spark.spark__post_snapshot": {"name": "spark__post_snapshot", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/snapshot.sql", "original_file_path": "macros/materializations/snapshot.sql", "unique_id": "macro.dbt_spark.spark__post_snapshot", "macro_sql": "{% macro spark__post_snapshot(staging_relation) %}\n {% do adapter.drop_relation(staging_relation) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0309398, "supported_languages": null}, "macro.dbt_spark.spark__create_columns": {"name": "spark__create_columns", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/snapshot.sql", "original_file_path": "macros/materializations/snapshot.sql", "unique_id": "macro.dbt_spark.spark__create_columns", "macro_sql": "{% macro spark__create_columns(relation, columns) %}\n {% if columns|length > 0 %}\n {% call statement() %}\n alter table {{ relation }} add columns (\n {% for column in columns %}\n `{{ column.name }}` {{ column.data_type }} {{- ',' if not loop.last -}}\n {% endfor %}\n );\n {% endcall %}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.031355, "supported_languages": null}, "macro.dbt_spark.materialization_snapshot_spark": {"name": "materialization_snapshot_spark", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/snapshot.sql", "original_file_path": "macros/materializations/snapshot.sql", "unique_id": "macro.dbt_spark.materialization_snapshot_spark", "macro_sql": "{% materialization snapshot, adapter='spark' %}\n {%- set config = model['config'] -%}\n\n {%- set target_table = model.get('alias', model.get('name')) -%}\n\n {%- set strategy_name = config.get('strategy') -%}\n {%- set unique_key = config.get('unique_key') %}\n {%- set file_format = config.get('file_format', 'parquet') -%}\n {%- set grant_config = config.get('grants') -%}\n\n {% set target_relation_exists, target_relation = get_or_create_relation(\n database=none,\n schema=model.schema,\n identifier=target_table,\n type='table') -%}\n\n {%- if file_format not in ['delta', 'iceberg', 'hudi'] -%}\n {% set invalid_format_msg -%}\n Invalid file format: {{ file_format }}\n Snapshot functionality requires file_format be set to 'delta' or 'iceberg' or 'hudi'\n {%- endset %}\n {% do exceptions.raise_compiler_error(invalid_format_msg) %}\n {% endif %}\n\n {%- if target_relation_exists -%}\n {%- if not target_relation.is_delta and not target_relation.is_iceberg and not target_relation.is_hudi -%}\n {% set invalid_format_msg -%}\n The existing table {{ model.schema }}.{{ target_table }} is in another format than 'delta' or 'iceberg' or 'hudi'\n {%- endset %}\n {% do exceptions.raise_compiler_error(invalid_format_msg) %}\n {% endif %}\n {% endif %}\n\n {% if not adapter.check_schema_exists(model.database, model.schema) %}\n {% do create_schema(model.schema) %}\n {% endif %}\n\n {%- if not target_relation.is_table -%}\n {% do exceptions.relation_wrong_type(target_relation, 'table') %}\n {%- endif -%}\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\n\n {% set strategy_macro = strategy_dispatch(strategy_name) %}\n {% set strategy = strategy_macro(model, \"snapshotted_data\", \"source_data\", config, target_relation_exists) %}\n\n {% if not target_relation_exists %}\n\n {% set build_sql = build_snapshot_table(strategy, model['compiled_code']) %}\n {% set final_sql = create_table_as(False, target_relation, build_sql) %}\n\n {% else %}\n\n {{ adapter.valid_snapshot_target(target_relation) }}\n\n {% set staging_table = spark_build_snapshot_staging_table(strategy, sql, target_relation) %}\n\n -- this may no-op if the database does not require column expansion\n {% do adapter.expand_target_column_types(from_relation=staging_table,\n to_relation=target_relation) %}\n\n {% set missing_columns = adapter.get_missing_columns(staging_table, target_relation)\n | rejectattr('name', 'equalto', 'dbt_change_type')\n | rejectattr('name', 'equalto', 'DBT_CHANGE_TYPE')\n | rejectattr('name', 'equalto', 'dbt_unique_key')\n | rejectattr('name', 'equalto', 'DBT_UNIQUE_KEY')\n | list %}\n\n {% do create_columns(target_relation, missing_columns) %}\n\n {% set source_columns = adapter.get_columns_in_relation(staging_table)\n | rejectattr('name', 'equalto', 'dbt_change_type')\n | rejectattr('name', 'equalto', 'DBT_CHANGE_TYPE')\n | rejectattr('name', 'equalto', 'dbt_unique_key')\n | rejectattr('name', 'equalto', 'DBT_UNIQUE_KEY')\n | list %}\n\n {% set quoted_source_columns = [] %}\n {% for column in source_columns %}\n {% do quoted_source_columns.append(adapter.quote(column.name)) %}\n {% endfor %}\n\n {% set final_sql = snapshot_merge_sql(\n target = target_relation,\n source = staging_table,\n insert_cols = quoted_source_columns\n )\n %}\n\n {% endif %}\n\n {% call statement('main') %}\n {{ final_sql }}\n {% endcall %}\n\n {% set should_revoke = should_revoke(target_relation_exists, full_refresh_mode) %}\n {% do apply_grants(target_relation, grant_config, should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n {{ run_hooks(post_hooks, inside_transaction=True) }}\n\n {{ adapter.commit() }}\n\n {% if staging_table is defined %}\n {% do post_snapshot(staging_table) %}\n {% endif %}\n\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{% endmaterialization %}", "depends_on": {"macros": ["macro.dbt.get_or_create_relation", "macro.dbt.create_schema", "macro.dbt.run_hooks", "macro.dbt.strategy_dispatch", "macro.dbt.build_snapshot_table", "macro.dbt.create_table_as", "macro.dbt_spark.spark_build_snapshot_staging_table", "macro.dbt.create_columns", "macro.dbt.snapshot_merge_sql", "macro.dbt.statement", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs", "macro.dbt.post_snapshot"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.035428, "supported_languages": ["sql"]}, "macro.dbt_spark.spark__get_merge_update_columns": {"name": "spark__get_merge_update_columns", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/incremental/column_helpers.sql", "original_file_path": "macros/materializations/incremental/column_helpers.sql", "unique_id": "macro.dbt_spark.spark__get_merge_update_columns", "macro_sql": "{% macro spark__get_merge_update_columns(merge_update_columns, merge_exclude_columns, dest_columns) %}\n {%- set default_cols = None -%}\n\n {%- if merge_update_columns and merge_exclude_columns -%}\n {{ exceptions.raise_compiler_error(\n 'Model cannot specify merge_update_columns and merge_exclude_columns. Please update model to use only one config'\n )}}\n {%- elif merge_update_columns -%}\n {%- set update_columns = merge_update_columns -%}\n {%- elif merge_exclude_columns -%}\n {%- set update_columns = [] -%}\n {%- for column in dest_columns -%}\n {% if column.column | lower not in merge_exclude_columns | map(\"lower\") | list %}\n {%- do update_columns.append(column.quoted) -%}\n {% endif %}\n {%- endfor -%}\n {%- else -%}\n {%- set update_columns = default_cols -%}\n {%- endif -%}\n\n {{ return(update_columns) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0364401, "supported_languages": null}, "macro.dbt_spark.dbt_spark_validate_get_file_format": {"name": "dbt_spark_validate_get_file_format", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/incremental/validate.sql", "original_file_path": "macros/materializations/incremental/validate.sql", "unique_id": "macro.dbt_spark.dbt_spark_validate_get_file_format", "macro_sql": "{% macro dbt_spark_validate_get_file_format(raw_file_format) %}\n {#-- Validate the file format #}\n\n {% set accepted_formats = ['text', 'csv', 'json', 'jdbc', 'parquet', 'orc', 'hive', 'delta', 'iceberg', 'libsvm', 'hudi'] %}\n\n {% set invalid_file_format_msg -%}\n Invalid file format provided: {{ raw_file_format }}\n Expected one of: {{ accepted_formats | join(', ') }}\n {%- endset %}\n\n {% if raw_file_format not in accepted_formats %}\n {% do exceptions.raise_compiler_error(invalid_file_format_msg) %}\n {% endif %}\n\n {% do return(raw_file_format) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0378702, "supported_languages": null}, "macro.dbt_spark.dbt_spark_validate_get_incremental_strategy": {"name": "dbt_spark_validate_get_incremental_strategy", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/incremental/validate.sql", "original_file_path": "macros/materializations/incremental/validate.sql", "unique_id": "macro.dbt_spark.dbt_spark_validate_get_incremental_strategy", "macro_sql": "{% macro dbt_spark_validate_get_incremental_strategy(raw_strategy, file_format) %}\n {#-- Validate the incremental strategy #}\n\n {% set invalid_strategy_msg -%}\n Invalid incremental strategy provided: {{ raw_strategy }}\n Expected one of: 'append', 'merge', 'insert_overwrite'\n {%- endset %}\n\n {% set invalid_merge_msg -%}\n Invalid incremental strategy provided: {{ raw_strategy }}\n You can only choose this strategy when file_format is set to 'delta' or 'iceberg' or 'hudi'\n {%- endset %}\n\n {% set invalid_insert_overwrite_delta_msg -%}\n Invalid incremental strategy provided: {{ raw_strategy }}\n You cannot use this strategy when file_format is set to 'delta' or 'iceberg'\n Use the 'append' or 'merge' strategy instead\n {%- endset %}\n\n {% set invalid_insert_overwrite_endpoint_msg -%}\n Invalid incremental strategy provided: {{ raw_strategy }}\n You cannot use this strategy when connecting via endpoint\n Use the 'append' or 'merge' strategy instead\n {%- endset %}\n\n {% if raw_strategy not in ['append', 'merge', 'insert_overwrite'] %}\n {% do exceptions.raise_compiler_error(invalid_strategy_msg) %}\n {%-else %}\n {% if raw_strategy == 'merge' and file_format not in ['delta', 'iceberg', 'hudi'] %}\n {% do exceptions.raise_compiler_error(invalid_merge_msg) %}\n {% endif %}\n {% if raw_strategy == 'insert_overwrite' and file_format == 'delta' %}\n {% do exceptions.raise_compiler_error(invalid_insert_overwrite_delta_msg) %}\n {% endif %}\n {% if raw_strategy == 'insert_overwrite' and target.endpoint %}\n {% do exceptions.raise_compiler_error(invalid_insert_overwrite_endpoint_msg) %}\n {% endif %}\n {% endif %}\n\n {% do return(raw_strategy) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.039005, "supported_languages": null}, "macro.dbt_spark.get_insert_overwrite_sql": {"name": "get_insert_overwrite_sql", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/incremental/strategies.sql", "original_file_path": "macros/materializations/incremental/strategies.sql", "unique_id": "macro.dbt_spark.get_insert_overwrite_sql", "macro_sql": "{% macro get_insert_overwrite_sql(source_relation, target_relation, existing_relation) %}\n\n {%- set dest_columns = adapter.get_columns_in_relation(target_relation) -%}\n {%- set dest_cols_csv = dest_columns | map(attribute='quoted') | join(', ') -%}\n {% if existing_relation.is_iceberg %}\n {# removed table from statement for iceberg #}\n insert overwrite {{ target_relation }}\n {# removed partition_cols for iceberg as well #}\n {% else %}\n insert overwrite table {{ target_relation }}\n {{ partition_cols(label=\"partition\") }}\n {% endif %}\n select {{dest_cols_csv}} from {{ source_relation }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.partition_cols"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.041145, "supported_languages": null}, "macro.dbt_spark.get_insert_into_sql": {"name": "get_insert_into_sql", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/incremental/strategies.sql", "original_file_path": "macros/materializations/incremental/strategies.sql", "unique_id": "macro.dbt_spark.get_insert_into_sql", "macro_sql": "{% macro get_insert_into_sql(source_relation, target_relation) %}\n\n {%- set dest_columns = adapter.get_columns_in_relation(target_relation) -%}\n {%- set dest_cols_csv = dest_columns | map(attribute='quoted') | join(', ') -%}\n insert into table {{ target_relation }}\n select {{dest_cols_csv}} from {{ source_relation }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.041476, "supported_languages": null}, "macro.dbt_spark.spark__get_merge_sql": {"name": "spark__get_merge_sql", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/incremental/strategies.sql", "original_file_path": "macros/materializations/incremental/strategies.sql", "unique_id": "macro.dbt_spark.spark__get_merge_sql", "macro_sql": "{% macro spark__get_merge_sql(target, source, unique_key, dest_columns, incremental_predicates) %}\n {# need dest_columns for merge_exclude_columns, default to use \"*\" #}\n {%- set predicates = [] if incremental_predicates is none else [] + incremental_predicates -%}\n {%- set dest_columns = adapter.get_columns_in_relation(target) -%}\n {%- set merge_update_columns = config.get('merge_update_columns') -%}\n {%- set merge_exclude_columns = config.get('merge_exclude_columns') -%}\n {%- set update_columns = get_merge_update_columns(merge_update_columns, merge_exclude_columns, dest_columns) -%}\n\n {% if unique_key %}\n {% if unique_key is sequence and unique_key is not mapping and unique_key is not string %}\n {% for key in unique_key %}\n {% set this_key_match %}\n DBT_INTERNAL_SOURCE.{{ key }} = DBT_INTERNAL_DEST.{{ key }}\n {% endset %}\n {% do predicates.append(this_key_match) %}\n {% endfor %}\n {% else %}\n {% set unique_key_match %}\n DBT_INTERNAL_SOURCE.{{ unique_key }} = DBT_INTERNAL_DEST.{{ unique_key }}\n {% endset %}\n {% do predicates.append(unique_key_match) %}\n {% endif %}\n {% else %}\n {% do predicates.append('FALSE') %}\n {% endif %}\n\n {{ sql_header if sql_header is not none }}\n\n merge into {{ target }} as DBT_INTERNAL_DEST\n using {{ source }} as DBT_INTERNAL_SOURCE\n on {{ predicates | join(' and ') }}\n\n when matched then update set\n {% if update_columns -%}{%- for column_name in update_columns %}\n {{ column_name }} = DBT_INTERNAL_SOURCE.{{ column_name }}\n {%- if not loop.last %}, {%- endif %}\n {%- endfor %}\n {%- else %} * {% endif %}\n\n when not matched then insert *\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_merge_update_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.042979, "supported_languages": null}, "macro.dbt_spark.dbt_spark_get_incremental_sql": {"name": "dbt_spark_get_incremental_sql", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/incremental/strategies.sql", "original_file_path": "macros/materializations/incremental/strategies.sql", "unique_id": "macro.dbt_spark.dbt_spark_get_incremental_sql", "macro_sql": "{% macro dbt_spark_get_incremental_sql(strategy, source, target, existing, unique_key, incremental_predicates) %}\n {%- if strategy == 'append' -%}\n {#-- insert new records into existing table, without updating or overwriting #}\n {{ get_insert_into_sql(source, target) }}\n {%- elif strategy == 'insert_overwrite' -%}\n {#-- insert statements don't like CTEs, so support them via a temp view #}\n {{ get_insert_overwrite_sql(source, target, existing) }}\n {%- elif strategy == 'merge' -%}\n {#-- merge all columns for datasources which implement MERGE INTO (e.g. databricks, iceberg) - schema changes are handled for us #}\n {{ get_merge_sql(target, source, unique_key, dest_columns=none, incremental_predicates=incremental_predicates) }}\n {%- else -%}\n {% set no_sql_for_strategy_msg -%}\n No known SQL for the incremental strategy provided: {{ strategy }}\n {%- endset %}\n {%- do exceptions.raise_compiler_error(no_sql_for_strategy_msg) -%}\n {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.get_insert_into_sql", "macro.dbt_spark.get_insert_overwrite_sql", "macro.dbt.get_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.043659, "supported_languages": null}, "macro.dbt_spark.materialization_incremental_spark": {"name": "materialization_incremental_spark", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/materializations/incremental/incremental.sql", "original_file_path": "macros/materializations/incremental/incremental.sql", "unique_id": "macro.dbt_spark.materialization_incremental_spark", "macro_sql": "{% materialization incremental, adapter='spark', supported_languages=['sql', 'python'] -%}\n {#-- Validate early so we don't run SQL if the file_format + strategy combo is invalid --#}\n {%- set raw_file_format = config.get('file_format', default='parquet') -%}\n {%- set raw_strategy = config.get('incremental_strategy') or 'append' -%}\n {%- set grant_config = config.get('grants') -%}\n\n {%- set file_format = dbt_spark_validate_get_file_format(raw_file_format) -%}\n {%- set strategy = dbt_spark_validate_get_incremental_strategy(raw_strategy, file_format) -%}\n\n {#-- Set vars --#}\n\n {%- set unique_key = config.get('unique_key', none) -%}\n {%- set partition_by = config.get('partition_by', none) -%}\n {%- set language = model['language'] -%}\n {%- set on_schema_change = incremental_validate_on_schema_change(config.get('on_schema_change'), default='ignore') -%}\n {%- set incremental_predicates = config.get('predicates', none) or config.get('incremental_predicates', none) -%}\n {%- set target_relation = this -%}\n {%- set existing_relation = load_relation(this) -%}\n {%- set tmp_relation = make_temp_relation(this) -%}\n\n {#-- for SQL model we will create temp view that doesn't have database and schema --#}\n {%- if language == 'sql'-%}\n {%- set tmp_relation = tmp_relation.include(database=false, schema=false) -%}\n {%- endif -%}\n\n {#-- Set Overwrite Mode --#}\n {%- if strategy == 'insert_overwrite' and partition_by -%}\n {%- call statement() -%}\n set spark.sql.sources.partitionOverwriteMode = DYNAMIC\n {%- endcall -%}\n {%- endif -%}\n\n {#-- Run pre-hooks --#}\n {{ run_hooks(pre_hooks) }}\n\n {#-- Incremental run logic --#}\n {%- if existing_relation is none -%}\n {#-- Relation must be created --#}\n {%- call statement('main', language=language) -%}\n {{ create_table_as(False, target_relation, compiled_code, language) }}\n {%- endcall -%}\n {% do persist_constraints(target_relation, model) %}\n {%- elif existing_relation.is_view or should_full_refresh() -%}\n {#-- Relation must be dropped & recreated --#}\n {% set is_delta = (file_format == 'delta' and existing_relation.is_delta) %}\n {% if not is_delta %} {#-- If Delta, we will `create or replace` below, so no need to drop --#}\n {% do adapter.drop_relation(existing_relation) %}\n {% endif %}\n {%- call statement('main', language=language) -%}\n {{ create_table_as(False, target_relation, compiled_code, language) }}\n {%- endcall -%}\n {% do persist_constraints(target_relation, model) %}\n {%- else -%}\n {#-- Relation must be merged --#}\n {%- call statement('create_tmp_relation', language=language) -%}\n {{ create_table_as(True, tmp_relation, compiled_code, language) }}\n {%- endcall -%}\n {%- do process_schema_changes(on_schema_change, tmp_relation, existing_relation) -%}\n {%- call statement('main') -%}\n {{ dbt_spark_get_incremental_sql(strategy, tmp_relation, target_relation, existing_relation, unique_key, incremental_predicates) }}\n {%- endcall -%}\n {%- if language == 'python' -%}\n {#--\n This is yucky.\n See note in dbt-spark/dbt/include/spark/macros/adapters.sql\n re: python models and temporary views.\n\n Also, why do neither drop_relation or adapter.drop_relation work here?!\n --#}\n {% call statement('drop_relation') -%}\n drop table if exists {{ tmp_relation }}\n {%- endcall %}\n {%- endif -%}\n {%- endif -%}\n\n {% set should_revoke = should_revoke(existing_relation, full_refresh_mode) %}\n {% do apply_grants(target_relation, grant_config, should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n {{ run_hooks(post_hooks) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{%- endmaterialization %}", "depends_on": {"macros": ["macro.dbt_spark.dbt_spark_validate_get_file_format", "macro.dbt_spark.dbt_spark_validate_get_incremental_strategy", "macro.dbt.incremental_validate_on_schema_change", "macro.dbt.load_relation", "macro.dbt.make_temp_relation", "macro.dbt.statement", "macro.dbt.run_hooks", "macro.dbt.create_table_as", "macro.dbt_spark.persist_constraints", "macro.dbt.should_full_refresh", "macro.dbt.process_schema_changes", "macro.dbt_spark.dbt_spark_get_incremental_sql", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0475662, "supported_languages": ["sql", "python"]}, "macro.dbt_spark.spark__concat": {"name": "spark__concat", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/utils/concat.sql", "original_file_path": "macros/utils/concat.sql", "unique_id": "macro.dbt_spark.spark__concat", "macro_sql": "{% macro spark__concat(fields) -%}\n concat({{ fields|join(', ') }})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.047768, "supported_languages": null}, "macro.dbt_spark.assert_not_null": {"name": "assert_not_null", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/utils/assert_not_null.sql", "original_file_path": "macros/utils/assert_not_null.sql", "unique_id": "macro.dbt_spark.assert_not_null", "macro_sql": "{% macro assert_not_null(function, arg) -%}\n {{ return(adapter.dispatch('assert_not_null', 'dbt')(function, arg)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__assert_not_null"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.048099, "supported_languages": null}, "macro.dbt_spark.spark__assert_not_null": {"name": "spark__assert_not_null", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/utils/assert_not_null.sql", "original_file_path": "macros/utils/assert_not_null.sql", "unique_id": "macro.dbt_spark.spark__assert_not_null", "macro_sql": "{% macro spark__assert_not_null(function, arg) %}\n\n coalesce({{function}}({{arg}}), nvl2({{function}}({{arg}}), assert_true({{function}}({{arg}}) is not null), null))\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.048311, "supported_languages": null}, "macro.dbt_spark.spark__dateadd": {"name": "spark__dateadd", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/utils/dateadd.sql", "original_file_path": "macros/utils/dateadd.sql", "unique_id": "macro.dbt_spark.spark__dateadd", "macro_sql": "{% macro spark__dateadd(datepart, interval, from_date_or_timestamp) %}\n\n {%- set clock_component -%}\n {# make sure the dates + timestamps are real, otherwise raise an error asap #}\n to_unix_timestamp({{ assert_not_null('to_timestamp', from_date_or_timestamp) }})\n - to_unix_timestamp({{ assert_not_null('date', from_date_or_timestamp) }})\n {%- endset -%}\n\n {%- if datepart in ['day', 'week'] -%}\n\n {%- set multiplier = 7 if datepart == 'week' else 1 -%}\n\n to_timestamp(\n to_unix_timestamp(\n date_add(\n {{ assert_not_null('date', from_date_or_timestamp) }},\n cast({{interval}} * {{multiplier}} as int)\n )\n ) + {{clock_component}}\n )\n\n {%- elif datepart in ['month', 'quarter', 'year'] -%}\n\n {%- set multiplier -%}\n {%- if datepart == 'month' -%} 1\n {%- elif datepart == 'quarter' -%} 3\n {%- elif datepart == 'year' -%} 12\n {%- endif -%}\n {%- endset -%}\n\n to_timestamp(\n to_unix_timestamp(\n add_months(\n {{ assert_not_null('date', from_date_or_timestamp) }},\n cast({{interval}} * {{multiplier}} as int)\n )\n ) + {{clock_component}}\n )\n\n {%- elif datepart in ('hour', 'minute', 'second', 'millisecond', 'microsecond') -%}\n\n {%- set multiplier -%}\n {%- if datepart == 'hour' -%} 3600\n {%- elif datepart == 'minute' -%} 60\n {%- elif datepart == 'second' -%} 1\n {%- elif datepart == 'millisecond' -%} (1/1000000)\n {%- elif datepart == 'microsecond' -%} (1/1000000)\n {%- endif -%}\n {%- endset -%}\n\n to_timestamp(\n {{ assert_not_null('to_unix_timestamp', from_date_or_timestamp) }}\n + cast({{interval}} * {{multiplier}} as int)\n )\n\n {%- else -%}\n\n {{ exceptions.raise_compiler_error(\"macro dateadd not implemented for datepart ~ '\" ~ datepart ~ \"' ~ on Spark\") }}\n\n {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.assert_not_null"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.05132, "supported_languages": null}, "macro.dbt_spark.spark__current_timestamp": {"name": "spark__current_timestamp", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/utils/timestamps.sql", "original_file_path": "macros/utils/timestamps.sql", "unique_id": "macro.dbt_spark.spark__current_timestamp", "macro_sql": "{% macro spark__current_timestamp() -%}\n current_timestamp()\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.051441, "supported_languages": null}, "macro.dbt_spark.spark__escape_single_quotes": {"name": "spark__escape_single_quotes", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/utils/escape_single_quotes.sql", "original_file_path": "macros/utils/escape_single_quotes.sql", "unique_id": "macro.dbt_spark.spark__escape_single_quotes", "macro_sql": "{% macro spark__escape_single_quotes(expression) -%}\n{{ expression | replace(\"'\",\"\\\\'\") }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0516338, "supported_languages": null}, "macro.dbt_spark.spark__listagg": {"name": "spark__listagg", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/utils/listagg.sql", "original_file_path": "macros/utils/listagg.sql", "unique_id": "macro.dbt_spark.spark__listagg", "macro_sql": "{% macro spark__listagg(measure, delimiter_text, order_by_clause, limit_num) -%}\n\n {% if order_by_clause %}\n {{ exceptions.warn(\"order_by_clause is not supported for listagg on Spark/Databricks\") }}\n {% endif %}\n\n {% set collect_list %} collect_list({{ measure }}) {% endset %}\n\n {% set limited %} slice({{ collect_list }}, 1, {{ limit_num }}) {% endset %}\n\n {% set collected = limited if limit_num else collect_list %}\n\n {% set final %} array_join({{ collected }}, {{ delimiter_text }}) {% endset %}\n\n {% do return(final) %}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0524118, "supported_languages": null}, "macro.dbt_spark.spark__datediff": {"name": "spark__datediff", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/utils/datediff.sql", "original_file_path": "macros/utils/datediff.sql", "unique_id": "macro.dbt_spark.spark__datediff", "macro_sql": "{% macro spark__datediff(first_date, second_date, datepart) %}\n\n {%- if datepart in ['day', 'week', 'month', 'quarter', 'year'] -%}\n\n {# make sure the dates are real, otherwise raise an error asap #}\n {% set first_date = assert_not_null('date', first_date) %}\n {% set second_date = assert_not_null('date', second_date) %}\n\n {%- endif -%}\n\n {%- if datepart == 'day' -%}\n\n datediff({{second_date}}, {{first_date}})\n\n {%- elif datepart == 'week' -%}\n\n case when {{first_date}} < {{second_date}}\n then floor(datediff({{second_date}}, {{first_date}})/7)\n else ceil(datediff({{second_date}}, {{first_date}})/7)\n end\n\n -- did we cross a week boundary (Sunday)?\n + case\n when {{first_date}} < {{second_date}} and dayofweek({{second_date}}) < dayofweek({{first_date}}) then 1\n when {{first_date}} > {{second_date}} and dayofweek({{second_date}}) > dayofweek({{first_date}}) then -1\n else 0 end\n\n {%- elif datepart == 'month' -%}\n\n case when {{first_date}} < {{second_date}}\n then floor(months_between(date({{second_date}}), date({{first_date}})))\n else ceil(months_between(date({{second_date}}), date({{first_date}})))\n end\n\n -- did we cross a month boundary?\n + case\n when {{first_date}} < {{second_date}} and dayofmonth({{second_date}}) < dayofmonth({{first_date}}) then 1\n when {{first_date}} > {{second_date}} and dayofmonth({{second_date}}) > dayofmonth({{first_date}}) then -1\n else 0 end\n\n {%- elif datepart == 'quarter' -%}\n\n case when {{first_date}} < {{second_date}}\n then floor(months_between(date({{second_date}}), date({{first_date}}))/3)\n else ceil(months_between(date({{second_date}}), date({{first_date}}))/3)\n end\n\n -- did we cross a quarter boundary?\n + case\n when {{first_date}} < {{second_date}} and (\n (dayofyear({{second_date}}) - (quarter({{second_date}}) * 365/4))\n < (dayofyear({{first_date}}) - (quarter({{first_date}}) * 365/4))\n ) then 1\n when {{first_date}} > {{second_date}} and (\n (dayofyear({{second_date}}) - (quarter({{second_date}}) * 365/4))\n > (dayofyear({{first_date}}) - (quarter({{first_date}}) * 365/4))\n ) then -1\n else 0 end\n\n {%- elif datepart == 'year' -%}\n\n year({{second_date}}) - year({{first_date}})\n\n {%- elif datepart in ('hour', 'minute', 'second', 'millisecond', 'microsecond') -%}\n\n {%- set divisor -%}\n {%- if datepart == 'hour' -%} 3600\n {%- elif datepart == 'minute' -%} 60\n {%- elif datepart == 'second' -%} 1\n {%- elif datepart == 'millisecond' -%} (1/1000)\n {%- elif datepart == 'microsecond' -%} (1/1000000)\n {%- endif -%}\n {%- endset -%}\n\n case when {{first_date}} < {{second_date}}\n then ceil((\n {# make sure the timestamps are real, otherwise raise an error asap #}\n {{ assert_not_null('to_unix_timestamp', assert_not_null('to_timestamp', second_date)) }}\n - {{ assert_not_null('to_unix_timestamp', assert_not_null('to_timestamp', first_date)) }}\n ) / {{divisor}})\n else floor((\n {{ assert_not_null('to_unix_timestamp', assert_not_null('to_timestamp', second_date)) }}\n - {{ assert_not_null('to_unix_timestamp', assert_not_null('to_timestamp', first_date)) }}\n ) / {{divisor}})\n end\n\n {% if datepart == 'millisecond' %}\n + cast(date_format({{second_date}}, 'SSS') as int)\n - cast(date_format({{first_date}}, 'SSS') as int)\n {% endif %}\n\n {% if datepart == 'microsecond' %}\n {% set capture_str = '[0-9]{4}-[0-9]{2}-[0-9]{2}.[0-9]{2}:[0-9]{2}:[0-9]{2}.([0-9]{6})' %}\n -- Spark doesn't really support microseconds, so this is a massive hack!\n -- It will only work if the timestamp-string is of the format\n -- 'yyyy-MM-dd-HH mm.ss.SSSSSS'\n + cast(regexp_extract({{second_date}}, '{{capture_str}}', 1) as int)\n - cast(regexp_extract({{first_date}}, '{{capture_str}}', 1) as int)\n {% endif %}\n\n {%- else -%}\n\n {{ exceptions.raise_compiler_error(\"macro datediff not implemented for datepart ~ '\" ~ datepart ~ \"' ~ on Spark\") }}\n\n {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.assert_not_null"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.060124, "supported_languages": null}, "macro.dbt_spark.spark__any_value": {"name": "spark__any_value", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/utils/any_value.sql", "original_file_path": "macros/utils/any_value.sql", "unique_id": "macro.dbt_spark.spark__any_value", "macro_sql": "{% macro spark__any_value(expression) -%}\n {#-- return any value (non-deterministic) --#}\n first({{ expression }})\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.060301, "supported_languages": null}, "macro.dbt_spark.spark__array_concat": {"name": "spark__array_concat", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/utils/array_concat.sql", "original_file_path": "macros/utils/array_concat.sql", "unique_id": "macro.dbt_spark.spark__array_concat", "macro_sql": "{% macro spark__array_concat(array_1, array_2) -%}\n concat({{ array_1 }}, {{ array_2 }})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0604732, "supported_languages": null}, "macro.dbt_spark.spark__bool_or": {"name": "spark__bool_or", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/utils/bool_or.sql", "original_file_path": "macros/utils/bool_or.sql", "unique_id": "macro.dbt_spark.spark__bool_or", "macro_sql": "{% macro spark__bool_or(expression) -%}\n\n max({{ expression }})\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.060628, "supported_languages": null}, "macro.dbt_spark.spark__split_part": {"name": "spark__split_part", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/utils/split_part.sql", "original_file_path": "macros/utils/split_part.sql", "unique_id": "macro.dbt_spark.spark__split_part", "macro_sql": "{% macro spark__split_part(string_text, delimiter_text, part_number) %}\n\n {% set delimiter_expr %}\n\n -- escape if starts with a special character\n case when regexp_extract({{ delimiter_text }}, '([^A-Za-z0-9])(.*)', 1) != '_'\n then concat('\\\\', {{ delimiter_text }})\n else {{ delimiter_text }} end\n\n {% endset %}\n\n {% set split_part_expr %}\n\n split(\n {{ string_text }},\n {{ delimiter_expr }}\n )[({{ part_number - 1 }})]\n\n {% endset %}\n\n {{ return(split_part_expr) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0612118, "supported_languages": null}, "macro.dbt_spark.spark__array_construct": {"name": "spark__array_construct", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/utils/array_construct.sql", "original_file_path": "macros/utils/array_construct.sql", "unique_id": "macro.dbt_spark.spark__array_construct", "macro_sql": "{% macro spark__array_construct(inputs, data_type) -%}\n array( {{ inputs|join(' , ') }} )\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.061396, "supported_languages": null}, "macro.dbt_spark.spark__array_append": {"name": "spark__array_append", "resource_type": "macro", "package_name": "dbt_spark", "path": "macros/utils/array_append.sql", "original_file_path": "macros/utils/array_append.sql", "unique_id": "macro.dbt_spark.spark__array_append", "macro_sql": "{% macro spark__array_append(array, new_element) -%}\n {{ array_concat(array, array_construct([new_element])) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.array_concat", "macro.dbt.array_construct"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0616078, "supported_languages": null}, "macro.dbt.run_hooks": {"name": "run_hooks", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "unique_id": "macro.dbt.run_hooks", "macro_sql": "{% macro run_hooks(hooks, inside_transaction=True) %}\n {% for hook in hooks | selectattr('transaction', 'equalto', inside_transaction) %}\n {% if not inside_transaction and loop.first %}\n {% call statement(auto_begin=inside_transaction) %}\n commit;\n {% endcall %}\n {% endif %}\n {% set rendered = render(hook.get('sql')) | trim %}\n {% if (rendered | length) > 0 %}\n {% call statement(auto_begin=inside_transaction) %}\n {{ rendered }}\n {% endcall %}\n {% endif %}\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0627542, "supported_languages": null}, "macro.dbt.make_hook_config": {"name": "make_hook_config", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "unique_id": "macro.dbt.make_hook_config", "macro_sql": "{% macro make_hook_config(sql, inside_transaction) %}\n {{ tojson({\"sql\": sql, \"transaction\": inside_transaction}) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.062957, "supported_languages": null}, "macro.dbt.before_begin": {"name": "before_begin", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "unique_id": "macro.dbt.before_begin", "macro_sql": "{% macro before_begin(sql) %}\n {{ make_hook_config(sql, inside_transaction=False) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.make_hook_config"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0631092, "supported_languages": null}, "macro.dbt.in_transaction": {"name": "in_transaction", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "unique_id": "macro.dbt.in_transaction", "macro_sql": "{% macro in_transaction(sql) %}\n {{ make_hook_config(sql, inside_transaction=True) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.make_hook_config"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.063256, "supported_languages": null}, "macro.dbt.after_commit": {"name": "after_commit", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "unique_id": "macro.dbt.after_commit", "macro_sql": "{% macro after_commit(sql) %}\n {{ make_hook_config(sql, inside_transaction=False) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.make_hook_config"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.063402, "supported_languages": null}, "macro.dbt.set_sql_header": {"name": "set_sql_header", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/configs.sql", "original_file_path": "macros/materializations/configs.sql", "unique_id": "macro.dbt.set_sql_header", "macro_sql": "{% macro set_sql_header(config) -%}\n {{ config.set('sql_header', caller()) }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0637922, "supported_languages": null}, "macro.dbt.should_full_refresh": {"name": "should_full_refresh", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/configs.sql", "original_file_path": "macros/materializations/configs.sql", "unique_id": "macro.dbt.should_full_refresh", "macro_sql": "{% macro should_full_refresh() %}\n {% set config_full_refresh = config.get('full_refresh') %}\n {% if config_full_refresh is none %}\n {% set config_full_refresh = flags.FULL_REFRESH %}\n {% endif %}\n {% do return(config_full_refresh) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.064106, "supported_languages": null}, "macro.dbt.should_store_failures": {"name": "should_store_failures", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/configs.sql", "original_file_path": "macros/materializations/configs.sql", "unique_id": "macro.dbt.should_store_failures", "macro_sql": "{% macro should_store_failures() %}\n {% set config_store_failures = config.get('store_failures') %}\n {% if config_store_failures is none %}\n {% set config_store_failures = flags.STORE_FAILURES %}\n {% endif %}\n {% do return(config_store_failures) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0644228, "supported_languages": null}, "macro.dbt.snapshot_merge_sql": {"name": "snapshot_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/snapshot_merge.sql", "original_file_path": "macros/materializations/snapshots/snapshot_merge.sql", "unique_id": "macro.dbt.snapshot_merge_sql", "macro_sql": "{% macro snapshot_merge_sql(target, source, insert_cols) -%}\n {{ adapter.dispatch('snapshot_merge_sql', 'dbt')(target, source, insert_cols) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__snapshot_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.064874, "supported_languages": null}, "macro.dbt.default__snapshot_merge_sql": {"name": "default__snapshot_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/snapshot_merge.sql", "original_file_path": "macros/materializations/snapshots/snapshot_merge.sql", "unique_id": "macro.dbt.default__snapshot_merge_sql", "macro_sql": "{% macro default__snapshot_merge_sql(target, source, insert_cols) -%}\n {%- set insert_cols_csv = insert_cols | join(', ') -%}\n\n merge into {{ target }} as DBT_INTERNAL_DEST\n using {{ source }} as DBT_INTERNAL_SOURCE\n on DBT_INTERNAL_SOURCE.dbt_scd_id = DBT_INTERNAL_DEST.dbt_scd_id\n\n when matched\n and DBT_INTERNAL_DEST.dbt_valid_to is null\n and DBT_INTERNAL_SOURCE.dbt_change_type in ('update', 'delete')\n then update\n set dbt_valid_to = DBT_INTERNAL_SOURCE.dbt_valid_to\n\n when not matched\n and DBT_INTERNAL_SOURCE.dbt_change_type = 'insert'\n then insert ({{ insert_cols_csv }})\n values ({{ insert_cols_csv }})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0651572, "supported_languages": null}, "macro.dbt.strategy_dispatch": {"name": "strategy_dispatch", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.strategy_dispatch", "macro_sql": "{% macro strategy_dispatch(name) -%}\n{% set original_name = name %}\n {% if '.' in name %}\n {% set package_name, name = name.split(\".\", 1) %}\n {% else %}\n {% set package_name = none %}\n {% endif %}\n\n {% if package_name is none %}\n {% set package_context = context %}\n {% elif package_name in context %}\n {% set package_context = context[package_name] %}\n {% else %}\n {% set error_msg %}\n Could not find package '{{package_name}}', called with '{{original_name}}'\n {% endset %}\n {{ exceptions.raise_compiler_error(error_msg | trim) }}\n {% endif %}\n\n {%- set search_name = 'snapshot_' ~ name ~ '_strategy' -%}\n\n {% if search_name not in package_context %}\n {% set error_msg %}\n The specified strategy macro '{{name}}' was not found in package '{{ package_name }}'\n {% endset %}\n {{ exceptions.raise_compiler_error(error_msg | trim) }}\n {% endif %}\n {{ return(package_context[search_name]) }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.06897, "supported_languages": null}, "macro.dbt.snapshot_hash_arguments": {"name": "snapshot_hash_arguments", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.snapshot_hash_arguments", "macro_sql": "{% macro snapshot_hash_arguments(args) -%}\n {{ adapter.dispatch('snapshot_hash_arguments', 'dbt')(args) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__snapshot_hash_arguments"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.069152, "supported_languages": null}, "macro.dbt.default__snapshot_hash_arguments": {"name": "default__snapshot_hash_arguments", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.default__snapshot_hash_arguments", "macro_sql": "{% macro default__snapshot_hash_arguments(args) -%}\n md5({%- for arg in args -%}\n coalesce(cast({{ arg }} as varchar ), '')\n {% if not loop.last %} || '|' || {% endif %}\n {%- endfor -%})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.069387, "supported_languages": null}, "macro.dbt.snapshot_timestamp_strategy": {"name": "snapshot_timestamp_strategy", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.snapshot_timestamp_strategy", "macro_sql": "{% macro snapshot_timestamp_strategy(node, snapshotted_rel, current_rel, config, target_exists) %}\n {% set primary_key = config['unique_key'] %}\n {% set updated_at = config['updated_at'] %}\n {% set invalidate_hard_deletes = config.get('invalidate_hard_deletes', false) %}\n\n {#/*\n The snapshot relation might not have an {{ updated_at }} value if the\n snapshot strategy is changed from `check` to `timestamp`. We\n should use a dbt-created column for the comparison in the snapshot\n table instead of assuming that the user-supplied {{ updated_at }}\n will be present in the historical data.\n\n See https://github.com/dbt-labs/dbt-core/issues/2350\n */ #}\n {% set row_changed_expr -%}\n ({{ snapshotted_rel }}.dbt_valid_from < {{ current_rel }}.{{ updated_at }})\n {%- endset %}\n\n {% set scd_id_expr = snapshot_hash_arguments([primary_key, updated_at]) %}\n\n {% do return({\n \"unique_key\": primary_key,\n \"updated_at\": updated_at,\n \"row_changed\": row_changed_expr,\n \"scd_id\": scd_id_expr,\n \"invalidate_hard_deletes\": invalidate_hard_deletes\n }) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.snapshot_hash_arguments"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.070137, "supported_languages": null}, "macro.dbt.snapshot_string_as_time": {"name": "snapshot_string_as_time", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.snapshot_string_as_time", "macro_sql": "{% macro snapshot_string_as_time(timestamp) -%}\n {{ adapter.dispatch('snapshot_string_as_time', 'dbt')(timestamp) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__snapshot_string_as_time"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0703108, "supported_languages": null}, "macro.dbt.default__snapshot_string_as_time": {"name": "default__snapshot_string_as_time", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.default__snapshot_string_as_time", "macro_sql": "{% macro default__snapshot_string_as_time(timestamp) %}\n {% do exceptions.raise_not_implemented(\n 'snapshot_string_as_time macro not implemented for adapter '+adapter.type()\n ) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0705018, "supported_languages": null}, "macro.dbt.snapshot_check_all_get_existing_columns": {"name": "snapshot_check_all_get_existing_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.snapshot_check_all_get_existing_columns", "macro_sql": "{% macro snapshot_check_all_get_existing_columns(node, target_exists, check_cols_config) -%}\n {%- if not target_exists -%}\n {#-- no table yet -> return whatever the query does --#}\n {{ return((false, query_columns)) }}\n {%- endif -%}\n\n {#-- handle any schema changes --#}\n {%- set target_relation = adapter.get_relation(database=node.database, schema=node.schema, identifier=node.alias) -%}\n\n {% if check_cols_config == 'all' %}\n {%- set query_columns = get_columns_in_query(node['compiled_code']) -%}\n\n {% elif check_cols_config is iterable and (check_cols_config | length) > 0 %}\n {#-- query for proper casing/quoting, to support comparison below --#}\n {%- set select_check_cols_from_target -%}\n {#-- N.B. The whitespace below is necessary to avoid edge case issue with comments --#}\n {#-- See: https://github.com/dbt-labs/dbt-core/issues/6781 --#}\n select {{ check_cols_config | join(', ') }} from (\n {{ node['compiled_code'] }}\n ) subq\n {%- endset -%}\n {% set query_columns = get_columns_in_query(select_check_cols_from_target) %}\n\n {% else %}\n {% do exceptions.raise_compiler_error(\"Invalid value for 'check_cols': \" ~ check_cols_config) %}\n {% endif %}\n\n {%- set existing_cols = adapter.get_columns_in_relation(target_relation) | map(attribute = 'name') | list -%}\n {%- set ns = namespace() -%} {#-- handle for-loop scoping with a namespace --#}\n {%- set ns.column_added = false -%}\n\n {%- set intersection = [] -%}\n {%- for col in query_columns -%}\n {%- if col in existing_cols -%}\n {%- do intersection.append(adapter.quote(col)) -%}\n {%- else -%}\n {% set ns.column_added = true %}\n {%- endif -%}\n {%- endfor -%}\n {{ return((ns.column_added, intersection)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.get_columns_in_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.07197, "supported_languages": null}, "macro.dbt.snapshot_check_strategy": {"name": "snapshot_check_strategy", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.snapshot_check_strategy", "macro_sql": "{% macro snapshot_check_strategy(node, snapshotted_rel, current_rel, config, target_exists) %}\n {% set check_cols_config = config['check_cols'] %}\n {% set primary_key = config['unique_key'] %}\n {% set invalidate_hard_deletes = config.get('invalidate_hard_deletes', false) %}\n {% set updated_at = config.get('updated_at', snapshot_get_time()) %}\n\n {% set column_added = false %}\n\n {% set column_added, check_cols = snapshot_check_all_get_existing_columns(node, target_exists, check_cols_config) %}\n\n {%- set row_changed_expr -%}\n (\n {%- if column_added -%}\n {{ get_true_sql() }}\n {%- else -%}\n {%- for col in check_cols -%}\n {{ snapshotted_rel }}.{{ col }} != {{ current_rel }}.{{ col }}\n or\n (\n (({{ snapshotted_rel }}.{{ col }} is null) and not ({{ current_rel }}.{{ col }} is null))\n or\n ((not {{ snapshotted_rel }}.{{ col }} is null) and ({{ current_rel }}.{{ col }} is null))\n )\n {%- if not loop.last %} or {% endif -%}\n {%- endfor -%}\n {%- endif -%}\n )\n {%- endset %}\n\n {% set scd_id_expr = snapshot_hash_arguments([primary_key, updated_at]) %}\n\n {% do return({\n \"unique_key\": primary_key,\n \"updated_at\": updated_at,\n \"row_changed\": row_changed_expr,\n \"scd_id\": scd_id_expr,\n \"invalidate_hard_deletes\": invalidate_hard_deletes\n }) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.snapshot_get_time", "macro.dbt.snapshot_check_all_get_existing_columns", "macro.dbt.get_true_sql", "macro.dbt.snapshot_hash_arguments"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.07338, "supported_languages": null}, "macro.dbt.create_columns": {"name": "create_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.create_columns", "macro_sql": "{% macro create_columns(relation, columns) %}\n {{ adapter.dispatch('create_columns', 'dbt')(relation, columns) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__create_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.077781, "supported_languages": null}, "macro.dbt.default__create_columns": {"name": "default__create_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.default__create_columns", "macro_sql": "{% macro default__create_columns(relation, columns) %}\n {% for column in columns %}\n {% call statement() %}\n alter table {{ relation }} add column \"{{ column.name }}\" {{ column.data_type }};\n {% endcall %}\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.078076, "supported_languages": null}, "macro.dbt.post_snapshot": {"name": "post_snapshot", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.post_snapshot", "macro_sql": "{% macro post_snapshot(staging_relation) %}\n {{ adapter.dispatch('post_snapshot', 'dbt')(staging_relation) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__post_snapshot"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.078253, "supported_languages": null}, "macro.dbt.default__post_snapshot": {"name": "default__post_snapshot", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.default__post_snapshot", "macro_sql": "{% macro default__post_snapshot(staging_relation) %}\n {# no-op #}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.078346, "supported_languages": null}, "macro.dbt.get_true_sql": {"name": "get_true_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.get_true_sql", "macro_sql": "{% macro get_true_sql() %}\n {{ adapter.dispatch('get_true_sql', 'dbt')() }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_true_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0784981, "supported_languages": null}, "macro.dbt.default__get_true_sql": {"name": "default__get_true_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.default__get_true_sql", "macro_sql": "{% macro default__get_true_sql() %}\n {{ return('TRUE') }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.07862, "supported_languages": null}, "macro.dbt.snapshot_staging_table": {"name": "snapshot_staging_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.snapshot_staging_table", "macro_sql": "{% macro snapshot_staging_table(strategy, source_sql, target_relation) -%}\n {{ adapter.dispatch('snapshot_staging_table', 'dbt')(strategy, source_sql, target_relation) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__snapshot_staging_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.078838, "supported_languages": null}, "macro.dbt.default__snapshot_staging_table": {"name": "default__snapshot_staging_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.default__snapshot_staging_table", "macro_sql": "{% macro default__snapshot_staging_table(strategy, source_sql, target_relation) -%}\n\n with snapshot_query as (\n\n {{ source_sql }}\n\n ),\n\n snapshotted_data as (\n\n select *,\n {{ strategy.unique_key }} as dbt_unique_key\n\n from {{ target_relation }}\n where dbt_valid_to is null\n\n ),\n\n insertions_source_data as (\n\n select\n *,\n {{ strategy.unique_key }} as dbt_unique_key,\n {{ strategy.updated_at }} as dbt_updated_at,\n {{ strategy.updated_at }} as dbt_valid_from,\n nullif({{ strategy.updated_at }}, {{ strategy.updated_at }}) as dbt_valid_to,\n {{ strategy.scd_id }} as dbt_scd_id\n\n from snapshot_query\n ),\n\n updates_source_data as (\n\n select\n *,\n {{ strategy.unique_key }} as dbt_unique_key,\n {{ strategy.updated_at }} as dbt_updated_at,\n {{ strategy.updated_at }} as dbt_valid_from,\n {{ strategy.updated_at }} as dbt_valid_to\n\n from snapshot_query\n ),\n\n {%- if strategy.invalidate_hard_deletes %}\n\n deletes_source_data as (\n\n select\n *,\n {{ strategy.unique_key }} as dbt_unique_key\n from snapshot_query\n ),\n {% endif %}\n\n insertions as (\n\n select\n 'insert' as dbt_change_type,\n source_data.*\n\n from insertions_source_data as source_data\n left outer join snapshotted_data on snapshotted_data.dbt_unique_key = source_data.dbt_unique_key\n where snapshotted_data.dbt_unique_key is null\n or (\n snapshotted_data.dbt_unique_key is not null\n and (\n {{ strategy.row_changed }}\n )\n )\n\n ),\n\n updates as (\n\n select\n 'update' as dbt_change_type,\n source_data.*,\n snapshotted_data.dbt_scd_id\n\n from updates_source_data as source_data\n join snapshotted_data on snapshotted_data.dbt_unique_key = source_data.dbt_unique_key\n where (\n {{ strategy.row_changed }}\n )\n )\n\n {%- if strategy.invalidate_hard_deletes -%}\n ,\n\n deletes as (\n\n select\n 'delete' as dbt_change_type,\n source_data.*,\n {{ snapshot_get_time() }} as dbt_valid_from,\n {{ snapshot_get_time() }} as dbt_updated_at,\n {{ snapshot_get_time() }} as dbt_valid_to,\n snapshotted_data.dbt_scd_id\n\n from snapshotted_data\n left join deletes_source_data as source_data on snapshotted_data.dbt_unique_key = source_data.dbt_unique_key\n where source_data.dbt_unique_key is null\n )\n {%- endif %}\n\n select * from insertions\n union all\n select * from updates\n {%- if strategy.invalidate_hard_deletes %}\n union all\n select * from deletes\n {%- endif %}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.snapshot_get_time"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.079778, "supported_languages": null}, "macro.dbt.build_snapshot_table": {"name": "build_snapshot_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.build_snapshot_table", "macro_sql": "{% macro build_snapshot_table(strategy, sql) -%}\n {{ adapter.dispatch('build_snapshot_table', 'dbt')(strategy, sql) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__build_snapshot_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.079978, "supported_languages": null}, "macro.dbt.default__build_snapshot_table": {"name": "default__build_snapshot_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.default__build_snapshot_table", "macro_sql": "{% macro default__build_snapshot_table(strategy, sql) %}\n\n select *,\n {{ strategy.scd_id }} as dbt_scd_id,\n {{ strategy.updated_at }} as dbt_updated_at,\n {{ strategy.updated_at }} as dbt_valid_from,\n nullif({{ strategy.updated_at }}, {{ strategy.updated_at }}) as dbt_valid_to\n from (\n {{ sql }}\n ) sbq\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.080246, "supported_languages": null}, "macro.dbt.build_snapshot_staging_table": {"name": "build_snapshot_staging_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.build_snapshot_staging_table", "macro_sql": "{% macro build_snapshot_staging_table(strategy, sql, target_relation) %}\n {% set temp_relation = make_temp_relation(target_relation) %}\n\n {% set select = snapshot_staging_table(strategy, sql, target_relation) %}\n\n {% call statement('build_snapshot_staging_relation') %}\n {{ create_table_as(True, temp_relation, select) }}\n {% endcall %}\n\n {% do return(temp_relation) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.make_temp_relation", "macro.dbt.snapshot_staging_table", "macro.dbt.statement", "macro.dbt.create_table_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.080694, "supported_languages": null}, "macro.dbt.materialization_snapshot_default": {"name": "materialization_snapshot_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/snapshot.sql", "original_file_path": "macros/materializations/snapshots/snapshot.sql", "unique_id": "macro.dbt.materialization_snapshot_default", "macro_sql": "{% materialization snapshot, default %}\n {%- set config = model['config'] -%}\n\n {%- set target_table = model.get('alias', model.get('name')) -%}\n\n {%- set strategy_name = config.get('strategy') -%}\n {%- set unique_key = config.get('unique_key') %}\n -- grab current tables grants config for comparision later on\n {%- set grant_config = config.get('grants') -%}\n\n {% set target_relation_exists, target_relation = get_or_create_relation(\n database=model.database,\n schema=model.schema,\n identifier=target_table,\n type='table') -%}\n\n {%- if not target_relation.is_table -%}\n {% do exceptions.relation_wrong_type(target_relation, 'table') %}\n {%- endif -%}\n\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\n\n {% set strategy_macro = strategy_dispatch(strategy_name) %}\n {% set strategy = strategy_macro(model, \"snapshotted_data\", \"source_data\", config, target_relation_exists) %}\n\n {% if not target_relation_exists %}\n\n {% set build_sql = build_snapshot_table(strategy, model['compiled_code']) %}\n {% set final_sql = create_table_as(False, target_relation, build_sql) %}\n\n {% else %}\n\n {{ adapter.valid_snapshot_target(target_relation) }}\n\n {% set staging_table = build_snapshot_staging_table(strategy, sql, target_relation) %}\n\n -- this may no-op if the database does not require column expansion\n {% do adapter.expand_target_column_types(from_relation=staging_table,\n to_relation=target_relation) %}\n\n {% set missing_columns = adapter.get_missing_columns(staging_table, target_relation)\n | rejectattr('name', 'equalto', 'dbt_change_type')\n | rejectattr('name', 'equalto', 'DBT_CHANGE_TYPE')\n | rejectattr('name', 'equalto', 'dbt_unique_key')\n | rejectattr('name', 'equalto', 'DBT_UNIQUE_KEY')\n | list %}\n\n {% do create_columns(target_relation, missing_columns) %}\n\n {% set source_columns = adapter.get_columns_in_relation(staging_table)\n | rejectattr('name', 'equalto', 'dbt_change_type')\n | rejectattr('name', 'equalto', 'DBT_CHANGE_TYPE')\n | rejectattr('name', 'equalto', 'dbt_unique_key')\n | rejectattr('name', 'equalto', 'DBT_UNIQUE_KEY')\n | list %}\n\n {% set quoted_source_columns = [] %}\n {% for column in source_columns %}\n {% do quoted_source_columns.append(adapter.quote(column.name)) %}\n {% endfor %}\n\n {% set final_sql = snapshot_merge_sql(\n target = target_relation,\n source = staging_table,\n insert_cols = quoted_source_columns\n )\n %}\n\n {% endif %}\n\n {% call statement('main') %}\n {{ final_sql }}\n {% endcall %}\n\n {% set should_revoke = should_revoke(target_relation_exists, full_refresh_mode=False) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n {% if not target_relation_exists %}\n {% do create_indexes(target_relation) %}\n {% endif %}\n\n {{ run_hooks(post_hooks, inside_transaction=True) }}\n\n {{ adapter.commit() }}\n\n {% if staging_table is defined %}\n {% do post_snapshot(staging_table) %}\n {% endif %}\n\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{% endmaterialization %}", "depends_on": {"macros": ["macro.dbt.get_or_create_relation", "macro.dbt.run_hooks", "macro.dbt.strategy_dispatch", "macro.dbt.build_snapshot_table", "macro.dbt.create_table_as", "macro.dbt.build_snapshot_staging_table", "macro.dbt.create_columns", "macro.dbt.snapshot_merge_sql", "macro.dbt.statement", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs", "macro.dbt.create_indexes", "macro.dbt.post_snapshot"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0871649, "supported_languages": ["sql"]}, "macro.dbt.materialization_test_default": {"name": "materialization_test_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/tests/test.sql", "original_file_path": "macros/materializations/tests/test.sql", "unique_id": "macro.dbt.materialization_test_default", "macro_sql": "{%- materialization test, default -%}\n\n {% set relations = [] %}\n\n {% if should_store_failures() %}\n\n {% set identifier = model['alias'] %}\n {% set old_relation = adapter.get_relation(database=database, schema=schema, identifier=identifier) %}\n {% set target_relation = api.Relation.create(\n identifier=identifier, schema=schema, database=database, type='table') -%} %}\n\n {% if old_relation %}\n {% do adapter.drop_relation(old_relation) %}\n {% endif %}\n\n {% call statement(auto_begin=True) %}\n {{ create_table_as(False, target_relation, sql) }}\n {% endcall %}\n\n {% do relations.append(target_relation) %}\n\n {% set main_sql %}\n select *\n from {{ target_relation }}\n {% endset %}\n\n {{ adapter.commit() }}\n\n {% else %}\n\n {% set main_sql = sql %}\n\n {% endif %}\n\n {% set limit = config.get('limit') %}\n {% set fail_calc = config.get('fail_calc') %}\n {% set warn_if = config.get('warn_if') %}\n {% set error_if = config.get('error_if') %}\n\n {% call statement('main', fetch_result=True) -%}\n\n {{ get_test_sql(main_sql, fail_calc, warn_if, error_if, limit)}}\n\n {%- endcall %}\n\n {{ return({'relations': relations}) }}\n\n{%- endmaterialization -%}", "depends_on": {"macros": ["macro.dbt.should_store_failures", "macro.dbt.statement", "macro.dbt.create_table_as", "macro.dbt.get_test_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.089348, "supported_languages": ["sql"]}, "macro.dbt.get_test_sql": {"name": "get_test_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/tests/helpers.sql", "original_file_path": "macros/materializations/tests/helpers.sql", "unique_id": "macro.dbt.get_test_sql", "macro_sql": "{% macro get_test_sql(main_sql, fail_calc, warn_if, error_if, limit) -%}\n {{ adapter.dispatch('get_test_sql', 'dbt')(main_sql, fail_calc, warn_if, error_if, limit) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_test_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0898209, "supported_languages": null}, "macro.dbt.default__get_test_sql": {"name": "default__get_test_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/tests/helpers.sql", "original_file_path": "macros/materializations/tests/helpers.sql", "unique_id": "macro.dbt.default__get_test_sql", "macro_sql": "{% macro default__get_test_sql(main_sql, fail_calc, warn_if, error_if, limit) -%}\n select\n {{ fail_calc }} as failures,\n {{ fail_calc }} {{ warn_if }} as should_warn,\n {{ fail_calc }} {{ error_if }} as should_error\n from (\n {{ main_sql }}\n {{ \"limit \" ~ limit if limit != none }}\n ) dbt_internal_test\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.090144, "supported_languages": null}, "macro.dbt.get_where_subquery": {"name": "get_where_subquery", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/tests/where_subquery.sql", "original_file_path": "macros/materializations/tests/where_subquery.sql", "unique_id": "macro.dbt.get_where_subquery", "macro_sql": "{% macro get_where_subquery(relation) -%}\n {% do return(adapter.dispatch('get_where_subquery', 'dbt')(relation)) %}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_where_subquery"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0905411, "supported_languages": null}, "macro.dbt.default__get_where_subquery": {"name": "default__get_where_subquery", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/tests/where_subquery.sql", "original_file_path": "macros/materializations/tests/where_subquery.sql", "unique_id": "macro.dbt.default__get_where_subquery", "macro_sql": "{% macro default__get_where_subquery(relation) -%}\n {% set where = config.get('where', '') %}\n {% if where %}\n {%- set filtered -%}\n (select * from {{ relation }} where {{ where }}) dbt_subquery\n {%- endset -%}\n {% do return(filtered) %}\n {%- else -%}\n {% do return(relation) %}\n {%- endif -%}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.090938, "supported_languages": null}, "macro.dbt.get_quoted_csv": {"name": "get_quoted_csv", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "unique_id": "macro.dbt.get_quoted_csv", "macro_sql": "{% macro get_quoted_csv(column_names) %}\n\n {% set quoted = [] %}\n {% for col in column_names -%}\n {%- do quoted.append(adapter.quote(col)) -%}\n {%- endfor %}\n\n {%- set dest_cols_csv = quoted | join(', ') -%}\n {{ return(dest_cols_csv) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.092651, "supported_languages": null}, "macro.dbt.diff_columns": {"name": "diff_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "unique_id": "macro.dbt.diff_columns", "macro_sql": "{% macro diff_columns(source_columns, target_columns) %}\n\n {% set result = [] %}\n {% set source_names = source_columns | map(attribute = 'column') | list %}\n {% set target_names = target_columns | map(attribute = 'column') | list %}\n\n {# --check whether the name attribute exists in the target - this does not perform a data type check #}\n {% for sc in source_columns %}\n {% if sc.name not in target_names %}\n {{ result.append(sc) }}\n {% endif %}\n {% endfor %}\n\n {{ return(result) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.093222, "supported_languages": null}, "macro.dbt.diff_column_data_types": {"name": "diff_column_data_types", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "unique_id": "macro.dbt.diff_column_data_types", "macro_sql": "{% macro diff_column_data_types(source_columns, target_columns) %}\n\n {% set result = [] %}\n {% for sc in source_columns %}\n {% set tc = target_columns | selectattr(\"name\", \"equalto\", sc.name) | list | first %}\n {% if tc %}\n {% if sc.data_type != tc.data_type and not sc.can_expand_to(other_column=tc) %}\n {{ result.append( { 'column_name': tc.name, 'new_type': sc.data_type } ) }}\n {% endif %}\n {% endif %}\n {% endfor %}\n\n {{ return(result) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.093915, "supported_languages": null}, "macro.dbt.get_merge_update_columns": {"name": "get_merge_update_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "unique_id": "macro.dbt.get_merge_update_columns", "macro_sql": "{% macro get_merge_update_columns(merge_update_columns, merge_exclude_columns, dest_columns) %}\n {{ return(adapter.dispatch('get_merge_update_columns', 'dbt')(merge_update_columns, merge_exclude_columns, dest_columns)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__get_merge_update_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.094163, "supported_languages": null}, "macro.dbt.default__get_merge_update_columns": {"name": "default__get_merge_update_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "unique_id": "macro.dbt.default__get_merge_update_columns", "macro_sql": "{% macro default__get_merge_update_columns(merge_update_columns, merge_exclude_columns, dest_columns) %}\n {%- set default_cols = dest_columns | map(attribute=\"quoted\") | list -%}\n\n {%- if merge_update_columns and merge_exclude_columns -%}\n {{ exceptions.raise_compiler_error(\n 'Model cannot specify merge_update_columns and merge_exclude_columns. Please update model to use only one config'\n )}}\n {%- elif merge_update_columns -%}\n {%- set update_columns = merge_update_columns -%}\n {%- elif merge_exclude_columns -%}\n {%- set update_columns = [] -%}\n {%- for column in dest_columns -%}\n {% if column.column | lower not in merge_exclude_columns | map(\"lower\") | list %}\n {%- do update_columns.append(column.quoted) -%}\n {% endif %}\n {%- endfor -%}\n {%- else -%}\n {%- set update_columns = default_cols -%}\n {%- endif -%}\n\n {{ return(update_columns) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.0949109, "supported_languages": null}, "macro.dbt.get_merge_sql": {"name": "get_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "unique_id": "macro.dbt.get_merge_sql", "macro_sql": "{% macro get_merge_sql(target, source, unique_key, dest_columns, incremental_predicates=none) -%}\n -- back compat for old kwarg name\n {% set incremental_predicates = kwargs.get('predicates', incremental_predicates) %}\n {{ adapter.dispatch('get_merge_sql', 'dbt')(target, source, unique_key, dest_columns, incremental_predicates) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks__get_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.101896, "supported_languages": null}, "macro.dbt.default__get_merge_sql": {"name": "default__get_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "unique_id": "macro.dbt.default__get_merge_sql", "macro_sql": "{% macro default__get_merge_sql(target, source, unique_key, dest_columns, incremental_predicates=none) -%}\n {%- set predicates = [] if incremental_predicates is none else [] + incremental_predicates -%}\n {%- set dest_cols_csv = get_quoted_csv(dest_columns | map(attribute=\"name\")) -%}\n {%- set merge_update_columns = config.get('merge_update_columns') -%}\n {%- set merge_exclude_columns = config.get('merge_exclude_columns') -%}\n {%- set update_columns = get_merge_update_columns(merge_update_columns, merge_exclude_columns, dest_columns) -%}\n {%- set sql_header = config.get('sql_header', none) -%}\n\n {% if unique_key %}\n {% if unique_key is sequence and unique_key is not mapping and unique_key is not string %}\n {% for key in unique_key %}\n {% set this_key_match %}\n DBT_INTERNAL_SOURCE.{{ key }} = DBT_INTERNAL_DEST.{{ key }}\n {% endset %}\n {% do predicates.append(this_key_match) %}\n {% endfor %}\n {% else %}\n {% set unique_key_match %}\n DBT_INTERNAL_SOURCE.{{ unique_key }} = DBT_INTERNAL_DEST.{{ unique_key }}\n {% endset %}\n {% do predicates.append(unique_key_match) %}\n {% endif %}\n {% else %}\n {% do predicates.append('FALSE') %}\n {% endif %}\n\n {{ sql_header if sql_header is not none }}\n\n merge into {{ target }} as DBT_INTERNAL_DEST\n using {{ source }} as DBT_INTERNAL_SOURCE\n on {{\"(\" ~ predicates | join(\") and (\") ~ \")\"}}\n\n {% if unique_key %}\n when matched then update set\n {% for column_name in update_columns -%}\n {{ column_name }} = DBT_INTERNAL_SOURCE.{{ column_name }}\n {%- if not loop.last %}, {%- endif %}\n {%- endfor %}\n {% endif %}\n\n when not matched then insert\n ({{ dest_cols_csv }})\n values\n ({{ dest_cols_csv }})\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_quoted_csv", "macro.dbt.get_merge_update_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.103636, "supported_languages": null}, "macro.dbt.get_delete_insert_merge_sql": {"name": "get_delete_insert_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "unique_id": "macro.dbt.get_delete_insert_merge_sql", "macro_sql": "{% macro get_delete_insert_merge_sql(target, source, unique_key, dest_columns, incremental_predicates) -%}\n {{ adapter.dispatch('get_delete_insert_merge_sql', 'dbt')(target, source, unique_key, dest_columns, incremental_predicates) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_delete_insert_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.10391, "supported_languages": null}, "macro.dbt.default__get_delete_insert_merge_sql": {"name": "default__get_delete_insert_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "unique_id": "macro.dbt.default__get_delete_insert_merge_sql", "macro_sql": "{% macro default__get_delete_insert_merge_sql(target, source, unique_key, dest_columns, incremental_predicates) -%}\n\n {%- set dest_cols_csv = get_quoted_csv(dest_columns | map(attribute=\"name\")) -%}\n\n {% if unique_key %}\n {% if unique_key is sequence and unique_key is not string %}\n delete from {{target }}\n using {{ source }}\n where (\n {% for key in unique_key %}\n {{ source }}.{{ key }} = {{ target }}.{{ key }}\n {{ \"and \" if not loop.last}}\n {% endfor %}\n {% if incremental_predicates %}\n {% for predicate in incremental_predicates %}\n and {{ predicate }}\n {% endfor %}\n {% endif %}\n );\n {% else %}\n delete from {{ target }}\n where (\n {{ unique_key }}) in (\n select ({{ unique_key }})\n from {{ source }}\n )\n {%- if incremental_predicates %}\n {% for predicate in incremental_predicates %}\n and {{ predicate }}\n {% endfor %}\n {%- endif -%};\n\n {% endif %}\n {% endif %}\n\n insert into {{ target }} ({{ dest_cols_csv }})\n (\n select {{ dest_cols_csv }}\n from {{ source }}\n )\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.get_quoted_csv"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.104958, "supported_languages": null}, "macro.dbt.get_insert_overwrite_merge_sql": {"name": "get_insert_overwrite_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "unique_id": "macro.dbt.get_insert_overwrite_merge_sql", "macro_sql": "{% macro get_insert_overwrite_merge_sql(target, source, dest_columns, predicates, include_sql_header=false) -%}\n {{ adapter.dispatch('get_insert_overwrite_merge_sql', 'dbt')(target, source, dest_columns, predicates, include_sql_header) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks__get_insert_overwrite_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.105234, "supported_languages": null}, "macro.dbt.default__get_insert_overwrite_merge_sql": {"name": "default__get_insert_overwrite_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "unique_id": "macro.dbt.default__get_insert_overwrite_merge_sql", "macro_sql": "{% macro default__get_insert_overwrite_merge_sql(target, source, dest_columns, predicates, include_sql_header) -%}\n {#-- The only time include_sql_header is True: --#}\n {#-- BigQuery + insert_overwrite strategy + \"static\" partitions config --#}\n {#-- We should consider including the sql header at the materialization level instead --#}\n\n {%- set predicates = [] if predicates is none else [] + predicates -%}\n {%- set dest_cols_csv = get_quoted_csv(dest_columns | map(attribute=\"name\")) -%}\n {%- set sql_header = config.get('sql_header', none) -%}\n\n {{ sql_header if sql_header is not none and include_sql_header }}\n\n merge into {{ target }} as DBT_INTERNAL_DEST\n using {{ source }} as DBT_INTERNAL_SOURCE\n on FALSE\n\n when not matched by source\n {% if predicates %} and {{ predicates | join(' and ') }} {% endif %}\n then delete\n\n when not matched then insert\n ({{ dest_cols_csv }})\n values\n ({{ dest_cols_csv }})\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_quoted_csv"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1059132, "supported_languages": null}, "macro.dbt.is_incremental": {"name": "is_incremental", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/is_incremental.sql", "original_file_path": "macros/materializations/models/incremental/is_incremental.sql", "unique_id": "macro.dbt.is_incremental", "macro_sql": "{% macro is_incremental() %}\n {#-- do not run introspective queries in parsing #}\n {% if not execute %}\n {{ return(False) }}\n {% else %}\n {% set relation = adapter.get_relation(this.database, this.schema, this.table) %}\n {{ return(relation is not none\n and relation.type == 'table'\n and model.config.materialized == 'incremental'\n and not should_full_refresh()) }}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.should_full_refresh"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.106575, "supported_languages": null}, "macro.dbt.get_incremental_append_sql": {"name": "get_incremental_append_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.get_incremental_append_sql", "macro_sql": "{% macro get_incremental_append_sql(arg_dict) %}\n\n {{ return(adapter.dispatch('get_incremental_append_sql', 'dbt')(arg_dict)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks__get_incremental_append_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.107508, "supported_languages": null}, "macro.dbt.default__get_incremental_append_sql": {"name": "default__get_incremental_append_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.default__get_incremental_append_sql", "macro_sql": "{% macro default__get_incremental_append_sql(arg_dict) %}\n\n {% do return(get_insert_into_sql(arg_dict[\"target_relation\"], arg_dict[\"temp_relation\"], arg_dict[\"dest_columns\"])) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_insert_into_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.107755, "supported_languages": null}, "macro.dbt.get_incremental_delete_insert_sql": {"name": "get_incremental_delete_insert_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.get_incremental_delete_insert_sql", "macro_sql": "{% macro get_incremental_delete_insert_sql(arg_dict) %}\n\n {{ return(adapter.dispatch('get_incremental_delete_insert_sql', 'dbt')(arg_dict)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_incremental_delete_insert_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.107949, "supported_languages": null}, "macro.dbt.default__get_incremental_delete_insert_sql": {"name": "default__get_incremental_delete_insert_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.default__get_incremental_delete_insert_sql", "macro_sql": "{% macro default__get_incremental_delete_insert_sql(arg_dict) %}\n\n {% do return(get_delete_insert_merge_sql(arg_dict[\"target_relation\"], arg_dict[\"temp_relation\"], arg_dict[\"unique_key\"], arg_dict[\"dest_columns\"], arg_dict[\"incremental_predicates\"])) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_delete_insert_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.108257, "supported_languages": null}, "macro.dbt.get_incremental_merge_sql": {"name": "get_incremental_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.get_incremental_merge_sql", "macro_sql": "{% macro get_incremental_merge_sql(arg_dict) %}\n\n {{ return(adapter.dispatch('get_incremental_merge_sql', 'dbt')(arg_dict)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_incremental_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.10845, "supported_languages": null}, "macro.dbt.default__get_incremental_merge_sql": {"name": "default__get_incremental_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.default__get_incremental_merge_sql", "macro_sql": "{% macro default__get_incremental_merge_sql(arg_dict) %}\n\n {% do return(get_merge_sql(arg_dict[\"target_relation\"], arg_dict[\"temp_relation\"], arg_dict[\"unique_key\"], arg_dict[\"dest_columns\"], arg_dict[\"incremental_predicates\"])) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.108764, "supported_languages": null}, "macro.dbt.get_incremental_insert_overwrite_sql": {"name": "get_incremental_insert_overwrite_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.get_incremental_insert_overwrite_sql", "macro_sql": "{% macro get_incremental_insert_overwrite_sql(arg_dict) %}\n\n {{ return(adapter.dispatch('get_incremental_insert_overwrite_sql', 'dbt')(arg_dict)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_incremental_insert_overwrite_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1089761, "supported_languages": null}, "macro.dbt.default__get_incremental_insert_overwrite_sql": {"name": "default__get_incremental_insert_overwrite_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.default__get_incremental_insert_overwrite_sql", "macro_sql": "{% macro default__get_incremental_insert_overwrite_sql(arg_dict) %}\n\n {% do return(get_insert_overwrite_merge_sql(arg_dict[\"target_relation\"], arg_dict[\"temp_relation\"], arg_dict[\"dest_columns\"], arg_dict[\"incremental_predicates\"])) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_insert_overwrite_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.109258, "supported_languages": null}, "macro.dbt.get_incremental_default_sql": {"name": "get_incremental_default_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.get_incremental_default_sql", "macro_sql": "{% macro get_incremental_default_sql(arg_dict) %}\n\n {{ return(adapter.dispatch('get_incremental_default_sql', 'dbt')(arg_dict)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks__get_incremental_default_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.109455, "supported_languages": null}, "macro.dbt.default__get_incremental_default_sql": {"name": "default__get_incremental_default_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.default__get_incremental_default_sql", "macro_sql": "{% macro default__get_incremental_default_sql(arg_dict) %}\n\n {% do return(get_incremental_append_sql(arg_dict)) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_incremental_append_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1096141, "supported_languages": null}, "macro.dbt.get_insert_into_sql": {"name": "get_insert_into_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.get_insert_into_sql", "macro_sql": "{% macro get_insert_into_sql(target_relation, temp_relation, dest_columns) %}\n\n {%- set dest_cols_csv = get_quoted_csv(dest_columns | map(attribute=\"name\")) -%}\n\n insert into {{ target_relation }} ({{ dest_cols_csv }})\n (\n select {{ dest_cols_csv }}\n from {{ temp_relation }}\n )\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_quoted_csv"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1099021, "supported_languages": null}, "macro.dbt.materialization_incremental_default": {"name": "materialization_incremental_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/incremental.sql", "original_file_path": "macros/materializations/models/incremental/incremental.sql", "unique_id": "macro.dbt.materialization_incremental_default", "macro_sql": "{% materialization incremental, default -%}\n\n -- relations\n {%- set existing_relation = load_cached_relation(this) -%}\n {%- set target_relation = this.incorporate(type='table') -%}\n {%- set temp_relation = make_temp_relation(target_relation)-%}\n {%- set intermediate_relation = make_intermediate_relation(target_relation)-%}\n {%- set backup_relation_type = 'table' if existing_relation is none else existing_relation.type -%}\n {%- set backup_relation = make_backup_relation(target_relation, backup_relation_type) -%}\n\n -- configs\n {%- set unique_key = config.get('unique_key') -%}\n {%- set full_refresh_mode = (should_full_refresh() or existing_relation.is_view) -%}\n {%- set on_schema_change = incremental_validate_on_schema_change(config.get('on_schema_change'), default='ignore') -%}\n\n -- the temp_ and backup_ relations should not already exist in the database; get_relation\n -- will return None in that case. Otherwise, we get a relation that we can drop\n -- later, before we try to use this name for the current operation. This has to happen before\n -- BEGIN, in a separate transaction\n {%- set preexisting_intermediate_relation = load_cached_relation(intermediate_relation)-%}\n {%- set preexisting_backup_relation = load_cached_relation(backup_relation) -%}\n -- grab current tables grants config for comparision later on\n {% set grant_config = config.get('grants') %}\n {{ drop_relation_if_exists(preexisting_intermediate_relation) }}\n {{ drop_relation_if_exists(preexisting_backup_relation) }}\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n -- `BEGIN` happens here:\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\n\n {% set to_drop = [] %}\n\n {% if existing_relation is none %}\n {% set build_sql = get_create_table_as_sql(False, target_relation, sql) %}\n {% elif full_refresh_mode %}\n {% set build_sql = get_create_table_as_sql(False, intermediate_relation, sql) %}\n {% set need_swap = true %}\n {% else %}\n {% do run_query(get_create_table_as_sql(True, temp_relation, sql)) %}\n {% do adapter.expand_target_column_types(\n from_relation=temp_relation,\n to_relation=target_relation) %}\n {#-- Process schema changes. Returns dict of changes if successful. Use source columns for upserting/merging --#}\n {% set dest_columns = process_schema_changes(on_schema_change, temp_relation, existing_relation) %}\n {% if not dest_columns %}\n {% set dest_columns = adapter.get_columns_in_relation(existing_relation) %}\n {% endif %}\n\n {#-- Get the incremental_strategy, the macro to use for the strategy, and build the sql --#}\n {% set incremental_strategy = config.get('incremental_strategy') or 'default' %}\n {% set incremental_predicates = config.get('predicates', none) or config.get('incremental_predicates', none) %}\n {% set strategy_sql_macro_func = adapter.get_incremental_strategy_macro(context, incremental_strategy) %}\n {% set strategy_arg_dict = ({'target_relation': target_relation, 'temp_relation': temp_relation, 'unique_key': unique_key, 'dest_columns': dest_columns, 'incremental_predicates': incremental_predicates }) %}\n {% set build_sql = strategy_sql_macro_func(strategy_arg_dict) %}\n\n {% endif %}\n\n {% call statement(\"main\") %}\n {{ build_sql }}\n {% endcall %}\n\n {% if need_swap %}\n {% do adapter.rename_relation(target_relation, backup_relation) %}\n {% do adapter.rename_relation(intermediate_relation, target_relation) %}\n {% do to_drop.append(backup_relation) %}\n {% endif %}\n\n {% set should_revoke = should_revoke(existing_relation, full_refresh_mode) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n {% if existing_relation is none or existing_relation.is_view or should_full_refresh() %}\n {% do create_indexes(target_relation) %}\n {% endif %}\n\n {{ run_hooks(post_hooks, inside_transaction=True) }}\n\n -- `COMMIT` happens here\n {% do adapter.commit() %}\n\n {% for rel in to_drop %}\n {% do adapter.drop_relation(rel) %}\n {% endfor %}\n\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{%- endmaterialization %}", "depends_on": {"macros": ["macro.dbt.load_cached_relation", "macro.dbt.make_temp_relation", "macro.dbt.make_intermediate_relation", "macro.dbt.make_backup_relation", "macro.dbt.should_full_refresh", "macro.dbt.incremental_validate_on_schema_change", "macro.dbt.drop_relation_if_exists", "macro.dbt.run_hooks", "macro.dbt.get_create_table_as_sql", "macro.dbt.run_query", "macro.dbt.process_schema_changes", "macro.dbt.statement", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs", "macro.dbt.create_indexes"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.11517, "supported_languages": ["sql"]}, "macro.dbt.incremental_validate_on_schema_change": {"name": "incremental_validate_on_schema_change", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/on_schema_change.sql", "original_file_path": "macros/materializations/models/incremental/on_schema_change.sql", "unique_id": "macro.dbt.incremental_validate_on_schema_change", "macro_sql": "{% macro incremental_validate_on_schema_change(on_schema_change, default='ignore') %}\n\n {% if on_schema_change not in ['sync_all_columns', 'append_new_columns', 'fail', 'ignore'] %}\n\n {% set log_message = 'Invalid value for on_schema_change (%s) specified. Setting default value of %s.' % (on_schema_change, default) %}\n {% do log(log_message) %}\n\n {{ return(default) }}\n\n {% else %}\n\n {{ return(on_schema_change) }}\n\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1212459, "supported_languages": null}, "macro.dbt.check_for_schema_changes": {"name": "check_for_schema_changes", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/on_schema_change.sql", "original_file_path": "macros/materializations/models/incremental/on_schema_change.sql", "unique_id": "macro.dbt.check_for_schema_changes", "macro_sql": "{% macro check_for_schema_changes(source_relation, target_relation) %}\n\n {% set schema_changed = False %}\n\n {%- set source_columns = adapter.get_columns_in_relation(source_relation) -%}\n {%- set target_columns = adapter.get_columns_in_relation(target_relation) -%}\n {%- set source_not_in_target = diff_columns(source_columns, target_columns) -%}\n {%- set target_not_in_source = diff_columns(target_columns, source_columns) -%}\n\n {% set new_target_types = diff_column_data_types(source_columns, target_columns) %}\n\n {% if source_not_in_target != [] %}\n {% set schema_changed = True %}\n {% elif target_not_in_source != [] or new_target_types != [] %}\n {% set schema_changed = True %}\n {% elif new_target_types != [] %}\n {% set schema_changed = True %}\n {% endif %}\n\n {% set changes_dict = {\n 'schema_changed': schema_changed,\n 'source_not_in_target': source_not_in_target,\n 'target_not_in_source': target_not_in_source,\n 'source_columns': source_columns,\n 'target_columns': target_columns,\n 'new_target_types': new_target_types\n } %}\n\n {% set msg %}\n In {{ target_relation }}:\n Schema changed: {{ schema_changed }}\n Source columns not in target: {{ source_not_in_target }}\n Target columns not in source: {{ target_not_in_source }}\n New column types: {{ new_target_types }}\n {% endset %}\n\n {% do log(msg) %}\n\n {{ return(changes_dict) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.diff_columns", "macro.dbt.diff_column_data_types"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1225228, "supported_languages": null}, "macro.dbt.sync_column_schemas": {"name": "sync_column_schemas", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/on_schema_change.sql", "original_file_path": "macros/materializations/models/incremental/on_schema_change.sql", "unique_id": "macro.dbt.sync_column_schemas", "macro_sql": "{% macro sync_column_schemas(on_schema_change, target_relation, schema_changes_dict) %}\n\n {%- set add_to_target_arr = schema_changes_dict['source_not_in_target'] -%}\n\n {%- if on_schema_change == 'append_new_columns'-%}\n {%- if add_to_target_arr | length > 0 -%}\n {%- do alter_relation_add_remove_columns(target_relation, add_to_target_arr, none) -%}\n {%- endif -%}\n\n {% elif on_schema_change == 'sync_all_columns' %}\n {%- set remove_from_target_arr = schema_changes_dict['target_not_in_source'] -%}\n {%- set new_target_types = schema_changes_dict['new_target_types'] -%}\n\n {% if add_to_target_arr | length > 0 or remove_from_target_arr | length > 0 %}\n {%- do alter_relation_add_remove_columns(target_relation, add_to_target_arr, remove_from_target_arr) -%}\n {% endif %}\n\n {% if new_target_types != [] %}\n {% for ntt in new_target_types %}\n {% set column_name = ntt['column_name'] %}\n {% set new_type = ntt['new_type'] %}\n {% do alter_column_type(target_relation, column_name, new_type) %}\n {% endfor %}\n {% endif %}\n\n {% endif %}\n\n {% set schema_change_message %}\n In {{ target_relation }}:\n Schema change approach: {{ on_schema_change }}\n Columns added: {{ add_to_target_arr }}\n Columns removed: {{ remove_from_target_arr }}\n Data types changed: {{ new_target_types }}\n {% endset %}\n\n {% do log(schema_change_message) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.alter_relation_add_remove_columns", "macro.dbt.alter_column_type"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1237729, "supported_languages": null}, "macro.dbt.process_schema_changes": {"name": "process_schema_changes", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/on_schema_change.sql", "original_file_path": "macros/materializations/models/incremental/on_schema_change.sql", "unique_id": "macro.dbt.process_schema_changes", "macro_sql": "{% macro process_schema_changes(on_schema_change, source_relation, target_relation) %}\n\n {% if on_schema_change == 'ignore' %}\n\n {{ return({}) }}\n\n {% else %}\n\n {% set schema_changes_dict = check_for_schema_changes(source_relation, target_relation) %}\n\n {% if schema_changes_dict['schema_changed'] %}\n\n {% if on_schema_change == 'fail' %}\n\n {% set fail_msg %}\n The source and target schemas on this incremental model are out of sync!\n They can be reconciled in several ways:\n - set the `on_schema_change` config to either append_new_columns or sync_all_columns, depending on your situation.\n - Re-run the incremental model with `full_refresh: True` to update the target schema.\n - update the schema manually and re-run the process.\n\n Additional troubleshooting context:\n Source columns not in target: {{ schema_changes_dict['source_not_in_target'] }}\n Target columns not in source: {{ schema_changes_dict['target_not_in_source'] }}\n New column types: {{ schema_changes_dict['new_target_types'] }}\n {% endset %}\n\n {% do exceptions.raise_compiler_error(fail_msg) %}\n\n {# -- unless we ignore, run the sync operation per the config #}\n {% else %}\n\n {% do sync_column_schemas(on_schema_change, target_relation, schema_changes_dict) %}\n\n {% endif %}\n\n {% endif %}\n\n {{ return(schema_changes_dict['source_columns']) }}\n\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.check_for_schema_changes", "macro.dbt.sync_column_schemas"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.12466, "supported_languages": null}, "macro.dbt.get_table_columns_and_constraints": {"name": "get_table_columns_and_constraints", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/columns_spec_ddl.sql", "original_file_path": "macros/materializations/models/table/columns_spec_ddl.sql", "unique_id": "macro.dbt.get_table_columns_and_constraints", "macro_sql": "{%- macro get_table_columns_and_constraints() -%}\n {{ adapter.dispatch('get_table_columns_and_constraints', 'dbt')() }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__get_table_columns_and_constraints"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.125695, "supported_languages": null}, "macro.dbt.default__get_table_columns_and_constraints": {"name": "default__get_table_columns_and_constraints", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/columns_spec_ddl.sql", "original_file_path": "macros/materializations/models/table/columns_spec_ddl.sql", "unique_id": "macro.dbt.default__get_table_columns_and_constraints", "macro_sql": "{% macro default__get_table_columns_and_constraints() -%}\n {{ return(table_columns_and_constraints()) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.table_columns_and_constraints"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.125823, "supported_languages": null}, "macro.dbt.table_columns_and_constraints": {"name": "table_columns_and_constraints", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/columns_spec_ddl.sql", "original_file_path": "macros/materializations/models/table/columns_spec_ddl.sql", "unique_id": "macro.dbt.table_columns_and_constraints", "macro_sql": "{% macro table_columns_and_constraints() %}\n {# loop through user_provided_columns to create DDL with data types and constraints #}\n {%- set raw_column_constraints = adapter.render_raw_columns_constraints(raw_columns=model['columns']) -%}\n {%- set raw_model_constraints = adapter.render_raw_model_constraints(raw_constraints=model['constraints']) -%}\n (\n {% for c in raw_column_constraints -%}\n {{ c }}{{ \",\" if not loop.last or raw_model_constraints }}\n {% endfor %}\n {% for c in raw_model_constraints -%}\n {{ c }}{{ \",\" if not loop.last }}\n {% endfor -%}\n )\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.126386, "supported_languages": null}, "macro.dbt.get_assert_columns_equivalent": {"name": "get_assert_columns_equivalent", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/columns_spec_ddl.sql", "original_file_path": "macros/materializations/models/table/columns_spec_ddl.sql", "unique_id": "macro.dbt.get_assert_columns_equivalent", "macro_sql": "\n\n{%- macro get_assert_columns_equivalent(sql) -%}\n {{ adapter.dispatch('get_assert_columns_equivalent', 'dbt')(sql) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__get_assert_columns_equivalent"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.126561, "supported_languages": null}, "macro.dbt.default__get_assert_columns_equivalent": {"name": "default__get_assert_columns_equivalent", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/columns_spec_ddl.sql", "original_file_path": "macros/materializations/models/table/columns_spec_ddl.sql", "unique_id": "macro.dbt.default__get_assert_columns_equivalent", "macro_sql": "{% macro default__get_assert_columns_equivalent(sql) -%}\n {{ return(assert_columns_equivalent(sql)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.assert_columns_equivalent"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.126703, "supported_languages": null}, "macro.dbt.assert_columns_equivalent": {"name": "assert_columns_equivalent", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/columns_spec_ddl.sql", "original_file_path": "macros/materializations/models/table/columns_spec_ddl.sql", "unique_id": "macro.dbt.assert_columns_equivalent", "macro_sql": "{% macro assert_columns_equivalent(sql) %}\n {#-- Obtain the column schema provided by sql file. #}\n {%- set sql_file_provided_columns = get_column_schema_from_query(sql, config.get('sql_header', none)) -%}\n {#--Obtain the column schema provided by the schema file by generating an 'empty schema' query from the model's columns. #}\n {%- set schema_file_provided_columns = get_column_schema_from_query(get_empty_schema_sql(model['columns'])) -%}\n\n {#-- create dictionaries with name and formatted data type and strings for exception #}\n {%- set sql_columns = format_columns(sql_file_provided_columns) -%}\n {%- set yaml_columns = format_columns(schema_file_provided_columns) -%}\n\n {%- if sql_columns|length != yaml_columns|length -%}\n {%- do exceptions.raise_contract_error(yaml_columns, sql_columns) -%}\n {%- endif -%}\n\n {%- for sql_col in sql_columns -%}\n {%- set yaml_col = [] -%}\n {%- for this_col in yaml_columns -%}\n {%- if this_col['name'] == sql_col['name'] -%}\n {%- do yaml_col.append(this_col) -%}\n {%- break -%}\n {%- endif -%}\n {%- endfor -%}\n {%- if not yaml_col -%}\n {#-- Column with name not found in yaml #}\n {%- do exceptions.raise_contract_error(yaml_columns, sql_columns) -%}\n {%- endif -%}\n {%- if sql_col['formatted'] != yaml_col[0]['formatted'] -%}\n {#-- Column data types don't match #}\n {%- do exceptions.raise_contract_error(yaml_columns, sql_columns) -%}\n {%- endif -%}\n {%- endfor -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_column_schema_from_query", "macro.dbt.get_empty_schema_sql", "macro.dbt.format_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.127872, "supported_languages": null}, "macro.dbt.format_columns": {"name": "format_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/columns_spec_ddl.sql", "original_file_path": "macros/materializations/models/table/columns_spec_ddl.sql", "unique_id": "macro.dbt.format_columns", "macro_sql": "{% macro format_columns(columns) %}\n {% set formatted_columns = [] %}\n {% for column in columns %}\n {%- set formatted_column = adapter.dispatch('format_column', 'dbt')(column) -%}\n {%- do formatted_columns.append(formatted_column) -%}\n {% endfor %}\n {{ return(formatted_columns) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__format_column"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1282618, "supported_languages": null}, "macro.dbt.default__format_column": {"name": "default__format_column", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/columns_spec_ddl.sql", "original_file_path": "macros/materializations/models/table/columns_spec_ddl.sql", "unique_id": "macro.dbt.default__format_column", "macro_sql": "{% macro default__format_column(column) -%}\n {% set data_type = column.dtype %}\n {% set formatted = column.column.lower() ~ \" \" ~ data_type %}\n {{ return({'name': column.name, 'data_type': data_type, 'formatted': formatted}) }}\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.128627, "supported_languages": null}, "macro.dbt.materialization_table_default": {"name": "materialization_table_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/table.sql", "original_file_path": "macros/materializations/models/table/table.sql", "unique_id": "macro.dbt.materialization_table_default", "macro_sql": "{% materialization table, default %}\n\n {%- set existing_relation = load_cached_relation(this) -%}\n {%- set target_relation = this.incorporate(type='table') %}\n {%- set intermediate_relation = make_intermediate_relation(target_relation) -%}\n -- the intermediate_relation should not already exist in the database; get_relation\n -- will return None in that case. Otherwise, we get a relation that we can drop\n -- later, before we try to use this name for the current operation\n {%- set preexisting_intermediate_relation = load_cached_relation(intermediate_relation) -%}\n /*\n See ../view/view.sql for more information about this relation.\n */\n {%- set backup_relation_type = 'table' if existing_relation is none else existing_relation.type -%}\n {%- set backup_relation = make_backup_relation(target_relation, backup_relation_type) -%}\n -- as above, the backup_relation should not already exist\n {%- set preexisting_backup_relation = load_cached_relation(backup_relation) -%}\n -- grab current tables grants config for comparision later on\n {% set grant_config = config.get('grants') %}\n\n -- drop the temp relations if they exist already in the database\n {{ drop_relation_if_exists(preexisting_intermediate_relation) }}\n {{ drop_relation_if_exists(preexisting_backup_relation) }}\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n -- `BEGIN` happens here:\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\n\n -- build model\n {% call statement('main') -%}\n {{ get_create_table_as_sql(False, intermediate_relation, sql) }}\n {%- endcall %}\n\n -- cleanup\n {% if existing_relation is not none %}\n {{ adapter.rename_relation(existing_relation, backup_relation) }}\n {% endif %}\n\n {{ adapter.rename_relation(intermediate_relation, target_relation) }}\n\n {% do create_indexes(target_relation) %}\n\n {{ run_hooks(post_hooks, inside_transaction=True) }}\n\n {% set should_revoke = should_revoke(existing_relation, full_refresh_mode=True) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n -- `COMMIT` happens here\n {{ adapter.commit() }}\n\n -- finally, drop the existing/backup relation after the commit\n {{ drop_relation_if_exists(backup_relation) }}\n\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n\n {{ return({'relations': [target_relation]}) }}\n{% endmaterialization %}", "depends_on": {"macros": ["macro.dbt.load_cached_relation", "macro.dbt.make_intermediate_relation", "macro.dbt.make_backup_relation", "macro.dbt.drop_relation_if_exists", "macro.dbt.run_hooks", "macro.dbt.statement", "macro.dbt.get_create_table_as_sql", "macro.dbt.create_indexes", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.131382, "supported_languages": ["sql"]}, "macro.dbt.get_create_table_as_sql": {"name": "get_create_table_as_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/create_table_as.sql", "original_file_path": "macros/materializations/models/table/create_table_as.sql", "unique_id": "macro.dbt.get_create_table_as_sql", "macro_sql": "{% macro get_create_table_as_sql(temporary, relation, sql) -%}\n {{ adapter.dispatch('get_create_table_as_sql', 'dbt')(temporary, relation, sql) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_create_table_as_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.132292, "supported_languages": null}, "macro.dbt.default__get_create_table_as_sql": {"name": "default__get_create_table_as_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/create_table_as.sql", "original_file_path": "macros/materializations/models/table/create_table_as.sql", "unique_id": "macro.dbt.default__get_create_table_as_sql", "macro_sql": "{% macro default__get_create_table_as_sql(temporary, relation, sql) -%}\n {{ return(create_table_as(temporary, relation, sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.create_table_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1324868, "supported_languages": null}, "macro.dbt.create_table_as": {"name": "create_table_as", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/create_table_as.sql", "original_file_path": "macros/materializations/models/table/create_table_as.sql", "unique_id": "macro.dbt.create_table_as", "macro_sql": "{% macro create_table_as(temporary, relation, compiled_code, language='sql') -%}\n {# backward compatibility for create_table_as that does not support language #}\n {% if language == \"sql\" %}\n {{ adapter.dispatch('create_table_as', 'dbt')(temporary, relation, compiled_code)}}\n {% else %}\n {{ adapter.dispatch('create_table_as', 'dbt')(temporary, relation, compiled_code, language) }}\n {% endif %}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks__create_table_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.132941, "supported_languages": null}, "macro.dbt.default__create_table_as": {"name": "default__create_table_as", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/create_table_as.sql", "original_file_path": "macros/materializations/models/table/create_table_as.sql", "unique_id": "macro.dbt.default__create_table_as", "macro_sql": "{% macro default__create_table_as(temporary, relation, sql) -%}\n {%- set sql_header = config.get('sql_header', none) -%}\n\n {{ sql_header if sql_header is not none }}\n\n create {% if temporary: -%}temporary{%- endif %} table\n {{ relation.include(database=(not temporary), schema=(not temporary)) }}\n {% set contract_config = config.get('contract') %}\n {% if contract_config.enforced %}\n {{ get_assert_columns_equivalent(sql) }}\n {{ get_table_columns_and_constraints() }}\n {%- set sql = get_select_subquery(sql) %}\n {% endif %}\n as (\n {{ sql }}\n );\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.get_assert_columns_equivalent", "macro.dbt.get_table_columns_and_constraints", "macro.dbt.get_select_subquery"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1336288, "supported_languages": null}, "macro.dbt.default__get_column_names": {"name": "default__get_column_names", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/create_table_as.sql", "original_file_path": "macros/materializations/models/table/create_table_as.sql", "unique_id": "macro.dbt.default__get_column_names", "macro_sql": "{% macro default__get_column_names() %}\n {#- loop through user_provided_columns to get column names -#}\n {%- set user_provided_columns = model['columns'] -%}\n {%- for i in user_provided_columns %}\n {%- set col = user_provided_columns[i] -%}\n {%- set col_name = adapter.quote(col['name']) if col.get('quote') else col['name'] -%}\n {{ col_name }}{{ \", \" if not loop.last }}\n {%- endfor -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.13411, "supported_languages": null}, "macro.dbt.get_select_subquery": {"name": "get_select_subquery", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/create_table_as.sql", "original_file_path": "macros/materializations/models/table/create_table_as.sql", "unique_id": "macro.dbt.get_select_subquery", "macro_sql": "{% macro get_select_subquery(sql) %}\n {{ return(adapter.dispatch('get_select_subquery', 'dbt')(sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_select_subquery"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.134304, "supported_languages": null}, "macro.dbt.default__get_select_subquery": {"name": "default__get_select_subquery", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/create_table_as.sql", "original_file_path": "macros/materializations/models/table/create_table_as.sql", "unique_id": "macro.dbt.default__get_select_subquery", "macro_sql": "{% macro default__get_select_subquery(sql) %}\n select {{ adapter.dispatch('get_column_names', 'dbt')() }}\n from (\n {{ sql }}\n ) as model_subq\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_column_names"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.134491, "supported_languages": null}, "macro.dbt.materialization_view_default": {"name": "materialization_view_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/view/view.sql", "original_file_path": "macros/materializations/models/view/view.sql", "unique_id": "macro.dbt.materialization_view_default", "macro_sql": "{%- materialization view, default -%}\n\n {%- set existing_relation = load_cached_relation(this) -%}\n {%- set target_relation = this.incorporate(type='view') -%}\n {%- set intermediate_relation = make_intermediate_relation(target_relation) -%}\n\n -- the intermediate_relation should not already exist in the database; get_relation\n -- will return None in that case. Otherwise, we get a relation that we can drop\n -- later, before we try to use this name for the current operation\n {%- set preexisting_intermediate_relation = load_cached_relation(intermediate_relation) -%}\n /*\n This relation (probably) doesn't exist yet. If it does exist, it's a leftover from\n a previous run, and we're going to try to drop it immediately. At the end of this\n materialization, we're going to rename the \"existing_relation\" to this identifier,\n and then we're going to drop it. In order to make sure we run the correct one of:\n - drop view ...\n - drop table ...\n\n We need to set the type of this relation to be the type of the existing_relation, if it exists,\n or else \"view\" as a sane default if it does not. Note that if the existing_relation does not\n exist, then there is nothing to move out of the way and subsequentally drop. In that case,\n this relation will be effectively unused.\n */\n {%- set backup_relation_type = 'view' if existing_relation is none else existing_relation.type -%}\n {%- set backup_relation = make_backup_relation(target_relation, backup_relation_type) -%}\n -- as above, the backup_relation should not already exist\n {%- set preexisting_backup_relation = load_cached_relation(backup_relation) -%}\n -- grab current tables grants config for comparision later on\n {% set grant_config = config.get('grants') %}\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n -- drop the temp relations if they exist already in the database\n {{ drop_relation_if_exists(preexisting_intermediate_relation) }}\n {{ drop_relation_if_exists(preexisting_backup_relation) }}\n\n -- `BEGIN` happens here:\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\n\n -- build model\n {% call statement('main') -%}\n {{ get_create_view_as_sql(intermediate_relation, sql) }}\n {%- endcall %}\n\n -- cleanup\n -- move the existing view out of the way\n {% if existing_relation is not none %}\n {{ adapter.rename_relation(existing_relation, backup_relation) }}\n {% endif %}\n {{ adapter.rename_relation(intermediate_relation, target_relation) }}\n\n {% set should_revoke = should_revoke(existing_relation, full_refresh_mode=True) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n {{ run_hooks(post_hooks, inside_transaction=True) }}\n\n {{ adapter.commit() }}\n\n {{ drop_relation_if_exists(backup_relation) }}\n\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{%- endmaterialization -%}", "depends_on": {"macros": ["macro.dbt.load_cached_relation", "macro.dbt.make_intermediate_relation", "macro.dbt.make_backup_relation", "macro.dbt.run_hooks", "macro.dbt.drop_relation_if_exists", "macro.dbt.statement", "macro.dbt.get_create_view_as_sql", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.137213, "supported_languages": ["sql"]}, "macro.dbt.handle_existing_table": {"name": "handle_existing_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/view/helpers.sql", "original_file_path": "macros/materializations/models/view/helpers.sql", "unique_id": "macro.dbt.handle_existing_table", "macro_sql": "{% macro handle_existing_table(full_refresh, old_relation) %}\n {{ adapter.dispatch('handle_existing_table', 'dbt')(full_refresh, old_relation) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__handle_existing_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.137533, "supported_languages": null}, "macro.dbt.default__handle_existing_table": {"name": "default__handle_existing_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/view/helpers.sql", "original_file_path": "macros/materializations/models/view/helpers.sql", "unique_id": "macro.dbt.default__handle_existing_table", "macro_sql": "{% macro default__handle_existing_table(full_refresh, old_relation) %}\n {{ log(\"Dropping relation \" ~ old_relation ~ \" because it is of type \" ~ old_relation.type) }}\n {{ adapter.drop_relation(old_relation) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.137771, "supported_languages": null}, "macro.dbt.create_or_replace_view": {"name": "create_or_replace_view", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/view/create_or_replace_view.sql", "original_file_path": "macros/materializations/models/view/create_or_replace_view.sql", "unique_id": "macro.dbt.create_or_replace_view", "macro_sql": "{% macro create_or_replace_view() %}\n {%- set identifier = model['alias'] -%}\n\n {%- set old_relation = adapter.get_relation(database=database, schema=schema, identifier=identifier) -%}\n {%- set exists_as_view = (old_relation is not none and old_relation.is_view) -%}\n\n {%- set target_relation = api.Relation.create(\n identifier=identifier, schema=schema, database=database,\n type='view') -%}\n {% set grant_config = config.get('grants') %}\n\n {{ run_hooks(pre_hooks) }}\n\n -- If there's a table with the same name and we weren't told to full refresh,\n -- that's an error. If we were told to full refresh, drop it. This behavior differs\n -- for Snowflake and BigQuery, so multiple dispatch is used.\n {%- if old_relation is not none and old_relation.is_table -%}\n {{ handle_existing_table(should_full_refresh(), old_relation) }}\n {%- endif -%}\n\n -- build model\n {% call statement('main') -%}\n {{ get_create_view_as_sql(target_relation, sql) }}\n {%- endcall %}\n\n {% set should_revoke = should_revoke(exists_as_view, full_refresh_mode=True) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {{ run_hooks(post_hooks) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_hooks", "macro.dbt.handle_existing_table", "macro.dbt.should_full_refresh", "macro.dbt.statement", "macro.dbt.get_create_view_as_sql", "macro.dbt.should_revoke", "macro.dbt.apply_grants"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.139356, "supported_languages": null}, "macro.dbt.get_create_view_as_sql": {"name": "get_create_view_as_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/view/create_view_as.sql", "original_file_path": "macros/materializations/models/view/create_view_as.sql", "unique_id": "macro.dbt.get_create_view_as_sql", "macro_sql": "{% macro get_create_view_as_sql(relation, sql) -%}\n {{ adapter.dispatch('get_create_view_as_sql', 'dbt')(relation, sql) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_create_view_as_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.139792, "supported_languages": null}, "macro.dbt.default__get_create_view_as_sql": {"name": "default__get_create_view_as_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/view/create_view_as.sql", "original_file_path": "macros/materializations/models/view/create_view_as.sql", "unique_id": "macro.dbt.default__get_create_view_as_sql", "macro_sql": "{% macro default__get_create_view_as_sql(relation, sql) -%}\n {{ return(create_view_as(relation, sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.create_view_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1399639, "supported_languages": null}, "macro.dbt.create_view_as": {"name": "create_view_as", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/view/create_view_as.sql", "original_file_path": "macros/materializations/models/view/create_view_as.sql", "unique_id": "macro.dbt.create_view_as", "macro_sql": "{% macro create_view_as(relation, sql) -%}\n {{ adapter.dispatch('create_view_as', 'dbt')(relation, sql) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks__create_view_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.14015, "supported_languages": null}, "macro.dbt.default__create_view_as": {"name": "default__create_view_as", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/view/create_view_as.sql", "original_file_path": "macros/materializations/models/view/create_view_as.sql", "unique_id": "macro.dbt.default__create_view_as", "macro_sql": "{% macro default__create_view_as(relation, sql) -%}\n {%- set sql_header = config.get('sql_header', none) -%}\n\n {{ sql_header if sql_header is not none }}\n create view {{ relation }}\n {% set contract_config = config.get('contract') %}\n {% if contract_config.enforced %}\n {{ get_assert_columns_equivalent(sql) }}\n {%- endif %}\n as (\n {{ sql }}\n );\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.get_assert_columns_equivalent"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.140588, "supported_languages": null}, "macro.dbt.materialization_seed_default": {"name": "materialization_seed_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/seed.sql", "original_file_path": "macros/materializations/seeds/seed.sql", "unique_id": "macro.dbt.materialization_seed_default", "macro_sql": "{% materialization seed, default %}\n\n {%- set identifier = model['alias'] -%}\n {%- set full_refresh_mode = (should_full_refresh()) -%}\n\n {%- set old_relation = adapter.get_relation(database=database, schema=schema, identifier=identifier) -%}\n\n {%- set exists_as_table = (old_relation is not none and old_relation.is_table) -%}\n {%- set exists_as_view = (old_relation is not none and old_relation.is_view) -%}\n\n {%- set grant_config = config.get('grants') -%}\n {%- set agate_table = load_agate_table() -%}\n -- grab current tables grants config for comparision later on\n\n {%- do store_result('agate_table', response='OK', agate_table=agate_table) -%}\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n -- `BEGIN` happens here:\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\n\n -- build model\n {% set create_table_sql = \"\" %}\n {% if exists_as_view %}\n {{ exceptions.raise_compiler_error(\"Cannot seed to '{}', it is a view\".format(old_relation)) }}\n {% elif exists_as_table %}\n {% set create_table_sql = reset_csv_table(model, full_refresh_mode, old_relation, agate_table) %}\n {% else %}\n {% set create_table_sql = create_csv_table(model, agate_table) %}\n {% endif %}\n\n {% set code = 'CREATE' if full_refresh_mode else 'INSERT' %}\n {% set rows_affected = (agate_table.rows | length) %}\n {% set sql = load_csv_rows(model, agate_table) %}\n\n {% call noop_statement('main', code ~ ' ' ~ rows_affected, code, rows_affected) %}\n {{ get_csv_sql(create_table_sql, sql) }};\n {% endcall %}\n\n {% set target_relation = this.incorporate(type='table') %}\n\n {% set should_revoke = should_revoke(old_relation, full_refresh_mode) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n {% if full_refresh_mode or not exists_as_table %}\n {% do create_indexes(target_relation) %}\n {% endif %}\n\n {{ run_hooks(post_hooks, inside_transaction=True) }}\n\n -- `COMMIT` happens here\n {{ adapter.commit() }}\n\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{% endmaterialization %}", "depends_on": {"macros": ["macro.dbt.should_full_refresh", "macro.dbt.run_hooks", "macro.dbt.reset_csv_table", "macro.dbt.create_csv_table", "macro.dbt.load_csv_rows", "macro.dbt.noop_statement", "macro.dbt.get_csv_sql", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs", "macro.dbt.create_indexes"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1440241, "supported_languages": ["sql"]}, "macro.dbt.create_csv_table": {"name": "create_csv_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.create_csv_table", "macro_sql": "{% macro create_csv_table(model, agate_table) -%}\n {{ adapter.dispatch('create_csv_table', 'dbt')(model, agate_table) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks__create_csv_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1495621, "supported_languages": null}, "macro.dbt.default__create_csv_table": {"name": "default__create_csv_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.default__create_csv_table", "macro_sql": "{% macro default__create_csv_table(model, agate_table) %}\n {%- set column_override = model['config'].get('column_types', {}) -%}\n {%- set quote_seed_column = model['config'].get('quote_columns', None) -%}\n\n {% set sql %}\n create table {{ this.render() }} (\n {%- for col_name in agate_table.column_names -%}\n {%- set inferred_type = adapter.convert_type(agate_table, loop.index0) -%}\n {%- set type = column_override.get(col_name, inferred_type) -%}\n {%- set column_name = (col_name | string) -%}\n {{ adapter.quote_seed_column(column_name, quote_seed_column) }} {{ type }} {%- if not loop.last -%}, {%- endif -%}\n {%- endfor -%}\n )\n {% endset %}\n\n {% call statement('_') -%}\n {{ sql }}\n {%- endcall %}\n\n {{ return(sql) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.150499, "supported_languages": null}, "macro.dbt.reset_csv_table": {"name": "reset_csv_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.reset_csv_table", "macro_sql": "{% macro reset_csv_table(model, full_refresh, old_relation, agate_table) -%}\n {{ adapter.dispatch('reset_csv_table', 'dbt')(model, full_refresh, old_relation, agate_table) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__reset_csv_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.150743, "supported_languages": null}, "macro.dbt.default__reset_csv_table": {"name": "default__reset_csv_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.default__reset_csv_table", "macro_sql": "{% macro default__reset_csv_table(model, full_refresh, old_relation, agate_table) %}\n {% set sql = \"\" %}\n {% if full_refresh %}\n {{ adapter.drop_relation(old_relation) }}\n {% set sql = create_csv_table(model, agate_table) %}\n {% else %}\n {{ adapter.truncate_relation(old_relation) }}\n {% set sql = \"truncate table \" ~ old_relation %}\n {% endif %}\n\n {{ return(sql) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.create_csv_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.151241, "supported_languages": null}, "macro.dbt.get_csv_sql": {"name": "get_csv_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.get_csv_sql", "macro_sql": "{% macro get_csv_sql(create_or_truncate_sql, insert_sql) %}\n {{ adapter.dispatch('get_csv_sql', 'dbt')(create_or_truncate_sql, insert_sql) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_csv_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1514418, "supported_languages": null}, "macro.dbt.default__get_csv_sql": {"name": "default__get_csv_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.default__get_csv_sql", "macro_sql": "{% macro default__get_csv_sql(create_or_truncate_sql, insert_sql) %}\n {{ create_or_truncate_sql }};\n -- dbt seed --\n {{ insert_sql }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1515799, "supported_languages": null}, "macro.dbt.get_binding_char": {"name": "get_binding_char", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.get_binding_char", "macro_sql": "{% macro get_binding_char() -%}\n {{ adapter.dispatch('get_binding_char', 'dbt')() }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks__get_binding_char"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1517282, "supported_languages": null}, "macro.dbt.default__get_binding_char": {"name": "default__get_binding_char", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.default__get_binding_char", "macro_sql": "{% macro default__get_binding_char() %}\n {{ return('%s') }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.151847, "supported_languages": null}, "macro.dbt.get_batch_size": {"name": "get_batch_size", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.get_batch_size", "macro_sql": "{% macro get_batch_size() -%}\n {{ return(adapter.dispatch('get_batch_size', 'dbt')()) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_batch_size"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.152012, "supported_languages": null}, "macro.dbt.default__get_batch_size": {"name": "default__get_batch_size", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.default__get_batch_size", "macro_sql": "{% macro default__get_batch_size() %}\n {{ return(10000) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1521332, "supported_languages": null}, "macro.dbt.get_seed_column_quoted_csv": {"name": "get_seed_column_quoted_csv", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.get_seed_column_quoted_csv", "macro_sql": "{% macro get_seed_column_quoted_csv(model, column_names) %}\n {%- set quote_seed_column = model['config'].get('quote_columns', None) -%}\n {% set quoted = [] %}\n {% for col in column_names -%}\n {%- do quoted.append(adapter.quote_seed_column(col, quote_seed_column)) -%}\n {%- endfor %}\n\n {%- set dest_cols_csv = quoted | join(', ') -%}\n {{ return(dest_cols_csv) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.152622, "supported_languages": null}, "macro.dbt.load_csv_rows": {"name": "load_csv_rows", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.load_csv_rows", "macro_sql": "{% macro load_csv_rows(model, agate_table) -%}\n {{ adapter.dispatch('load_csv_rows', 'dbt')(model, agate_table) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks__load_csv_rows"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.152813, "supported_languages": null}, "macro.dbt.default__load_csv_rows": {"name": "default__load_csv_rows", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.default__load_csv_rows", "macro_sql": "{% macro default__load_csv_rows(model, agate_table) %}\n\n {% set batch_size = get_batch_size() %}\n\n {% set cols_sql = get_seed_column_quoted_csv(model, agate_table.column_names) %}\n {% set bindings = [] %}\n\n {% set statements = [] %}\n\n {% for chunk in agate_table.rows | batch(batch_size) %}\n {% set bindings = [] %}\n\n {% for row in chunk %}\n {% do bindings.extend(row) %}\n {% endfor %}\n\n {% set sql %}\n insert into {{ this.render() }} ({{ cols_sql }}) values\n {% for row in chunk -%}\n ({%- for column in agate_table.column_names -%}\n {{ get_binding_char() }}\n {%- if not loop.last%},{%- endif %}\n {%- endfor -%})\n {%- if not loop.last%},{%- endif %}\n {%- endfor %}\n {% endset %}\n\n {% do adapter.add_query(sql, bindings=bindings, abridge_sql_log=True) %}\n\n {% if loop.index0 == 0 %}\n {% do statements.append(sql) %}\n {% endif %}\n {% endfor %}\n\n {# Return SQL so we can render it out into the compiled files #}\n {{ return(statements[0]) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_batch_size", "macro.dbt.get_seed_column_quoted_csv", "macro.dbt.get_binding_char"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.154163, "supported_languages": null}, "macro.dbt.generate_alias_name": {"name": "generate_alias_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_alias.sql", "original_file_path": "macros/get_custom_name/get_custom_alias.sql", "unique_id": "macro.dbt.generate_alias_name", "macro_sql": "{% macro generate_alias_name(custom_alias_name=none, node=none) -%}\n {% do return(adapter.dispatch('generate_alias_name', 'dbt')(custom_alias_name, node)) %}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__generate_alias_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.154613, "supported_languages": null}, "macro.dbt.default__generate_alias_name": {"name": "default__generate_alias_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_alias.sql", "original_file_path": "macros/get_custom_name/get_custom_alias.sql", "unique_id": "macro.dbt.default__generate_alias_name", "macro_sql": "{% macro default__generate_alias_name(custom_alias_name=none, node=none) -%}\n\n {%- if custom_alias_name -%}\n\n {{ custom_alias_name | trim }}\n\n {%- elif node.version -%}\n\n {{ return(node.name ~ \"_v\" ~ (node.version | replace(\".\", \"_\"))) }}\n\n {%- else -%}\n\n {{ node.name }}\n\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.15501, "supported_languages": null}, "macro.dbt.generate_schema_name": {"name": "generate_schema_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_schema.sql", "original_file_path": "macros/get_custom_name/get_custom_schema.sql", "unique_id": "macro.dbt.generate_schema_name", "macro_sql": "{% macro generate_schema_name(custom_schema_name=none, node=none) -%}\n {{ return(adapter.dispatch('generate_schema_name', 'dbt')(custom_schema_name, node)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__generate_schema_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.15555, "supported_languages": null}, "macro.dbt.default__generate_schema_name": {"name": "default__generate_schema_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_schema.sql", "original_file_path": "macros/get_custom_name/get_custom_schema.sql", "unique_id": "macro.dbt.default__generate_schema_name", "macro_sql": "{% macro default__generate_schema_name(custom_schema_name, node) -%}\n\n {%- set default_schema = target.schema -%}\n {%- if custom_schema_name is none -%}\n\n {{ default_schema }}\n\n {%- else -%}\n\n {{ default_schema }}_{{ custom_schema_name | trim }}\n\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.155818, "supported_languages": null}, "macro.dbt.generate_schema_name_for_env": {"name": "generate_schema_name_for_env", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_schema.sql", "original_file_path": "macros/get_custom_name/get_custom_schema.sql", "unique_id": "macro.dbt.generate_schema_name_for_env", "macro_sql": "{% macro generate_schema_name_for_env(custom_schema_name, node) -%}\n\n {%- set default_schema = target.schema -%}\n {%- if target.name == 'prod' and custom_schema_name is not none -%}\n\n {{ custom_schema_name | trim }}\n\n {%- else -%}\n\n {{ default_schema }}\n\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.156111, "supported_languages": null}, "macro.dbt.generate_database_name": {"name": "generate_database_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_database.sql", "original_file_path": "macros/get_custom_name/get_custom_database.sql", "unique_id": "macro.dbt.generate_database_name", "macro_sql": "{% macro generate_database_name(custom_database_name=none, node=none) -%}\n {% do return(adapter.dispatch('generate_database_name', 'dbt')(custom_database_name, node)) %}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks__generate_database_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1565208, "supported_languages": null}, "macro.dbt.default__generate_database_name": {"name": "default__generate_database_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_database.sql", "original_file_path": "macros/get_custom_name/get_custom_database.sql", "unique_id": "macro.dbt.default__generate_database_name", "macro_sql": "{% macro default__generate_database_name(custom_database_name=none, node=none) -%}\n {%- set default_database = target.database -%}\n {%- if custom_database_name is none -%}\n\n {{ default_database }}\n\n {%- else -%}\n\n {{ custom_database_name }}\n\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.156778, "supported_languages": null}, "macro.dbt.default__test_relationships": {"name": "default__test_relationships", "resource_type": "macro", "package_name": "dbt", "path": "macros/generic_test_sql/relationships.sql", "original_file_path": "macros/generic_test_sql/relationships.sql", "unique_id": "macro.dbt.default__test_relationships", "macro_sql": "{% macro default__test_relationships(model, column_name, to, field) %}\n\nwith child as (\n select {{ column_name }} as from_field\n from {{ model }}\n where {{ column_name }} is not null\n),\n\nparent as (\n select {{ field }} as to_field\n from {{ to }}\n)\n\nselect\n from_field\n\nfrom child\nleft join parent\n on child.from_field = parent.to_field\n\nwhere parent.to_field is null\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.157139, "supported_languages": null}, "macro.dbt.default__test_not_null": {"name": "default__test_not_null", "resource_type": "macro", "package_name": "dbt", "path": "macros/generic_test_sql/not_null.sql", "original_file_path": "macros/generic_test_sql/not_null.sql", "unique_id": "macro.dbt.default__test_not_null", "macro_sql": "{% macro default__test_not_null(model, column_name) %}\n\n{% set column_list = '*' if should_store_failures() else column_name %}\n\nselect {{ column_list }}\nfrom {{ model }}\nwhere {{ column_name }} is null\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.should_store_failures"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.157448, "supported_languages": null}, "macro.dbt.default__test_unique": {"name": "default__test_unique", "resource_type": "macro", "package_name": "dbt", "path": "macros/generic_test_sql/unique.sql", "original_file_path": "macros/generic_test_sql/unique.sql", "unique_id": "macro.dbt.default__test_unique", "macro_sql": "{% macro default__test_unique(model, column_name) %}\n\nselect\n {{ column_name }} as unique_field,\n count(*) as n_records\n\nfrom {{ model }}\nwhere {{ column_name }} is not null\ngroup by {{ column_name }}\nhaving count(*) > 1\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.157702, "supported_languages": null}, "macro.dbt.default__test_accepted_values": {"name": "default__test_accepted_values", "resource_type": "macro", "package_name": "dbt", "path": "macros/generic_test_sql/accepted_values.sql", "original_file_path": "macros/generic_test_sql/accepted_values.sql", "unique_id": "macro.dbt.default__test_accepted_values", "macro_sql": "{% macro default__test_accepted_values(model, column_name, values, quote=True) %}\n\nwith all_values as (\n\n select\n {{ column_name }} as value_field,\n count(*) as n_records\n\n from {{ model }}\n group by {{ column_name }}\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n {% for value in values -%}\n {% if quote -%}\n '{{ value }}'\n {%- else -%}\n {{ value }}\n {%- endif -%}\n {%- if not loop.last -%},{%- endif %}\n {%- endfor %}\n)\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1582909, "supported_languages": null}, "macro.dbt.statement": {"name": "statement", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/statement.sql", "original_file_path": "macros/etc/statement.sql", "unique_id": "macro.dbt.statement", "macro_sql": "\n{%- macro statement(name=None, fetch_result=False, auto_begin=True, language='sql') -%}\n {%- if execute: -%}\n {%- set compiled_code = caller() -%}\n\n {%- if name == 'main' -%}\n {{ log('Writing runtime {} for node \"{}\"'.format(language, model['unique_id'])) }}\n {{ write(compiled_code) }}\n {%- endif -%}\n {%- if language == 'sql'-%}\n {%- set res, table = adapter.execute(compiled_code, auto_begin=auto_begin, fetch=fetch_result) -%}\n {%- elif language == 'python' -%}\n {%- set res = submit_python_job(model, compiled_code) -%}\n {#-- TODO: What should table be for python models? --#}\n {%- set table = None -%}\n {%- else -%}\n {% do exceptions.raise_compiler_error(\"statement macro didn't get supported language\") %}\n {%- endif -%}\n\n {%- if name is not none -%}\n {{ store_result(name, response=res, agate_table=table) }}\n {%- endif -%}\n\n {%- endif -%}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1598248, "supported_languages": null}, "macro.dbt.noop_statement": {"name": "noop_statement", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/statement.sql", "original_file_path": "macros/etc/statement.sql", "unique_id": "macro.dbt.noop_statement", "macro_sql": "{% macro noop_statement(name=None, message=None, code=None, rows_affected=None, res=None) -%}\n {%- set sql = caller() -%}\n\n {%- if name == 'main' -%}\n {{ log('Writing runtime SQL for node \"{}\"'.format(model['unique_id'])) }}\n {{ write(sql) }}\n {%- endif -%}\n\n {%- if name is not none -%}\n {{ store_raw_result(name, message=message, code=code, rows_affected=rows_affected, agate_table=res) }}\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.160619, "supported_languages": null}, "macro.dbt.run_query": {"name": "run_query", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/statement.sql", "original_file_path": "macros/etc/statement.sql", "unique_id": "macro.dbt.run_query", "macro_sql": "{% macro run_query(sql) %}\n {% call statement(\"run_query_statement\", fetch_result=true, auto_begin=false) %}\n {{ sql }}\n {% endcall %}\n\n {% do return(load_result(\"run_query_statement\").table) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.160927, "supported_languages": null}, "macro.dbt.convert_datetime": {"name": "convert_datetime", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/datetime.sql", "original_file_path": "macros/etc/datetime.sql", "unique_id": "macro.dbt.convert_datetime", "macro_sql": "{% macro convert_datetime(date_str, date_fmt) %}\n\n {% set error_msg -%}\n The provided partition date '{{ date_str }}' does not match the expected format '{{ date_fmt }}'\n {%- endset %}\n\n {% set res = try_or_compiler_error(error_msg, modules.datetime.datetime.strptime, date_str.strip(), date_fmt) %}\n {{ return(res) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1629062, "supported_languages": null}, "macro.dbt.dates_in_range": {"name": "dates_in_range", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/datetime.sql", "original_file_path": "macros/etc/datetime.sql", "unique_id": "macro.dbt.dates_in_range", "macro_sql": "{% macro dates_in_range(start_date_str, end_date_str=none, in_fmt=\"%Y%m%d\", out_fmt=\"%Y%m%d\") %}\n {% set end_date_str = start_date_str if end_date_str is none else end_date_str %}\n\n {% set start_date = convert_datetime(start_date_str, in_fmt) %}\n {% set end_date = convert_datetime(end_date_str, in_fmt) %}\n\n {% set day_count = (end_date - start_date).days %}\n {% if day_count < 0 %}\n {% set msg -%}\n Partiton start date is after the end date ({{ start_date }}, {{ end_date }})\n {%- endset %}\n\n {{ exceptions.raise_compiler_error(msg, model) }}\n {% endif %}\n\n {% set date_list = [] %}\n {% for i in range(0, day_count + 1) %}\n {% set the_date = (modules.datetime.timedelta(days=i) + start_date) %}\n {% if not out_fmt %}\n {% set _ = date_list.append(the_date) %}\n {% else %}\n {% set _ = date_list.append(the_date.strftime(out_fmt)) %}\n {% endif %}\n {% endfor %}\n\n {{ return(date_list) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.convert_datetime"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.16414, "supported_languages": null}, "macro.dbt.partition_range": {"name": "partition_range", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/datetime.sql", "original_file_path": "macros/etc/datetime.sql", "unique_id": "macro.dbt.partition_range", "macro_sql": "{% macro partition_range(raw_partition_date, date_fmt='%Y%m%d') %}\n {% set partition_range = (raw_partition_date | string).split(\",\") %}\n\n {% if (partition_range | length) == 1 %}\n {% set start_date = partition_range[0] %}\n {% set end_date = none %}\n {% elif (partition_range | length) == 2 %}\n {% set start_date = partition_range[0] %}\n {% set end_date = partition_range[1] %}\n {% else %}\n {{ exceptions.raise_compiler_error(\"Invalid partition time. Expected format: {Start Date}[,{End Date}]. Got: \" ~ raw_partition_date) }}\n {% endif %}\n\n {{ return(dates_in_range(start_date, end_date, in_fmt=date_fmt)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.dates_in_range"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.164923, "supported_languages": null}, "macro.dbt.py_current_timestring": {"name": "py_current_timestring", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/datetime.sql", "original_file_path": "macros/etc/datetime.sql", "unique_id": "macro.dbt.py_current_timestring", "macro_sql": "{% macro py_current_timestring() %}\n {% set dt = modules.datetime.datetime.now() %}\n {% do return(dt.strftime(\"%Y%m%d%H%M%S%f\")) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.165165, "supported_languages": null}, "macro.dbt.except": {"name": "except", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/except.sql", "original_file_path": "macros/utils/except.sql", "unique_id": "macro.dbt.except", "macro_sql": "{% macro except() %}\n {{ return(adapter.dispatch('except', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__except"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1654038, "supported_languages": null}, "macro.dbt.default__except": {"name": "default__except", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/except.sql", "original_file_path": "macros/utils/except.sql", "unique_id": "macro.dbt.default__except", "macro_sql": "{% macro default__except() %}\n\n except\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.165483, "supported_languages": null}, "macro.dbt.replace": {"name": "replace", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/replace.sql", "original_file_path": "macros/utils/replace.sql", "unique_id": "macro.dbt.replace", "macro_sql": "{% macro replace(field, old_chars, new_chars) -%}\n {{ return(adapter.dispatch('replace', 'dbt') (field, old_chars, new_chars)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__replace"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1658251, "supported_languages": null}, "macro.dbt.default__replace": {"name": "default__replace", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/replace.sql", "original_file_path": "macros/utils/replace.sql", "unique_id": "macro.dbt.default__replace", "macro_sql": "{% macro default__replace(field, old_chars, new_chars) %}\n\n replace(\n {{ field }},\n {{ old_chars }},\n {{ new_chars }}\n )\n\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1659951, "supported_languages": null}, "macro.dbt.concat": {"name": "concat", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/concat.sql", "original_file_path": "macros/utils/concat.sql", "unique_id": "macro.dbt.concat", "macro_sql": "{% macro concat(fields) -%}\n {{ return(adapter.dispatch('concat', 'dbt')(fields)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__concat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.166249, "supported_languages": null}, "macro.dbt.default__concat": {"name": "default__concat", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/concat.sql", "original_file_path": "macros/utils/concat.sql", "unique_id": "macro.dbt.default__concat", "macro_sql": "{% macro default__concat(fields) -%}\n {{ fields|join(' || ') }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1663759, "supported_languages": null}, "macro.dbt.length": {"name": "length", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/length.sql", "original_file_path": "macros/utils/length.sql", "unique_id": "macro.dbt.length", "macro_sql": "{% macro length(expression) -%}\n {{ return(adapter.dispatch('length', 'dbt') (expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__length"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.166636, "supported_languages": null}, "macro.dbt.default__length": {"name": "default__length", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/length.sql", "original_file_path": "macros/utils/length.sql", "unique_id": "macro.dbt.default__length", "macro_sql": "{% macro default__length(expression) %}\n\n length(\n {{ expression }}\n )\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1667478, "supported_languages": null}, "macro.dbt.dateadd": {"name": "dateadd", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/dateadd.sql", "original_file_path": "macros/utils/dateadd.sql", "unique_id": "macro.dbt.dateadd", "macro_sql": "{% macro dateadd(datepart, interval, from_date_or_timestamp) %}\n {{ return(adapter.dispatch('dateadd', 'dbt')(datepart, interval, from_date_or_timestamp)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks__dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.167101, "supported_languages": null}, "macro.dbt.default__dateadd": {"name": "default__dateadd", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/dateadd.sql", "original_file_path": "macros/utils/dateadd.sql", "unique_id": "macro.dbt.default__dateadd", "macro_sql": "{% macro default__dateadd(datepart, interval, from_date_or_timestamp) %}\n\n dateadd(\n {{ datepart }},\n {{ interval }},\n {{ from_date_or_timestamp }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.16727, "supported_languages": null}, "macro.dbt.intersect": {"name": "intersect", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/intersect.sql", "original_file_path": "macros/utils/intersect.sql", "unique_id": "macro.dbt.intersect", "macro_sql": "{% macro intersect() %}\n {{ return(adapter.dispatch('intersect', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__intersect"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1675048, "supported_languages": null}, "macro.dbt.default__intersect": {"name": "default__intersect", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/intersect.sql", "original_file_path": "macros/utils/intersect.sql", "unique_id": "macro.dbt.default__intersect", "macro_sql": "{% macro default__intersect() %}\n\n intersect\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.167584, "supported_languages": null}, "macro.dbt.escape_single_quotes": {"name": "escape_single_quotes", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/escape_single_quotes.sql", "original_file_path": "macros/utils/escape_single_quotes.sql", "unique_id": "macro.dbt.escape_single_quotes", "macro_sql": "{% macro escape_single_quotes(expression) %}\n {{ return(adapter.dispatch('escape_single_quotes', 'dbt') (expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__escape_single_quotes"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.167855, "supported_languages": null}, "macro.dbt.default__escape_single_quotes": {"name": "default__escape_single_quotes", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/escape_single_quotes.sql", "original_file_path": "macros/utils/escape_single_quotes.sql", "unique_id": "macro.dbt.default__escape_single_quotes", "macro_sql": "{% macro default__escape_single_quotes(expression) -%}\n{{ expression | replace(\"'\",\"''\") }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.167997, "supported_languages": null}, "macro.dbt.right": {"name": "right", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/right.sql", "original_file_path": "macros/utils/right.sql", "unique_id": "macro.dbt.right", "macro_sql": "{% macro right(string_text, length_expression) -%}\n {{ return(adapter.dispatch('right', 'dbt') (string_text, length_expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__right"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1683, "supported_languages": null}, "macro.dbt.default__right": {"name": "default__right", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/right.sql", "original_file_path": "macros/utils/right.sql", "unique_id": "macro.dbt.default__right", "macro_sql": "{% macro default__right(string_text, length_expression) %}\n\n right(\n {{ string_text }},\n {{ length_expression }}\n )\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.168512, "supported_languages": null}, "macro.dbt.listagg": {"name": "listagg", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/listagg.sql", "original_file_path": "macros/utils/listagg.sql", "unique_id": "macro.dbt.listagg", "macro_sql": "{% macro listagg(measure, delimiter_text=\"','\", order_by_clause=none, limit_num=none) -%}\n {{ return(adapter.dispatch('listagg', 'dbt') (measure, delimiter_text, order_by_clause, limit_num)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__listagg"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.169339, "supported_languages": null}, "macro.dbt.default__listagg": {"name": "default__listagg", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/listagg.sql", "original_file_path": "macros/utils/listagg.sql", "unique_id": "macro.dbt.default__listagg", "macro_sql": "{% macro default__listagg(measure, delimiter_text, order_by_clause, limit_num) -%}\n\n {% if limit_num -%}\n array_to_string(\n array_slice(\n array_agg(\n {{ measure }}\n ){% if order_by_clause -%}\n within group ({{ order_by_clause }})\n {%- endif %}\n ,0\n ,{{ limit_num }}\n ),\n {{ delimiter_text }}\n )\n {%- else %}\n listagg(\n {{ measure }},\n {{ delimiter_text }}\n )\n {% if order_by_clause -%}\n within group ({{ order_by_clause }})\n {%- endif %}\n {%- endif %}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.169794, "supported_languages": null}, "macro.dbt.datediff": {"name": "datediff", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/datediff.sql", "original_file_path": "macros/utils/datediff.sql", "unique_id": "macro.dbt.datediff", "macro_sql": "{% macro datediff(first_date, second_date, datepart) %}\n {{ return(adapter.dispatch('datediff', 'dbt')(first_date, second_date, datepart)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks__datediff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.170177, "supported_languages": null}, "macro.dbt.default__datediff": {"name": "default__datediff", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/datediff.sql", "original_file_path": "macros/utils/datediff.sql", "unique_id": "macro.dbt.default__datediff", "macro_sql": "{% macro default__datediff(first_date, second_date, datepart) -%}\n\n datediff(\n {{ datepart }},\n {{ first_date }},\n {{ second_date }}\n )\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.170362, "supported_languages": null}, "macro.dbt.safe_cast": {"name": "safe_cast", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/safe_cast.sql", "original_file_path": "macros/utils/safe_cast.sql", "unique_id": "macro.dbt.safe_cast", "macro_sql": "{% macro safe_cast(field, type) %}\n {{ return(adapter.dispatch('safe_cast', 'dbt') (field, type)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__safe_cast"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.170671, "supported_languages": null}, "macro.dbt.default__safe_cast": {"name": "default__safe_cast", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/safe_cast.sql", "original_file_path": "macros/utils/safe_cast.sql", "unique_id": "macro.dbt.default__safe_cast", "macro_sql": "{% macro default__safe_cast(field, type) %}\n {# most databases don't support this function yet\n so we just need to use cast #}\n cast({{field}} as {{type}})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1708212, "supported_languages": null}, "macro.dbt.hash": {"name": "hash", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/hash.sql", "original_file_path": "macros/utils/hash.sql", "unique_id": "macro.dbt.hash", "macro_sql": "{% macro hash(field) -%}\n {{ return(adapter.dispatch('hash', 'dbt') (field)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__hash"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.171094, "supported_languages": null}, "macro.dbt.default__hash": {"name": "default__hash", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/hash.sql", "original_file_path": "macros/utils/hash.sql", "unique_id": "macro.dbt.default__hash", "macro_sql": "{% macro default__hash(field) -%}\n md5(cast({{ field }} as {{ api.Column.translate_type('string') }}))\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.171264, "supported_languages": null}, "macro.dbt.cast_bool_to_text": {"name": "cast_bool_to_text", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/cast_bool_to_text.sql", "original_file_path": "macros/utils/cast_bool_to_text.sql", "unique_id": "macro.dbt.cast_bool_to_text", "macro_sql": "{% macro cast_bool_to_text(field) %}\n {{ adapter.dispatch('cast_bool_to_text', 'dbt') (field) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__cast_bool_to_text"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.171527, "supported_languages": null}, "macro.dbt.default__cast_bool_to_text": {"name": "default__cast_bool_to_text", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/cast_bool_to_text.sql", "original_file_path": "macros/utils/cast_bool_to_text.sql", "unique_id": "macro.dbt.default__cast_bool_to_text", "macro_sql": "{% macro default__cast_bool_to_text(field) %}\n cast({{ field }} as {{ api.Column.translate_type('string') }})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1716979, "supported_languages": null}, "macro.dbt.any_value": {"name": "any_value", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/any_value.sql", "original_file_path": "macros/utils/any_value.sql", "unique_id": "macro.dbt.any_value", "macro_sql": "{% macro any_value(expression) -%}\n {{ return(adapter.dispatch('any_value', 'dbt') (expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__any_value"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.171957, "supported_languages": null}, "macro.dbt.default__any_value": {"name": "default__any_value", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/any_value.sql", "original_file_path": "macros/utils/any_value.sql", "unique_id": "macro.dbt.default__any_value", "macro_sql": "{% macro default__any_value(expression) -%}\n\n any_value({{ expression }})\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.172066, "supported_languages": null}, "macro.dbt.position": {"name": "position", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/position.sql", "original_file_path": "macros/utils/position.sql", "unique_id": "macro.dbt.position", "macro_sql": "{% macro position(substring_text, string_text) -%}\n {{ return(adapter.dispatch('position', 'dbt') (substring_text, string_text)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__position"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1723678, "supported_languages": null}, "macro.dbt.default__position": {"name": "default__position", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/position.sql", "original_file_path": "macros/utils/position.sql", "unique_id": "macro.dbt.default__position", "macro_sql": "{% macro default__position(substring_text, string_text) %}\n\n position(\n {{ substring_text }} in {{ string_text }}\n )\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.172522, "supported_languages": null}, "macro.dbt.string_literal": {"name": "string_literal", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/literal.sql", "original_file_path": "macros/utils/literal.sql", "unique_id": "macro.dbt.string_literal", "macro_sql": "{%- macro string_literal(value) -%}\n {{ return(adapter.dispatch('string_literal', 'dbt') (value)) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__string_literal"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.17278, "supported_languages": null}, "macro.dbt.default__string_literal": {"name": "default__string_literal", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/literal.sql", "original_file_path": "macros/utils/literal.sql", "unique_id": "macro.dbt.default__string_literal", "macro_sql": "{% macro default__string_literal(value) -%}\n '{{ value }}'\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.172891, "supported_languages": null}, "macro.dbt.type_string": {"name": "type_string", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_string", "macro_sql": "\n\n{%- macro type_string() -%}\n {{ return(adapter.dispatch('type_string', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.173855, "supported_languages": null}, "macro.dbt.default__type_string": {"name": "default__type_string", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_string", "macro_sql": "{% macro default__type_string() %}\n {{ return(api.Column.translate_type(\"string\")) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.174016, "supported_languages": null}, "macro.dbt.type_timestamp": {"name": "type_timestamp", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_timestamp", "macro_sql": "\n\n{%- macro type_timestamp() -%}\n {{ return(adapter.dispatch('type_timestamp', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1742651, "supported_languages": null}, "macro.dbt.default__type_timestamp": {"name": "default__type_timestamp", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_timestamp", "macro_sql": "{% macro default__type_timestamp() %}\n {{ return(api.Column.translate_type(\"timestamp\")) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1744251, "supported_languages": null}, "macro.dbt.type_float": {"name": "type_float", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_float", "macro_sql": "\n\n{%- macro type_float() -%}\n {{ return(adapter.dispatch('type_float', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_float"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.174596, "supported_languages": null}, "macro.dbt.default__type_float": {"name": "default__type_float", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_float", "macro_sql": "{% macro default__type_float() %}\n {{ return(api.Column.translate_type(\"float\")) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.174753, "supported_languages": null}, "macro.dbt.type_numeric": {"name": "type_numeric", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_numeric", "macro_sql": "\n\n{%- macro type_numeric() -%}\n {{ return(adapter.dispatch('type_numeric', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_numeric"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.174925, "supported_languages": null}, "macro.dbt.default__type_numeric": {"name": "default__type_numeric", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_numeric", "macro_sql": "{% macro default__type_numeric() %}\n {{ return(api.Column.numeric_type(\"numeric\", 28, 6)) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1751108, "supported_languages": null}, "macro.dbt.type_bigint": {"name": "type_bigint", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_bigint", "macro_sql": "\n\n{%- macro type_bigint() -%}\n {{ return(adapter.dispatch('type_bigint', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_bigint"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.175282, "supported_languages": null}, "macro.dbt.default__type_bigint": {"name": "default__type_bigint", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_bigint", "macro_sql": "{% macro default__type_bigint() %}\n {{ return(api.Column.translate_type(\"bigint\")) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1754408, "supported_languages": null}, "macro.dbt.type_int": {"name": "type_int", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_int", "macro_sql": "\n\n{%- macro type_int() -%}\n {{ return(adapter.dispatch('type_int', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_int"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.175609, "supported_languages": null}, "macro.dbt.default__type_int": {"name": "default__type_int", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_int", "macro_sql": "{%- macro default__type_int() -%}\n {{ return(api.Column.translate_type(\"integer\")) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1757598, "supported_languages": null}, "macro.dbt.type_boolean": {"name": "type_boolean", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_boolean", "macro_sql": "\n\n{%- macro type_boolean() -%}\n {{ return(adapter.dispatch('type_boolean', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_boolean"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.175931, "supported_languages": null}, "macro.dbt.default__type_boolean": {"name": "default__type_boolean", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_boolean", "macro_sql": "{%- macro default__type_boolean() -%}\n {{ return(api.Column.translate_type(\"boolean\")) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.176081, "supported_languages": null}, "macro.dbt.array_concat": {"name": "array_concat", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/array_concat.sql", "original_file_path": "macros/utils/array_concat.sql", "unique_id": "macro.dbt.array_concat", "macro_sql": "{% macro array_concat(array_1, array_2) -%}\n {{ return(adapter.dispatch('array_concat', 'dbt')(array_1, array_2)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__array_concat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.176374, "supported_languages": null}, "macro.dbt.default__array_concat": {"name": "default__array_concat", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/array_concat.sql", "original_file_path": "macros/utils/array_concat.sql", "unique_id": "macro.dbt.default__array_concat", "macro_sql": "{% macro default__array_concat(array_1, array_2) -%}\n array_cat({{ array_1 }}, {{ array_2 }})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.176512, "supported_languages": null}, "macro.dbt.bool_or": {"name": "bool_or", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/bool_or.sql", "original_file_path": "macros/utils/bool_or.sql", "unique_id": "macro.dbt.bool_or", "macro_sql": "{% macro bool_or(expression) -%}\n {{ return(adapter.dispatch('bool_or', 'dbt') (expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__bool_or"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.176769, "supported_languages": null}, "macro.dbt.default__bool_or": {"name": "default__bool_or", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/bool_or.sql", "original_file_path": "macros/utils/bool_or.sql", "unique_id": "macro.dbt.default__bool_or", "macro_sql": "{% macro default__bool_or(expression) -%}\n\n bool_or({{ expression }})\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.176883, "supported_languages": null}, "macro.dbt.last_day": {"name": "last_day", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/last_day.sql", "original_file_path": "macros/utils/last_day.sql", "unique_id": "macro.dbt.last_day", "macro_sql": "{% macro last_day(date, datepart) %}\n {{ return(adapter.dispatch('last_day', 'dbt') (date, datepart)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__last_day"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.177242, "supported_languages": null}, "macro.dbt.default_last_day": {"name": "default_last_day", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/last_day.sql", "original_file_path": "macros/utils/last_day.sql", "unique_id": "macro.dbt.default_last_day", "macro_sql": "\n\n{%- macro default_last_day(date, datepart) -%}\n cast(\n {{dbt.dateadd('day', '-1',\n dbt.dateadd(datepart, '1', dbt.date_trunc(datepart, date))\n )}}\n as date)\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.dateadd", "macro.dbt.date_trunc"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.177517, "supported_languages": null}, "macro.dbt.default__last_day": {"name": "default__last_day", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/last_day.sql", "original_file_path": "macros/utils/last_day.sql", "unique_id": "macro.dbt.default__last_day", "macro_sql": "{% macro default__last_day(date, datepart) -%}\n {{dbt.default_last_day(date, datepart)}}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default_last_day"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.177674, "supported_languages": null}, "macro.dbt.split_part": {"name": "split_part", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/split_part.sql", "original_file_path": "macros/utils/split_part.sql", "unique_id": "macro.dbt.split_part", "macro_sql": "{% macro split_part(string_text, delimiter_text, part_number) %}\n {{ return(adapter.dispatch('split_part', 'dbt') (string_text, delimiter_text, part_number)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__split_part"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.178231, "supported_languages": null}, "macro.dbt.default__split_part": {"name": "default__split_part", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/split_part.sql", "original_file_path": "macros/utils/split_part.sql", "unique_id": "macro.dbt.default__split_part", "macro_sql": "{% macro default__split_part(string_text, delimiter_text, part_number) %}\n\n split_part(\n {{ string_text }},\n {{ delimiter_text }},\n {{ part_number }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1784089, "supported_languages": null}, "macro.dbt._split_part_negative": {"name": "_split_part_negative", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/split_part.sql", "original_file_path": "macros/utils/split_part.sql", "unique_id": "macro.dbt._split_part_negative", "macro_sql": "{% macro _split_part_negative(string_text, delimiter_text, part_number) %}\n\n split_part(\n {{ string_text }},\n {{ delimiter_text }},\n length({{ string_text }})\n - length(\n replace({{ string_text }}, {{ delimiter_text }}, '')\n ) + 2 {{ part_number }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.178707, "supported_languages": null}, "macro.dbt.date_trunc": {"name": "date_trunc", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/date_trunc.sql", "original_file_path": "macros/utils/date_trunc.sql", "unique_id": "macro.dbt.date_trunc", "macro_sql": "{% macro date_trunc(datepart, date) -%}\n {{ return(adapter.dispatch('date_trunc', 'dbt') (datepart, date)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__date_trunc"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.178998, "supported_languages": null}, "macro.dbt.default__date_trunc": {"name": "default__date_trunc", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/date_trunc.sql", "original_file_path": "macros/utils/date_trunc.sql", "unique_id": "macro.dbt.default__date_trunc", "macro_sql": "{% macro default__date_trunc(datepart, date) -%}\n date_trunc('{{datepart}}', {{date}})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.179135, "supported_languages": null}, "macro.dbt.array_construct": {"name": "array_construct", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/array_construct.sql", "original_file_path": "macros/utils/array_construct.sql", "unique_id": "macro.dbt.array_construct", "macro_sql": "{% macro array_construct(inputs=[], data_type=api.Column.translate_type('integer')) -%}\n {{ return(adapter.dispatch('array_construct', 'dbt')(inputs, data_type)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__array_construct"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.179538, "supported_languages": null}, "macro.dbt.default__array_construct": {"name": "default__array_construct", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/array_construct.sql", "original_file_path": "macros/utils/array_construct.sql", "unique_id": "macro.dbt.default__array_construct", "macro_sql": "{% macro default__array_construct(inputs, data_type) -%}\n {% if inputs|length > 0 %}\n array[ {{ inputs|join(' , ') }} ]\n {% else %}\n array[]::{{data_type}}[]\n {% endif %}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.179793, "supported_languages": null}, "macro.dbt.array_append": {"name": "array_append", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/array_append.sql", "original_file_path": "macros/utils/array_append.sql", "unique_id": "macro.dbt.array_append", "macro_sql": "{% macro array_append(array, new_element) -%}\n {{ return(adapter.dispatch('array_append', 'dbt')(array, new_element)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__array_append"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.180084, "supported_languages": null}, "macro.dbt.default__array_append": {"name": "default__array_append", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/array_append.sql", "original_file_path": "macros/utils/array_append.sql", "unique_id": "macro.dbt.default__array_append", "macro_sql": "{% macro default__array_append(array, new_element) -%}\n array_append({{ array }}, {{ new_element }})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.180224, "supported_languages": null}, "macro.dbt.create_schema": {"name": "create_schema", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/schema.sql", "original_file_path": "macros/adapters/schema.sql", "unique_id": "macro.dbt.create_schema", "macro_sql": "{% macro create_schema(relation) -%}\n {{ adapter.dispatch('create_schema', 'dbt')(relation) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__create_schema"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.180615, "supported_languages": null}, "macro.dbt.default__create_schema": {"name": "default__create_schema", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/schema.sql", "original_file_path": "macros/adapters/schema.sql", "unique_id": "macro.dbt.default__create_schema", "macro_sql": "{% macro default__create_schema(relation) -%}\n {%- call statement('create_schema') -%}\n create schema if not exists {{ relation.without_identifier() }}\n {% endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1808069, "supported_languages": null}, "macro.dbt.drop_schema": {"name": "drop_schema", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/schema.sql", "original_file_path": "macros/adapters/schema.sql", "unique_id": "macro.dbt.drop_schema", "macro_sql": "{% macro drop_schema(relation) -%}\n {{ adapter.dispatch('drop_schema', 'dbt')(relation) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__drop_schema"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1809778, "supported_languages": null}, "macro.dbt.default__drop_schema": {"name": "default__drop_schema", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/schema.sql", "original_file_path": "macros/adapters/schema.sql", "unique_id": "macro.dbt.default__drop_schema", "macro_sql": "{% macro default__drop_schema(relation) -%}\n {%- call statement('drop_schema') -%}\n drop schema if exists {{ relation.without_identifier() }} cascade\n {% endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1811671, "supported_languages": null}, "macro.dbt.current_timestamp": {"name": "current_timestamp", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.current_timestamp", "macro_sql": "{%- macro current_timestamp() -%}\n {{ adapter.dispatch('current_timestamp', 'dbt')() }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_spark.spark__current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.18167, "supported_languages": null}, "macro.dbt.default__current_timestamp": {"name": "default__current_timestamp", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.default__current_timestamp", "macro_sql": "{% macro default__current_timestamp() -%}\n {{ exceptions.raise_not_implemented(\n 'current_timestamp macro not implemented for adapter ' + adapter.type()) }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.181826, "supported_languages": null}, "macro.dbt.snapshot_get_time": {"name": "snapshot_get_time", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.snapshot_get_time", "macro_sql": "\n\n{%- macro snapshot_get_time() -%}\n {{ adapter.dispatch('snapshot_get_time', 'dbt')() }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__snapshot_get_time"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.181973, "supported_languages": null}, "macro.dbt.default__snapshot_get_time": {"name": "default__snapshot_get_time", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.default__snapshot_get_time", "macro_sql": "{% macro default__snapshot_get_time() %}\n {{ current_timestamp() }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.182087, "supported_languages": null}, "macro.dbt.current_timestamp_backcompat": {"name": "current_timestamp_backcompat", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.current_timestamp_backcompat", "macro_sql": "{% macro current_timestamp_backcompat() %}\n {{ return(adapter.dispatch('current_timestamp_backcompat', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__current_timestamp_backcompat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.182261, "supported_languages": null}, "macro.dbt.default__current_timestamp_backcompat": {"name": "default__current_timestamp_backcompat", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.default__current_timestamp_backcompat", "macro_sql": "{% macro default__current_timestamp_backcompat() %}\n current_timestamp::timestamp\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.182339, "supported_languages": null}, "macro.dbt.current_timestamp_in_utc_backcompat": {"name": "current_timestamp_in_utc_backcompat", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.current_timestamp_in_utc_backcompat", "macro_sql": "{% macro current_timestamp_in_utc_backcompat() %}\n {{ return(adapter.dispatch('current_timestamp_in_utc_backcompat', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__current_timestamp_in_utc_backcompat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1825101, "supported_languages": null}, "macro.dbt.default__current_timestamp_in_utc_backcompat": {"name": "default__current_timestamp_in_utc_backcompat", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.default__current_timestamp_in_utc_backcompat", "macro_sql": "{% macro default__current_timestamp_in_utc_backcompat() %}\n {{ return(adapter.dispatch('current_timestamp_backcompat', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.current_timestamp_backcompat", "macro.dbt.default__current_timestamp_backcompat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.182684, "supported_languages": null}, "macro.dbt.get_create_index_sql": {"name": "get_create_index_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "unique_id": "macro.dbt.get_create_index_sql", "macro_sql": "{% macro get_create_index_sql(relation, index_dict) -%}\n {{ return(adapter.dispatch('get_create_index_sql', 'dbt')(relation, index_dict)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_create_index_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.183163, "supported_languages": null}, "macro.dbt.default__get_create_index_sql": {"name": "default__get_create_index_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "unique_id": "macro.dbt.default__get_create_index_sql", "macro_sql": "{% macro default__get_create_index_sql(relation, index_dict) -%}\n {% do return(None) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.183378, "supported_languages": null}, "macro.dbt.create_indexes": {"name": "create_indexes", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "unique_id": "macro.dbt.create_indexes", "macro_sql": "{% macro create_indexes(relation) -%}\n {{ adapter.dispatch('create_indexes', 'dbt')(relation) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__create_indexes"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.183546, "supported_languages": null}, "macro.dbt.default__create_indexes": {"name": "default__create_indexes", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "unique_id": "macro.dbt.default__create_indexes", "macro_sql": "{% macro default__create_indexes(relation) -%}\n {%- set _indexes = config.get('indexes', default=[]) -%}\n\n {% for _index_dict in _indexes %}\n {% set create_index_sql = get_create_index_sql(relation, _index_dict) %}\n {% if create_index_sql %}\n {% do run_query(create_index_sql) %}\n {% endif %}\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_create_index_sql", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.183964, "supported_languages": null}, "macro.dbt.make_intermediate_relation": {"name": "make_intermediate_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.make_intermediate_relation", "macro_sql": "{% macro make_intermediate_relation(base_relation, suffix='__dbt_tmp') %}\n {{ return(adapter.dispatch('make_intermediate_relation', 'dbt')(base_relation, suffix)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__make_intermediate_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.187524, "supported_languages": null}, "macro.dbt.default__make_intermediate_relation": {"name": "default__make_intermediate_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__make_intermediate_relation", "macro_sql": "{% macro default__make_intermediate_relation(base_relation, suffix) %}\n {{ return(default__make_temp_relation(base_relation, suffix)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__make_temp_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.187698, "supported_languages": null}, "macro.dbt.make_temp_relation": {"name": "make_temp_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.make_temp_relation", "macro_sql": "{% macro make_temp_relation(base_relation, suffix='__dbt_tmp') %}\n {{ return(adapter.dispatch('make_temp_relation', 'dbt')(base_relation, suffix)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks__make_temp_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1879308, "supported_languages": null}, "macro.dbt.default__make_temp_relation": {"name": "default__make_temp_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__make_temp_relation", "macro_sql": "{% macro default__make_temp_relation(base_relation, suffix) %}\n {%- set temp_identifier = base_relation.identifier ~ suffix -%}\n {%- set temp_relation = base_relation.incorporate(\n path={\"identifier\": temp_identifier}) -%}\n\n {{ return(temp_relation) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.188236, "supported_languages": null}, "macro.dbt.make_backup_relation": {"name": "make_backup_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.make_backup_relation", "macro_sql": "{% macro make_backup_relation(base_relation, backup_relation_type, suffix='__dbt_backup') %}\n {{ return(adapter.dispatch('make_backup_relation', 'dbt')(base_relation, backup_relation_type, suffix)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__make_backup_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1884968, "supported_languages": null}, "macro.dbt.default__make_backup_relation": {"name": "default__make_backup_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__make_backup_relation", "macro_sql": "{% macro default__make_backup_relation(base_relation, backup_relation_type, suffix) %}\n {%- set backup_identifier = base_relation.identifier ~ suffix -%}\n {%- set backup_relation = base_relation.incorporate(\n path={\"identifier\": backup_identifier},\n type=backup_relation_type\n ) -%}\n {{ return(backup_relation) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.18884, "supported_languages": null}, "macro.dbt.drop_relation": {"name": "drop_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.drop_relation", "macro_sql": "{% macro drop_relation(relation) -%}\n {{ return(adapter.dispatch('drop_relation', 'dbt')(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__drop_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.18903, "supported_languages": null}, "macro.dbt.default__drop_relation": {"name": "default__drop_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__drop_relation", "macro_sql": "{% macro default__drop_relation(relation) -%}\n {% call statement('drop_relation', auto_begin=False) -%}\n drop {{ relation.type }} if exists {{ relation }} cascade\n {%- endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.189255, "supported_languages": null}, "macro.dbt.truncate_relation": {"name": "truncate_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.truncate_relation", "macro_sql": "{% macro truncate_relation(relation) -%}\n {{ return(adapter.dispatch('truncate_relation', 'dbt')(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__truncate_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.189446, "supported_languages": null}, "macro.dbt.default__truncate_relation": {"name": "default__truncate_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__truncate_relation", "macro_sql": "{% macro default__truncate_relation(relation) -%}\n {% call statement('truncate_relation') -%}\n truncate table {{ relation }}\n {%- endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.189617, "supported_languages": null}, "macro.dbt.rename_relation": {"name": "rename_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.rename_relation", "macro_sql": "{% macro rename_relation(from_relation, to_relation) -%}\n {{ return(adapter.dispatch('rename_relation', 'dbt')(from_relation, to_relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__rename_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.189827, "supported_languages": null}, "macro.dbt.default__rename_relation": {"name": "default__rename_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__rename_relation", "macro_sql": "{% macro default__rename_relation(from_relation, to_relation) -%}\n {% set target_name = adapter.quote_as_configured(to_relation.identifier, 'identifier') %}\n {% call statement('rename_relation') -%}\n alter table {{ from_relation }} rename to {{ target_name }}\n {%- endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.190125, "supported_languages": null}, "macro.dbt.get_or_create_relation": {"name": "get_or_create_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.get_or_create_relation", "macro_sql": "{% macro get_or_create_relation(database, schema, identifier, type) -%}\n {{ return(adapter.dispatch('get_or_create_relation', 'dbt')(database, schema, identifier, type)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks__get_or_create_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1903858, "supported_languages": null}, "macro.dbt.default__get_or_create_relation": {"name": "default__get_or_create_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__get_or_create_relation", "macro_sql": "{% macro default__get_or_create_relation(database, schema, identifier, type) %}\n {%- set target_relation = adapter.get_relation(database=database, schema=schema, identifier=identifier) %}\n\n {% if target_relation %}\n {% do return([true, target_relation]) %}\n {% endif %}\n\n {%- set new_relation = api.Relation.create(\n database=database,\n schema=schema,\n identifier=identifier,\n type=type\n ) -%}\n {% do return([false, new_relation]) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1909719, "supported_languages": null}, "macro.dbt.load_cached_relation": {"name": "load_cached_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.load_cached_relation", "macro_sql": "{% macro load_cached_relation(relation) %}\n {% do return(adapter.get_relation(\n database=relation.database,\n schema=relation.schema,\n identifier=relation.identifier\n )) -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1912751, "supported_languages": null}, "macro.dbt.load_relation": {"name": "load_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.load_relation", "macro_sql": "{% macro load_relation(relation) %}\n {{ return(load_cached_relation(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.load_cached_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.191423, "supported_languages": null}, "macro.dbt.drop_relation_if_exists": {"name": "drop_relation_if_exists", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.drop_relation_if_exists", "macro_sql": "{% macro drop_relation_if_exists(relation) %}\n {% if relation is not none %}\n {{ adapter.drop_relation(relation) }}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1916249, "supported_languages": null}, "macro.dbt.collect_freshness": {"name": "collect_freshness", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/freshness.sql", "original_file_path": "macros/adapters/freshness.sql", "unique_id": "macro.dbt.collect_freshness", "macro_sql": "{% macro collect_freshness(source, loaded_at_field, filter) %}\n {{ return(adapter.dispatch('collect_freshness', 'dbt')(source, loaded_at_field, filter))}}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__collect_freshness"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.192066, "supported_languages": null}, "macro.dbt.default__collect_freshness": {"name": "default__collect_freshness", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/freshness.sql", "original_file_path": "macros/adapters/freshness.sql", "unique_id": "macro.dbt.default__collect_freshness", "macro_sql": "{% macro default__collect_freshness(source, loaded_at_field, filter) %}\n {% call statement('collect_freshness', fetch_result=True, auto_begin=False) -%}\n select\n max({{ loaded_at_field }}) as max_loaded_at,\n {{ current_timestamp() }} as snapshotted_at\n from {{ source }}\n {% if filter %}\n where {{ filter }}\n {% endif %}\n {% endcall %}\n {{ return(load_result('collect_freshness')) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt.current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.192495, "supported_languages": null}, "macro.dbt.copy_grants": {"name": "copy_grants", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.copy_grants", "macro_sql": "{% macro copy_grants() %}\n {{ return(adapter.dispatch('copy_grants', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__copy_grants"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.194293, "supported_languages": null}, "macro.dbt.default__copy_grants": {"name": "default__copy_grants", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__copy_grants", "macro_sql": "{% macro default__copy_grants() %}\n {{ return(True) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.194415, "supported_languages": null}, "macro.dbt.support_multiple_grantees_per_dcl_statement": {"name": "support_multiple_grantees_per_dcl_statement", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.support_multiple_grantees_per_dcl_statement", "macro_sql": "{% macro support_multiple_grantees_per_dcl_statement() %}\n {{ return(adapter.dispatch('support_multiple_grantees_per_dcl_statement', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__support_multiple_grantees_per_dcl_statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.194588, "supported_languages": null}, "macro.dbt.default__support_multiple_grantees_per_dcl_statement": {"name": "default__support_multiple_grantees_per_dcl_statement", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__support_multiple_grantees_per_dcl_statement", "macro_sql": "\n\n{%- macro default__support_multiple_grantees_per_dcl_statement() -%}\n {{ return(True) }}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.194706, "supported_languages": null}, "macro.dbt.should_revoke": {"name": "should_revoke", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.should_revoke", "macro_sql": "{% macro should_revoke(existing_relation, full_refresh_mode=True) %}\n\n {% if not existing_relation %}\n {#-- The table doesn't already exist, so no grants to copy over --#}\n {{ return(False) }}\n {% elif full_refresh_mode %}\n {#-- The object is being REPLACED -- whether grants are copied over depends on the value of user config --#}\n {{ return(copy_grants()) }}\n {% else %}\n {#-- The table is being merged/upserted/inserted -- grants will be carried over --#}\n {{ return(True) }}\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.copy_grants"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.195063, "supported_languages": null}, "macro.dbt.get_show_grant_sql": {"name": "get_show_grant_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.get_show_grant_sql", "macro_sql": "{% macro get_show_grant_sql(relation) %}\n {{ return(adapter.dispatch(\"get_show_grant_sql\", \"dbt\")(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_show_grant_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1952581, "supported_languages": null}, "macro.dbt.default__get_show_grant_sql": {"name": "default__get_show_grant_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__get_show_grant_sql", "macro_sql": "{% macro default__get_show_grant_sql(relation) %}\n show grants on {{ relation }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.195363, "supported_languages": null}, "macro.dbt.get_grant_sql": {"name": "get_grant_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.get_grant_sql", "macro_sql": "{% macro get_grant_sql(relation, privilege, grantees) %}\n {{ return(adapter.dispatch('get_grant_sql', 'dbt')(relation, privilege, grantees)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__get_grant_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.195595, "supported_languages": null}, "macro.dbt.default__get_grant_sql": {"name": "default__get_grant_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__get_grant_sql", "macro_sql": "\n\n{%- macro default__get_grant_sql(relation, privilege, grantees) -%}\n grant {{ privilege }} on {{ relation }} to {{ grantees | join(', ') }}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.195789, "supported_languages": null}, "macro.dbt.get_revoke_sql": {"name": "get_revoke_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.get_revoke_sql", "macro_sql": "{% macro get_revoke_sql(relation, privilege, grantees) %}\n {{ return(adapter.dispatch('get_revoke_sql', 'dbt')(relation, privilege, grantees)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__get_revoke_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.196033, "supported_languages": null}, "macro.dbt.default__get_revoke_sql": {"name": "default__get_revoke_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__get_revoke_sql", "macro_sql": "\n\n{%- macro default__get_revoke_sql(relation, privilege, grantees) -%}\n revoke {{ privilege }} on {{ relation }} from {{ grantees | join(', ') }}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.196241, "supported_languages": null}, "macro.dbt.get_dcl_statement_list": {"name": "get_dcl_statement_list", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.get_dcl_statement_list", "macro_sql": "{% macro get_dcl_statement_list(relation, grant_config, get_dcl_macro) %}\n {{ return(adapter.dispatch('get_dcl_statement_list', 'dbt')(relation, grant_config, get_dcl_macro)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_dcl_statement_list"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1964889, "supported_languages": null}, "macro.dbt.default__get_dcl_statement_list": {"name": "default__get_dcl_statement_list", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__get_dcl_statement_list", "macro_sql": "\n\n{%- macro default__get_dcl_statement_list(relation, grant_config, get_dcl_macro) -%}\n {#\n -- Unpack grant_config into specific privileges and the set of users who need them granted/revoked.\n -- Depending on whether this database supports multiple grantees per statement, pass in the list of\n -- all grantees per privilege, or (if not) template one statement per privilege-grantee pair.\n -- `get_dcl_macro` will be either `get_grant_sql` or `get_revoke_sql`\n #}\n {%- set dcl_statements = [] -%}\n {%- for privilege, grantees in grant_config.items() %}\n {%- if support_multiple_grantees_per_dcl_statement() and grantees -%}\n {%- set dcl = get_dcl_macro(relation, privilege, grantees) -%}\n {%- do dcl_statements.append(dcl) -%}\n {%- else -%}\n {%- for grantee in grantees -%}\n {% set dcl = get_dcl_macro(relation, privilege, [grantee]) %}\n {%- do dcl_statements.append(dcl) -%}\n {% endfor -%}\n {%- endif -%}\n {%- endfor -%}\n {{ return(dcl_statements) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.support_multiple_grantees_per_dcl_statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.197275, "supported_languages": null}, "macro.dbt.call_dcl_statements": {"name": "call_dcl_statements", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.call_dcl_statements", "macro_sql": "{% macro call_dcl_statements(dcl_statement_list) %}\n {{ return(adapter.dispatch(\"call_dcl_statements\", \"dbt\")(dcl_statement_list)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__call_dcl_statements"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.197475, "supported_languages": null}, "macro.dbt.default__call_dcl_statements": {"name": "default__call_dcl_statements", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__call_dcl_statements", "macro_sql": "{% macro default__call_dcl_statements(dcl_statement_list) %}\n {#\n -- By default, supply all grant + revoke statements in a single semicolon-separated block,\n -- so that they're all processed together.\n\n -- Some databases do not support this. Those adapters will need to override this macro\n -- to run each statement individually.\n #}\n {% call statement('grants') %}\n {% for dcl_statement in dcl_statement_list %}\n {{ dcl_statement }};\n {% endfor %}\n {% endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.197729, "supported_languages": null}, "macro.dbt.apply_grants": {"name": "apply_grants", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.apply_grants", "macro_sql": "{% macro apply_grants(relation, grant_config, should_revoke) %}\n {{ return(adapter.dispatch(\"apply_grants\", \"dbt\")(relation, grant_config, should_revoke)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__apply_grants"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.1979678, "supported_languages": null}, "macro.dbt.default__apply_grants": {"name": "default__apply_grants", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__apply_grants", "macro_sql": "{% macro default__apply_grants(relation, grant_config, should_revoke=True) %}\n {#-- If grant_config is {} or None, this is a no-op --#}\n {% if grant_config %}\n {% if should_revoke %}\n {#-- We think previous grants may have carried over --#}\n {#-- Show current grants and calculate diffs --#}\n {% set current_grants_table = run_query(get_show_grant_sql(relation)) %}\n {% set current_grants_dict = adapter.standardize_grants_dict(current_grants_table) %}\n {% set needs_granting = diff_of_two_dicts(grant_config, current_grants_dict) %}\n {% set needs_revoking = diff_of_two_dicts(current_grants_dict, grant_config) %}\n {% if not (needs_granting or needs_revoking) %}\n {{ log('On ' ~ relation ~': All grants are in place, no revocation or granting needed.')}}\n {% endif %}\n {% else %}\n {#-- We don't think there's any chance of previous grants having carried over. --#}\n {#-- Jump straight to granting what the user has configured. --#}\n {% set needs_revoking = {} %}\n {% set needs_granting = grant_config %}\n {% endif %}\n {% if needs_granting or needs_revoking %}\n {% set revoke_statement_list = get_dcl_statement_list(relation, needs_revoking, get_revoke_sql) %}\n {% set grant_statement_list = get_dcl_statement_list(relation, needs_granting, get_grant_sql) %}\n {% set dcl_statement_list = revoke_statement_list + grant_statement_list %}\n {% if dcl_statement_list %}\n {{ call_dcl_statements(dcl_statement_list) }}\n {% endif %}\n {% endif %}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query", "macro.dbt.get_show_grant_sql", "macro.dbt.get_dcl_statement_list", "macro.dbt.call_dcl_statements"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.199169, "supported_languages": null}, "macro.dbt.alter_column_comment": {"name": "alter_column_comment", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "unique_id": "macro.dbt.alter_column_comment", "macro_sql": "{% macro alter_column_comment(relation, column_dict) -%}\n {{ return(adapter.dispatch('alter_column_comment', 'dbt')(relation, column_dict)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks__alter_column_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.199896, "supported_languages": null}, "macro.dbt.default__alter_column_comment": {"name": "default__alter_column_comment", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "unique_id": "macro.dbt.default__alter_column_comment", "macro_sql": "{% macro default__alter_column_comment(relation, column_dict) -%}\n {{ exceptions.raise_not_implemented(\n 'alter_column_comment macro not implemented for adapter '+adapter.type()) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.200073, "supported_languages": null}, "macro.dbt.alter_relation_comment": {"name": "alter_relation_comment", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "unique_id": "macro.dbt.alter_relation_comment", "macro_sql": "{% macro alter_relation_comment(relation, relation_comment) -%}\n {{ return(adapter.dispatch('alter_relation_comment', 'dbt')(relation, relation_comment)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__alter_relation_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.200289, "supported_languages": null}, "macro.dbt.default__alter_relation_comment": {"name": "default__alter_relation_comment", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "unique_id": "macro.dbt.default__alter_relation_comment", "macro_sql": "{% macro default__alter_relation_comment(relation, relation_comment) -%}\n {{ exceptions.raise_not_implemented(\n 'alter_relation_comment macro not implemented for adapter '+adapter.type()) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.200466, "supported_languages": null}, "macro.dbt.persist_docs": {"name": "persist_docs", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "unique_id": "macro.dbt.persist_docs", "macro_sql": "{% macro persist_docs(relation, model, for_relation=true, for_columns=true) -%}\n {{ return(adapter.dispatch('persist_docs', 'dbt')(relation, model, for_relation, for_columns)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__persist_docs"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2007492, "supported_languages": null}, "macro.dbt.default__persist_docs": {"name": "default__persist_docs", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "unique_id": "macro.dbt.default__persist_docs", "macro_sql": "{% macro default__persist_docs(relation, model, for_relation, for_columns) -%}\n {% if for_relation and config.persist_relation_docs() and model.description %}\n {% do run_query(alter_relation_comment(relation, model.description)) %}\n {% endif %}\n\n {% if for_columns and config.persist_column_docs() and model.columns %}\n {% do run_query(alter_column_comment(relation, model.columns)) %}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query", "macro.dbt.alter_relation_comment", "macro.dbt.alter_column_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.201256, "supported_languages": null}, "macro.dbt.get_catalog": {"name": "get_catalog", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.get_catalog", "macro_sql": "{% macro get_catalog(information_schema, schemas) -%}\n {{ return(adapter.dispatch('get_catalog', 'dbt')(information_schema, schemas)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_catalog"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.202844, "supported_languages": null}, "macro.dbt.default__get_catalog": {"name": "default__get_catalog", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__get_catalog", "macro_sql": "{% macro default__get_catalog(information_schema, schemas) -%}\n\n {% set typename = adapter.type() %}\n {% set msg -%}\n get_catalog not implemented for {{ typename }}\n {%- endset %}\n\n {{ exceptions.raise_compiler_error(msg) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.203113, "supported_languages": null}, "macro.dbt.information_schema_name": {"name": "information_schema_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.information_schema_name", "macro_sql": "{% macro information_schema_name(database) %}\n {{ return(adapter.dispatch('information_schema_name', 'dbt')(database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__information_schema_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.20331, "supported_languages": null}, "macro.dbt.default__information_schema_name": {"name": "default__information_schema_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__information_schema_name", "macro_sql": "{% macro default__information_schema_name(database) -%}\n {%- if database -%}\n {{ database }}.INFORMATION_SCHEMA\n {%- else -%}\n INFORMATION_SCHEMA\n {%- endif -%}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.203472, "supported_languages": null}, "macro.dbt.list_schemas": {"name": "list_schemas", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.list_schemas", "macro_sql": "{% macro list_schemas(database) -%}\n {{ return(adapter.dispatch('list_schemas', 'dbt')(database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__list_schemas"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.203661, "supported_languages": null}, "macro.dbt.default__list_schemas": {"name": "default__list_schemas", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__list_schemas", "macro_sql": "{% macro default__list_schemas(database) -%}\n {% set sql %}\n select distinct schema_name\n from {{ information_schema_name(database) }}.SCHEMATA\n where catalog_name ilike '{{ database }}'\n {% endset %}\n {{ return(run_query(sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.information_schema_name", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2039192, "supported_languages": null}, "macro.dbt.check_schema_exists": {"name": "check_schema_exists", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.check_schema_exists", "macro_sql": "{% macro check_schema_exists(information_schema, schema) -%}\n {{ return(adapter.dispatch('check_schema_exists', 'dbt')(information_schema, schema)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__check_schema_exists"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2041512, "supported_languages": null}, "macro.dbt.default__check_schema_exists": {"name": "default__check_schema_exists", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__check_schema_exists", "macro_sql": "{% macro default__check_schema_exists(information_schema, schema) -%}\n {% set sql -%}\n select count(*)\n from {{ information_schema.replace(information_schema_view='SCHEMATA') }}\n where catalog_name='{{ information_schema.database }}'\n and schema_name='{{ schema }}'\n {%- endset %}\n {{ return(run_query(sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.replace", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2044642, "supported_languages": null}, "macro.dbt.list_relations_without_caching": {"name": "list_relations_without_caching", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.list_relations_without_caching", "macro_sql": "{% macro list_relations_without_caching(schema_relation) %}\n {{ return(adapter.dispatch('list_relations_without_caching', 'dbt')(schema_relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_databricks.databricks__list_relations_without_caching"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.204659, "supported_languages": null}, "macro.dbt.default__list_relations_without_caching": {"name": "default__list_relations_without_caching", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__list_relations_without_caching", "macro_sql": "{% macro default__list_relations_without_caching(schema_relation) %}\n {{ exceptions.raise_not_implemented(\n 'list_relations_without_caching macro not implemented for adapter '+adapter.type()) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.204826, "supported_languages": null}, "macro.dbt.get_columns_in_relation": {"name": "get_columns_in_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.get_columns_in_relation", "macro_sql": "{% macro get_columns_in_relation(relation) -%}\n {{ return(adapter.dispatch('get_columns_in_relation', 'dbt')(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__get_columns_in_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2072132, "supported_languages": null}, "macro.dbt.default__get_columns_in_relation": {"name": "default__get_columns_in_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.default__get_columns_in_relation", "macro_sql": "{% macro default__get_columns_in_relation(relation) -%}\n {{ exceptions.raise_not_implemented(\n 'get_columns_in_relation macro not implemented for adapter '+adapter.type()) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.207468, "supported_languages": null}, "macro.dbt.sql_convert_columns_in_relation": {"name": "sql_convert_columns_in_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.sql_convert_columns_in_relation", "macro_sql": "{% macro sql_convert_columns_in_relation(table) -%}\n {% set columns = [] %}\n {% for row in table %}\n {% do columns.append(api.Column(*row)) %}\n {% endfor %}\n {{ return(columns) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2077959, "supported_languages": null}, "macro.dbt.get_empty_subquery_sql": {"name": "get_empty_subquery_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.get_empty_subquery_sql", "macro_sql": "{% macro get_empty_subquery_sql(select_sql, select_sql_header=none) -%}\n {{ return(adapter.dispatch('get_empty_subquery_sql', 'dbt')(select_sql, select_sql_header)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_empty_subquery_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.208022, "supported_languages": null}, "macro.dbt.default__get_empty_subquery_sql": {"name": "default__get_empty_subquery_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.default__get_empty_subquery_sql", "macro_sql": "{% macro default__get_empty_subquery_sql(select_sql, select_sql_header=none) %}\n {%- if select_sql_header is not none -%}\n {{ select_sql_header }}\n {%- endif -%}\n select * from (\n {{ select_sql }}\n ) as __dbt_sbq\n where false\n limit 0\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.208235, "supported_languages": null}, "macro.dbt.get_empty_schema_sql": {"name": "get_empty_schema_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.get_empty_schema_sql", "macro_sql": "{% macro get_empty_schema_sql(columns) -%}\n {{ return(adapter.dispatch('get_empty_schema_sql', 'dbt')(columns)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_empty_schema_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.208423, "supported_languages": null}, "macro.dbt.default__get_empty_schema_sql": {"name": "default__get_empty_schema_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.default__get_empty_schema_sql", "macro_sql": "{% macro default__get_empty_schema_sql(columns) %}\n {%- set col_err = [] -%}\n select\n {% for i in columns %}\n {%- set col = columns[i] -%}\n {%- if col['data_type'] is not defined -%}\n {{ col_err.append(col['name']) }}\n {%- endif -%}\n {% set col_name = adapter.quote(col['name']) if col.get('quote') else col['name'] %}\n cast(null as {{ col['data_type'] }}) as {{ col_name }}{{ \", \" if not loop.last }}\n {%- endfor -%}\n {%- if (col_err | length) > 0 -%}\n {{ exceptions.column_type_missing(column_names=col_err) }}\n {%- endif -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2092202, "supported_languages": null}, "macro.dbt.get_column_schema_from_query": {"name": "get_column_schema_from_query", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.get_column_schema_from_query", "macro_sql": "{% macro get_column_schema_from_query(select_sql, select_sql_header=none) -%}\n {% set columns = [] %}\n {# -- Using an 'empty subquery' here to get the same schema as the given select_sql statement, without necessitating a data scan.#}\n {% set sql = get_empty_subquery_sql(select_sql, select_sql_header) %}\n {% set column_schema = adapter.get_column_schema_from_query(sql) %}\n {{ return(column_schema) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_empty_subquery_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.209579, "supported_languages": null}, "macro.dbt.get_columns_in_query": {"name": "get_columns_in_query", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.get_columns_in_query", "macro_sql": "{% macro get_columns_in_query(select_sql) -%}\n {{ return(adapter.dispatch('get_columns_in_query', 'dbt')(select_sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_columns_in_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2097752, "supported_languages": null}, "macro.dbt.default__get_columns_in_query": {"name": "default__get_columns_in_query", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.default__get_columns_in_query", "macro_sql": "{% macro default__get_columns_in_query(select_sql) %}\n {% call statement('get_columns_in_query', fetch_result=True, auto_begin=False) -%}\n {{ get_empty_subquery_sql(select_sql) }}\n {% endcall %}\n {{ return(load_result('get_columns_in_query').table.columns | map(attribute='name') | list) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt.get_empty_subquery_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.210138, "supported_languages": null}, "macro.dbt.alter_column_type": {"name": "alter_column_type", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.alter_column_type", "macro_sql": "{% macro alter_column_type(relation, column_name, new_column_type) -%}\n {{ return(adapter.dispatch('alter_column_type', 'dbt')(relation, column_name, new_column_type)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__alter_column_type"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2103748, "supported_languages": null}, "macro.dbt.default__alter_column_type": {"name": "default__alter_column_type", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.default__alter_column_type", "macro_sql": "{% macro default__alter_column_type(relation, column_name, new_column_type) -%}\n {#\n 1. Create a new column (w/ temp name and correct type)\n 2. Copy data over to it\n 3. Drop the existing column (cascade!)\n 4. Rename the new column to existing column\n #}\n {%- set tmp_column = column_name + \"__dbt_alter\" -%}\n\n {% call statement('alter_column_type') %}\n alter table {{ relation }} add column {{ adapter.quote(tmp_column) }} {{ new_column_type }};\n update {{ relation }} set {{ adapter.quote(tmp_column) }} = {{ adapter.quote(column_name) }};\n alter table {{ relation }} drop column {{ adapter.quote(column_name) }} cascade;\n alter table {{ relation }} rename column {{ adapter.quote(tmp_column) }} to {{ adapter.quote(column_name) }}\n {% endcall %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.211009, "supported_languages": null}, "macro.dbt.alter_relation_add_remove_columns": {"name": "alter_relation_add_remove_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.alter_relation_add_remove_columns", "macro_sql": "{% macro alter_relation_add_remove_columns(relation, add_columns = none, remove_columns = none) -%}\n {{ return(adapter.dispatch('alter_relation_add_remove_columns', 'dbt')(relation, add_columns, remove_columns)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_spark.spark__alter_relation_add_remove_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.211282, "supported_languages": null}, "macro.dbt.default__alter_relation_add_remove_columns": {"name": "default__alter_relation_add_remove_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.default__alter_relation_add_remove_columns", "macro_sql": "{% macro default__alter_relation_add_remove_columns(relation, add_columns, remove_columns) %}\n\n {% if add_columns is none %}\n {% set add_columns = [] %}\n {% endif %}\n {% if remove_columns is none %}\n {% set remove_columns = [] %}\n {% endif %}\n\n {% set sql -%}\n\n alter {{ relation.type }} {{ relation }}\n\n {% for column in add_columns %}\n add column {{ column.name }} {{ column.data_type }}{{ ',' if not loop.last }}\n {% endfor %}{{ ',' if add_columns and remove_columns }}\n\n {% for column in remove_columns %}\n drop column {{ column.name }}{{ ',' if not loop.last }}\n {% endfor %}\n\n {%- endset -%}\n\n {% do run_query(sql) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.212094, "supported_languages": null}, "macro.dbt.resolve_model_name": {"name": "resolve_model_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.resolve_model_name", "macro_sql": "{% macro resolve_model_name(input_model_name) %}\n {{ return(adapter.dispatch('resolve_model_name', 'dbt')(input_model_name)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__resolve_model_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.213845, "supported_languages": null}, "macro.dbt.default__resolve_model_name": {"name": "default__resolve_model_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.default__resolve_model_name", "macro_sql": "\n\n{%- macro default__resolve_model_name(input_model_name) -%}\n {{ input_model_name | string | replace('\"', '\\\"') }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2140129, "supported_languages": null}, "macro.dbt.build_ref_function": {"name": "build_ref_function", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.build_ref_function", "macro_sql": "{% macro build_ref_function(model) %}\n\n {%- set ref_dict = {} -%}\n {%- for _ref in model.refs -%}\n {% set _ref_args = [_ref.get('package'), _ref['name']] if _ref.get('package') else [_ref['name'],] %}\n {%- set resolved = ref(*_ref_args, v=_ref.get('version')) -%}\n {%- if _ref.get('version') -%}\n {% do _ref_args.extend([\"v\" ~ _ref['version']]) %}\n {%- endif -%}\n {%- do ref_dict.update({_ref_args | join('.'): resolve_model_name(resolved)}) -%}\n {%- endfor -%}\n\ndef ref(*args, **kwargs):\n refs = {{ ref_dict | tojson }}\n key = '.'.join(args)\n version = kwargs.get(\"v\") or kwargs.get(\"version\")\n if version:\n key += f\".v{version}\"\n dbt_load_df_function = kwargs.get(\"dbt_load_df_function\")\n return dbt_load_df_function(refs[key])\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.resolve_model_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.214877, "supported_languages": null}, "macro.dbt.build_source_function": {"name": "build_source_function", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.build_source_function", "macro_sql": "{% macro build_source_function(model) %}\n\n {%- set source_dict = {} -%}\n {%- for _source in model.sources -%}\n {%- set resolved = source(*_source) -%}\n {%- do source_dict.update({_source | join('.'): resolve_model_name(resolved)}) -%}\n {%- endfor -%}\n\ndef source(*args, dbt_load_df_function):\n sources = {{ source_dict | tojson }}\n key = '.'.join(args)\n return dbt_load_df_function(sources[key])\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.resolve_model_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.215376, "supported_languages": null}, "macro.dbt.build_config_dict": {"name": "build_config_dict", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.build_config_dict", "macro_sql": "{% macro build_config_dict(model) %}\n {%- set config_dict = {} -%}\n {% set config_dbt_used = zip(model.config.config_keys_used, model.config.config_keys_defaults) | list %}\n {%- for key, default in config_dbt_used -%}\n {# weird type testing with enum, would be much easier to write this logic in Python! #}\n {%- if key == \"language\" -%}\n {%- set value = \"python\" -%}\n {%- endif -%}\n {%- set value = model.config.get(key, default) -%}\n {%- do config_dict.update({key: value}) -%}\n {%- endfor -%}\nconfig_dict = {{ config_dict }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.215976, "supported_languages": null}, "macro.dbt.py_script_postfix": {"name": "py_script_postfix", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.py_script_postfix", "macro_sql": "{% macro py_script_postfix(model) %}\n# This part is user provided model code\n# you will need to copy the next section to run the code\n# COMMAND ----------\n# this part is dbt logic for get ref work, do not modify\n\n{{ build_ref_function(model ) }}\n{{ build_source_function(model ) }}\n{{ build_config_dict(model) }}\n\nclass config:\n def __init__(self, *args, **kwargs):\n pass\n\n @staticmethod\n def get(key, default=None):\n return config_dict.get(key, default)\n\nclass this:\n \"\"\"dbt.this() or dbt.this.identifier\"\"\"\n database = \"{{ this.database }}\"\n schema = \"{{ this.schema }}\"\n identifier = \"{{ this.identifier }}\"\n {% set this_relation_name = resolve_model_name(this) %}\n def __repr__(self):\n return '{{ this_relation_name }}'\n\n\nclass dbtObj:\n def __init__(self, load_df_function) -> None:\n self.source = lambda *args: source(*args, dbt_load_df_function=load_df_function)\n self.ref = lambda *args, **kwargs: ref(*args, **kwargs, dbt_load_df_function=load_df_function)\n self.config = config\n self.this = this()\n self.is_incremental = {{ is_incremental() }}\n\n# COMMAND ----------\n{{py_script_comment()}}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.build_ref_function", "macro.dbt.build_source_function", "macro.dbt.build_config_dict", "macro.dbt.resolve_model_name", "macro.dbt.is_incremental", "macro.dbt.py_script_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.216471, "supported_languages": null}, "macro.dbt.py_script_comment": {"name": "py_script_comment", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.py_script_comment", "macro_sql": "{%macro py_script_comment()%}\n{%endmacro%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.216547, "supported_languages": null}, "macro.dbt.test_unique": {"name": "test_unique", "resource_type": "macro", "package_name": "dbt", "path": "tests/generic/builtin.sql", "original_file_path": "tests/generic/builtin.sql", "unique_id": "macro.dbt.test_unique", "macro_sql": "{% test unique(model, column_name) %}\n {% set macro = adapter.dispatch('test_unique', 'dbt') %}\n {{ macro(model, column_name) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt.default__test_unique"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.217082, "supported_languages": null}, "macro.dbt.test_not_null": {"name": "test_not_null", "resource_type": "macro", "package_name": "dbt", "path": "tests/generic/builtin.sql", "original_file_path": "tests/generic/builtin.sql", "unique_id": "macro.dbt.test_not_null", "macro_sql": "{% test not_null(model, column_name) %}\n {% set macro = adapter.dispatch('test_not_null', 'dbt') %}\n {{ macro(model, column_name) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt.default__test_not_null"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.21732, "supported_languages": null}, "macro.dbt.test_accepted_values": {"name": "test_accepted_values", "resource_type": "macro", "package_name": "dbt", "path": "tests/generic/builtin.sql", "original_file_path": "tests/generic/builtin.sql", "unique_id": "macro.dbt.test_accepted_values", "macro_sql": "{% test accepted_values(model, column_name, values, quote=True) %}\n {% set macro = adapter.dispatch('test_accepted_values', 'dbt') %}\n {{ macro(model, column_name, values, quote) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt.default__test_accepted_values"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.217618, "supported_languages": null}, "macro.dbt.test_relationships": {"name": "test_relationships", "resource_type": "macro", "package_name": "dbt", "path": "tests/generic/builtin.sql", "original_file_path": "tests/generic/builtin.sql", "unique_id": "macro.dbt.test_relationships", "macro_sql": "{% test relationships(model, column_name, to, field) %}\n {% set macro = adapter.dispatch('test_relationships', 'dbt') %}\n {{ macro(model, column_name, to, field) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt.default__test_relationships"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2179, "supported_languages": null}, "macro.dbt_utils.get_url_host": {"name": "get_url_host", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/web/get_url_host.sql", "original_file_path": "macros/web/get_url_host.sql", "unique_id": "macro.dbt_utils.get_url_host", "macro_sql": "{% macro get_url_host(field) -%}\n {{ return(adapter.dispatch('get_url_host', 'dbt_utils')(field)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_url_host"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.218273, "supported_languages": null}, "macro.dbt_utils.default__get_url_host": {"name": "default__get_url_host", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/web/get_url_host.sql", "original_file_path": "macros/web/get_url_host.sql", "unique_id": "macro.dbt_utils.default__get_url_host", "macro_sql": "{% macro default__get_url_host(field) -%}\n\n{%- set parsed =\n dbt.split_part(\n dbt.split_part(\n dbt.replace(\n dbt.replace(\n dbt.replace(field, \"'android-app://'\", \"''\"\n ), \"'http://'\", \"''\"\n ), \"'https://'\", \"''\"\n ), \"'/'\", 1\n ), \"'?'\", 1\n )\n\n-%}\n\n\n {{ dbt.safe_cast(\n parsed,\n dbt.type_string()\n )}}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.split_part", "macro.dbt.replace", "macro.dbt.safe_cast", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2187781, "supported_languages": null}, "macro.dbt_utils.get_url_path": {"name": "get_url_path", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/web/get_url_path.sql", "original_file_path": "macros/web/get_url_path.sql", "unique_id": "macro.dbt_utils.get_url_path", "macro_sql": "{% macro get_url_path(field) -%}\n {{ return(adapter.dispatch('get_url_path', 'dbt_utils')(field)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_url_path"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.219289, "supported_languages": null}, "macro.dbt_utils.default__get_url_path": {"name": "default__get_url_path", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/web/get_url_path.sql", "original_file_path": "macros/web/get_url_path.sql", "unique_id": "macro.dbt_utils.default__get_url_path", "macro_sql": "{% macro default__get_url_path(field) -%}\n\n {%- set stripped_url =\n dbt.replace(\n dbt.replace(field, \"'http://'\", \"''\"), \"'https://'\", \"''\")\n -%}\n\n {%- set first_slash_pos -%}\n coalesce(\n nullif({{ dbt.position(\"'/'\", stripped_url) }}, 0),\n {{ dbt.position(\"'?'\", stripped_url) }} - 1\n )\n {%- endset -%}\n\n {%- set parsed_path =\n dbt.split_part(\n dbt.right(\n stripped_url,\n dbt.length(stripped_url) ~ \"-\" ~ first_slash_pos\n ),\n \"'?'\", 1\n )\n -%}\n\n {{ dbt.safe_cast(\n parsed_path,\n dbt.type_string()\n )}}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.replace", "macro.dbt.position", "macro.dbt.split_part", "macro.dbt.right", "macro.dbt.length", "macro.dbt.safe_cast", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.219973, "supported_languages": null}, "macro.dbt_utils.get_url_parameter": {"name": "get_url_parameter", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/web/get_url_parameter.sql", "original_file_path": "macros/web/get_url_parameter.sql", "unique_id": "macro.dbt_utils.get_url_parameter", "macro_sql": "{% macro get_url_parameter(field, url_parameter) -%}\n {{ return(adapter.dispatch('get_url_parameter', 'dbt_utils')(field, url_parameter)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_url_parameter"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.220302, "supported_languages": null}, "macro.dbt_utils.default__get_url_parameter": {"name": "default__get_url_parameter", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/web/get_url_parameter.sql", "original_file_path": "macros/web/get_url_parameter.sql", "unique_id": "macro.dbt_utils.default__get_url_parameter", "macro_sql": "{% macro default__get_url_parameter(field, url_parameter) -%}\n\n{%- set formatted_url_parameter = \"'\" + url_parameter + \"='\" -%}\n\n{%- set split = dbt.split_part(dbt.split_part(field, formatted_url_parameter, 2), \"'&'\", 1) -%}\n\nnullif({{ split }},'')\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.split_part"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.220639, "supported_languages": null}, "macro.dbt_utils.test_fewer_rows_than": {"name": "test_fewer_rows_than", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/fewer_rows_than.sql", "original_file_path": "macros/generic_tests/fewer_rows_than.sql", "unique_id": "macro.dbt_utils.test_fewer_rows_than", "macro_sql": "{% test fewer_rows_than(model, compare_model, group_by_columns = []) %}\n {{ return(adapter.dispatch('test_fewer_rows_than', 'dbt_utils')(model, compare_model, group_by_columns)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_fewer_rows_than"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2217689, "supported_languages": null}, "macro.dbt_utils.default__test_fewer_rows_than": {"name": "default__test_fewer_rows_than", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/fewer_rows_than.sql", "original_file_path": "macros/generic_tests/fewer_rows_than.sql", "unique_id": "macro.dbt_utils.default__test_fewer_rows_than", "macro_sql": "{% macro default__test_fewer_rows_than(model, compare_model, group_by_columns) %}\n\n{{ config(fail_calc = 'sum(coalesce(row_count_delta, 0))') }}\n\n{% if group_by_columns|length() > 0 %}\n {% set select_gb_cols = group_by_columns|join(' ,') + ', ' %}\n {% set join_gb_cols %}\n {% for c in group_by_columns %}\n and a.{{c}} = b.{{c}}\n {% endfor %}\n {% endset %}\n {% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n{% endif %}\n\n{#-- We must add a fake join key in case additional grouping variables are not provided --#}\n{#-- Redshift does not allow for dynamically created join conditions (e.g. full join on 1 = 1 --#}\n{#-- The same logic is used in equal_rowcount. In case of changes, maintain consistent logic --#}\n{% set group_by_columns = ['id_dbtutils_test_fewer_rows_than'] + group_by_columns %}\n{% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n\n\nwith a as (\n\n select \n {{select_gb_cols}}\n 1 as id_dbtutils_test_fewer_rows_than,\n count(*) as count_our_model \n from {{ model }}\n {{ groupby_gb_cols }}\n\n),\nb as (\n\n select \n {{select_gb_cols}}\n 1 as id_dbtutils_test_fewer_rows_than,\n count(*) as count_comparison_model \n from {{ compare_model }}\n {{ groupby_gb_cols }}\n\n),\ncounts as (\n\n select\n\n {% for c in group_by_columns -%}\n a.{{c}} as {{c}}_a,\n b.{{c}} as {{c}}_b,\n {% endfor %}\n\n count_our_model,\n count_comparison_model\n from a\n full join b on \n a.id_dbtutils_test_fewer_rows_than = b.id_dbtutils_test_fewer_rows_than\n {{ join_gb_cols }}\n\n),\nfinal as (\n\n select *,\n case\n -- fail the test if we have more rows than the reference model and return the row count delta\n when count_our_model > count_comparison_model then (count_our_model - count_comparison_model)\n -- fail the test if they are the same number\n when count_our_model = count_comparison_model then 1\n -- pass the test if the delta is positive (i.e. return the number 0)\n else 0\n end as row_count_delta\n from counts\n\n)\n\nselect * from final\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.222838, "supported_languages": null}, "macro.dbt_utils.test_equal_rowcount": {"name": "test_equal_rowcount", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/equal_rowcount.sql", "original_file_path": "macros/generic_tests/equal_rowcount.sql", "unique_id": "macro.dbt_utils.test_equal_rowcount", "macro_sql": "{% test equal_rowcount(model, compare_model, group_by_columns = []) %}\n {{ return(adapter.dispatch('test_equal_rowcount', 'dbt_utils')(model, compare_model, group_by_columns)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_equal_rowcount"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.223735, "supported_languages": null}, "macro.dbt_utils.default__test_equal_rowcount": {"name": "default__test_equal_rowcount", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/equal_rowcount.sql", "original_file_path": "macros/generic_tests/equal_rowcount.sql", "unique_id": "macro.dbt_utils.default__test_equal_rowcount", "macro_sql": "{% macro default__test_equal_rowcount(model, compare_model, group_by_columns) %}\n\n{#-- Needs to be set at parse time, before we return '' below --#}\n{{ config(fail_calc = 'sum(coalesce(diff_count, 0))') }}\n\n{#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. #}\n{%- if not execute -%}\n {{ return('') }}\n{% endif %}\n\n{% if group_by_columns|length() > 0 %}\n {% set select_gb_cols = group_by_columns|join(', ') + ', ' %}\n {% set join_gb_cols %}\n {% for c in group_by_columns %}\n and a.{{c}} = b.{{c}}\n {% endfor %}\n {% endset %}\n {% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n{% endif %}\n\n{#-- We must add a fake join key in case additional grouping variables are not provided --#}\n{#-- Redshift does not allow for dynamically created join conditions (e.g. full join on 1 = 1 --#}\n{#-- The same logic is used in fewer_rows_than. In case of changes, maintain consistent logic --#}\n{% set group_by_columns = ['id_dbtutils_test_equal_rowcount'] + group_by_columns %}\n{% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n\nwith a as (\n\n select \n {{select_gb_cols}}\n 1 as id_dbtutils_test_equal_rowcount,\n count(*) as count_a \n from {{ model }}\n {{groupby_gb_cols}}\n\n\n),\nb as (\n\n select \n {{select_gb_cols}}\n 1 as id_dbtutils_test_equal_rowcount,\n count(*) as count_b \n from {{ compare_model }}\n {{groupby_gb_cols}}\n\n),\nfinal as (\n\n select\n \n {% for c in group_by_columns -%}\n a.{{c}} as {{c}}_a,\n b.{{c}} as {{c}}_b,\n {% endfor %}\n\n count_a,\n count_b,\n abs(count_a - count_b) as diff_count\n\n from a\n full join b\n on\n a.id_dbtutils_test_equal_rowcount = b.id_dbtutils_test_equal_rowcount\n {{join_gb_cols}}\n\n\n)\n\nselect * from final\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.224939, "supported_languages": null}, "macro.dbt_utils.test_relationships_where": {"name": "test_relationships_where", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/relationships_where.sql", "original_file_path": "macros/generic_tests/relationships_where.sql", "unique_id": "macro.dbt_utils.test_relationships_where", "macro_sql": "{% test relationships_where(model, column_name, to, field, from_condition=\"1=1\", to_condition=\"1=1\") %}\n {{ return(adapter.dispatch('test_relationships_where', 'dbt_utils')(model, column_name, to, field, from_condition, to_condition)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_relationships_where"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.225618, "supported_languages": null}, "macro.dbt_utils.default__test_relationships_where": {"name": "default__test_relationships_where", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/relationships_where.sql", "original_file_path": "macros/generic_tests/relationships_where.sql", "unique_id": "macro.dbt_utils.default__test_relationships_where", "macro_sql": "{% macro default__test_relationships_where(model, column_name, to, field, from_condition=\"1=1\", to_condition=\"1=1\") %}\n\n{# T-SQL has no boolean data type so we use 1=1 which returns TRUE #}\n{# ref https://stackoverflow.com/a/7170753/3842610 #}\n\nwith left_table as (\n\n select\n {{column_name}} as id\n\n from {{model}}\n\n where {{column_name}} is not null\n and {{from_condition}}\n\n),\n\nright_table as (\n\n select\n {{field}} as id\n\n from {{to}}\n\n where {{field}} is not null\n and {{to_condition}}\n\n),\n\nexceptions as (\n\n select\n left_table.id,\n right_table.id as right_id\n\n from left_table\n\n left join right_table\n on left_table.id = right_table.id\n\n where right_table.id is null\n\n)\n\nselect * from exceptions\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2259781, "supported_languages": null}, "macro.dbt_utils.test_recency": {"name": "test_recency", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/recency.sql", "original_file_path": "macros/generic_tests/recency.sql", "unique_id": "macro.dbt_utils.test_recency", "macro_sql": "{% test recency(model, field, datepart, interval, ignore_time_component=False, group_by_columns = []) %}\n {{ return(adapter.dispatch('test_recency', 'dbt_utils')(model, field, datepart, interval, ignore_time_component, group_by_columns)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_recency"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.22674, "supported_languages": null}, "macro.dbt_utils.default__test_recency": {"name": "default__test_recency", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/recency.sql", "original_file_path": "macros/generic_tests/recency.sql", "unique_id": "macro.dbt_utils.default__test_recency", "macro_sql": "{% macro default__test_recency(model, field, datepart, interval, ignore_time_component, group_by_columns) %}\n\n{% set threshold = 'cast(' ~ dbt.dateadd(datepart, interval * -1, dbt.current_timestamp()) ~ ' as ' ~ ('date' if ignore_time_component else dbt.type_timestamp()) ~ ')' %}\n\n{% if group_by_columns|length() > 0 %}\n {% set select_gb_cols = group_by_columns|join(' ,') + ', ' %}\n {% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n{% endif %}\n\n\nwith recency as (\n\n select \n\n {{ select_gb_cols }}\n {% if ignore_time_component %}\n cast(max({{ field }}) as date) as most_recent\n {%- else %}\n max({{ field }}) as most_recent\n {%- endif %}\n\n from {{ model }}\n\n {{ groupby_gb_cols }}\n\n)\n\nselect\n\n {{ select_gb_cols }}\n most_recent,\n {{ threshold }} as threshold\n\nfrom recency\nwhere most_recent < {{ threshold }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.dateadd", "macro.dbt.current_timestamp", "macro.dbt.type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.227628, "supported_languages": null}, "macro.dbt_utils.test_not_constant": {"name": "test_not_constant", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_constant.sql", "original_file_path": "macros/generic_tests/not_constant.sql", "unique_id": "macro.dbt_utils.test_not_constant", "macro_sql": "{% test not_constant(model, column_name, group_by_columns = []) %}\n {{ return(adapter.dispatch('test_not_constant', 'dbt_utils')(model, column_name, group_by_columns)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_not_constant"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.228097, "supported_languages": null}, "macro.dbt_utils.default__test_not_constant": {"name": "default__test_not_constant", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_constant.sql", "original_file_path": "macros/generic_tests/not_constant.sql", "unique_id": "macro.dbt_utils.default__test_not_constant", "macro_sql": "{% macro default__test_not_constant(model, column_name, group_by_columns) %}\n\n{% if group_by_columns|length() > 0 %}\n {% set select_gb_cols = group_by_columns|join(' ,') + ', ' %}\n {% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n{% endif %}\n\n\nselect\n {# In TSQL, subquery aggregate columns need aliases #}\n {# thus: a filler col name, 'filler_column' #}\n {{select_gb_cols}}\n count(distinct {{ column_name }}) as filler_column\n\nfrom {{ model }}\n\n {{groupby_gb_cols}}\n\nhaving count(distinct {{ column_name }}) = 1\n\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.22858, "supported_languages": null}, "macro.dbt_utils.test_accepted_range": {"name": "test_accepted_range", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/accepted_range.sql", "original_file_path": "macros/generic_tests/accepted_range.sql", "unique_id": "macro.dbt_utils.test_accepted_range", "macro_sql": "{% test accepted_range(model, column_name, min_value=none, max_value=none, inclusive=true) %}\n {{ return(adapter.dispatch('test_accepted_range', 'dbt_utils')(model, column_name, min_value, max_value, inclusive)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_accepted_range"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.229213, "supported_languages": null}, "macro.dbt_utils.default__test_accepted_range": {"name": "default__test_accepted_range", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/accepted_range.sql", "original_file_path": "macros/generic_tests/accepted_range.sql", "unique_id": "macro.dbt_utils.default__test_accepted_range", "macro_sql": "{% macro default__test_accepted_range(model, column_name, min_value=none, max_value=none, inclusive=true) %}\n\nwith meet_condition as(\n select *\n from {{ model }}\n),\n\nvalidation_errors as (\n select *\n from meet_condition\n where\n -- never true, defaults to an empty result set. Exists to ensure any combo of the `or` clauses below succeeds\n 1 = 2\n\n {%- if min_value is not none %}\n -- records with a value >= min_value are permitted. The `not` flips this to find records that don't meet the rule.\n or not {{ column_name }} > {{- \"=\" if inclusive }} {{ min_value }}\n {%- endif %}\n\n {%- if max_value is not none %}\n -- records with a value <= max_value are permitted. The `not` flips this to find records that don't meet the rule.\n or not {{ column_name }} < {{- \"=\" if inclusive }} {{ max_value }}\n {%- endif %}\n)\n\nselect *\nfrom validation_errors\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2297118, "supported_languages": null}, "macro.dbt_utils.test_not_accepted_values": {"name": "test_not_accepted_values", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_accepted_values.sql", "original_file_path": "macros/generic_tests/not_accepted_values.sql", "unique_id": "macro.dbt_utils.test_not_accepted_values", "macro_sql": "{% test not_accepted_values(model, column_name, values, quote=True) %}\n {{ return(adapter.dispatch('test_not_accepted_values', 'dbt_utils')(model, column_name, values, quote)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_not_accepted_values"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.230289, "supported_languages": null}, "macro.dbt_utils.default__test_not_accepted_values": {"name": "default__test_not_accepted_values", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_accepted_values.sql", "original_file_path": "macros/generic_tests/not_accepted_values.sql", "unique_id": "macro.dbt_utils.default__test_not_accepted_values", "macro_sql": "{% macro default__test_not_accepted_values(model, column_name, values, quote=True) %}\nwith all_values as (\n\n select distinct\n {{ column_name }} as value_field\n\n from {{ model }}\n\n),\n\nvalidation_errors as (\n\n select\n value_field\n\n from all_values\n where value_field in (\n {% for value in values -%}\n {% if quote -%}\n '{{ value }}'\n {%- else -%}\n {{ value }}\n {%- endif -%}\n {%- if not loop.last -%},{%- endif %}\n {%- endfor %}\n )\n\n)\n\nselect *\nfrom validation_errors\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.23069, "supported_languages": null}, "macro.dbt_utils.test_at_least_one": {"name": "test_at_least_one", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/at_least_one.sql", "original_file_path": "macros/generic_tests/at_least_one.sql", "unique_id": "macro.dbt_utils.test_at_least_one", "macro_sql": "{% test at_least_one(model, column_name, group_by_columns = []) %}\n {{ return(adapter.dispatch('test_at_least_one', 'dbt_utils')(model, column_name, group_by_columns)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_at_least_one"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.231376, "supported_languages": null}, "macro.dbt_utils.default__test_at_least_one": {"name": "default__test_at_least_one", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/at_least_one.sql", "original_file_path": "macros/generic_tests/at_least_one.sql", "unique_id": "macro.dbt_utils.default__test_at_least_one", "macro_sql": "{% macro default__test_at_least_one(model, column_name, group_by_columns) %}\n\n{% set pruned_cols = [column_name] %}\n\n{% if group_by_columns|length() > 0 %}\n\n {% set select_gb_cols = group_by_columns|join(' ,') + ', ' %}\n {% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n {% set pruned_cols = group_by_columns %}\n\n {% if column_name not in pruned_cols %}\n {% do pruned_cols.append(column_name) %}\n {% endif %}\n\n{% endif %}\n\n{% set select_pruned_cols = pruned_cols|join(' ,') %}\n\nselect *\nfrom (\n with pruned_rows as (\n select\n {{ select_pruned_cols }}\n from {{ model }}\n where {{ column_name }} is not null\n limit 1\n )\n select\n {# In TSQL, subquery aggregate columns need aliases #}\n {# thus: a filler col name, 'filler_column' #}\n {{select_gb_cols}}\n count({{ column_name }}) as filler_column\n\n from pruned_rows\n\n {{groupby_gb_cols}}\n\n having count({{ column_name }}) = 0\n\n) validation_errors\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.232206, "supported_languages": null}, "macro.dbt_utils.test_unique_combination_of_columns": {"name": "test_unique_combination_of_columns", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/unique_combination_of_columns.sql", "original_file_path": "macros/generic_tests/unique_combination_of_columns.sql", "unique_id": "macro.dbt_utils.test_unique_combination_of_columns", "macro_sql": "{% test unique_combination_of_columns(model, combination_of_columns, quote_columns=false) %}\n {{ return(adapter.dispatch('test_unique_combination_of_columns', 'dbt_utils')(model, combination_of_columns, quote_columns)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_unique_combination_of_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.232861, "supported_languages": null}, "macro.dbt_utils.default__test_unique_combination_of_columns": {"name": "default__test_unique_combination_of_columns", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/unique_combination_of_columns.sql", "original_file_path": "macros/generic_tests/unique_combination_of_columns.sql", "unique_id": "macro.dbt_utils.default__test_unique_combination_of_columns", "macro_sql": "{% macro default__test_unique_combination_of_columns(model, combination_of_columns, quote_columns=false) %}\n\n{% if not quote_columns %}\n {%- set column_list=combination_of_columns %}\n{% elif quote_columns %}\n {%- set column_list=[] %}\n {% for column in combination_of_columns -%}\n {% set column_list = column_list.append( adapter.quote(column) ) %}\n {%- endfor %}\n{% else %}\n {{ exceptions.raise_compiler_error(\n \"`quote_columns` argument for unique_combination_of_columns test must be one of [True, False] Got: '\" ~ quote ~\"'.'\"\n ) }}\n{% endif %}\n\n{%- set columns_csv=column_list | join(', ') %}\n\n\nwith validation_errors as (\n\n select\n {{ columns_csv }}\n from {{ model }}\n group by {{ columns_csv }}\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.233536, "supported_languages": null}, "macro.dbt_utils.test_cardinality_equality": {"name": "test_cardinality_equality", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/cardinality_equality.sql", "original_file_path": "macros/generic_tests/cardinality_equality.sql", "unique_id": "macro.dbt_utils.test_cardinality_equality", "macro_sql": "{% test cardinality_equality(model, column_name, to, field) %}\n {{ return(adapter.dispatch('test_cardinality_equality', 'dbt_utils')(model, column_name, to, field)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_cardinality_equality"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.23412, "supported_languages": null}, "macro.dbt_utils.default__test_cardinality_equality": {"name": "default__test_cardinality_equality", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/cardinality_equality.sql", "original_file_path": "macros/generic_tests/cardinality_equality.sql", "unique_id": "macro.dbt_utils.default__test_cardinality_equality", "macro_sql": "{% macro default__test_cardinality_equality(model, column_name, to, field) %}\n\n{# T-SQL does not let you use numbers as aliases for columns #}\n{# Thus, no \"GROUP BY 1\" #}\n\nwith table_a as (\nselect\n {{ column_name }},\n count(*) as num_rows\nfrom {{ model }}\ngroup by {{ column_name }}\n),\n\ntable_b as (\nselect\n {{ field }},\n count(*) as num_rows\nfrom {{ to }}\ngroup by {{ field }}\n),\n\nexcept_a as (\n select *\n from table_a\n {{ dbt.except() }}\n select *\n from table_b\n),\n\nexcept_b as (\n select *\n from table_b\n {{ dbt.except() }}\n select *\n from table_a\n),\n\nunioned as (\n select *\n from except_a\n union all\n select *\n from except_b\n)\n\nselect *\nfrom unioned\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.except"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2344818, "supported_languages": null}, "macro.dbt_utils.test_expression_is_true": {"name": "test_expression_is_true", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/expression_is_true.sql", "original_file_path": "macros/generic_tests/expression_is_true.sql", "unique_id": "macro.dbt_utils.test_expression_is_true", "macro_sql": "{% test expression_is_true(model, expression, column_name=None) %}\n {{ return(adapter.dispatch('test_expression_is_true', 'dbt_utils')(model, expression, column_name)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_expression_is_true"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.234903, "supported_languages": null}, "macro.dbt_utils.default__test_expression_is_true": {"name": "default__test_expression_is_true", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/expression_is_true.sql", "original_file_path": "macros/generic_tests/expression_is_true.sql", "unique_id": "macro.dbt_utils.default__test_expression_is_true", "macro_sql": "{% macro default__test_expression_is_true(model, expression, column_name) %}\n\n{% set column_list = '*' if should_store_failures() else \"1\" %}\n\nselect\n {{ column_list }}\nfrom {{ model }}\n{% if column_name is none %}\nwhere not({{ expression }})\n{%- else %}\nwhere not({{ column_name }} {{ expression }})\n{%- endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.should_store_failures"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.235353, "supported_languages": null}, "macro.dbt_utils.test_not_null_proportion": {"name": "test_not_null_proportion", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_null_proportion.sql", "original_file_path": "macros/generic_tests/not_null_proportion.sql", "unique_id": "macro.dbt_utils.test_not_null_proportion", "macro_sql": "{% macro test_not_null_proportion(model, group_by_columns = []) %}\n {{ return(adapter.dispatch('test_not_null_proportion', 'dbt_utils')(model, group_by_columns, **kwargs)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_not_null_proportion"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.236028, "supported_languages": null}, "macro.dbt_utils.default__test_not_null_proportion": {"name": "default__test_not_null_proportion", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_null_proportion.sql", "original_file_path": "macros/generic_tests/not_null_proportion.sql", "unique_id": "macro.dbt_utils.default__test_not_null_proportion", "macro_sql": "{% macro default__test_not_null_proportion(model, group_by_columns) %}\n\n{% set column_name = kwargs.get('column_name', kwargs.get('arg')) %}\n{% set at_least = kwargs.get('at_least', kwargs.get('arg')) %}\n{% set at_most = kwargs.get('at_most', kwargs.get('arg', 1)) %}\n\n{% if group_by_columns|length() > 0 %}\n {% set select_gb_cols = group_by_columns|join(' ,') + ', ' %}\n {% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n{% endif %}\n\nwith validation as (\n select\n {{select_gb_cols}}\n sum(case when {{ column_name }} is null then 0 else 1 end) / cast(count(*) as numeric) as not_null_proportion\n from {{ model }}\n {{groupby_gb_cols}}\n),\nvalidation_errors as (\n select\n {{select_gb_cols}}\n not_null_proportion\n from validation\n where not_null_proportion < {{ at_least }} or not_null_proportion > {{ at_most }}\n)\nselect\n *\nfrom validation_errors\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.236887, "supported_languages": null}, "macro.dbt_utils.test_sequential_values": {"name": "test_sequential_values", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/sequential_values.sql", "original_file_path": "macros/generic_tests/sequential_values.sql", "unique_id": "macro.dbt_utils.test_sequential_values", "macro_sql": "{% test sequential_values(model, column_name, interval=1, datepart=None, group_by_columns = []) %}\n\n {{ return(adapter.dispatch('test_sequential_values', 'dbt_utils')(model, column_name, interval, datepart, group_by_columns)) }}\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_sequential_values"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.237838, "supported_languages": null}, "macro.dbt_utils.default__test_sequential_values": {"name": "default__test_sequential_values", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/sequential_values.sql", "original_file_path": "macros/generic_tests/sequential_values.sql", "unique_id": "macro.dbt_utils.default__test_sequential_values", "macro_sql": "{% macro default__test_sequential_values(model, column_name, interval=1, datepart=None, group_by_columns = []) %}\n\n{% set previous_column_name = \"previous_\" ~ dbt_utils.slugify(column_name) %}\n\n{% if group_by_columns|length() > 0 %}\n {% set select_gb_cols = group_by_columns|join(',') + ', ' %}\n {% set partition_gb_cols = 'partition by ' + group_by_columns|join(',') %}\n{% endif %}\n\nwith windowed as (\n\n select\n {{ select_gb_cols }}\n {{ column_name }},\n lag({{ column_name }}) over (\n {{partition_gb_cols}}\n order by {{ column_name }}\n ) as {{ previous_column_name }}\n from {{ model }}\n),\n\nvalidation_errors as (\n select\n *\n from windowed\n {% if datepart %}\n where not(cast({{ column_name }} as {{ dbt.type_timestamp() }})= cast({{ dbt.dateadd(datepart, interval, previous_column_name) }} as {{ dbt.type_timestamp() }}))\n {% else %}\n where not({{ column_name }} = {{ previous_column_name }} + {{ interval }})\n {% endif %}\n)\n\nselect *\nfrom validation_errors\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.slugify", "macro.dbt.type_timestamp", "macro.dbt.dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.238793, "supported_languages": null}, "macro.dbt_utils.test_equality": {"name": "test_equality", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/equality.sql", "original_file_path": "macros/generic_tests/equality.sql", "unique_id": "macro.dbt_utils.test_equality", "macro_sql": "{% test equality(model, compare_model, compare_columns=None) %}\n {{ return(adapter.dispatch('test_equality', 'dbt_utils')(model, compare_model, compare_columns)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_equality"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.239548, "supported_languages": null}, "macro.dbt_utils.default__test_equality": {"name": "default__test_equality", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/equality.sql", "original_file_path": "macros/generic_tests/equality.sql", "unique_id": "macro.dbt_utils.default__test_equality", "macro_sql": "{% macro default__test_equality(model, compare_model, compare_columns=None) %}\n\n{% set set_diff %}\n count(*) + coalesce(abs(\n sum(case when which_diff = 'a_minus_b' then 1 else 0 end) -\n sum(case when which_diff = 'b_minus_a' then 1 else 0 end)\n ), 0)\n{% endset %}\n\n{#-- Needs to be set at parse time, before we return '' below --#}\n{{ config(fail_calc = set_diff) }}\n\n{#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. #}\n{%- if not execute -%}\n {{ return('') }}\n{% endif %}\n\n-- setup\n{%- do dbt_utils._is_relation(model, 'test_equality') -%}\n\n{#-\nIf the compare_cols arg is provided, we can run this test without querying the\ninformation schema\u00a0\u2014 this allows the model to be an ephemeral model\n-#}\n\n{%- if not compare_columns -%}\n {%- do dbt_utils._is_ephemeral(model, 'test_equality') -%}\n {%- set compare_columns = adapter.get_columns_in_relation(model) | map(attribute='quoted') -%}\n{%- endif -%}\n\n{% set compare_cols_csv = compare_columns | join(', ') %}\n\nwith a as (\n\n select * from {{ model }}\n\n),\n\nb as (\n\n select * from {{ compare_model }}\n\n),\n\na_minus_b as (\n\n select {{compare_cols_csv}} from a\n {{ dbt.except() }}\n select {{compare_cols_csv}} from b\n\n),\n\nb_minus_a as (\n\n select {{compare_cols_csv}} from b\n {{ dbt.except() }}\n select {{compare_cols_csv}} from a\n\n),\n\nunioned as (\n\n select 'a_minus_b' as which_diff, a_minus_b.* from a_minus_b\n union all\n select 'b_minus_a' as which_diff, b_minus_a.* from b_minus_a\n\n)\n\nselect * from unioned\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt.except"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.240489, "supported_languages": null}, "macro.dbt_utils.test_not_empty_string": {"name": "test_not_empty_string", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_empty_string.sql", "original_file_path": "macros/generic_tests/not_empty_string.sql", "unique_id": "macro.dbt_utils.test_not_empty_string", "macro_sql": "{% test not_empty_string(model, column_name, trim_whitespace=true) %}\n\n {{ return(adapter.dispatch('test_not_empty_string', 'dbt_utils')(model, column_name, trim_whitespace)) }}\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_not_empty_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.241029, "supported_languages": null}, "macro.dbt_utils.default__test_not_empty_string": {"name": "default__test_not_empty_string", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_empty_string.sql", "original_file_path": "macros/generic_tests/not_empty_string.sql", "unique_id": "macro.dbt_utils.default__test_not_empty_string", "macro_sql": "{% macro default__test_not_empty_string(model, column_name, trim_whitespace=true) %}\n\n with\n \n all_values as (\n\n select \n\n\n {% if trim_whitespace == true -%}\n\n trim({{ column_name }}) as {{ column_name }}\n\n {%- else -%}\n\n {{ column_name }}\n\n {%- endif %}\n \n from {{ model }}\n\n ),\n\n errors as (\n\n select * from all_values\n where {{ column_name }} = ''\n\n )\n\n select * from errors\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2413518, "supported_languages": null}, "macro.dbt_utils.test_mutually_exclusive_ranges": {"name": "test_mutually_exclusive_ranges", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/mutually_exclusive_ranges.sql", "original_file_path": "macros/generic_tests/mutually_exclusive_ranges.sql", "unique_id": "macro.dbt_utils.test_mutually_exclusive_ranges", "macro_sql": "{% test mutually_exclusive_ranges(model, lower_bound_column, upper_bound_column, partition_by=None, gaps='allowed', zero_length_range_allowed=False) %}\n {{ return(adapter.dispatch('test_mutually_exclusive_ranges', 'dbt_utils')(model, lower_bound_column, upper_bound_column, partition_by, gaps, zero_length_range_allowed)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_mutually_exclusive_ranges"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.245033, "supported_languages": null}, "macro.dbt_utils.default__test_mutually_exclusive_ranges": {"name": "default__test_mutually_exclusive_ranges", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/mutually_exclusive_ranges.sql", "original_file_path": "macros/generic_tests/mutually_exclusive_ranges.sql", "unique_id": "macro.dbt_utils.default__test_mutually_exclusive_ranges", "macro_sql": "{% macro default__test_mutually_exclusive_ranges(model, lower_bound_column, upper_bound_column, partition_by=None, gaps='allowed', zero_length_range_allowed=False) %}\n{% if gaps == 'not_allowed' %}\n {% set allow_gaps_operator='=' %}\n {% set allow_gaps_operator_in_words='equal_to' %}\n{% elif gaps == 'allowed' %}\n {% set allow_gaps_operator='<=' %}\n {% set allow_gaps_operator_in_words='less_than_or_equal_to' %}\n{% elif gaps == 'required' %}\n {% set allow_gaps_operator='<' %}\n {% set allow_gaps_operator_in_words='less_than' %}\n{% else %}\n {{ exceptions.raise_compiler_error(\n \"`gaps` argument for mutually_exclusive_ranges test must be one of ['not_allowed', 'allowed', 'required'] Got: '\" ~ gaps ~\"'.'\"\n ) }}\n{% endif %}\n{% if not zero_length_range_allowed %}\n {% set allow_zero_length_operator='<' %}\n {% set allow_zero_length_operator_in_words='less_than' %}\n{% elif zero_length_range_allowed %}\n {% set allow_zero_length_operator='<=' %}\n {% set allow_zero_length_operator_in_words='less_than_or_equal_to' %}\n{% else %}\n {{ exceptions.raise_compiler_error(\n \"`zero_length_range_allowed` argument for mutually_exclusive_ranges test must be one of [true, false] Got: '\" ~ zero_length_range_allowed ~\"'.'\"\n ) }}\n{% endif %}\n\n{% set partition_clause=\"partition by \" ~ partition_by if partition_by else '' %}\n\nwith window_functions as (\n\n select\n {% if partition_by %}\n {{ partition_by }} as partition_by_col,\n {% endif %}\n {{ lower_bound_column }} as lower_bound,\n {{ upper_bound_column }} as upper_bound,\n\n lead({{ lower_bound_column }}) over (\n {{ partition_clause }}\n order by {{ lower_bound_column }}, {{ upper_bound_column }}\n ) as next_lower_bound,\n\n row_number() over (\n {{ partition_clause }}\n order by {{ lower_bound_column }} desc, {{ upper_bound_column }} desc\n ) = 1 as is_last_record\n\n from {{ model }}\n\n),\n\ncalc as (\n -- We want to return records where one of our assumptions fails, so we'll use\n -- the `not` function with `and` statements so we can write our assumptions more cleanly\n select\n *,\n\n -- For each record: lower_bound should be < upper_bound.\n -- Coalesce it to return an error on the null case (implicit assumption\n -- these columns are not_null)\n coalesce(\n lower_bound {{ allow_zero_length_operator }} upper_bound,\n false\n ) as lower_bound_{{ allow_zero_length_operator_in_words }}_upper_bound,\n\n -- For each record: upper_bound {{ allow_gaps_operator }} the next lower_bound.\n -- Coalesce it to handle null cases for the last record.\n coalesce(\n upper_bound {{ allow_gaps_operator }} next_lower_bound,\n is_last_record,\n false\n ) as upper_bound_{{ allow_gaps_operator_in_words }}_next_lower_bound\n\n from window_functions\n\n),\n\nvalidation_errors as (\n\n select\n *\n from calc\n\n where not(\n -- THE FOLLOWING SHOULD BE TRUE --\n lower_bound_{{ allow_zero_length_operator_in_words }}_upper_bound\n and upper_bound_{{ allow_gaps_operator_in_words }}_next_lower_bound\n )\n)\n\nselect * from validation_errors\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2467048, "supported_languages": null}, "macro.dbt_utils.pretty_log_format": {"name": "pretty_log_format", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/pretty_log_format.sql", "original_file_path": "macros/jinja_helpers/pretty_log_format.sql", "unique_id": "macro.dbt_utils.pretty_log_format", "macro_sql": "{% macro pretty_log_format(message) %}\n {{ return(adapter.dispatch('pretty_log_format', 'dbt_utils')(message)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__pretty_log_format"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.246987, "supported_languages": null}, "macro.dbt_utils.default__pretty_log_format": {"name": "default__pretty_log_format", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/pretty_log_format.sql", "original_file_path": "macros/jinja_helpers/pretty_log_format.sql", "unique_id": "macro.dbt_utils.default__pretty_log_format", "macro_sql": "{% macro default__pretty_log_format(message) %}\n {{ return( dbt_utils.pretty_time() ~ ' + ' ~ message) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.pretty_time"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.247164, "supported_languages": null}, "macro.dbt_utils._is_relation": {"name": "_is_relation", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/_is_relation.sql", "original_file_path": "macros/jinja_helpers/_is_relation.sql", "unique_id": "macro.dbt_utils._is_relation", "macro_sql": "{% macro _is_relation(obj, macro) %}\n {%- if not (obj is mapping and obj.get('metadata', {}).get('type', '').endswith('Relation')) -%}\n {%- do exceptions.raise_compiler_error(\"Macro \" ~ macro ~ \" expected a Relation but received the value: \" ~ obj) -%}\n {%- endif -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2476218, "supported_languages": null}, "macro.dbt_utils.pretty_time": {"name": "pretty_time", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/pretty_time.sql", "original_file_path": "macros/jinja_helpers/pretty_time.sql", "unique_id": "macro.dbt_utils.pretty_time", "macro_sql": "{% macro pretty_time(format='%H:%M:%S') %}\n {{ return(adapter.dispatch('pretty_time', 'dbt_utils')(format)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__pretty_time"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.247909, "supported_languages": null}, "macro.dbt_utils.default__pretty_time": {"name": "default__pretty_time", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/pretty_time.sql", "original_file_path": "macros/jinja_helpers/pretty_time.sql", "unique_id": "macro.dbt_utils.default__pretty_time", "macro_sql": "{% macro default__pretty_time(format='%H:%M:%S') %}\n {{ return(modules.datetime.datetime.now().strftime(format)) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.248115, "supported_languages": null}, "macro.dbt_utils.log_info": {"name": "log_info", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/log_info.sql", "original_file_path": "macros/jinja_helpers/log_info.sql", "unique_id": "macro.dbt_utils.log_info", "macro_sql": "{% macro log_info(message) %}\n {{ return(adapter.dispatch('log_info', 'dbt_utils')(message)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__log_info"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.24838, "supported_languages": null}, "macro.dbt_utils.default__log_info": {"name": "default__log_info", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/log_info.sql", "original_file_path": "macros/jinja_helpers/log_info.sql", "unique_id": "macro.dbt_utils.default__log_info", "macro_sql": "{% macro default__log_info(message) %}\n {{ log(dbt_utils.pretty_log_format(message), info=True) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.pretty_log_format"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.248561, "supported_languages": null}, "macro.dbt_utils.slugify": {"name": "slugify", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/slugify.sql", "original_file_path": "macros/jinja_helpers/slugify.sql", "unique_id": "macro.dbt_utils.slugify", "macro_sql": "{% macro slugify(string) %}\n\n{#- Lower case the string -#}\n{% set string = string | lower %}\n{#- Replace spaces and dashes with underscores -#}\n{% set string = modules.re.sub('[ -]+', '_', string) %}\n{#- Only take letters, numbers, and underscores -#}\n{% set string = modules.re.sub('[^a-z0-9_]+', '', string) %}\n{#- Prepends \"_\" if string begins with a number -#}\n{% set string = modules.re.sub('^[0-9]', '_' + string[0], string) %}\n\n{{ return(string) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2491992, "supported_languages": null}, "macro.dbt_utils._is_ephemeral": {"name": "_is_ephemeral", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/_is_ephemeral.sql", "original_file_path": "macros/jinja_helpers/_is_ephemeral.sql", "unique_id": "macro.dbt_utils._is_ephemeral", "macro_sql": "{% macro _is_ephemeral(obj, macro) %}\n {%- if obj.is_cte -%}\n {% set ephemeral_prefix = api.Relation.add_ephemeral_prefix('') %}\n {% if obj.name.startswith(ephemeral_prefix) %}\n {% set model_name = obj.name[(ephemeral_prefix|length):] %}\n {% else %}\n {% set model_name = obj.name %}\n {%- endif -%}\n {% set error_message %}\nThe `{{ macro }}` macro cannot be used with ephemeral models, as it relies on the information schema.\n\n`{{ model_name }}` is an ephemeral model. Consider making it a view or table instead.\n {% endset %}\n {%- do exceptions.raise_compiler_error(error_message) -%}\n {%- endif -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.250085, "supported_languages": null}, "macro.dbt_utils.get_intervals_between": {"name": "get_intervals_between", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/date_spine.sql", "original_file_path": "macros/sql/date_spine.sql", "unique_id": "macro.dbt_utils.get_intervals_between", "macro_sql": "{% macro get_intervals_between(start_date, end_date, datepart) -%}\n {{ return(adapter.dispatch('get_intervals_between', 'dbt_utils')(start_date, end_date, datepart)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_intervals_between"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.250837, "supported_languages": null}, "macro.dbt_utils.default__get_intervals_between": {"name": "default__get_intervals_between", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/date_spine.sql", "original_file_path": "macros/sql/date_spine.sql", "unique_id": "macro.dbt_utils.default__get_intervals_between", "macro_sql": "{% macro default__get_intervals_between(start_date, end_date, datepart) -%}\n {%- call statement('get_intervals_between', fetch_result=True) %}\n\n select {{ dbt.datediff(start_date, end_date, datepart) }}\n\n {%- endcall -%}\n\n {%- set value_list = load_result('get_intervals_between') -%}\n\n {%- if value_list and value_list['data'] -%}\n {%- set values = value_list['data'] | map(attribute=0) | list %}\n {{ return(values[0]) }}\n {%- else -%}\n {{ return(1) }}\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt.datediff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2514539, "supported_languages": null}, "macro.dbt_utils.date_spine": {"name": "date_spine", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/date_spine.sql", "original_file_path": "macros/sql/date_spine.sql", "unique_id": "macro.dbt_utils.date_spine", "macro_sql": "{% macro date_spine(datepart, start_date, end_date) %}\n {{ return(adapter.dispatch('date_spine', 'dbt_utils')(datepart, start_date, end_date)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__date_spine"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.251696, "supported_languages": null}, "macro.dbt_utils.default__date_spine": {"name": "default__date_spine", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/date_spine.sql", "original_file_path": "macros/sql/date_spine.sql", "unique_id": "macro.dbt_utils.default__date_spine", "macro_sql": "{% macro default__date_spine(datepart, start_date, end_date) %}\n\n\n{# call as follows:\n\ndate_spine(\n \"day\",\n \"to_date('01/01/2016', 'mm/dd/yyyy')\",\n \"dbt.dateadd(week, 1, current_date)\"\n) #}\n\n\nwith rawdata as (\n\n {{dbt_utils.generate_series(\n dbt_utils.get_intervals_between(start_date, end_date, datepart)\n )}}\n\n),\n\nall_periods as (\n\n select (\n {{\n dbt.dateadd(\n datepart,\n \"row_number() over (order by 1) - 1\",\n start_date\n )\n }}\n ) as date_{{datepart}}\n from rawdata\n\n),\n\nfiltered as (\n\n select *\n from all_periods\n where date_{{datepart}} <= {{ end_date }}\n\n)\n\nselect * from filtered\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.generate_series", "macro.dbt_utils.get_intervals_between", "macro.dbt.dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.252074, "supported_languages": null}, "macro.dbt_utils.safe_subtract": {"name": "safe_subtract", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/safe_subtract.sql", "original_file_path": "macros/sql/safe_subtract.sql", "unique_id": "macro.dbt_utils.safe_subtract", "macro_sql": "{%- macro safe_subtract(field_list) -%}\n {{ return(adapter.dispatch('safe_subtract', 'dbt_utils')(field_list)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__safe_subtract"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.252486, "supported_languages": null}, "macro.dbt_utils.default__safe_subtract": {"name": "default__safe_subtract", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/safe_subtract.sql", "original_file_path": "macros/sql/safe_subtract.sql", "unique_id": "macro.dbt_utils.default__safe_subtract", "macro_sql": "\n\n{%- macro default__safe_subtract(field_list) -%}\n\n{%- if field_list is not iterable or field_list is string or field_list is mapping -%}\n\n{%- set error_message = '\nWarning: the `safe_subtract` macro takes a single list argument instead of \\\nstring arguments. The {}.{} model triggered this warning. \\\n'.format(model.package_name, model.name) -%}\n\n{%- do exceptions.raise_compiler_error(error_message) -%}\n\n{%- endif -%}\n\n{% set fields = [] %}\n\n{%- for field in field_list -%}\n\n {% do fields.append(\"coalesce(\" ~ field ~ \", 0)\") %}\n\n{%- endfor -%}\n\n{{ fields|join(' -\\n ') }}\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.253052, "supported_languages": null}, "macro.dbt_utils.nullcheck_table": {"name": "nullcheck_table", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/nullcheck_table.sql", "original_file_path": "macros/sql/nullcheck_table.sql", "unique_id": "macro.dbt_utils.nullcheck_table", "macro_sql": "{% macro nullcheck_table(relation) %}\n {{ return(adapter.dispatch('nullcheck_table', 'dbt_utils')(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__nullcheck_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.253383, "supported_languages": null}, "macro.dbt_utils.default__nullcheck_table": {"name": "default__nullcheck_table", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/nullcheck_table.sql", "original_file_path": "macros/sql/nullcheck_table.sql", "unique_id": "macro.dbt_utils.default__nullcheck_table", "macro_sql": "{% macro default__nullcheck_table(relation) %}\n\n {%- do dbt_utils._is_relation(relation, 'nullcheck_table') -%}\n {%- do dbt_utils._is_ephemeral(relation, 'nullcheck_table') -%}\n {% set cols = adapter.get_columns_in_relation(relation) %}\n\n select {{ dbt_utils.nullcheck(cols) }}\n from {{relation}}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt_utils.nullcheck"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2537448, "supported_languages": null}, "macro.dbt_utils.get_relations_by_pattern": {"name": "get_relations_by_pattern", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_relations_by_pattern.sql", "original_file_path": "macros/sql/get_relations_by_pattern.sql", "unique_id": "macro.dbt_utils.get_relations_by_pattern", "macro_sql": "{% macro get_relations_by_pattern(schema_pattern, table_pattern, exclude='', database=target.database) %}\n {{ return(adapter.dispatch('get_relations_by_pattern', 'dbt_utils')(schema_pattern, table_pattern, exclude, database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_relations_by_pattern"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.254476, "supported_languages": null}, "macro.dbt_utils.default__get_relations_by_pattern": {"name": "default__get_relations_by_pattern", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_relations_by_pattern.sql", "original_file_path": "macros/sql/get_relations_by_pattern.sql", "unique_id": "macro.dbt_utils.default__get_relations_by_pattern", "macro_sql": "{% macro default__get_relations_by_pattern(schema_pattern, table_pattern, exclude='', database=target.database) %}\n\n {%- call statement('get_tables', fetch_result=True) %}\n\n {{ dbt_utils.get_tables_by_pattern_sql(schema_pattern, table_pattern, exclude, database) }}\n\n {%- endcall -%}\n\n {%- set table_list = load_result('get_tables') -%}\n\n {%- if table_list and table_list['table'] -%}\n {%- set tbl_relations = [] -%}\n {%- for row in table_list['table'] -%}\n {%- set tbl_relation = api.Relation.create(\n database=database,\n schema=row.table_schema,\n identifier=row.table_name,\n type=row.table_type\n ) -%}\n {%- do tbl_relations.append(tbl_relation) -%}\n {%- endfor -%}\n\n {{ return(tbl_relations) }}\n {%- else -%}\n {{ return([]) }}\n {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt_utils.get_tables_by_pattern_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.255595, "supported_languages": null}, "macro.dbt_utils.get_powers_of_two": {"name": "get_powers_of_two", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/generate_series.sql", "original_file_path": "macros/sql/generate_series.sql", "unique_id": "macro.dbt_utils.get_powers_of_two", "macro_sql": "{% macro get_powers_of_two(upper_bound) %}\n {{ return(adapter.dispatch('get_powers_of_two', 'dbt_utils')(upper_bound)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_powers_of_two"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.256484, "supported_languages": null}, "macro.dbt_utils.default__get_powers_of_two": {"name": "default__get_powers_of_two", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/generate_series.sql", "original_file_path": "macros/sql/generate_series.sql", "unique_id": "macro.dbt_utils.default__get_powers_of_two", "macro_sql": "{% macro default__get_powers_of_two(upper_bound) %}\n\n {% if upper_bound <= 0 %}\n {{ exceptions.raise_compiler_error(\"upper bound must be positive\") }}\n {% endif %}\n\n {% for _ in range(1, 100) %}\n {% if upper_bound <= 2 ** loop.index %}{{ return(loop.index) }}{% endif %}\n {% endfor %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.256924, "supported_languages": null}, "macro.dbt_utils.generate_series": {"name": "generate_series", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/generate_series.sql", "original_file_path": "macros/sql/generate_series.sql", "unique_id": "macro.dbt_utils.generate_series", "macro_sql": "{% macro generate_series(upper_bound) %}\n {{ return(adapter.dispatch('generate_series', 'dbt_utils')(upper_bound)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__generate_series"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.257117, "supported_languages": null}, "macro.dbt_utils.default__generate_series": {"name": "default__generate_series", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/generate_series.sql", "original_file_path": "macros/sql/generate_series.sql", "unique_id": "macro.dbt_utils.default__generate_series", "macro_sql": "{% macro default__generate_series(upper_bound) %}\n\n {% set n = dbt_utils.get_powers_of_two(upper_bound) %}\n\n with p as (\n select 0 as generated_number union all select 1\n ), unioned as (\n\n select\n\n {% for i in range(n) %}\n p{{i}}.generated_number * power(2, {{i}})\n {% if not loop.last %} + {% endif %}\n {% endfor %}\n + 1\n as generated_number\n\n from\n\n {% for i in range(n) %}\n p as p{{i}}\n {% if not loop.last %} cross join {% endif %}\n {% endfor %}\n\n )\n\n select *\n from unioned\n where generated_number <= {{upper_bound}}\n order by generated_number\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.get_powers_of_two"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.257657, "supported_languages": null}, "macro.dbt_utils.get_relations_by_prefix": {"name": "get_relations_by_prefix", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_relations_by_prefix.sql", "original_file_path": "macros/sql/get_relations_by_prefix.sql", "unique_id": "macro.dbt_utils.get_relations_by_prefix", "macro_sql": "{% macro get_relations_by_prefix(schema, prefix, exclude='', database=target.database) %}\n {{ return(adapter.dispatch('get_relations_by_prefix', 'dbt_utils')(schema, prefix, exclude, database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_relations_by_prefix"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2583811, "supported_languages": null}, "macro.dbt_utils.default__get_relations_by_prefix": {"name": "default__get_relations_by_prefix", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_relations_by_prefix.sql", "original_file_path": "macros/sql/get_relations_by_prefix.sql", "unique_id": "macro.dbt_utils.default__get_relations_by_prefix", "macro_sql": "{% macro default__get_relations_by_prefix(schema, prefix, exclude='', database=target.database) %}\n\n {%- call statement('get_tables', fetch_result=True) %}\n\n {{ dbt_utils.get_tables_by_prefix_sql(schema, prefix, exclude, database) }}\n\n {%- endcall -%}\n\n {%- set table_list = load_result('get_tables') -%}\n\n {%- if table_list and table_list['table'] -%}\n {%- set tbl_relations = [] -%}\n {%- for row in table_list['table'] -%}\n {%- set tbl_relation = api.Relation.create(\n database=database,\n schema=row.table_schema,\n identifier=row.table_name,\n type=row.table_type\n ) -%}\n {%- do tbl_relations.append(tbl_relation) -%}\n {%- endfor -%}\n\n {{ return(tbl_relations) }}\n {%- else -%}\n {{ return([]) }}\n {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt_utils.get_tables_by_prefix_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2592661, "supported_languages": null}, "macro.dbt_utils.get_tables_by_prefix_sql": {"name": "get_tables_by_prefix_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_tables_by_prefix_sql.sql", "original_file_path": "macros/sql/get_tables_by_prefix_sql.sql", "unique_id": "macro.dbt_utils.get_tables_by_prefix_sql", "macro_sql": "{% macro get_tables_by_prefix_sql(schema, prefix, exclude='', database=target.database) %}\n {{ return(adapter.dispatch('get_tables_by_prefix_sql', 'dbt_utils')(schema, prefix, exclude, database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_tables_by_prefix_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.259688, "supported_languages": null}, "macro.dbt_utils.default__get_tables_by_prefix_sql": {"name": "default__get_tables_by_prefix_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_tables_by_prefix_sql.sql", "original_file_path": "macros/sql/get_tables_by_prefix_sql.sql", "unique_id": "macro.dbt_utils.default__get_tables_by_prefix_sql", "macro_sql": "{% macro default__get_tables_by_prefix_sql(schema, prefix, exclude='', database=target.database) %}\n\n {{ dbt_utils.get_tables_by_pattern_sql(\n schema_pattern = schema,\n table_pattern = prefix ~ '%',\n exclude = exclude,\n database = database\n ) }}\n \n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.get_tables_by_pattern_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.259985, "supported_languages": null}, "macro.dbt_utils.star": {"name": "star", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/star.sql", "original_file_path": "macros/sql/star.sql", "unique_id": "macro.dbt_utils.star", "macro_sql": "{% macro star(from, relation_alias=False, except=[], prefix='', suffix='', quote_identifiers=True) -%}\r\n {{ return(adapter.dispatch('star', 'dbt_utils')(from, relation_alias, except, prefix, suffix, quote_identifiers)) }}\r\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__star"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.26135, "supported_languages": null}, "macro.dbt_utils.default__star": {"name": "default__star", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/star.sql", "original_file_path": "macros/sql/star.sql", "unique_id": "macro.dbt_utils.default__star", "macro_sql": "{% macro default__star(from, relation_alias=False, except=[], prefix='', suffix='', quote_identifiers=True) -%}\r\n {%- do dbt_utils._is_relation(from, 'star') -%}\r\n {%- do dbt_utils._is_ephemeral(from, 'star') -%}\r\n\r\n {#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. #}\r\n {%- if not execute -%}\r\n {% do return('*') %}\r\n {%- endif -%}\r\n\r\n {% set cols = dbt_utils.get_filtered_columns_in_relation(from, except) %}\r\n\r\n {%- if cols|length <= 0 -%}\r\n {% if flags.WHICH == 'compile' %}\r\n {% set response %}\r\n*\r\n/* No columns were returned. Maybe the relation doesn't exist yet \r\nor all columns were excluded. This star is only output during \r\ndbt compile, and exists to keep SQLFluff happy. */\r\n {% endset %}\r\n {% do return(response) %}\r\n {% else %}\r\n {% do return(\"/* no columns returned from star() macro */\") %}\r\n {% endif %}\r\n {%- else -%}\r\n {%- for col in cols %}\r\n {%- if relation_alias %}{{ relation_alias }}.{% else %}{%- endif -%}\r\n {%- if quote_identifiers -%}\r\n {{ adapter.quote(col)|trim }} {%- if prefix!='' or suffix!='' %} as {{ adapter.quote(prefix ~ col ~ suffix)|trim }} {%- endif -%}\r\n {%- else -%}\r\n {{ col|trim }} {%- if prefix!='' or suffix!='' %} as {{ (prefix ~ col ~ suffix)|trim }} {%- endif -%}\r\n {% endif %}\r\n {%- if not loop.last %},{{ '\\n ' }}{%- endif -%}\r\n {%- endfor -%}\r\n {% endif %}\r\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt_utils.get_filtered_columns_in_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.26283, "supported_languages": null}, "macro.dbt_utils.unpivot": {"name": "unpivot", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/unpivot.sql", "original_file_path": "macros/sql/unpivot.sql", "unique_id": "macro.dbt_utils.unpivot", "macro_sql": "{% macro unpivot(relation=none, cast_to='varchar', exclude=none, remove=none, field_name='field_name', value_name='value') -%}\n {{ return(adapter.dispatch('unpivot', 'dbt_utils')(relation, cast_to, exclude, remove, field_name, value_name)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__unpivot"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.264283, "supported_languages": null}, "macro.dbt_utils.default__unpivot": {"name": "default__unpivot", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/unpivot.sql", "original_file_path": "macros/sql/unpivot.sql", "unique_id": "macro.dbt_utils.default__unpivot", "macro_sql": "{% macro default__unpivot(relation=none, cast_to='varchar', exclude=none, remove=none, field_name='field_name', value_name='value') -%}\n\n {% if not relation %}\n {{ exceptions.raise_compiler_error(\"Error: argument `relation` is required for `unpivot` macro.\") }}\n {% endif %}\n\n {%- set exclude = exclude if exclude is not none else [] %}\n {%- set remove = remove if remove is not none else [] %}\n\n {%- set include_cols = [] %}\n\n {%- set table_columns = {} %}\n\n {%- do table_columns.update({relation: []}) %}\n\n {%- do dbt_utils._is_relation(relation, 'unpivot') -%}\n {%- do dbt_utils._is_ephemeral(relation, 'unpivot') -%}\n {%- set cols = adapter.get_columns_in_relation(relation) %}\n\n {%- for col in cols -%}\n {%- if col.column.lower() not in remove|map('lower') and col.column.lower() not in exclude|map('lower') -%}\n {% do include_cols.append(col) %}\n {%- endif %}\n {%- endfor %}\n\n\n {%- for col in include_cols -%}\n select\n {%- for exclude_col in exclude %}\n {{ exclude_col }},\n {%- endfor %}\n\n cast('{{ col.column }}' as {{ dbt.type_string() }}) as {{ field_name }},\n cast( {% if col.data_type == 'boolean' %}\n {{ dbt.cast_bool_to_text(col.column) }}\n {% else %}\n {{ col.column }}\n {% endif %}\n as {{ cast_to }}) as {{ value_name }}\n\n from {{ relation }}\n\n {% if not loop.last -%}\n union all\n {% endif -%}\n {%- endfor -%}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt.type_string", "macro.dbt.cast_bool_to_text"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.266027, "supported_languages": null}, "macro.dbt_utils.safe_divide": {"name": "safe_divide", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/safe_divide.sql", "original_file_path": "macros/sql/safe_divide.sql", "unique_id": "macro.dbt_utils.safe_divide", "macro_sql": "{% macro safe_divide(numerator, denominator) -%}\n {{ return(adapter.dispatch('safe_divide', 'dbt_utils')(numerator, denominator)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__safe_divide"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.266335, "supported_languages": null}, "macro.dbt_utils.default__safe_divide": {"name": "default__safe_divide", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/safe_divide.sql", "original_file_path": "macros/sql/safe_divide.sql", "unique_id": "macro.dbt_utils.default__safe_divide", "macro_sql": "{% macro default__safe_divide(numerator, denominator) %}\n ( {{ numerator }} ) / nullif( ( {{ denominator }} ), 0)\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.266478, "supported_languages": null}, "macro.dbt_utils.union_relations": {"name": "union_relations", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/union.sql", "original_file_path": "macros/sql/union.sql", "unique_id": "macro.dbt_utils.union_relations", "macro_sql": "{%- macro union_relations(relations, column_override=none, include=[], exclude=[], source_column_name='_dbt_source_relation', where=none) -%}\n {{ return(adapter.dispatch('union_relations', 'dbt_utils')(relations, column_override, include, exclude, source_column_name, where)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__union_relations"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.269996, "supported_languages": null}, "macro.dbt_utils.default__union_relations": {"name": "default__union_relations", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/union.sql", "original_file_path": "macros/sql/union.sql", "unique_id": "macro.dbt_utils.default__union_relations", "macro_sql": "\n\n{%- macro default__union_relations(relations, column_override=none, include=[], exclude=[], source_column_name='_dbt_source_relation', where=none) -%}\n\n {%- if exclude and include -%}\n {{ exceptions.raise_compiler_error(\"Both an exclude and include list were provided to the `union` macro. Only one is allowed\") }}\n {%- endif -%}\n\n {#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. -#}\n {%- if not execute %}\n {{ return('') }}\n {% endif -%}\n\n {%- set column_override = column_override if column_override is not none else {} -%}\n\n {%- set relation_columns = {} -%}\n {%- set column_superset = {} -%}\n {%- set all_excludes = [] -%}\n {%- set all_includes = [] -%}\n\n {%- if exclude -%}\n {%- for exc in exclude -%}\n {%- do all_excludes.append(exc | lower) -%}\n {%- endfor -%}\n {%- endif -%}\n\n {%- if include -%}\n {%- for inc in include -%}\n {%- do all_includes.append(inc | lower) -%}\n {%- endfor -%}\n {%- endif -%}\n\n {%- for relation in relations -%}\n\n {%- do relation_columns.update({relation: []}) -%}\n\n {%- do dbt_utils._is_relation(relation, 'union_relations') -%}\n {%- do dbt_utils._is_ephemeral(relation, 'union_relations') -%}\n {%- set cols = adapter.get_columns_in_relation(relation) -%}\n {%- for col in cols -%}\n\n {#- If an exclude list was provided and the column is in the list, do nothing -#}\n {%- if exclude and col.column | lower in all_excludes -%}\n\n {#- If an include list was provided and the column is not in the list, do nothing -#}\n {%- elif include and col.column | lower not in all_includes -%}\n\n {#- Otherwise add the column to the column superset -#}\n {%- else -%}\n\n {#- update the list of columns in this relation -#}\n {%- do relation_columns[relation].append(col.column) -%}\n\n {%- if col.column in column_superset -%}\n\n {%- set stored = column_superset[col.column] -%}\n {%- if col.is_string() and stored.is_string() and col.string_size() > stored.string_size() -%}\n\n {%- do column_superset.update({col.column: col}) -%}\n\n {%- endif %}\n\n {%- else -%}\n\n {%- do column_superset.update({col.column: col}) -%}\n\n {%- endif -%}\n\n {%- endif -%}\n\n {%- endfor -%}\n {%- endfor -%}\n\n {%- set ordered_column_names = column_superset.keys() -%}\n {%- set dbt_command = flags.WHICH -%}\n\n\n {% if dbt_command in ['run', 'build'] %}\n {% if (include | length > 0 or exclude | length > 0) and not column_superset.keys() %}\n {%- set relations_string -%}\n {%- for relation in relations -%}\n {{ relation.name }}\n {%- if not loop.last %}, {% endif -%}\n {%- endfor -%}\n {%- endset -%}\n\n {%- set error_message -%}\n There were no columns found to union for relations {{ relations_string }}\n {%- endset -%}\n\n {{ exceptions.raise_compiler_error(error_message) }}\n {%- endif -%}\n {%- endif -%}\n\n {%- for relation in relations %}\n\n (\n select\n\n {%- if source_column_name is not none %}\n cast({{ dbt.string_literal(relation) }} as {{ dbt.type_string() }}) as {{ source_column_name }},\n {%- endif %}\n\n {% for col_name in ordered_column_names -%}\n\n {%- set col = column_superset[col_name] %}\n {%- set col_type = column_override.get(col.column, col.data_type) %}\n {%- set col_name = adapter.quote(col_name) if col_name in relation_columns[relation] else 'null' %}\n cast({{ col_name }} as {{ col_type }}) as {{ col.quoted }} {% if not loop.last %},{% endif -%}\n\n {%- endfor %}\n\n from {{ relation }}\n\n {% if where -%}\n where {{ where }}\n {%- endif %}\n )\n\n {% if not loop.last -%}\n union all\n {% endif -%}\n\n {%- endfor -%}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt.string_literal", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2736251, "supported_languages": null}, "macro.dbt_utils.group_by": {"name": "group_by", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/groupby.sql", "original_file_path": "macros/sql/groupby.sql", "unique_id": "macro.dbt_utils.group_by", "macro_sql": "{%- macro group_by(n) -%}\n {{ return(adapter.dispatch('group_by', 'dbt_utils')(n)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__group_by"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.273948, "supported_languages": null}, "macro.dbt_utils.default__group_by": {"name": "default__group_by", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/groupby.sql", "original_file_path": "macros/sql/groupby.sql", "unique_id": "macro.dbt_utils.default__group_by", "macro_sql": "\n\n{%- macro default__group_by(n) -%}\n\n group by {% for i in range(1, n + 1) -%}\n {{ i }}{{ ',' if not loop.last }} \n {%- endfor -%}\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.274213, "supported_languages": null}, "macro.dbt_utils.deduplicate": {"name": "deduplicate", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "unique_id": "macro.dbt_utils.deduplicate", "macro_sql": "{%- macro deduplicate(relation, partition_by, order_by) -%}\n {{ return(adapter.dispatch('deduplicate', 'dbt_utils')(relation, partition_by, order_by)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__deduplicate"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.274986, "supported_languages": null}, "macro.dbt_utils.default__deduplicate": {"name": "default__deduplicate", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "unique_id": "macro.dbt_utils.default__deduplicate", "macro_sql": "\n\n{%- macro default__deduplicate(relation, partition_by, order_by) -%}\n\n with row_numbered as (\n select\n _inner.*,\n row_number() over (\n partition by {{ partition_by }}\n order by {{ order_by }}\n ) as rn\n from {{ relation }} as _inner\n )\n\n select\n distinct data.*\n from {{ relation }} as data\n {#\n -- Not all DBs will support natural joins but the ones that do include:\n -- Oracle, MySQL, SQLite, Redshift, Teradata, Materialize, Databricks\n -- Apache Spark, SingleStore, Vertica\n -- Those that do not appear to support natural joins include:\n -- SQLServer, Trino, Presto, Rockset, Athena\n #}\n natural join row_numbered\n where row_numbered.rn = 1\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.275211, "supported_languages": null}, "macro.dbt_utils.redshift__deduplicate": {"name": "redshift__deduplicate", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "unique_id": "macro.dbt_utils.redshift__deduplicate", "macro_sql": "{% macro redshift__deduplicate(relation, partition_by, order_by) -%}\n\n {{ return(dbt_utils.default__deduplicate(relation, partition_by, order_by=order_by)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__deduplicate"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.275423, "supported_languages": null}, "macro.dbt_utils.postgres__deduplicate": {"name": "postgres__deduplicate", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "unique_id": "macro.dbt_utils.postgres__deduplicate", "macro_sql": "\n{%- macro postgres__deduplicate(relation, partition_by, order_by) -%}\n\n select\n distinct on ({{ partition_by }}) *\n from {{ relation }}\n order by {{ partition_by }}{{ ',' ~ order_by }}\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.275624, "supported_languages": null}, "macro.dbt_utils.snowflake__deduplicate": {"name": "snowflake__deduplicate", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "unique_id": "macro.dbt_utils.snowflake__deduplicate", "macro_sql": "\n{%- macro snowflake__deduplicate(relation, partition_by, order_by) -%}\n\n select *\n from {{ relation }}\n qualify\n row_number() over (\n partition by {{ partition_by }}\n order by {{ order_by }}\n ) = 1\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.275799, "supported_languages": null}, "macro.dbt_utils.bigquery__deduplicate": {"name": "bigquery__deduplicate", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "unique_id": "macro.dbt_utils.bigquery__deduplicate", "macro_sql": "\n{%- macro bigquery__deduplicate(relation, partition_by, order_by) -%}\n\n select unique.*\n from (\n select\n array_agg (\n original\n order by {{ order_by }}\n limit 1\n )[offset(0)] unique\n from {{ relation }} original\n group by {{ partition_by }}\n )\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.275979, "supported_languages": null}, "macro.dbt_utils.surrogate_key": {"name": "surrogate_key", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/surrogate_key.sql", "original_file_path": "macros/sql/surrogate_key.sql", "unique_id": "macro.dbt_utils.surrogate_key", "macro_sql": "{%- macro surrogate_key(field_list) -%}\n {% set frustrating_jinja_feature = varargs %}\n {{ return(adapter.dispatch('surrogate_key', 'dbt_utils')(field_list, *varargs)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__surrogate_key"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.276385, "supported_languages": null}, "macro.dbt_utils.default__surrogate_key": {"name": "default__surrogate_key", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/surrogate_key.sql", "original_file_path": "macros/sql/surrogate_key.sql", "unique_id": "macro.dbt_utils.default__surrogate_key", "macro_sql": "\n\n{%- macro default__surrogate_key(field_list) -%}\n\n{%- set error_message = '\nWarning: `dbt_utils.surrogate_key` has been replaced by \\\n`dbt_utils.generate_surrogate_key`. The new macro treats null values \\\ndifferently to empty strings. To restore the behaviour of the original \\\nmacro, add a global variable in dbt_project.yml called \\\n`surrogate_key_treat_nulls_as_empty_strings` to your \\\ndbt_project.yml file with a value of True. \\\nThe {}.{} model triggered this warning. \\\n'.format(model.package_name, model.name) -%}\n\n{%- do exceptions.raise_compiler_error(error_message) -%}\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.276629, "supported_languages": null}, "macro.dbt_utils.safe_add": {"name": "safe_add", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/safe_add.sql", "original_file_path": "macros/sql/safe_add.sql", "unique_id": "macro.dbt_utils.safe_add", "macro_sql": "{%- macro safe_add(field_list) -%}\n {{ return(adapter.dispatch('safe_add', 'dbt_utils')(field_list)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__safe_add"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.277026, "supported_languages": null}, "macro.dbt_utils.default__safe_add": {"name": "default__safe_add", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/safe_add.sql", "original_file_path": "macros/sql/safe_add.sql", "unique_id": "macro.dbt_utils.default__safe_add", "macro_sql": "\n\n{%- macro default__safe_add(field_list) -%}\n\n{%- if field_list is not iterable or field_list is string or field_list is mapping -%}\n\n{%- set error_message = '\nWarning: the `safe_add` macro now takes a single list argument instead of \\\nstring arguments. The {}.{} model triggered this warning. \\\n'.format(model.package_name, model.name) -%}\n\n{%- do exceptions.warn(error_message) -%}\n\n{%- endif -%}\n\n{% set fields = [] %}\n\n{%- for field in field_list -%}\n\n {% do fields.append(\"coalesce(\" ~ field ~ \", 0)\") %}\n\n{%- endfor -%}\n\n{{ fields|join(' +\\n ') }}\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.277588, "supported_languages": null}, "macro.dbt_utils.nullcheck": {"name": "nullcheck", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/nullcheck.sql", "original_file_path": "macros/sql/nullcheck.sql", "unique_id": "macro.dbt_utils.nullcheck", "macro_sql": "{% macro nullcheck(cols) %}\n {{ return(adapter.dispatch('nullcheck', 'dbt_utils')(cols)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__nullcheck"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.277947, "supported_languages": null}, "macro.dbt_utils.default__nullcheck": {"name": "default__nullcheck", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/nullcheck.sql", "original_file_path": "macros/sql/nullcheck.sql", "unique_id": "macro.dbt_utils.default__nullcheck", "macro_sql": "{% macro default__nullcheck(cols) %}\n{%- for col in cols %}\n\n {% if col.is_string() -%}\n\n nullif({{col.name}},'') as {{col.name}}\n\n {%- else -%}\n\n {{col.name}}\n\n {%- endif -%}\n\n{%- if not loop.last -%} , {%- endif -%}\n\n{%- endfor -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.278295, "supported_languages": null}, "macro.dbt_utils.get_tables_by_pattern_sql": {"name": "get_tables_by_pattern_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_tables_by_pattern_sql.sql", "original_file_path": "macros/sql/get_tables_by_pattern_sql.sql", "unique_id": "macro.dbt_utils.get_tables_by_pattern_sql", "macro_sql": "{% macro get_tables_by_pattern_sql(schema_pattern, table_pattern, exclude='', database=target.database) %}\n {{ return(adapter.dispatch('get_tables_by_pattern_sql', 'dbt_utils')\n (schema_pattern, table_pattern, exclude, database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_tables_by_pattern_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.280171, "supported_languages": null}, "macro.dbt_utils.default__get_tables_by_pattern_sql": {"name": "default__get_tables_by_pattern_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_tables_by_pattern_sql.sql", "original_file_path": "macros/sql/get_tables_by_pattern_sql.sql", "unique_id": "macro.dbt_utils.default__get_tables_by_pattern_sql", "macro_sql": "{% macro default__get_tables_by_pattern_sql(schema_pattern, table_pattern, exclude='', database=target.database) %}\n\n select distinct\n table_schema as {{ adapter.quote('table_schema') }},\n table_name as {{ adapter.quote('table_name') }},\n {{ dbt_utils.get_table_types_sql() }}\n from {{ database }}.information_schema.tables\n where table_schema ilike '{{ schema_pattern }}'\n and table_name ilike '{{ table_pattern }}'\n and table_name not ilike '{{ exclude }}'\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.get_table_types_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.28055, "supported_languages": null}, "macro.dbt_utils.bigquery__get_tables_by_pattern_sql": {"name": "bigquery__get_tables_by_pattern_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_tables_by_pattern_sql.sql", "original_file_path": "macros/sql/get_tables_by_pattern_sql.sql", "unique_id": "macro.dbt_utils.bigquery__get_tables_by_pattern_sql", "macro_sql": "{% macro bigquery__get_tables_by_pattern_sql(schema_pattern, table_pattern, exclude='', database=target.database) %}\n\n {% if '%' in schema_pattern %}\n {% set schemata=dbt_utils._bigquery__get_matching_schemata(schema_pattern, database) %}\n {% else %}\n {% set schemata=[schema_pattern] %}\n {% endif %}\n\n {% set sql %}\n {% for schema in schemata %}\n select distinct\n table_schema,\n table_name,\n {{ dbt_utils.get_table_types_sql() }}\n\n from {{ adapter.quote(database) }}.{{ schema }}.INFORMATION_SCHEMA.TABLES\n where lower(table_name) like lower ('{{ table_pattern }}')\n and lower(table_name) not like lower ('{{ exclude }}')\n\n {% if not loop.last %} union all {% endif %}\n\n {% endfor %}\n {% endset %}\n\n {{ return(sql) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._bigquery__get_matching_schemata", "macro.dbt_utils.get_table_types_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.281374, "supported_languages": null}, "macro.dbt_utils._bigquery__get_matching_schemata": {"name": "_bigquery__get_matching_schemata", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_tables_by_pattern_sql.sql", "original_file_path": "macros/sql/get_tables_by_pattern_sql.sql", "unique_id": "macro.dbt_utils._bigquery__get_matching_schemata", "macro_sql": "{% macro _bigquery__get_matching_schemata(schema_pattern, database) %}\n {% if execute %}\n\n {% set sql %}\n select schema_name from {{ adapter.quote(database) }}.INFORMATION_SCHEMA.SCHEMATA\n where lower(schema_name) like lower('{{ schema_pattern }}')\n {% endset %}\n\n {% set results=run_query(sql) %}\n\n {% set schemata=results.columns['schema_name'].values() %}\n\n {{ return(schemata) }}\n\n {% else %}\n\n {{ return([]) }}\n\n {% endif %}\n\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.281906, "supported_languages": null}, "macro.dbt_utils.get_column_values": {"name": "get_column_values", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_column_values.sql", "original_file_path": "macros/sql/get_column_values.sql", "unique_id": "macro.dbt_utils.get_column_values", "macro_sql": "{% macro get_column_values(table, column, order_by='count(*) desc', max_records=none, default=none, where=none) -%}\n {{ return(adapter.dispatch('get_column_values', 'dbt_utils')(table, column, order_by, max_records, default, where)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_column_values"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.283117, "supported_languages": null}, "macro.dbt_utils.default__get_column_values": {"name": "default__get_column_values", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_column_values.sql", "original_file_path": "macros/sql/get_column_values.sql", "unique_id": "macro.dbt_utils.default__get_column_values", "macro_sql": "{% macro default__get_column_values(table, column, order_by='count(*) desc', max_records=none, default=none, where=none) -%}\n {#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. #}\n {%- if not execute -%}\n {% set default = [] if not default %}\n {{ return(default) }}\n {% endif %}\n\n {%- do dbt_utils._is_ephemeral(table, 'get_column_values') -%}\n\n {# Not all relations are tables. Renaming for internal clarity without breaking functionality for anyone using named arguments #}\n {# TODO: Change the method signature in a future 0.x.0 release #}\n {%- set target_relation = table -%}\n\n {# adapter.load_relation is a convenience wrapper to avoid building a Relation when we already have one #}\n {% set relation_exists = (load_relation(target_relation)) is not none %}\n\n {%- call statement('get_column_values', fetch_result=true) %}\n\n {%- if not relation_exists and default is none -%}\n\n {{ exceptions.raise_compiler_error(\"In get_column_values(): relation \" ~ target_relation ~ \" does not exist and no default value was provided.\") }}\n\n {%- elif not relation_exists and default is not none -%}\n\n {{ log(\"Relation \" ~ target_relation ~ \" does not exist. Returning the default value: \" ~ default) }}\n\n {{ return(default) }}\n\n {%- else -%}\n\n\n select\n {{ column }} as value\n\n from {{ target_relation }}\n\n {% if where is not none %}\n where {{ where }}\n {% endif %}\n\n group by {{ column }}\n order by {{ order_by }}\n\n {% if max_records is not none %}\n limit {{ max_records }}\n {% endif %}\n\n {% endif %}\n\n {%- endcall -%}\n\n {%- set value_list = load_result('get_column_values') -%}\n\n {%- if value_list and value_list['data'] -%}\n {%- set values = value_list['data'] | map(attribute=0) | list %}\n {{ return(values) }}\n {%- else -%}\n {{ return(default) }}\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._is_ephemeral", "macro.dbt.load_relation", "macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2846909, "supported_languages": null}, "macro.dbt_utils.pivot": {"name": "pivot", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/pivot.sql", "original_file_path": "macros/sql/pivot.sql", "unique_id": "macro.dbt_utils.pivot", "macro_sql": "{% macro pivot(column,\n values,\n alias=True,\n agg='sum',\n cmp='=',\n prefix='',\n suffix='',\n then_value=1,\n else_value=0,\n quote_identifiers=True,\n distinct=False) %}\n {{ return(adapter.dispatch('pivot', 'dbt_utils')(column, values, alias, agg, cmp, prefix, suffix, then_value, else_value, quote_identifiers, distinct)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__pivot"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.285814, "supported_languages": null}, "macro.dbt_utils.default__pivot": {"name": "default__pivot", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/pivot.sql", "original_file_path": "macros/sql/pivot.sql", "unique_id": "macro.dbt_utils.default__pivot", "macro_sql": "{% macro default__pivot(column,\n values,\n alias=True,\n agg='sum',\n cmp='=',\n prefix='',\n suffix='',\n then_value=1,\n else_value=0,\n quote_identifiers=True,\n distinct=False) %}\n {% for value in values %}\n {{ agg }}(\n {% if distinct %} distinct {% endif %}\n case\n when {{ column }} {{ cmp }} '{{ dbt.escape_single_quotes(value) }}'\n then {{ then_value }}\n else {{ else_value }}\n end\n )\n {% if alias %}\n {% if quote_identifiers %}\n as {{ adapter.quote(prefix ~ value ~ suffix) }}\n {% else %}\n as {{ dbt_utils.slugify(prefix ~ value ~ suffix) }}\n {% endif %}\n {% endif %}\n {% if not loop.last %},{% endif %}\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.escape_single_quotes", "macro.dbt_utils.slugify"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.286698, "supported_languages": null}, "macro.dbt_utils.get_filtered_columns_in_relation": {"name": "get_filtered_columns_in_relation", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_filtered_columns_in_relation.sql", "original_file_path": "macros/sql/get_filtered_columns_in_relation.sql", "unique_id": "macro.dbt_utils.get_filtered_columns_in_relation", "macro_sql": "{% macro get_filtered_columns_in_relation(from, except=[]) -%}\n {{ return(adapter.dispatch('get_filtered_columns_in_relation', 'dbt_utils')(from, except)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_filtered_columns_in_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.287276, "supported_languages": null}, "macro.dbt_utils.default__get_filtered_columns_in_relation": {"name": "default__get_filtered_columns_in_relation", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_filtered_columns_in_relation.sql", "original_file_path": "macros/sql/get_filtered_columns_in_relation.sql", "unique_id": "macro.dbt_utils.default__get_filtered_columns_in_relation", "macro_sql": "{% macro default__get_filtered_columns_in_relation(from, except=[]) -%}\n {%- do dbt_utils._is_relation(from, 'get_filtered_columns_in_relation') -%}\n {%- do dbt_utils._is_ephemeral(from, 'get_filtered_columns_in_relation') -%}\n\n {# -- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. #}\n {%- if not execute -%}\n {{ return('') }}\n {% endif %}\n\n {%- set include_cols = [] %}\n {%- set cols = adapter.get_columns_in_relation(from) -%}\n {%- set except = except | map(\"lower\") | list %}\n {%- for col in cols -%}\n {%- if col.column|lower not in except -%}\n {% do include_cols.append(col.column) %}\n {%- endif %}\n {%- endfor %}\n\n {{ return(include_cols) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.288088, "supported_languages": null}, "macro.dbt_utils.width_bucket": {"name": "width_bucket", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/width_bucket.sql", "original_file_path": "macros/sql/width_bucket.sql", "unique_id": "macro.dbt_utils.width_bucket", "macro_sql": "{% macro width_bucket(expr, min_value, max_value, num_buckets) %}\n {{ return(adapter.dispatch('width_bucket', 'dbt_utils') (expr, min_value, max_value, num_buckets)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__width_bucket"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.288935, "supported_languages": null}, "macro.dbt_utils.default__width_bucket": {"name": "default__width_bucket", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/width_bucket.sql", "original_file_path": "macros/sql/width_bucket.sql", "unique_id": "macro.dbt_utils.default__width_bucket", "macro_sql": "{% macro default__width_bucket(expr, min_value, max_value, num_buckets) -%}\n\n {% set bin_size -%}\n (( {{ max_value }} - {{ min_value }} ) / {{ num_buckets }} )\n {%- endset %}\n (\n -- to break ties when the amount is eaxtly at the bucket egde\n case\n when\n mod(\n {{ dbt.safe_cast(expr, dbt.type_numeric() ) }},\n {{ dbt.safe_cast(bin_size, dbt.type_numeric() ) }}\n ) = 0\n then 1\n else 0\n end\n ) +\n -- Anything over max_value goes the N+1 bucket\n least(\n ceil(\n ({{ expr }} - {{ min_value }})/{{ bin_size }}\n ),\n {{ num_buckets }} + 1\n )\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.safe_cast", "macro.dbt.type_numeric"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.289429, "supported_languages": null}, "macro.dbt_utils.snowflake__width_bucket": {"name": "snowflake__width_bucket", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/width_bucket.sql", "original_file_path": "macros/sql/width_bucket.sql", "unique_id": "macro.dbt_utils.snowflake__width_bucket", "macro_sql": "{% macro snowflake__width_bucket(expr, min_value, max_value, num_buckets) %}\n width_bucket({{ expr }}, {{ min_value }}, {{ max_value }}, {{ num_buckets }} )\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.289632, "supported_languages": null}, "macro.dbt_utils.get_query_results_as_dict": {"name": "get_query_results_as_dict", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_query_results_as_dict.sql", "original_file_path": "macros/sql/get_query_results_as_dict.sql", "unique_id": "macro.dbt_utils.get_query_results_as_dict", "macro_sql": "{% macro get_query_results_as_dict(query) %}\n {{ return(adapter.dispatch('get_query_results_as_dict', 'dbt_utils')(query)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_query_results_as_dict"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2900522, "supported_languages": null}, "macro.dbt_utils.default__get_query_results_as_dict": {"name": "default__get_query_results_as_dict", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_query_results_as_dict.sql", "original_file_path": "macros/sql/get_query_results_as_dict.sql", "unique_id": "macro.dbt_utils.default__get_query_results_as_dict", "macro_sql": "{% macro default__get_query_results_as_dict(query) %}\n\n{# This macro returns a dictionary of the form {column_name: (tuple_of_results)} #}\n\n {%- call statement('get_query_results', fetch_result=True,auto_begin=false) -%}\n\n {{ query }}\n\n {%- endcall -%}\n\n {% set sql_results={} %}\n\n {%- if execute -%}\n {% set sql_results_table = load_result('get_query_results').table.columns %}\n {% for column_name, column in sql_results_table.items() %}\n {% do sql_results.update({column_name: column.values()}) %}\n {% endfor %}\n {%- endif -%}\n\n {{ return(sql_results) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2906828, "supported_languages": null}, "macro.dbt_utils.generate_surrogate_key": {"name": "generate_surrogate_key", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/generate_surrogate_key.sql", "original_file_path": "macros/sql/generate_surrogate_key.sql", "unique_id": "macro.dbt_utils.generate_surrogate_key", "macro_sql": "{%- macro generate_surrogate_key(field_list) -%}\n {{ return(adapter.dispatch('generate_surrogate_key', 'dbt_utils')(field_list)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__generate_surrogate_key"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2911758, "supported_languages": null}, "macro.dbt_utils.default__generate_surrogate_key": {"name": "default__generate_surrogate_key", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/generate_surrogate_key.sql", "original_file_path": "macros/sql/generate_surrogate_key.sql", "unique_id": "macro.dbt_utils.default__generate_surrogate_key", "macro_sql": "\n\n{%- macro default__generate_surrogate_key(field_list) -%}\n\n{%- if var('surrogate_key_treat_nulls_as_empty_strings', False) -%}\n {%- set default_null_value = \"\" -%}\n{%- else -%}\n {%- set default_null_value = '_dbt_utils_surrogate_key_null_' -%}\n{%- endif -%}\n\n{%- set fields = [] -%}\n\n{%- for field in field_list -%}\n\n {%- do fields.append(\n \"coalesce(cast(\" ~ field ~ \" as \" ~ dbt.type_string() ~ \"), '\" ~ default_null_value ~\"')\"\n ) -%}\n\n {%- if not loop.last %}\n {%- do fields.append(\"'-'\") -%}\n {%- endif -%}\n\n{%- endfor -%}\n\n{{ dbt.hash(dbt.concat(fields)) }}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt.type_string", "macro.dbt.hash", "macro.dbt.concat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.291841, "supported_languages": null}, "macro.dbt_utils.get_table_types_sql": {"name": "get_table_types_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_table_types_sql.sql", "original_file_path": "macros/sql/get_table_types_sql.sql", "unique_id": "macro.dbt_utils.get_table_types_sql", "macro_sql": "{%- macro get_table_types_sql() -%}\n {{ return(adapter.dispatch('get_table_types_sql', 'dbt_utils')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_utils.databricks__get_table_types_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.292408, "supported_languages": null}, "macro.dbt_utils.default__get_table_types_sql": {"name": "default__get_table_types_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_table_types_sql.sql", "original_file_path": "macros/sql/get_table_types_sql.sql", "unique_id": "macro.dbt_utils.default__get_table_types_sql", "macro_sql": "{% macro default__get_table_types_sql() %}\n case table_type\n when 'BASE TABLE' then 'table'\n when 'EXTERNAL TABLE' then 'external'\n when 'MATERIALIZED VIEW' then 'materializedview'\n else lower(table_type)\n end as {{ adapter.quote('table_type') }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2925608, "supported_languages": null}, "macro.dbt_utils.postgres__get_table_types_sql": {"name": "postgres__get_table_types_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_table_types_sql.sql", "original_file_path": "macros/sql/get_table_types_sql.sql", "unique_id": "macro.dbt_utils.postgres__get_table_types_sql", "macro_sql": "{% macro postgres__get_table_types_sql() %}\n case table_type\n when 'BASE TABLE' then 'table'\n when 'FOREIGN' then 'external'\n when 'MATERIALIZED VIEW' then 'materializedview'\n else lower(table_type)\n end as {{ adapter.quote('table_type') }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.292706, "supported_languages": null}, "macro.dbt_utils.databricks__get_table_types_sql": {"name": "databricks__get_table_types_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_table_types_sql.sql", "original_file_path": "macros/sql/get_table_types_sql.sql", "unique_id": "macro.dbt_utils.databricks__get_table_types_sql", "macro_sql": "{% macro databricks__get_table_types_sql() %}\n case table_type\n when 'MANAGED' then 'table'\n when 'BASE TABLE' then 'table'\n when 'MATERIALIZED VIEW' then 'materializedview'\n else lower(table_type)\n end as {{ adapter.quote('table_type') }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.292851, "supported_languages": null}, "macro.dbt_utils.get_single_value": {"name": "get_single_value", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_single_value.sql", "original_file_path": "macros/sql/get_single_value.sql", "unique_id": "macro.dbt_utils.get_single_value", "macro_sql": "{% macro get_single_value(query, default=none) %}\n {{ return(adapter.dispatch('get_single_value', 'dbt_utils')(query, default)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_single_value"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.293403, "supported_languages": null}, "macro.dbt_utils.default__get_single_value": {"name": "default__get_single_value", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_single_value.sql", "original_file_path": "macros/sql/get_single_value.sql", "unique_id": "macro.dbt_utils.default__get_single_value", "macro_sql": "{% macro default__get_single_value(query, default) %}\n\n{# This macro returns the (0, 0) record in a query, i.e. the first row of the first column #}\n\n {%- call statement('get_query_result', fetch_result=True, auto_begin=false) -%}\n\n {{ query }}\n\n {%- endcall -%}\n\n {%- if execute -%}\n\n {% set r = load_result('get_query_result').table.columns[0].values() %}\n {% if r | length == 0 %}\n {% do print('Query `' ~ query ~ '` returned no rows. Using the default value: ' ~ default) %}\n {% set sql_result = default %}\n {% else %}\n {% set sql_result = r[0] %}\n {% endif %}\n \n {%- else -%}\n \n {% set sql_result = default %}\n \n {%- endif -%}\n\n {% do return(sql_result) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.294265, "supported_languages": null}, "macro.dbt_utils.degrees_to_radians": {"name": "degrees_to_radians", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/haversine_distance.sql", "original_file_path": "macros/sql/haversine_distance.sql", "unique_id": "macro.dbt_utils.degrees_to_radians", "macro_sql": "{% macro degrees_to_radians(degrees) -%}\n acos(-1) * {{degrees}} / 180\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.295424, "supported_languages": null}, "macro.dbt_utils.haversine_distance": {"name": "haversine_distance", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/haversine_distance.sql", "original_file_path": "macros/sql/haversine_distance.sql", "unique_id": "macro.dbt_utils.haversine_distance", "macro_sql": "{% macro haversine_distance(lat1, lon1, lat2, lon2, unit='mi') -%}\n {{ return(adapter.dispatch('haversine_distance', 'dbt_utils')(lat1,lon1,lat2,lon2,unit)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__haversine_distance"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.295718, "supported_languages": null}, "macro.dbt_utils.default__haversine_distance": {"name": "default__haversine_distance", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/haversine_distance.sql", "original_file_path": "macros/sql/haversine_distance.sql", "unique_id": "macro.dbt_utils.default__haversine_distance", "macro_sql": "{% macro default__haversine_distance(lat1, lon1, lat2, lon2, unit='mi') -%}\n{%- if unit == 'mi' %}\n {% set conversion_rate = 1 %}\n{% elif unit == 'km' %}\n {% set conversion_rate = 1.60934 %}\n{% else %}\n {{ exceptions.raise_compiler_error(\"unit input must be one of 'mi' or 'km'. Got \" ~ unit) }}\n{% endif %}\n\n 2 * 3961 * asin(sqrt(power((sin(radians(({{ lat2 }} - {{ lat1 }}) / 2))), 2) +\n cos(radians({{lat1}})) * cos(radians({{lat2}})) *\n power((sin(radians(({{ lon2 }} - {{ lon1 }}) / 2))), 2))) * {{ conversion_rate }}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2963321, "supported_languages": null}, "macro.dbt_utils.bigquery__haversine_distance": {"name": "bigquery__haversine_distance", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/haversine_distance.sql", "original_file_path": "macros/sql/haversine_distance.sql", "unique_id": "macro.dbt_utils.bigquery__haversine_distance", "macro_sql": "{% macro bigquery__haversine_distance(lat1, lon1, lat2, lon2, unit='mi') -%}\n{% set radians_lat1 = dbt_utils.degrees_to_radians(lat1) %}\n{% set radians_lat2 = dbt_utils.degrees_to_radians(lat2) %}\n{% set radians_lon1 = dbt_utils.degrees_to_radians(lon1) %}\n{% set radians_lon2 = dbt_utils.degrees_to_radians(lon2) %}\n{%- if unit == 'mi' %}\n {% set conversion_rate = 1 %}\n{% elif unit == 'km' %}\n {% set conversion_rate = 1.60934 %}\n{% else %}\n {{ exceptions.raise_compiler_error(\"unit input must be one of 'mi' or 'km'. Got \" ~ unit) }}\n{% endif %}\n 2 * 3961 * asin(sqrt(power(sin(({{ radians_lat2 }} - {{ radians_lat1 }}) / 2), 2) +\n cos({{ radians_lat1 }}) * cos({{ radians_lat2 }}) *\n power(sin(({{ radians_lon2 }} - {{ radians_lon1 }}) / 2), 2))) * {{ conversion_rate }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.degrees_to_radians"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.29718, "supported_languages": null}, "macro.iterable_source.get_campaign_label_history_columns": {"name": "get_campaign_label_history_columns", "resource_type": "macro", "package_name": "iterable_source", "path": "macros/get_campaign_label_history_columns.sql", "original_file_path": "macros/get_campaign_label_history_columns.sql", "unique_id": "macro.iterable_source.get_campaign_label_history_columns", "macro_sql": "{% macro get_campaign_label_history_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"campaign_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"label\", \"datatype\": dbt.type_string()},\n {\"name\": \"updated_at\", \"datatype\": dbt.type_timestamp()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_int", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.297809, "supported_languages": null}, "macro.iterable_source.get_campaign_suppression_list_history_columns": {"name": "get_campaign_suppression_list_history_columns", "resource_type": "macro", "package_name": "iterable_source", "path": "macros/get_campaign_suppression_list_history_columns.sql", "original_file_path": "macros/get_campaign_suppression_list_history_columns.sql", "unique_id": "macro.iterable_source.get_campaign_suppression_list_history_columns", "macro_sql": "{% macro get_campaign_suppression_list_history_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"campaign_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"suppressed_list_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"updated_at\", \"datatype\": dbt.type_timestamp()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_int"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.298429, "supported_languages": null}, "macro.iterable_source.get_user_unsubscribed_message_type_history_columns": {"name": "get_user_unsubscribed_message_type_history_columns", "resource_type": "macro", "package_name": "iterable_source", "path": "macros/get_user_unsubscribed_message_type_history_columns.sql", "original_file_path": "macros/get_user_unsubscribed_message_type_history_columns.sql", "unique_id": "macro.iterable_source.get_user_unsubscribed_message_type_history_columns", "macro_sql": "{% macro get_user_unsubscribed_message_type_history_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"email\", \"datatype\": dbt.type_string()},\n {\"name\": \"message_type_id\", \"datatype\": dbt.type_numeric()},\n {\"name\": \"updated_at\", \"datatype\": dbt.type_timestamp()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string", "macro.dbt.type_numeric"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.2990458, "supported_languages": null}, "macro.iterable_source.get_message_type_columns": {"name": "get_message_type_columns", "resource_type": "macro", "package_name": "iterable_source", "path": "macros/get_message_type_columns.sql", "original_file_path": "macros/get_message_type_columns.sql", "unique_id": "macro.iterable_source.get_message_type_columns", "macro_sql": "{% macro get_message_type_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"channel_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"id\", \"datatype\": dbt.type_int()},\n {\"name\": \"name\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_int", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.299743, "supported_languages": null}, "macro.iterable_source.get_list_columns": {"name": "get_list_columns", "resource_type": "macro", "package_name": "iterable_source", "path": "macros/get_list_columns.sql", "original_file_path": "macros/get_list_columns.sql", "unique_id": "macro.iterable_source.get_list_columns", "macro_sql": "{% macro get_list_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"created_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"id\", \"datatype\": dbt.type_int()},\n {\"name\": \"list_type\", \"datatype\": dbt.type_string()},\n {\"name\": \"name\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_int", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.300541, "supported_languages": null}, "macro.iterable_source.get_channel_columns": {"name": "get_channel_columns", "resource_type": "macro", "package_name": "iterable_source", "path": "macros/get_channel_columns.sql", "original_file_path": "macros/get_channel_columns.sql", "unique_id": "macro.iterable_source.get_channel_columns", "macro_sql": "{% macro get_channel_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"channel_type\", \"datatype\": dbt.type_string()},\n {\"name\": \"id\", \"datatype\": dbt.type_int()},\n {\"name\": \"message_medium\", \"datatype\": dbt.type_string()},\n {\"name\": \"name\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string", "macro.dbt.type_int"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.3013382, "supported_languages": null}, "macro.iterable_source.get_user_unsubscribed_channel_history_columns": {"name": "get_user_unsubscribed_channel_history_columns", "resource_type": "macro", "package_name": "iterable_source", "path": "macros/get_user_unsubscribed_channel_history_columns.sql", "original_file_path": "macros/get_user_unsubscribed_channel_history_columns.sql", "unique_id": "macro.iterable_source.get_user_unsubscribed_channel_history_columns", "macro_sql": "{% macro get_user_unsubscribed_channel_history_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"channel_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"email\", \"datatype\": dbt.type_string()},\n {\"name\": \"updated_at\", \"datatype\": dbt.type_timestamp()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_int", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.301951, "supported_languages": null}, "macro.iterable_source.get_campaign_history_columns": {"name": "get_campaign_history_columns", "resource_type": "macro", "package_name": "iterable_source", "path": "macros/get_campaign_history_columns.sql", "original_file_path": "macros/get_campaign_history_columns.sql", "unique_id": "macro.iterable_source.get_campaign_history_columns", "macro_sql": "{% macro get_campaign_history_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"campaign_state\", \"datatype\": dbt.type_string()},\n {\"name\": \"created_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"created_by_user_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"ended_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"id\", \"datatype\": dbt.type_numeric()},\n {\"name\": \"name\", \"datatype\": dbt.type_string()},\n {\"name\": \"recurring_campaign_id\", \"datatype\": dbt.type_numeric()},\n {\"name\": \"send_size\", \"datatype\": dbt.type_numeric()},\n {\"name\": \"start_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"template_id\", \"datatype\": dbt.type_numeric()},\n {\"name\": \"type\", \"datatype\": dbt.type_string()},\n {\"name\": \"updated_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"workflow_id\", \"datatype\": dbt.type_numeric()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string", "macro.dbt.type_numeric"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.303606, "supported_languages": null}, "macro.iterable_source.get_event_extension_columns": {"name": "get_event_extension_columns", "resource_type": "macro", "package_name": "iterable_source", "path": "macros/get_event_extension_columns.sql", "original_file_path": "macros/get_event_extension_columns.sql", "unique_id": "macro.iterable_source.get_event_extension_columns", "macro_sql": "{% macro get_event_extension_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"app_already_running\", \"datatype\": \"boolean\"},\n {\"name\": \"badge\", \"datatype\": dbt.type_string()},\n {\"name\": \"canonical_url_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"content_available\", \"datatype\": \"boolean\"},\n {\"name\": \"content_id\", \"datatype\": dbt.type_numeric()},\n {\"name\": \"deeplink_android\", \"datatype\": dbt.type_string()},\n {\"name\": \"deeplink_ios\", \"datatype\": dbt.type_string()},\n {\"name\": \"device\", \"datatype\": dbt.type_string()},\n {\"name\": \"email_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"email_subject\", \"datatype\": dbt.type_string()},\n {\"name\": \"experiment_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"from_phone_number_id\", \"datatype\": dbt.type_numeric()},\n {\"name\": \"from_smssender_id\", \"datatype\": dbt.type_numeric()},\n {\"name\": \"image_url\", \"datatype\": dbt.type_string()},\n {\"name\": \"is_ghost_push\", \"datatype\": \"boolean\"},\n {\"name\": \"link_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"link_url\", \"datatype\": dbt.type_string()},\n {\"name\": \"locale\", \"datatype\": dbt.type_string()},\n {\"name\": \"payload\", \"datatype\": dbt.type_string()},\n {\"name\": \"platform_endpoint\", \"datatype\": dbt.type_string()},\n {\"name\": \"push_message\", \"datatype\": dbt.type_string()},\n {\"name\": \"region\", \"datatype\": dbt.type_string()},\n {\"name\": \"sms_message\", \"datatype\": dbt.type_string()},\n {\"name\": \"sms_provider_response_code\", \"datatype\": dbt.type_numeric()},\n {\"name\": \"sms_provider_response_message\", \"datatype\": dbt.type_string()},\n {\"name\": \"sms_provider_response_more_info\", \"datatype\": dbt.type_string()},\n {\"name\": \"sms_provider_response_status\", \"datatype\": dbt.type_numeric()},\n {\"name\": \"sound\", \"datatype\": dbt.type_string()},\n {\"name\": \"to_phone_number\", \"datatype\": dbt.type_string()},\n {\"name\": \"url\", \"datatype\": dbt.type_string()},\n {\"name\": \"workflow_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"workflow_name\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_string", "macro.dbt.type_timestamp", "macro.dbt.type_numeric"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.307629, "supported_languages": null}, "macro.iterable_source.get_campaign_list_history_columns": {"name": "get_campaign_list_history_columns", "resource_type": "macro", "package_name": "iterable_source", "path": "macros/get_campaign_list_history_columns.sql", "original_file_path": "macros/get_campaign_list_history_columns.sql", "unique_id": "macro.iterable_source.get_campaign_list_history_columns", "macro_sql": "{% macro get_campaign_list_history_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"campaign_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"list_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"updated_at\", \"datatype\": dbt.type_timestamp()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_int"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.308259, "supported_languages": null}, "macro.iterable_source.get_event_columns": {"name": "get_event_columns", "resource_type": "macro", "package_name": "iterable_source", "path": "macros/get_event_columns.sql", "original_file_path": "macros/get_event_columns.sql", "unique_id": "macro.iterable_source.get_event_columns", "macro_sql": "{% macro get_event_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"campaign_id\", \"datatype\": dbt.type_numeric()},\n {\"name\": \"content_id\", \"datatype\": dbt.type_numeric()},\n {\"name\": \"created_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"email\", \"datatype\": dbt.type_string()},\n {\"name\": \"event_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"message_bus_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"message_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"message_type_id\", \"datatype\": dbt.type_numeric()},\n {\"name\": \"recipient_state\", \"datatype\": dbt.type_string()},\n {\"name\": \"status\", \"datatype\": dbt.type_string()},\n {\"name\": \"unsub_source\", \"datatype\": dbt.type_string()},\n {\"name\": \"user_agent\", \"datatype\": dbt.type_string()},\n {\"name\": \"user_agent_device\", \"datatype\": dbt.type_string()},\n {\"name\": \"transactional_data\", \"datatype\": dbt.type_string()},\n {\"name\": \"additional_properties\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_string", "macro.dbt.type_timestamp", "macro.dbt.type_numeric"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.310234, "supported_languages": null}, "macro.iterable_source.get_template_history_columns": {"name": "get_template_history_columns", "resource_type": "macro", "package_name": "iterable_source", "path": "macros/get_template_history_columns.sql", "original_file_path": "macros/get_template_history_columns.sql", "unique_id": "macro.iterable_source.get_template_history_columns", "macro_sql": "{% macro get_template_history_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"client_template_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"created_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"creator_user_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"id\", \"datatype\": dbt.type_int()},\n {\"name\": \"message_type_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"name\", \"datatype\": dbt.type_string()},\n {\"name\": \"template_type\", \"datatype\": dbt.type_string()},\n {\"name\": \"updated_at\", \"datatype\": dbt.type_timestamp()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string", "macro.dbt.type_int"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.311361, "supported_languages": null}, "macro.iterable_source.get_user_history_columns": {"name": "get_user_history_columns", "resource_type": "macro", "package_name": "iterable_source", "path": "macros/get_user_history_columns.sql", "original_file_path": "macros/get_user_history_columns.sql", "unique_id": "macro.iterable_source.get_user_history_columns", "macro_sql": "{% macro get_user_history_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"email\", \"datatype\": dbt.type_string()},\n {\"name\": \"email_list_ids\", \"datatype\": dbt.type_string()},\n {\"name\": \"first_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"last_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"phone_number\", \"datatype\": dbt.type_string()},\n {\"name\": \"signup_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"signup_source\", \"datatype\": dbt.type_string()},\n {\"name\": \"updated_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"user_id\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.3126101, "supported_languages": null}, "macro.iterable_source.get_user_device_history_columns": {"name": "get_user_device_history_columns", "resource_type": "macro", "package_name": "iterable_source", "path": "macros/get_user_device_history_columns.sql", "original_file_path": "macros/get_user_device_history_columns.sql", "unique_id": "macro.iterable_source.get_user_device_history_columns", "macro_sql": "{% macro get_user_device_history_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"application_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"email\", \"datatype\": dbt.type_string()},\n {\"name\": \"endpoint_enabled\", \"datatype\": \"boolean\"},\n {\"name\": \"index\", \"datatype\": dbt.type_numeric()},\n {\"name\": \"platform\", \"datatype\": dbt.type_string()},\n {\"name\": \"platform_endpoint\", \"datatype\": dbt.type_string()},\n {\"name\": \"updated_at\", \"datatype\": dbt.type_timestamp()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string", "macro.dbt.type_numeric"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.313617, "supported_languages": null}, "macro.fivetran_utils.enabled_vars": {"name": "enabled_vars", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/enabled_vars.sql", "original_file_path": "macros/enabled_vars.sql", "unique_id": "macro.fivetran_utils.enabled_vars", "macro_sql": "{% macro enabled_vars(vars) %}\n\n{% for v in vars %}\n \n {% if var(v, True) == False %}\n {{ return(False) }}\n {% endif %}\n\n{% endfor %}\n\n{{ return(True) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.3140411, "supported_languages": null}, "macro.fivetran_utils.percentile": {"name": "percentile", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "unique_id": "macro.fivetran_utils.percentile", "macro_sql": "{% macro percentile(percentile_field, partition_field, percent) -%}\n\n{{ adapter.dispatch('percentile', 'fivetran_utils') (percentile_field, partition_field, percent) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.spark__percentile"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.315052, "supported_languages": null}, "macro.fivetran_utils.default__percentile": {"name": "default__percentile", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "unique_id": "macro.fivetran_utils.default__percentile", "macro_sql": "{% macro default__percentile(percentile_field, partition_field, percent) %}\n\n percentile_cont( \n {{ percent }} )\n within group ( order by {{ percentile_field }} )\n over ( partition by {{ partition_field }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.315239, "supported_languages": null}, "macro.fivetran_utils.redshift__percentile": {"name": "redshift__percentile", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "unique_id": "macro.fivetran_utils.redshift__percentile", "macro_sql": "{% macro redshift__percentile(percentile_field, partition_field, percent) %}\n\n percentile_cont( \n {{ percent }} )\n within group ( order by {{ percentile_field }} )\n over ( partition by {{ partition_field }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.315413, "supported_languages": null}, "macro.fivetran_utils.bigquery__percentile": {"name": "bigquery__percentile", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "unique_id": "macro.fivetran_utils.bigquery__percentile", "macro_sql": "{% macro bigquery__percentile(percentile_field, partition_field, percent) %}\n\n percentile_cont( \n {{ percentile_field }}, \n {{ percent }}) \n over (partition by {{ partition_field }} \n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.315587, "supported_languages": null}, "macro.fivetran_utils.postgres__percentile": {"name": "postgres__percentile", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "unique_id": "macro.fivetran_utils.postgres__percentile", "macro_sql": "{% macro postgres__percentile(percentile_field, partition_field, percent) %}\n\n percentile_cont( \n {{ percent }} )\n within group ( order by {{ percentile_field }} )\n /* have to group by partition field */\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.315742, "supported_languages": null}, "macro.fivetran_utils.spark__percentile": {"name": "spark__percentile", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "unique_id": "macro.fivetran_utils.spark__percentile", "macro_sql": "{% macro spark__percentile(percentile_field, partition_field, percent) %}\n\n percentile( \n {{ percentile_field }}, \n {{ percent }}) \n over (partition by {{ partition_field }} \n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.315915, "supported_languages": null}, "macro.fivetran_utils.pivot_json_extract": {"name": "pivot_json_extract", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/pivot_json_extract.sql", "original_file_path": "macros/pivot_json_extract.sql", "unique_id": "macro.fivetran_utils.pivot_json_extract", "macro_sql": "{% macro pivot_json_extract(string, list_of_properties) %}\n\n{%- for property in list_of_properties -%}\n{%- if property is mapping -%}\nreplace( {{ fivetran_utils.json_extract(string, property.name) }}, '\"', '') as {{ property.alias if property.alias else property.name | replace(' ', '_') | replace('.', '_') | lower }}\n\n{%- else -%}\nreplace( {{ fivetran_utils.json_extract(string, property) }}, '\"', '') as {{ property | replace(' ', '_') | lower }}\n\n{%- endif -%}\n{%- if not loop.last -%},{%- endif %}\n{% endfor -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.json_extract"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.31675, "supported_languages": null}, "macro.fivetran_utils.persist_pass_through_columns": {"name": "persist_pass_through_columns", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/persist_pass_through_columns.sql", "original_file_path": "macros/persist_pass_through_columns.sql", "unique_id": "macro.fivetran_utils.persist_pass_through_columns", "macro_sql": "{% macro persist_pass_through_columns(pass_through_variable, identifier=none, transform='') %}\n\n{% if var(pass_through_variable, none) %}\n {% for field in var(pass_through_variable) %}\n , {{ transform ~ '(' ~ (identifier ~ '.' if identifier else '') ~ (field.alias if field.alias else field.name) ~ ')' }} as {{ field.alias if field.alias else field.name }}\n {% endfor %}\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.3174322, "supported_languages": null}, "macro.fivetran_utils.json_parse": {"name": "json_parse", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "unique_id": "macro.fivetran_utils.json_parse", "macro_sql": "{% macro json_parse(string, string_path) -%}\n\n{{ adapter.dispatch('json_parse', 'fivetran_utils') (string, string_path) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.spark__json_parse"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.3186402, "supported_languages": null}, "macro.fivetran_utils.default__json_parse": {"name": "default__json_parse", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "unique_id": "macro.fivetran_utils.default__json_parse", "macro_sql": "{% macro default__json_parse(string, string_path) %}\n\n json_extract_path_text({{string}}, {%- for s in string_path -%}'{{ s }}'{%- if not loop.last -%},{%- endif -%}{%- endfor -%} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.318905, "supported_languages": null}, "macro.fivetran_utils.redshift__json_parse": {"name": "redshift__json_parse", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "unique_id": "macro.fivetran_utils.redshift__json_parse", "macro_sql": "{% macro redshift__json_parse(string, string_path) %}\n\n json_extract_path_text({{string}}, {%- for s in string_path -%}'{{ s }}'{%- if not loop.last -%},{%- endif -%}{%- endfor -%} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.319168, "supported_languages": null}, "macro.fivetran_utils.bigquery__json_parse": {"name": "bigquery__json_parse", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "unique_id": "macro.fivetran_utils.bigquery__json_parse", "macro_sql": "{% macro bigquery__json_parse(string, string_path) %}\n\n \n json_extract_scalar({{string}}, '$.{%- for s in string_path -%}{{ s }}{%- if not loop.last -%}.{%- endif -%}{%- endfor -%} ')\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.31949, "supported_languages": null}, "macro.fivetran_utils.postgres__json_parse": {"name": "postgres__json_parse", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "unique_id": "macro.fivetran_utils.postgres__json_parse", "macro_sql": "{% macro postgres__json_parse(string, string_path) %}\n\n {{string}}::json #>> '{ {%- for s in string_path -%}{{ s }}{%- if not loop.last -%},{%- endif -%}{%- endfor -%} }'\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.319743, "supported_languages": null}, "macro.fivetran_utils.snowflake__json_parse": {"name": "snowflake__json_parse", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "unique_id": "macro.fivetran_utils.snowflake__json_parse", "macro_sql": "{% macro snowflake__json_parse(string, string_path) %}\n\n parse_json( {{string}} ) {%- for s in string_path -%}{% if s is number %}[{{ s }}]{% else %}['{{ s }}']{% endif %}{%- endfor -%}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.320021, "supported_languages": null}, "macro.fivetran_utils.spark__json_parse": {"name": "spark__json_parse", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "unique_id": "macro.fivetran_utils.spark__json_parse", "macro_sql": "{% macro spark__json_parse(string, string_path) %}\n\n {{string}} : {%- for s in string_path -%}{% if s is number %}[{{ s }}]{% else %}['{{ s }}']{% endif %}{%- endfor -%}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.320296, "supported_languages": null}, "macro.fivetran_utils.max_bool": {"name": "max_bool", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/max_bool.sql", "original_file_path": "macros/max_bool.sql", "unique_id": "macro.fivetran_utils.max_bool", "macro_sql": "{% macro max_bool(boolean_field) -%}\n\n{{ adapter.dispatch('max_bool', 'fivetran_utils') (boolean_field) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__max_bool"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.3206348, "supported_languages": null}, "macro.fivetran_utils.default__max_bool": {"name": "default__max_bool", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/max_bool.sql", "original_file_path": "macros/max_bool.sql", "unique_id": "macro.fivetran_utils.default__max_bool", "macro_sql": "{% macro default__max_bool(boolean_field) %}\n\n bool_or( {{ boolean_field }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.3207428, "supported_languages": null}, "macro.fivetran_utils.snowflake__max_bool": {"name": "snowflake__max_bool", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/max_bool.sql", "original_file_path": "macros/max_bool.sql", "unique_id": "macro.fivetran_utils.snowflake__max_bool", "macro_sql": "{% macro snowflake__max_bool(boolean_field) %}\n\n max( {{ boolean_field }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.32085, "supported_languages": null}, "macro.fivetran_utils.bigquery__max_bool": {"name": "bigquery__max_bool", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/max_bool.sql", "original_file_path": "macros/max_bool.sql", "unique_id": "macro.fivetran_utils.bigquery__max_bool", "macro_sql": "{% macro bigquery__max_bool(boolean_field) %}\n\n max( {{ boolean_field }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.3209531, "supported_languages": null}, "macro.fivetran_utils.calculated_fields": {"name": "calculated_fields", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/calculated_fields.sql", "original_file_path": "macros/calculated_fields.sql", "unique_id": "macro.fivetran_utils.calculated_fields", "macro_sql": "{% macro calculated_fields(variable) -%}\n\n{% if var(variable, none) %}\n {% for field in var(variable) %}\n , {{ field.transform_sql }} as {{ field.name }} \n {% endfor %}\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.321342, "supported_languages": null}, "macro.fivetran_utils.drop_schemas_automation": {"name": "drop_schemas_automation", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/drop_schemas_automation.sql", "original_file_path": "macros/drop_schemas_automation.sql", "unique_id": "macro.fivetran_utils.drop_schemas_automation", "macro_sql": "{% macro drop_schemas_automation(drop_target_schema=true) %}\n {{ return(adapter.dispatch('drop_schemas_automation', 'fivetran_utils')(drop_target_schema)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__drop_schemas_automation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.322077, "supported_languages": null}, "macro.fivetran_utils.default__drop_schemas_automation": {"name": "default__drop_schemas_automation", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/drop_schemas_automation.sql", "original_file_path": "macros/drop_schemas_automation.sql", "unique_id": "macro.fivetran_utils.default__drop_schemas_automation", "macro_sql": "{% macro default__drop_schemas_automation(drop_target_schema=true) %}\n\n{% set fetch_list_sql %}\n {% if target.type not in ('databricks', 'spark') %}\n select schema_name\n from \n {{ wrap_in_quotes(target.database) }}.INFORMATION_SCHEMA.SCHEMATA\n where lower(schema_name) like '{{ target.schema | lower }}{%- if not drop_target_schema -%}_{%- endif -%}%'\n {% else %}\n SHOW SCHEMAS LIKE '{{ target.schema }}{%- if not drop_target_schema -%}_{%- endif -%}*'\n {% endif %}\n{% endset %}\n\n{% set results = run_query(fetch_list_sql) %}\n\n{% if execute %}\n {% set results_list = results.columns[0].values() %}\n{% else %}\n {% set results_list = [] %}\n{% endif %}\n\n{% for schema_to_drop in results_list %}\n {% do adapter.drop_schema(api.Relation.create(database=target.database, schema=schema_to_drop)) %}\n {{ print('Schema ' ~ schema_to_drop ~ ' successfully dropped from the ' ~ target.database ~ ' database.\\n')}}\n{% endfor %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.wrap_in_quotes", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.323141, "supported_languages": null}, "macro.fivetran_utils.seed_data_helper": {"name": "seed_data_helper", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/seed_data_helper.sql", "original_file_path": "macros/seed_data_helper.sql", "unique_id": "macro.fivetran_utils.seed_data_helper", "macro_sql": "{% macro seed_data_helper(seed_name, warehouses) %}\n\n{% if target.type in warehouses %}\n {% for w in warehouses %}\n {% if target.type == w %}\n {{ return(ref(seed_name ~ \"_\" ~ w ~ \"\")) }}\n {% endif %}\n {% endfor %}\n{% else %}\n{{ return(ref(seed_name)) }}\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.323754, "supported_languages": null}, "macro.fivetran_utils.fill_pass_through_columns": {"name": "fill_pass_through_columns", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/fill_pass_through_columns.sql", "original_file_path": "macros/fill_pass_through_columns.sql", "unique_id": "macro.fivetran_utils.fill_pass_through_columns", "macro_sql": "{% macro fill_pass_through_columns(pass_through_variable) %}\n\n{% if var(pass_through_variable) %}\n {% for field in var(pass_through_variable) %}\n {% if field is mapping %}\n {% if field.transform_sql %}\n , {{ field.transform_sql }} as {{ field.alias if field.alias else field.name }}\n {% else %}\n , {{ field.alias if field.alias else field.name }}\n {% endif %}\n {% else %}\n , {{ field }}\n {% endif %}\n {% endfor %}\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.324586, "supported_languages": null}, "macro.fivetran_utils.string_agg": {"name": "string_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/string_agg.sql", "original_file_path": "macros/string_agg.sql", "unique_id": "macro.fivetran_utils.string_agg", "macro_sql": "{% macro string_agg(field_to_agg, delimiter) -%}\n\n{{ adapter.dispatch('string_agg', 'fivetran_utils') (field_to_agg, delimiter) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.spark__string_agg"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.325085, "supported_languages": null}, "macro.fivetran_utils.default__string_agg": {"name": "default__string_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/string_agg.sql", "original_file_path": "macros/string_agg.sql", "unique_id": "macro.fivetran_utils.default__string_agg", "macro_sql": "{% macro default__string_agg(field_to_agg, delimiter) %}\n string_agg({{ field_to_agg }}, {{ delimiter }})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.3252249, "supported_languages": null}, "macro.fivetran_utils.snowflake__string_agg": {"name": "snowflake__string_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/string_agg.sql", "original_file_path": "macros/string_agg.sql", "unique_id": "macro.fivetran_utils.snowflake__string_agg", "macro_sql": "{% macro snowflake__string_agg(field_to_agg, delimiter) %}\n listagg({{ field_to_agg }}, {{ delimiter }})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.3253582, "supported_languages": null}, "macro.fivetran_utils.redshift__string_agg": {"name": "redshift__string_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/string_agg.sql", "original_file_path": "macros/string_agg.sql", "unique_id": "macro.fivetran_utils.redshift__string_agg", "macro_sql": "{% macro redshift__string_agg(field_to_agg, delimiter) %}\n listagg({{ field_to_agg }}, {{ delimiter }})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.325506, "supported_languages": null}, "macro.fivetran_utils.spark__string_agg": {"name": "spark__string_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/string_agg.sql", "original_file_path": "macros/string_agg.sql", "unique_id": "macro.fivetran_utils.spark__string_agg", "macro_sql": "{% macro spark__string_agg(field_to_agg, delimiter) %}\n -- collect set will remove duplicates\n replace(replace(replace(cast( collect_set({{ field_to_agg }}) as string), '[', ''), ']', ''), ', ', {{ delimiter }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.3256488, "supported_languages": null}, "macro.fivetran_utils.timestamp_diff": {"name": "timestamp_diff", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_diff.sql", "original_file_path": "macros/timestamp_diff.sql", "unique_id": "macro.fivetran_utils.timestamp_diff", "macro_sql": "{% macro timestamp_diff(first_date, second_date, datepart) %}\n {{ adapter.dispatch('timestamp_diff', 'fivetran_utils')(first_date, second_date, datepart) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__timestamp_diff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.3288379, "supported_languages": null}, "macro.fivetran_utils.default__timestamp_diff": {"name": "default__timestamp_diff", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_diff.sql", "original_file_path": "macros/timestamp_diff.sql", "unique_id": "macro.fivetran_utils.default__timestamp_diff", "macro_sql": "{% macro default__timestamp_diff(first_date, second_date, datepart) %}\n\n datediff(\n {{ datepart }},\n {{ first_date }},\n {{ second_date }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.32901, "supported_languages": null}, "macro.fivetran_utils.redshift__timestamp_diff": {"name": "redshift__timestamp_diff", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_diff.sql", "original_file_path": "macros/timestamp_diff.sql", "unique_id": "macro.fivetran_utils.redshift__timestamp_diff", "macro_sql": "{% macro redshift__timestamp_diff(first_date, second_date, datepart) %}\n\n datediff(\n {{ datepart }},\n {{ first_date }},\n {{ second_date }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.329182, "supported_languages": null}, "macro.fivetran_utils.bigquery__timestamp_diff": {"name": "bigquery__timestamp_diff", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_diff.sql", "original_file_path": "macros/timestamp_diff.sql", "unique_id": "macro.fivetran_utils.bigquery__timestamp_diff", "macro_sql": "{% macro bigquery__timestamp_diff(first_date, second_date, datepart) %}\n\n timestamp_diff(\n {{second_date}},\n {{first_date}},\n {{datepart}}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.329421, "supported_languages": null}, "macro.fivetran_utils.postgres__timestamp_diff": {"name": "postgres__timestamp_diff", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_diff.sql", "original_file_path": "macros/timestamp_diff.sql", "unique_id": "macro.fivetran_utils.postgres__timestamp_diff", "macro_sql": "{% macro postgres__timestamp_diff(first_date, second_date, datepart) %}\n\n {% if datepart == 'year' %}\n (date_part('year', ({{second_date}})::date) - date_part('year', ({{first_date}})::date))\n {% elif datepart == 'quarter' %}\n ({{ dbt.datediff(first_date, second_date, 'year') }} * 4 + date_part('quarter', ({{second_date}})::date) - date_part('quarter', ({{first_date}})::date))\n {% elif datepart == 'month' %}\n ({{ dbt.datediff(first_date, second_date, 'year') }} * 12 + date_part('month', ({{second_date}})::date) - date_part('month', ({{first_date}})::date))\n {% elif datepart == 'day' %}\n (({{second_date}})::date - ({{first_date}})::date)\n {% elif datepart == 'week' %}\n ({{ dbt.datediff(first_date, second_date, 'day') }} / 7 + case\n when date_part('dow', ({{first_date}})::timestamp) <= date_part('dow', ({{second_date}})::timestamp) then\n case when {{first_date}} <= {{second_date}} then 0 else -1 end\n else\n case when {{first_date}} <= {{second_date}} then 1 else 0 end\n end)\n {% elif datepart == 'hour' %}\n ({{ dbt.datediff(first_date, second_date, 'day') }} * 24 + date_part('hour', ({{second_date}})::timestamp) - date_part('hour', ({{first_date}})::timestamp))\n {% elif datepart == 'minute' %}\n ({{ dbt.datediff(first_date, second_date, 'hour') }} * 60 + date_part('minute', ({{second_date}})::timestamp) - date_part('minute', ({{first_date}})::timestamp))\n {% elif datepart == 'second' %}\n ({{ dbt.datediff(first_date, second_date, 'minute') }} * 60 + floor(date_part('second', ({{second_date}})::timestamp)) - floor(date_part('second', ({{first_date}})::timestamp)))\n {% elif datepart == 'millisecond' %}\n ({{ dbt.datediff(first_date, second_date, 'minute') }} * 60000 + floor(date_part('millisecond', ({{second_date}})::timestamp)) - floor(date_part('millisecond', ({{first_date}})::timestamp)))\n {% elif datepart == 'microsecond' %}\n ({{ dbt.datediff(first_date, second_date, 'minute') }} * 60000000 + floor(date_part('microsecond', ({{second_date}})::timestamp)) - floor(date_part('microsecond', ({{first_date}})::timestamp)))\n {% else %}\n {{ exceptions.raise_compiler_error(\"Unsupported datepart for macro datediff in postgres: {!r}\".format(datepart)) }}\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.datediff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.331208, "supported_languages": null}, "macro.fivetran_utils.try_cast": {"name": "try_cast", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "unique_id": "macro.fivetran_utils.try_cast", "macro_sql": "{% macro try_cast(field, type) %}\n {{ adapter.dispatch('try_cast', 'fivetran_utils') (field, type) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.spark__try_cast"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.332119, "supported_languages": null}, "macro.fivetran_utils.default__safe_cast": {"name": "default__safe_cast", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "unique_id": "macro.fivetran_utils.default__safe_cast", "macro_sql": "{% macro default__safe_cast(field, type) %}\n {# most databases don't support this function yet\n so we just need to use cast #}\n cast({{field}} as {{type}})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.332267, "supported_languages": null}, "macro.fivetran_utils.redshift__try_cast": {"name": "redshift__try_cast", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "unique_id": "macro.fivetran_utils.redshift__try_cast", "macro_sql": "{% macro redshift__try_cast(field, type) %}\n{%- if type == 'numeric' -%}\n\n case\n when trim({{field}}) ~ '^(0|[1-9][0-9]*)$' then trim({{field}})\n else null\n end::{{type}}\n\n{% else %}\n {{ exceptions.raise_compiler_error(\n \"non-numeric datatypes are not currently supported\") }}\n\n{% endif %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.332555, "supported_languages": null}, "macro.fivetran_utils.postgres__try_cast": {"name": "postgres__try_cast", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "unique_id": "macro.fivetran_utils.postgres__try_cast", "macro_sql": "{% macro postgres__try_cast(field, type) %}\n{%- if type == 'numeric' -%}\n\n case\n when replace(cast({{field}} as varchar),cast(' ' as varchar),cast('' as varchar)) ~ '^(0|[1-9][0-9]*)$' \n then replace(cast({{field}} as varchar),cast(' ' as varchar),cast('' as varchar))\n else null\n end::{{type}}\n\n{% else %}\n {{ exceptions.raise_compiler_error(\n \"non-numeric datatypes are not currently supported\") }}\n\n{% endif %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.332855, "supported_languages": null}, "macro.fivetran_utils.snowflake__try_cast": {"name": "snowflake__try_cast", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "unique_id": "macro.fivetran_utils.snowflake__try_cast", "macro_sql": "{% macro snowflake__try_cast(field, type) %}\n try_cast(cast({{field}} as varchar) as {{type}})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.332993, "supported_languages": null}, "macro.fivetran_utils.bigquery__try_cast": {"name": "bigquery__try_cast", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "unique_id": "macro.fivetran_utils.bigquery__try_cast", "macro_sql": "{% macro bigquery__try_cast(field, type) %}\n safe_cast({{field}} as {{type}})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.3331242, "supported_languages": null}, "macro.fivetran_utils.spark__try_cast": {"name": "spark__try_cast", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "unique_id": "macro.fivetran_utils.spark__try_cast", "macro_sql": "{% macro spark__try_cast(field, type) %}\n try_cast({{field}} as {{type}})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.3332539, "supported_languages": null}, "macro.fivetran_utils.source_relation": {"name": "source_relation", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/source_relation.sql", "original_file_path": "macros/source_relation.sql", "unique_id": "macro.fivetran_utils.source_relation", "macro_sql": "{% macro source_relation(union_schema_variable='union_schemas', union_database_variable='union_databases') -%}\n\n{{ adapter.dispatch('source_relation', 'fivetran_utils') (union_schema_variable, union_database_variable) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__source_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.333767, "supported_languages": null}, "macro.fivetran_utils.default__source_relation": {"name": "default__source_relation", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/source_relation.sql", "original_file_path": "macros/source_relation.sql", "unique_id": "macro.fivetran_utils.default__source_relation", "macro_sql": "{% macro default__source_relation(union_schema_variable, union_database_variable) %}\n\n{% if var(union_schema_variable, none) %}\n, case\n {% for schema in var(union_schema_variable) %}\n when lower(replace(replace(_dbt_source_relation,'\"',''),'`','')) like '%.{{ schema|lower }}.%' then '{{ schema|lower }}'\n {% endfor %}\n end as source_relation\n{% elif var(union_database_variable, none) %}\n, case\n {% for database in var(union_database_variable) %}\n when lower(replace(replace(_dbt_source_relation,'\"',''),'`','')) like '%{{ database|lower }}.%' then '{{ database|lower }}'\n {% endfor %}\n end as source_relation\n{% else %}\n, cast('' as {{ dbt.type_string() }}) as source_relation\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.3343732, "supported_languages": null}, "macro.fivetran_utils.first_value": {"name": "first_value", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/first_value.sql", "original_file_path": "macros/first_value.sql", "unique_id": "macro.fivetran_utils.first_value", "macro_sql": "{% macro first_value(first_value_field, partition_field, order_by_field, order=\"asc\") -%}\n\n{{ adapter.dispatch('first_value', 'fivetran_utils') (first_value_field, partition_field, order_by_field, order) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__first_value"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.334893, "supported_languages": null}, "macro.fivetran_utils.default__first_value": {"name": "default__first_value", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/first_value.sql", "original_file_path": "macros/first_value.sql", "unique_id": "macro.fivetran_utils.default__first_value", "macro_sql": "{% macro default__first_value(first_value_field, partition_field, order_by_field, order=\"asc\") %}\n\n first_value( {{ first_value_field }} ignore nulls ) over (partition by {{ partition_field }} order by {{ order_by_field }} {{ order }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.3351061, "supported_languages": null}, "macro.fivetran_utils.redshift__first_value": {"name": "redshift__first_value", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/first_value.sql", "original_file_path": "macros/first_value.sql", "unique_id": "macro.fivetran_utils.redshift__first_value", "macro_sql": "{% macro redshift__first_value(first_value_field, partition_field, order_by_field, order=\"asc\") %}\n\n first_value( {{ first_value_field }} ignore nulls ) over (partition by {{ partition_field }} order by {{ order_by_field }} {{ order }} , {{ partition_field }} rows unbounded preceding )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.3353431, "supported_languages": null}, "macro.fivetran_utils.add_dbt_source_relation": {"name": "add_dbt_source_relation", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/add_dbt_source_relation.sql", "original_file_path": "macros/add_dbt_source_relation.sql", "unique_id": "macro.fivetran_utils.add_dbt_source_relation", "macro_sql": "{% macro add_dbt_source_relation() %}\n\n{% if var('union_schemas', none) or var('union_databases', none) %}\n, _dbt_source_relation\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.335615, "supported_languages": null}, "macro.fivetran_utils.add_pass_through_columns": {"name": "add_pass_through_columns", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/add_pass_through_columns.sql", "original_file_path": "macros/add_pass_through_columns.sql", "unique_id": "macro.fivetran_utils.add_pass_through_columns", "macro_sql": "{% macro add_pass_through_columns(base_columns, pass_through_var) %}\n\n {% if pass_through_var %}\n\n {% for column in pass_through_var %}\n\n {% if column is mapping %}\n\n {% if column.alias %}\n\n {% do base_columns.append({ \"name\": column.name, \"alias\": column.alias, \"datatype\": column.datatype if column.datatype else dbt.type_string()}) %}\n\n {% else %}\n\n {% do base_columns.append({ \"name\": column.name, \"datatype\": column.datatype if column.datatype else dbt.type_string()}) %}\n \n {% endif %}\n\n {% else %}\n\n {% do base_columns.append({ \"name\": column, \"datatype\": dbt.type_string()}) %}\n\n {% endif %}\n\n {% endfor %}\n\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.336779, "supported_languages": null}, "macro.fivetran_utils.union_relations": {"name": "union_relations", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/union_relations.sql", "original_file_path": "macros/union_relations.sql", "unique_id": "macro.fivetran_utils.union_relations", "macro_sql": "{%- macro union_relations(relations, aliases=none, column_override=none, include=[], exclude=[], source_column_name=none) -%}\n\n {%- if exclude and include -%}\n {{ exceptions.raise_compiler_error(\"Both an exclude and include list were provided to the `union` macro. Only one is allowed\") }}\n {%- endif -%}\n\n {#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. -#}\n {%- if not execute %}\n {{ return('') }}\n {% endif -%}\n\n {%- set column_override = column_override if column_override is not none else {} -%}\n {%- set source_column_name = source_column_name if source_column_name is not none else '_dbt_source_relation' -%}\n\n {%- set relation_columns = {} -%}\n {%- set column_superset = {} -%}\n\n {%- for relation in relations -%}\n\n {%- do relation_columns.update({relation: []}) -%}\n\n {%- do dbt_utils._is_relation(relation, 'union_relations') -%}\n {%- set cols = adapter.get_columns_in_relation(relation) -%}\n {%- for col in cols -%}\n\n {#- If an exclude list was provided and the column is in the list, do nothing -#}\n {%- if exclude and col.column in exclude -%}\n\n {#- If an include list was provided and the column is not in the list, do nothing -#}\n {%- elif include and col.column not in include -%}\n\n {#- Otherwise add the column to the column superset -#}\n {%- else -%}\n\n {#- update the list of columns in this relation -#}\n {%- do relation_columns[relation].append(col.column) -%}\n\n {%- if col.column in column_superset -%}\n\n {%- set stored = column_superset[col.column] -%}\n {%- if col.is_string() and stored.is_string() and col.string_size() > stored.string_size() -%}\n\n {%- do column_superset.update({col.column: col}) -%}\n\n {%- endif %}\n\n {%- else -%}\n\n {%- do column_superset.update({col.column: col}) -%}\n\n {%- endif -%}\n\n {%- endif -%}\n\n {%- endfor -%}\n {%- endfor -%}\n\n {%- set ordered_column_names = column_superset.keys() -%}\n\n {%- for relation in relations %}\n\n (\n select\n\n cast({{ dbt.string_literal(relation) }} as {{ dbt.type_string() }}) as {{ source_column_name }},\n {% for col_name in ordered_column_names -%}\n\n {%- set col = column_superset[col_name] %}\n {%- set col_type = column_override.get(col.column, col.data_type) %}\n {%- set col_name = adapter.quote(col_name) if col_name in relation_columns[relation] else 'null' %}\n cast({{ col_name }} as {{ col_type }}) as {{ col.quoted }} {% if not loop.last %},{% endif -%}\n\n {%- endfor %}\n\n from {{ aliases[loop.index0] if aliases else relation }}\n )\n\n {% if not loop.last -%}\n union all\n {% endif -%}\n\n {%- endfor -%}\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt.string_literal", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.341088, "supported_languages": null}, "macro.fivetran_utils.union_tables": {"name": "union_tables", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/union_relations.sql", "original_file_path": "macros/union_relations.sql", "unique_id": "macro.fivetran_utils.union_tables", "macro_sql": "{%- macro union_tables(tables, column_override=none, include=[], exclude=[], source_column_name='_dbt_source_table') -%}\n\n {%- do exceptions.warn(\"Warning: the `union_tables` macro is no longer supported and will be deprecated in a future release of dbt-utils. Use the `union_relations` macro instead\") -%}\n\n {{ return(dbt_utils.union_relations(tables, column_override, include, exclude, source_column_name)) }}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_utils.union_relations"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.3414679, "supported_languages": null}, "macro.fivetran_utils.snowflake_seed_data": {"name": "snowflake_seed_data", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/snowflake_seed_data.sql", "original_file_path": "macros/snowflake_seed_data.sql", "unique_id": "macro.fivetran_utils.snowflake_seed_data", "macro_sql": "{% macro snowflake_seed_data(seed_name) %}\n\n{% if target.type == 'snowflake' %}\n{{ return(ref(seed_name ~ '_snowflake')) }}\n{% else %}\n{{ return(ref(seed_name)) }}\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.3418722, "supported_languages": null}, "macro.fivetran_utils.fill_staging_columns": {"name": "fill_staging_columns", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/fill_staging_columns.sql", "original_file_path": "macros/fill_staging_columns.sql", "unique_id": "macro.fivetran_utils.fill_staging_columns", "macro_sql": "{% macro fill_staging_columns(source_columns, staging_columns) -%}\n\n{%- set source_column_names = source_columns|map(attribute='name')|map('lower')|list -%}\n\n{%- for column in staging_columns %}\n {% if column.name|lower in source_column_names -%}\n {{ fivetran_utils.quote_column(column) }} as \n {%- if 'alias' in column %} {{ column.alias }} {% else %} {{ fivetran_utils.quote_column(column) }} {%- endif -%}\n {%- else -%}\n cast(null as {{ column.datatype }})\n {%- if 'alias' in column %} as {{ column.alias }} {% else %} as {{ fivetran_utils.quote_column(column) }} {% endif -%}\n {%- endif -%}\n {%- if not loop.last -%} , {% endif -%}\n{% endfor %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.quote_column"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.343584, "supported_languages": null}, "macro.fivetran_utils.quote_column": {"name": "quote_column", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/fill_staging_columns.sql", "original_file_path": "macros/fill_staging_columns.sql", "unique_id": "macro.fivetran_utils.quote_column", "macro_sql": "{% macro quote_column(column) %}\n {% if 'quote' in column %}\n {% if column.quote %}\n {% if target.type in ('bigquery', 'spark', 'databricks') %}\n `{{ column.name }}`\n {% elif target.type == 'snowflake' %}\n \"{{ column.name | upper }}\"\n {% else %}\n \"{{ column.name }}\"\n {% endif %}\n {% else %}\n {{ column.name }}\n {% endif %}\n {% else %}\n {{ column.name }}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.344176, "supported_languages": null}, "macro.fivetran_utils.json_extract": {"name": "json_extract", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "unique_id": "macro.fivetran_utils.json_extract", "macro_sql": "{% macro json_extract(string, string_path) -%}\n\n{{ adapter.dispatch('json_extract', 'fivetran_utils') (string, string_path) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__json_extract"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.344782, "supported_languages": null}, "macro.fivetran_utils.default__json_extract": {"name": "default__json_extract", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "unique_id": "macro.fivetran_utils.default__json_extract", "macro_sql": "{% macro default__json_extract(string, string_path) %}\n\n json_extract_path_text({{string}}, {{ \"'\" ~ string_path ~ \"'\" }} )\n \n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.344946, "supported_languages": null}, "macro.fivetran_utils.snowflake__json_extract": {"name": "snowflake__json_extract", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "unique_id": "macro.fivetran_utils.snowflake__json_extract", "macro_sql": "{% macro snowflake__json_extract(string, string_path) %}\n\n json_extract_path_text(try_parse_json( {{string}} ), {{ \"'\" ~ string_path ~ \"'\" }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.345105, "supported_languages": null}, "macro.fivetran_utils.redshift__json_extract": {"name": "redshift__json_extract", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "unique_id": "macro.fivetran_utils.redshift__json_extract", "macro_sql": "{% macro redshift__json_extract(string, string_path) %}\n\n case when is_valid_json( {{string}} ) then json_extract_path_text({{string}}, {{ \"'\" ~ string_path ~ \"'\" }} ) else null end\n \n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.345283, "supported_languages": null}, "macro.fivetran_utils.bigquery__json_extract": {"name": "bigquery__json_extract", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "unique_id": "macro.fivetran_utils.bigquery__json_extract", "macro_sql": "{% macro bigquery__json_extract(string, string_path) %}\n\n json_extract_scalar({{string}}, {{ \"'$.\" ~ string_path ~ \"'\" }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.3454442, "supported_languages": null}, "macro.fivetran_utils.postgres__json_extract": {"name": "postgres__json_extract", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "unique_id": "macro.fivetran_utils.postgres__json_extract", "macro_sql": "{% macro postgres__json_extract(string, string_path) %}\n\n {{string}}::json->>{{\"'\" ~ string_path ~ \"'\" }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.345599, "supported_languages": null}, "macro.fivetran_utils.collect_freshness": {"name": "collect_freshness", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/collect_freshness.sql", "original_file_path": "macros/collect_freshness.sql", "unique_id": "macro.fivetran_utils.collect_freshness", "macro_sql": "{% macro collect_freshness(source, loaded_at_field, filter) %}\n {{ return(adapter.dispatch('collect_freshness')(source, loaded_at_field, filter))}}\n{% endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__collect_freshness"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.3463712, "supported_languages": null}, "macro.fivetran_utils.default__collect_freshness": {"name": "default__collect_freshness", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/collect_freshness.sql", "original_file_path": "macros/collect_freshness.sql", "unique_id": "macro.fivetran_utils.default__collect_freshness", "macro_sql": "{% macro default__collect_freshness(source, loaded_at_field, filter) %}\n {% call statement('collect_freshness', fetch_result=True, auto_begin=False) -%}\n\n {%- set enabled_array = [] -%}\n {% for node in graph.sources.values() %}\n {% if node.identifier == source.identifier %}\n {% if (node.meta['is_enabled'] | default(true)) %}\n {%- do enabled_array.append(1) -%}\n {% endif %}\n {% endif %}\n {% endfor %}\n {% set is_enabled = (enabled_array != []) %}\n\n select\n {% if is_enabled %}\n max({{ loaded_at_field }})\n {% else %} \n {{ current_timestamp() }} {% endif %} as max_loaded_at,\n {{ current_timestamp() }} as snapshotted_at\n\n {% if is_enabled %}\n from {{ source }}\n {% if filter %}\n where {{ filter }}\n {% endif %}\n {% endif %}\n\n {% endcall %}\n {{ return(load_result('collect_freshness').table) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt.current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.3473878, "supported_languages": null}, "macro.fivetran_utils.timestamp_add": {"name": "timestamp_add", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "unique_id": "macro.fivetran_utils.timestamp_add", "macro_sql": "{% macro timestamp_add(datepart, interval, from_timestamp) -%}\n\n{{ adapter.dispatch('timestamp_add', 'fivetran_utils') (datepart, interval, from_timestamp) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.spark__timestamp_add"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.348144, "supported_languages": null}, "macro.fivetran_utils.default__timestamp_add": {"name": "default__timestamp_add", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "unique_id": "macro.fivetran_utils.default__timestamp_add", "macro_sql": "{% macro default__timestamp_add(datepart, interval, from_timestamp) %}\n\n timestampadd(\n {{ datepart }},\n {{ interval }},\n {{ from_timestamp }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.348316, "supported_languages": null}, "macro.fivetran_utils.bigquery__timestamp_add": {"name": "bigquery__timestamp_add", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "unique_id": "macro.fivetran_utils.bigquery__timestamp_add", "macro_sql": "{% macro bigquery__timestamp_add(datepart, interval, from_timestamp) %}\n\n timestamp_add({{ from_timestamp }}, interval {{ interval }} {{ datepart }})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.348486, "supported_languages": null}, "macro.fivetran_utils.redshift__timestamp_add": {"name": "redshift__timestamp_add", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "unique_id": "macro.fivetran_utils.redshift__timestamp_add", "macro_sql": "{% macro redshift__timestamp_add(datepart, interval, from_timestamp) %}\n\n dateadd(\n {{ datepart }},\n {{ interval }},\n {{ from_timestamp }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.348657, "supported_languages": null}, "macro.fivetran_utils.postgres__timestamp_add": {"name": "postgres__timestamp_add", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "unique_id": "macro.fivetran_utils.postgres__timestamp_add", "macro_sql": "{% macro postgres__timestamp_add(datepart, interval, from_timestamp) %}\n\n {{ from_timestamp }} + ((interval '1 {{ datepart }}') * ({{ interval }}))\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.348823, "supported_languages": null}, "macro.fivetran_utils.spark__timestamp_add": {"name": "spark__timestamp_add", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "unique_id": "macro.fivetran_utils.spark__timestamp_add", "macro_sql": "{% macro spark__timestamp_add(datepart, interval, from_timestamp) %}\n\n {{ dbt.dateadd(datepart, interval, from_timestamp) }}\n \n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.3490071, "supported_languages": null}, "macro.fivetran_utils.ceiling": {"name": "ceiling", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/ceiling.sql", "original_file_path": "macros/ceiling.sql", "unique_id": "macro.fivetran_utils.ceiling", "macro_sql": "{% macro ceiling(num) -%}\n\n{{ adapter.dispatch('ceiling', 'fivetran_utils') (num) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__ceiling"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.34927, "supported_languages": null}, "macro.fivetran_utils.default__ceiling": {"name": "default__ceiling", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/ceiling.sql", "original_file_path": "macros/ceiling.sql", "unique_id": "macro.fivetran_utils.default__ceiling", "macro_sql": "{% macro default__ceiling(num) %}\n ceiling({{ num }})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.349377, "supported_languages": null}, "macro.fivetran_utils.snowflake__ceiling": {"name": "snowflake__ceiling", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/ceiling.sql", "original_file_path": "macros/ceiling.sql", "unique_id": "macro.fivetran_utils.snowflake__ceiling", "macro_sql": "{% macro snowflake__ceiling(num) %}\n ceil({{ num }})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.349556, "supported_languages": null}, "macro.fivetran_utils.remove_prefix_from_columns": {"name": "remove_prefix_from_columns", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/remove_prefix_from_columns.sql", "original_file_path": "macros/remove_prefix_from_columns.sql", "unique_id": "macro.fivetran_utils.remove_prefix_from_columns", "macro_sql": "{% macro remove_prefix_from_columns(columns, prefix='', exclude=[]) %}\n\n {%- for col in columns if col.name not in exclude -%}\n {%- if col.name[:prefix|length]|lower == prefix -%}\n {{ col.name }} as {{ col.name[prefix|length:] }}\n {%- else -%}\n {{ col.name }}\n {%- endif -%}\n {%- if not loop.last -%},{%- endif %}\n {% endfor -%}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.35023, "supported_languages": null}, "macro.fivetran_utils.union_data": {"name": "union_data", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/union_data.sql", "original_file_path": "macros/union_data.sql", "unique_id": "macro.fivetran_utils.union_data", "macro_sql": "{%- macro union_data(table_identifier, database_variable, schema_variable, default_database, default_schema, default_variable, union_schema_variable='union_schemas', union_database_variable='union_databases') -%}\n\n{{ adapter.dispatch('union_data', 'fivetran_utils') (\n table_identifier, \n database_variable, \n schema_variable, \n default_database, \n default_schema, \n default_variable,\n union_schema_variable,\n union_database_variable\n ) }}\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.fivetran_utils.default__union_data"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.3540428, "supported_languages": null}, "macro.fivetran_utils.default__union_data": {"name": "default__union_data", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/union_data.sql", "original_file_path": "macros/union_data.sql", "unique_id": "macro.fivetran_utils.default__union_data", "macro_sql": "{%- macro default__union_data(\n table_identifier, \n database_variable, \n schema_variable, \n default_database, \n default_schema, \n default_variable,\n union_schema_variable,\n union_database_variable\n ) -%}\n\n{%- if var(union_schema_variable, none) -%}\n\n {%- set relations = [] -%}\n \n {%- if var(union_schema_variable) is string -%}\n {%- set trimmed = var(union_schema_variable)|trim('[')|trim(']') -%}\n {%- set schemas = trimmed.split(',')|map('trim',\" \")|map('trim','\"')|map('trim',\"'\") -%}\n {%- else -%}\n {%- set schemas = var(union_schema_variable) -%}\n {%- endif -%}\n\n {%- for schema in var(union_schema_variable) -%}\n {%- set relation=adapter.get_relation(\n database=source(schema, table_identifier).database if var('has_defined_sources', false) else var(database_variable, default_database),\n schema=source(schema, table_identifier).schema if var('has_defined_sources', false) else schema,\n identifier=source(schema, table_identifier).identifier if var('has_defined_sources', false) else table_identifier\n ) -%}\n \n {%- set relation_exists=relation is not none -%}\n\n {%- if relation_exists -%}\n {%- do relations.append(relation) -%}\n {%- endif -%}\n\n {%- endfor -%}\n \n {%- if relations != [] -%}\n {{ dbt_utils.union_relations(relations) }}\n {%- else -%}\n {% if execute and not var('fivetran__remove_empty_table_warnings', false) -%}\n {{ exceptions.warn(\"\\n\\nPlease be aware: The \" ~ table_identifier|upper ~ \" table was not found in your \" ~ default_schema|upper ~ \" schema(s). The Fivetran dbt package will create a completely empty \" ~ table_identifier|upper ~ \" staging model as to not break downstream transformations. To turn off these warnings, set the `fivetran__remove_empty_table_warnings` variable to TRUE (see https://github.com/fivetran/dbt_fivetran_utils/tree/releases/v0.4.latest#union_data-source for details).\\n\") }}\n {% endif -%}\n select \n cast(null as {{ dbt.type_string() }}) as _dbt_source_relation\n limit 0\n {%- endif -%}\n\n{%- elif var(union_database_variable, none) -%}\n\n {%- set relations = [] -%}\n\n {%- for database in var(union_database_variable) -%}\n {%- set relation=adapter.get_relation(\n database=source(schema, table_identifier).database if var('has_defined_sources', false) else database,\n schema=source(schema, table_identifier).schema if var('has_defined_sources', false) else var(schema_variable, default_schema),\n identifier=source(schema, table_identifier).identifier if var('has_defined_sources', false) else table_identifier\n ) -%}\n\n {%- set relation_exists=relation is not none -%}\n\n {%- if relation_exists -%}\n {%- do relations.append(relation) -%}\n {%- endif -%}\n\n {%- endfor -%}\n\n {%- if relations != [] -%}\n {{ dbt_utils.union_relations(relations) }}\n {%- else -%}\n {% if execute and not var('fivetran__remove_empty_table_warnings', false) -%}\n {{ exceptions.warn(\"\\n\\nPlease be aware: The \" ~ table_identifier|upper ~ \" table was not found in your \" ~ default_schema|upper ~ \" schema(s). The Fivetran dbt package will create a completely empty \" ~ table_identifier|upper ~ \" staging model as to not break downstream transformations. To turn off these warnings, set the `fivetran__remove_empty_table_warnings` variable to TRUE (see https://github.com/fivetran/dbt_fivetran_utils/tree/releases/v0.4.latest#union_data-source for details).\\n\") }}\n {% endif -%}\n select \n cast(null as {{ dbt.type_string() }}) as _dbt_source_relation\n limit 0\n {%- endif -%}\n\n{%- else -%}\n {% set exception_schemas = {\"linkedin_company_pages\": \"linkedin_pages\", \"instagram_business_pages\": \"instagram_business\"} %}\n {% set relation = namespace(value=\"\") %}\n {% if default_schema in exception_schemas.keys() %}\n {% for corrected_schema_name in exception_schemas.items() %} \n {% if default_schema in corrected_schema_name %}\n {# In order for this macro to effectively work within upstream integration tests (mainly used by the Fivetran dbt package maintainers), this identifier variable selection is required to use the macro with different identifier names. #}\n {% set identifier_var = corrected_schema_name[1] + \"_\" + table_identifier + \"_identifier\" %}\n {%- set relation.value=adapter.get_relation(\n database=source(corrected_schema_name[1], table_identifier).database,\n schema=source(corrected_schema_name[1], table_identifier).schema,\n identifier=var(identifier_var, table_identifier)\n ) -%}\n {% endif %}\n {% endfor %}\n {% else %}\n {# In order for this macro to effectively work within upstream integration tests (mainly used by the Fivetran dbt package maintainers), this identifier variable selection is required to use the macro with different identifier names. #}\n {% set identifier_var = default_schema + \"_\" + table_identifier + \"_identifier\" %}\n {# Unfortunately the Twitter Organic identifiers were misspelled. As such, we will need to account for this in the model. This will be adjusted in the Twitter Organic package, but to ensure backwards compatibility, this needs to be included. #}\n {% if var(identifier_var, none) is none %} \n {% set identifier_var = default_schema + \"_\" + table_identifier + \"_identifer\" %}\n {% endif %}\n {%- set relation.value=adapter.get_relation(\n database=source(default_schema, table_identifier).database,\n schema=source(default_schema, table_identifier).schema,\n identifier=var(identifier_var, table_identifier)\n ) -%}\n {% endif %}\n{%- set table_exists=relation.value is not none -%}\n\n{%- if table_exists -%}\n select * \n from {{ relation.value }}\n{%- else -%}\n {% if execute and not var('fivetran__remove_empty_table_warnings', false) -%}\n {{ exceptions.warn(\"\\n\\nPlease be aware: The \" ~ table_identifier|upper ~ \" table was not found in your \" ~ default_schema|upper ~ \" schema(s). The Fivetran dbt package will create a completely empty \" ~ table_identifier|upper ~ \" staging model as to not break downstream transformations. To turn off these warnings, set the `fivetran__remove_empty_table_warnings` variable to TRUE (see https://github.com/fivetran/dbt_fivetran_utils/tree/releases/v0.4.latest#union_data-source for details).\\n\") }}\n {% endif -%}\n select \n cast(null as {{ dbt.type_string() }}) as _dbt_source_relation\n limit 0\n{%- endif -%}\n{%- endif -%}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_utils.union_relations", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.3588831, "supported_languages": null}, "macro.fivetran_utils.dummy_coalesce_value": {"name": "dummy_coalesce_value", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/dummy_coalesce_value.sql", "original_file_path": "macros/dummy_coalesce_value.sql", "unique_id": "macro.fivetran_utils.dummy_coalesce_value", "macro_sql": "{% macro dummy_coalesce_value(column) %}\n\n{% set coalesce_value = {\n 'STRING': \"'DUMMY_STRING'\",\n 'BOOLEAN': 'null',\n 'INT': 999999999,\n 'FLOAT': 999999999.99,\n 'TIMESTAMP': 'cast(\"2099-12-31\" as timestamp)',\n 'DATE': 'cast(\"2099-12-31\" as date)',\n} %}\n\n{% if column.is_float() %}\n{{ return(coalesce_value['FLOAT']) }}\n\n{% elif column.is_numeric() %}\n{{ return(coalesce_value['INT']) }}\n\n{% elif column.is_string() %}\n{{ return(coalesce_value['STRING']) }}\n\n{% elif column.data_type|lower == 'boolean' %}\n{{ return(coalesce_value['BOOLEAN']) }}\n\n{% elif 'timestamp' in column.data_type|lower %}\n{{ return(coalesce_value['TIMESTAMP']) }}\n\n{% elif 'date' in column.data_type|lower %}\n{{ return(coalesce_value['DATE']) }}\n\n{% elif 'int' in column.data_type|lower %}\n{{ return(coalesce_value['INT']) }}\n\n{% endif %}\n\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.360394, "supported_languages": null}, "macro.fivetran_utils.wrap_in_quotes": {"name": "wrap_in_quotes", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/wrap_in_quotes.sql", "original_file_path": "macros/wrap_in_quotes.sql", "unique_id": "macro.fivetran_utils.wrap_in_quotes", "macro_sql": "{%- macro wrap_in_quotes(object_to_quote) -%}\n\n{{ return(adapter.dispatch('wrap_in_quotes', 'fivetran_utils')(object_to_quote)) }}\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.fivetran_utils.default__wrap_in_quotes"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.3607621, "supported_languages": null}, "macro.fivetran_utils.default__wrap_in_quotes": {"name": "default__wrap_in_quotes", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/wrap_in_quotes.sql", "original_file_path": "macros/wrap_in_quotes.sql", "unique_id": "macro.fivetran_utils.default__wrap_in_quotes", "macro_sql": "{%- macro default__wrap_in_quotes(object_to_quote) -%}\n{# bigquery, spark, databricks #}\n `{{ object_to_quote }}`\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.3608792, "supported_languages": null}, "macro.fivetran_utils.snowflake__wrap_in_quotes": {"name": "snowflake__wrap_in_quotes", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/wrap_in_quotes.sql", "original_file_path": "macros/wrap_in_quotes.sql", "unique_id": "macro.fivetran_utils.snowflake__wrap_in_quotes", "macro_sql": "{%- macro snowflake__wrap_in_quotes(object_to_quote) -%}\n \"{{ object_to_quote | upper }}\"\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.3609972, "supported_languages": null}, "macro.fivetran_utils.redshift__wrap_in_quotes": {"name": "redshift__wrap_in_quotes", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/wrap_in_quotes.sql", "original_file_path": "macros/wrap_in_quotes.sql", "unique_id": "macro.fivetran_utils.redshift__wrap_in_quotes", "macro_sql": "{%- macro redshift__wrap_in_quotes(object_to_quote) -%}\n \"{{ object_to_quote }}\"\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.361102, "supported_languages": null}, "macro.fivetran_utils.postgres__wrap_in_quotes": {"name": "postgres__wrap_in_quotes", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/wrap_in_quotes.sql", "original_file_path": "macros/wrap_in_quotes.sql", "unique_id": "macro.fivetran_utils.postgres__wrap_in_quotes", "macro_sql": "{%- macro postgres__wrap_in_quotes(object_to_quote) -%}\n \"{{ object_to_quote }}\"\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.361208, "supported_languages": null}, "macro.fivetran_utils.array_agg": {"name": "array_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/array_agg.sql", "original_file_path": "macros/array_agg.sql", "unique_id": "macro.fivetran_utils.array_agg", "macro_sql": "{% macro array_agg(field_to_agg) -%}\n\n{{ adapter.dispatch('array_agg', 'fivetran_utils') (field_to_agg) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__array_agg"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.36148, "supported_languages": null}, "macro.fivetran_utils.default__array_agg": {"name": "default__array_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/array_agg.sql", "original_file_path": "macros/array_agg.sql", "unique_id": "macro.fivetran_utils.default__array_agg", "macro_sql": "{% macro default__array_agg(field_to_agg) %}\n array_agg({{ field_to_agg }})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.361589, "supported_languages": null}, "macro.fivetran_utils.redshift__array_agg": {"name": "redshift__array_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/array_agg.sql", "original_file_path": "macros/array_agg.sql", "unique_id": "macro.fivetran_utils.redshift__array_agg", "macro_sql": "{% macro redshift__array_agg(field_to_agg) %}\n listagg({{ field_to_agg }}, ',')\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.361693, "supported_languages": null}, "macro.fivetran_utils.empty_variable_warning": {"name": "empty_variable_warning", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/empty_variable_warning.sql", "original_file_path": "macros/empty_variable_warning.sql", "unique_id": "macro.fivetran_utils.empty_variable_warning", "macro_sql": "{% macro empty_variable_warning(variable, downstream_model) %}\n\n{% if not var(variable) %}\n{{ log(\n \"\"\"\n Warning: You have passed an empty list to the \"\"\" ~ variable ~ \"\"\".\n As a result, you won't see the history of any columns in the \"\"\" ~ downstream_model ~ \"\"\" model.\n \"\"\",\n info=True\n) }}\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.362108, "supported_languages": null}, "macro.fivetran_utils.enabled_vars_one_true": {"name": "enabled_vars_one_true", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/enabled_vars_one_true.sql", "original_file_path": "macros/enabled_vars_one_true.sql", "unique_id": "macro.fivetran_utils.enabled_vars_one_true", "macro_sql": "{% macro enabled_vars_one_true(vars) %}\n\n{% for v in vars %}\n \n {% if var(v, False) == True %}\n {{ return(True) }}\n {% endif %}\n\n{% endfor %}\n\n{{ return(False) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1687556572.3625238, "supported_languages": null}}, "docs": {"doc.dbt.__overview__": {"name": "__overview__", "resource_type": "doc", "package_name": "dbt", "path": "overview.md", "original_file_path": "docs/overview.md", "unique_id": "doc.dbt.__overview__", "block_contents": "### Welcome!\n\nWelcome to the auto-generated documentation for your dbt project!\n\n### Navigation\n\nYou can use the `Project` and `Database` navigation tabs on the left side of the window to explore the models\nin your project.\n\n#### Project Tab\nThe `Project` tab mirrors the directory structure of your dbt project. In this tab, you can see all of the\nmodels defined in your dbt project, as well as models imported from dbt packages.\n\n#### Database Tab\nThe `Database` tab also exposes your models, but in a format that looks more like a database explorer. This view\nshows relations (tables and views) grouped into database schemas. Note that ephemeral models are _not_ shown\nin this interface, as they do not exist in the database.\n\n### Graph Exploration\nYou can click the blue icon on the bottom-right corner of the page to view the lineage graph of your models.\n\nOn model pages, you'll see the immediate parents and children of the model you're exploring. By clicking the `Expand`\nbutton at the top-right of this lineage pane, you'll be able to see all of the models that are used to build,\nor are built from, the model you're exploring.\n\nOnce expanded, you'll be able to use the `--select` and `--exclude` model selection syntax to filter the\nmodels in the graph. For more information on model selection, check out the [dbt docs](https://docs.getdbt.com/docs/model-selection-syntax).\n\nNote that you can also right-click on models to interactively filter and explore the graph.\n\n---\n\n### More information\n\n- [What is dbt](https://docs.getdbt.com/docs/introduction)?\n- Read the [dbt viewpoint](https://docs.getdbt.com/docs/viewpoint)\n- [Installation](https://docs.getdbt.com/docs/installation)\n- Join the [dbt Community](https://www.getdbt.com/community/) for questions and discussion"}}, "exposures": {}, "metrics": {}, "groups": {}, "selectors": {}, "disabled": {"model.iterable.int_iterable__latest_user_device": [{"database": "hive_metastore", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__latest_user_device", "resource_type": "model", "package_name": "iterable", "path": "intermediate/int_iterable__latest_user_device.sql", "original_file_path": "models/intermediate/int_iterable__latest_user_device.sql", "unique_id": "model.iterable.int_iterable__latest_user_device", "fqn": ["iterable", "intermediate", "int_iterable__latest_user_device"], "alias": "int_iterable__latest_user_device", "checksum": {"name": "sha256", "checksum": "f93cbbaf935c4c8cb9e478262ca819ba7b070f17b09023761c726d9865e1931e"}, "config": {"enabled": false, "alias": null, "schema": "int_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that filters out historical versions of user device records, and returns only the most recent version.", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/intermediate/int_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "int_iterable", "enabled": false}, "created_at": 1687556573.270871, "config_call_dict": {"enabled": false}, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_int_iterable`.`int_iterable__latest_user_device`", "raw_code": "{{ config(enabled=var('iterable__using_user_device_history', false)) }}\n\nwith user_device_history as (\n select *\n from {{ var('user_device_history') }}\n\n), order_user_devices as (\n select\n *,\n rank() over(partition by email order by updated_at desc) as latest_device_batch_index\n from user_device_history\n\n), latest_user_device as (\n\n select *\n from order_user_devices\n where latest_device_batch_index = 1\n\n), count_devices as (\n\n select\n email,\n count(distinct platform_endpoint) as count_devices\n \n from latest_user_device\n\n group by 1\n)\n\nselect *\nfrom count_devices", "language": "sql", "refs": [{"name": "stg_iterable__user_device_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": [], "nodes": []}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}], "model.iterable.int_iterable__custom_events": [{"database": "hive_metastore", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__custom_events", "resource_type": "model", "package_name": "iterable", "path": "intermediate/int_iterable__custom_events.sql", "original_file_path": "models/intermediate/int_iterable__custom_events.sql", "unique_id": "model.iterable.int_iterable__custom_events", "fqn": ["iterable", "intermediate", "int_iterable__custom_events"], "alias": "int_iterable__custom_events", "checksum": {"name": "sha256", "checksum": "51fef39a4b02b343265cd2bf6b93d93492871f2cd1a00da8ad6b9d5e1adaf570"}, "config": {"enabled": false, "alias": null, "schema": "int_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": "event_id", "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "file_format": "delta", "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "incremental", "schema": "int_iterable", "unique_key": "event_id", "incremental_strategy": "merge", "file_format": "delta", "enabled": false}, "created_at": 1687556572.8832262, "config_call_dict": {"materialized": "incremental", "unique_key": "event_id", "incremental_strategy": "merge", "file_format": "delta", "enabled": false}, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_int_iterable`.`int_iterable__custom_events`", "raw_code": "{{\n config(\n materialized='incremental',\n unique_key='event_id',\n incremental_strategy = 'merge',\n file_format = 'delta',\n enabled=false\n )\n}}\n\n-- leave this alone for now....setting enabled to false\nwith events as (\n\n select *\n from {{ var('event') }}\n\n where lower(event_name) = 'customevent'\n {% if is_incremental() %}\n and updated_at > ( select max(updated_at) from {{ this }} )\n {% endif %}\n\n), custom_events as (\n\n select \n events.*\n {# {{ dbt.split_part(string_text='additional_properties', delimiter_text=' : \"{', part_number=1) }} #}\n\n {% if target.type == 'snowflake' %}\n ,\n additional_properties.key as custom_event_name,\n additional_properties.value as custom_event_metadata\n {% endif %}\n from events\n\n \n {% if target.type == 'snowflake' %}\n cross join \n table(flatten(additional_properties)) as additional_properties\n where additional_properties.key != '_id'\n {% endif %}\n)\n\nselect *\nfrom custom_events", "language": "sql", "refs": [{"name": "stg_iterable__event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.is_incremental"], "nodes": []}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}], "model.iterable_source.stg_iterable__user_device_history": [{"database": "hive_metastore", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__user_device_history", "resource_type": "model", "package_name": "iterable_source", "path": "stg_iterable__user_device_history.sql", "original_file_path": "models/stg_iterable__user_device_history.sql", "unique_id": "model.iterable_source.stg_iterable__user_device_history", "fqn": ["iterable_source", "stg_iterable__user_device_history"], "alias": "stg_iterable__user_device_history", "checksum": {"name": "sha256", "checksum": "02ab247676a14c9041dff269329ca253fc81ebecb89b47afd1d567784e6c3a74"}, "config": {"enabled": false, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table capturing the history of devices associated with in-app and push notifications to a user.", "columns": {"application_name": {"name": "application_name", "description": "The Iterable push integration to associate with the device token. Usually matches the package name (or bundle ID) of the relevant mobile app. \n", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email": {"name": "email", "description": "User email associated with the device.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "index": {"name": "index", "description": "Index representing the order in which devices were added to a user.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "platform": {"name": "platform", "description": "The device platform. Can be APNS, APNS_SANDBOX or GCM", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "platform_endpoint": {"name": "platform_endpoint", "description": "The platform's endpoint.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_endpoint_enabled": {"name": "is_endpoint_enabled", "description": "Boolean that is true if the user has not disabled Push notifications and their endpoint remains enabled.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Timestamp of when this device was updated last.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable_source://models/stg_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "stg_iterable", "enabled": false}, "created_at": 1687556573.301599, "config_call_dict": {"enabled": false}, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_stg_iterable`.`stg_iterable__user_device_history`", "raw_code": "{{ config(enabled=var('iterable__using_user_device_history', false)) }}\n\n-- todo: may want to make this ephemeral or do the window functions to select the final batch of devices here\nwith base as (\n\n select * \n from {{ ref('stg_iterable__user_device_history_tmp') }}\n\n),\n\nfields as (\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_iterable__user_device_history_tmp')),\n staging_columns=get_user_device_history_columns()\n )\n }}\n \n from base\n),\n\nfinal as (\n \n select\n application_name,\n email,\n index,\n platform,\n platform_endpoint,\n endpoint_enabled as is_endpoint_enabled,\n updated_at,\n _fivetran_synced\n\n from fields\n)\n\nselect * from final", "language": "sql", "refs": [{"name": "stg_iterable__user_device_history_tmp", "package": null, "version": null}, {"name": "stg_iterable__user_device_history_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.iterable_source.get_user_device_history_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": []}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}], "model.iterable_source.stg_iterable__user_device_history_tmp": [{"database": "hive_metastore", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__user_device_history_tmp", "resource_type": "model", "package_name": "iterable_source", "path": "tmp/stg_iterable__user_device_history_tmp.sql", "original_file_path": "models/tmp/stg_iterable__user_device_history_tmp.sql", "unique_id": "model.iterable_source.stg_iterable__user_device_history_tmp", "fqn": ["iterable_source", "tmp", "stg_iterable__user_device_history_tmp"], "alias": "stg_iterable__user_device_history_tmp", "checksum": {"name": "sha256", "checksum": "45d7fa5c44a93c6150d38bd85e37b98dc96d02b0b89ff9c7aae59b4efba18a2c"}, "config": {"enabled": false, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable", "enabled": false}, "created_at": 1687556573.104915, "config_call_dict": {"enabled": false}, "relation_name": "`hive_metastore`.`iterable_integration_tests_03_stg_iterable`.`stg_iterable__user_device_history_tmp`", "raw_code": "{{ config(enabled=var('iterable__using_user_device_history', false)) }}\n\nselect * \nfrom {{ var('user_device_history') }}", "language": "sql", "refs": [], "sources": [["iterable", "user_device_history"]], "metrics": [], "depends_on": {"macros": [], "nodes": []}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}]}, "parent_map": {"seed.iterable_integration_tests.user_unsubscribed_message_type_history_data": [], "seed.iterable_integration_tests.user_history_data": [], "seed.iterable_integration_tests.campaign_suppression_list_history_data": [], "seed.iterable_integration_tests.campaign_list_history_data": [], "seed.iterable_integration_tests.template_history_data": [], "seed.iterable_integration_tests.event_extension_data": [], "seed.iterable_integration_tests.channel_data": [], "seed.iterable_integration_tests.user_unsubscribed_channel_history_data": [], "seed.iterable_integration_tests.user_device_history_data": [], "seed.iterable_integration_tests.campaign_label_history_data": [], "seed.iterable_integration_tests.campaign_history_data": [], "seed.iterable_integration_tests.message_type_data": [], "seed.iterable_integration_tests.campaign_metrics_data": [], "seed.iterable_integration_tests.list_data": [], "seed.iterable_integration_tests.event_data": [], "model.iterable.iterable__events": ["model.iterable.int_iterable__latest_template", "model.iterable.int_iterable__latest_user", "model.iterable.int_iterable__message_type_channel", "model.iterable.int_iterable__recurring_campaigns", "model.iterable_source.stg_iterable__event", "model.iterable_source.stg_iterable__event_extension", "model.iterable_source.stg_iterable__event_extension"], "model.iterable.iterable__campaigns": ["model.iterable.int_iterable__campaign_event_metrics", "model.iterable.int_iterable__campaign_event_metrics", "model.iterable.int_iterable__campaign_labels", "model.iterable.int_iterable__campaign_lists", "model.iterable.int_iterable__latest_template", "model.iterable.int_iterable__recurring_campaigns"], "model.iterable.iterable__user_unsubscriptions": ["model.iterable.int_iterable__message_type_channel", "model.iterable_source.stg_iterable__user_unsub_message_type_history", "model.iterable_source.stg_iterable__user_unsubscribed_channel_history"], "model.iterable.iterable__users": ["model.iterable.int_iterable__list_user_unnest", "model.iterable.int_iterable__user_event_metrics", "model.iterable.int_iterable__user_event_metrics"], "model.iterable.iterable__user_campaign": ["model.iterable.iterable__events"], "model.iterable.iterable__list_user_history": ["model.iterable.int_iterable__list_user_unnest", "model.iterable_source.stg_iterable__list"], "model.iterable.int_iterable__list_user_unnest": ["model.iterable.int_iterable__list_user_history"], "model.iterable.int_iterable__latest_campaign": ["model.iterable_source.stg_iterable__campaign_history"], "model.iterable.int_iterable__campaign_event_metrics": ["model.iterable.iterable__user_campaign", "model.iterable.iterable__user_campaign"], "model.iterable.int_iterable__campaign_lists": ["model.iterable_source.stg_iterable__campaign_list_history", "model.iterable_source.stg_iterable__campaign_suppression_list_history"], "model.iterable.int_iterable__latest_user": ["model.iterable_source.stg_iterable__user_history"], "model.iterable.int_iterable__campaign_labels": ["model.iterable_source.stg_iterable__campaign_label_history"], "model.iterable.int_iterable__message_type_channel": ["model.iterable_source.stg_iterable__channel", "model.iterable_source.stg_iterable__message_type"], "model.iterable.int_iterable__latest_template": ["model.iterable.int_iterable__message_type_channel", "model.iterable_source.stg_iterable__template_history"], "model.iterable.int_iterable__user_event_metrics": ["model.iterable.iterable__user_campaign", "model.iterable.iterable__user_campaign"], "model.iterable.int_iterable__list_user_history": ["model.iterable_source.stg_iterable__user_history"], "model.iterable.int_iterable__recurring_campaigns": ["model.iterable.int_iterable__latest_campaign"], "model.iterable_source.stg_iterable__user_unsub_message_type_history": ["model.iterable_source.stg_iterable__user_unsub_message_type_history_tmp", "model.iterable_source.stg_iterable__user_unsub_message_type_history_tmp"], "model.iterable_source.stg_iterable__event_extension": ["model.iterable_source.stg_iterable__event_extension_tmp", "model.iterable_source.stg_iterable__event_extension_tmp"], "model.iterable_source.stg_iterable__list": ["model.iterable_source.stg_iterable__list_tmp", "model.iterable_source.stg_iterable__list_tmp"], "model.iterable_source.stg_iterable__campaign_suppression_list_history": ["model.iterable_source.stg_iterable__campaign_suppression_list_history_tmp", "model.iterable_source.stg_iterable__campaign_suppression_list_history_tmp"], "model.iterable_source.stg_iterable__campaign_list_history": ["model.iterable_source.stg_iterable__campaign_list_history_tmp", "model.iterable_source.stg_iterable__campaign_list_history_tmp"], "model.iterable_source.stg_iterable__user_history": ["model.iterable_source.stg_iterable__user_history_tmp", "model.iterable_source.stg_iterable__user_history_tmp"], "model.iterable_source.stg_iterable__campaign_label_history": ["model.iterable_source.stg_iterable__campaign_label_history_tmp", "model.iterable_source.stg_iterable__campaign_label_history_tmp"], "model.iterable_source.stg_iterable__event": ["model.iterable_source.stg_iterable__event_tmp", "model.iterable_source.stg_iterable__event_tmp"], "model.iterable_source.stg_iterable__user_unsubscribed_channel_history": ["model.iterable_source.stg_iterable__user_unsubscribed_channel_history_tmp", "model.iterable_source.stg_iterable__user_unsubscribed_channel_history_tmp"], "model.iterable_source.stg_iterable__template_history": ["model.iterable_source.stg_iterable__template_history_tmp", "model.iterable_source.stg_iterable__template_history_tmp"], "model.iterable_source.stg_iterable__channel": ["model.iterable_source.stg_iterable__channel_tmp", "model.iterable_source.stg_iterable__channel_tmp"], "model.iterable_source.stg_iterable__campaign_history": ["model.iterable_source.stg_iterable__campaign_history_tmp", "model.iterable_source.stg_iterable__campaign_history_tmp"], "model.iterable_source.stg_iterable__message_type": ["model.iterable_source.stg_iterable__message_type_tmp", "model.iterable_source.stg_iterable__message_type_tmp"], "model.iterable_source.stg_iterable__campaign_history_tmp": ["source.iterable_source.iterable.campaign_history"], "model.iterable_source.stg_iterable__list_tmp": ["source.iterable_source.iterable.list"], "model.iterable_source.stg_iterable__campaign_suppression_list_history_tmp": ["source.iterable_source.iterable.campaign_suppression_list_history"], "model.iterable_source.stg_iterable__template_history_tmp": ["source.iterable_source.iterable.template_history"], "model.iterable_source.stg_iterable__campaign_list_history_tmp": ["source.iterable_source.iterable.campaign_list_history"], "model.iterable_source.stg_iterable__channel_tmp": ["source.iterable_source.iterable.channel"], "model.iterable_source.stg_iterable__event_tmp": ["source.iterable_source.iterable.event"], "model.iterable_source.stg_iterable__user_unsubscribed_channel_history_tmp": ["source.iterable_source.iterable.user_unsubscribed_channel_history"], "model.iterable_source.stg_iterable__user_unsub_message_type_history_tmp": ["source.iterable_source.iterable.user_unsubscribed_message_type_history"], "model.iterable_source.stg_iterable__event_extension_tmp": ["source.iterable_source.iterable.event_extension"], "model.iterable_source.stg_iterable__campaign_label_history_tmp": ["source.iterable_source.iterable.campaign_label_history"], "model.iterable_source.stg_iterable__user_history_tmp": ["source.iterable_source.iterable.user_history"], "model.iterable_source.stg_iterable__message_type_tmp": ["source.iterable_source.iterable.message_type"], "test.iterable.not_null_iterable__campaigns_campaign_id.03c9448919": ["model.iterable.iterable__campaigns"], "test.iterable.dbt_utils_unique_combination_of_columns_iterable__campaigns_campaign_id__experiment_id.be21d4243f": ["model.iterable.iterable__campaigns"], "test.iterable.unique_iterable__events_event_id.93e30d3c2c": ["model.iterable.iterable__events"], "test.iterable.not_null_iterable__events_event_id.ed1d28a650": ["model.iterable.iterable__events"], "test.iterable.dbt_utils_unique_combination_of_columns_iterable__list_user_history_user_email__list_id__user_updated_at.3d3daf3864": ["model.iterable.iterable__list_user_history"], "test.iterable.not_null_iterable__user_campaign_user_email.e040b968fa": ["model.iterable.iterable__user_campaign"], "test.iterable.dbt_utils_unique_combination_of_columns_iterable__user_campaign_user_email__campaign_id__experiment_id.e8e117b7aa": ["model.iterable.iterable__user_campaign"], "test.iterable.dbt_utils_unique_combination_of_columns_iterable__user_unsubscriptions_email__message_type_id__is_unsubscribed_channel_wide.08cf764cb7": ["model.iterable.iterable__user_unsubscriptions"], "test.iterable.unique_iterable__users_email.5917fa5069": ["model.iterable.iterable__users"], "test.iterable.not_null_iterable__users_email.ffe9c8a4c4": ["model.iterable.iterable__users"], "test.iterable_source.not_null_stg_iterable__campaign_history_campaign_id.b7c36e4525": ["model.iterable_source.stg_iterable__campaign_history"], "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__campaign_history_campaign_id__updated_at.81e1a1b9b5": ["model.iterable_source.stg_iterable__campaign_history"], "test.iterable_source.not_null_stg_iterable__campaign_label_history_campaign_id.1918cef89a": ["model.iterable_source.stg_iterable__campaign_label_history"], "test.iterable_source.not_null_stg_iterable__campaign_list_history_campaign_id.208f9bf9ed": ["model.iterable_source.stg_iterable__campaign_list_history"], "test.iterable_source.not_null_stg_iterable__campaign_suppression_list_history_campaign_id.3921289710": ["model.iterable_source.stg_iterable__campaign_suppression_list_history"], "test.iterable_source.unique_stg_iterable__channel_channel_id.fc1eec7fbc": ["model.iterable_source.stg_iterable__channel"], "test.iterable_source.not_null_stg_iterable__channel_channel_id.182ceb9636": ["model.iterable_source.stg_iterable__channel"], "test.iterable_source.unique_stg_iterable__event_event_id.ddb8510fc1": ["model.iterable_source.stg_iterable__event"], "test.iterable_source.not_null_stg_iterable__event_event_id.370cd4bc9d": ["model.iterable_source.stg_iterable__event"], "test.iterable_source.unique_stg_iterable__event_extension_event_id.4553cb5979": ["model.iterable_source.stg_iterable__event_extension"], "test.iterable_source.not_null_stg_iterable__event_extension_event_id.144dedcd30": ["model.iterable_source.stg_iterable__event_extension"], "test.iterable_source.unique_stg_iterable__list_list_id.1e73c3def7": ["model.iterable_source.stg_iterable__list"], "test.iterable_source.not_null_stg_iterable__list_list_id.47029d839a": ["model.iterable_source.stg_iterable__list"], "test.iterable_source.unique_stg_iterable__message_type_message_type_id.0f75f83a34": ["model.iterable_source.stg_iterable__message_type"], "test.iterable_source.not_null_stg_iterable__message_type_message_type_id.75eaa6fa62": ["model.iterable_source.stg_iterable__message_type"], "test.iterable_source.not_null_stg_iterable__template_history_template_id.14b24a1dfe": ["model.iterable_source.stg_iterable__template_history"], "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__template_history_template_id__updated_at.e0b90faa8d": ["model.iterable_source.stg_iterable__template_history"], "test.iterable_source.not_null_stg_iterable__user_history_email.14ff93a17c": ["model.iterable_source.stg_iterable__user_history"], "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__user_history_email__updated_at.cb12f59c15": ["model.iterable_source.stg_iterable__user_history"], "test.iterable_source.not_null_stg_iterable__user_unsubscribed_channel_history_channel_id.b4667878b9": ["model.iterable_source.stg_iterable__user_unsubscribed_channel_history"], "test.iterable_source.not_null_stg_iterable__user_unsub_message_type_history_message_type_id.948c8b7127": ["model.iterable_source.stg_iterable__user_unsub_message_type_history"], "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__user_device_history_email__updated_at__index.9c0dac7320": [], "source.iterable_source.iterable.campaign_history": [], "source.iterable_source.iterable.campaign_label_history": [], "source.iterable_source.iterable.campaign_list_history": [], "source.iterable_source.iterable.campaign_suppression_list_history": [], "source.iterable_source.iterable.channel": [], "source.iterable_source.iterable.event": [], "source.iterable_source.iterable.event_extension": [], "source.iterable_source.iterable.list": [], "source.iterable_source.iterable.message_type": [], "source.iterable_source.iterable.template_history": [], "source.iterable_source.iterable.user_history": [], "source.iterable_source.iterable.user_device_history": [], "source.iterable_source.iterable.user_unsubscribed_channel_history": [], "source.iterable_source.iterable.user_unsubscribed_message_type_history": []}, "child_map": {"seed.iterable_integration_tests.user_unsubscribed_message_type_history_data": [], "seed.iterable_integration_tests.user_history_data": [], "seed.iterable_integration_tests.campaign_suppression_list_history_data": [], "seed.iterable_integration_tests.campaign_list_history_data": [], "seed.iterable_integration_tests.template_history_data": [], "seed.iterable_integration_tests.event_extension_data": [], "seed.iterable_integration_tests.channel_data": [], "seed.iterable_integration_tests.user_unsubscribed_channel_history_data": [], "seed.iterable_integration_tests.user_device_history_data": [], "seed.iterable_integration_tests.campaign_label_history_data": [], "seed.iterable_integration_tests.campaign_history_data": [], "seed.iterable_integration_tests.message_type_data": [], "seed.iterable_integration_tests.campaign_metrics_data": [], "seed.iterable_integration_tests.list_data": [], "seed.iterable_integration_tests.event_data": [], "model.iterable.iterable__events": ["model.iterable.iterable__user_campaign", "test.iterable.not_null_iterable__events_event_id.ed1d28a650", "test.iterable.unique_iterable__events_event_id.93e30d3c2c"], "model.iterable.iterable__campaigns": ["test.iterable.dbt_utils_unique_combination_of_columns_iterable__campaigns_campaign_id__experiment_id.be21d4243f", "test.iterable.not_null_iterable__campaigns_campaign_id.03c9448919"], "model.iterable.iterable__user_unsubscriptions": ["test.iterable.dbt_utils_unique_combination_of_columns_iterable__user_unsubscriptions_email__message_type_id__is_unsubscribed_channel_wide.08cf764cb7"], "model.iterable.iterable__users": ["test.iterable.not_null_iterable__users_email.ffe9c8a4c4", "test.iterable.unique_iterable__users_email.5917fa5069"], "model.iterable.iterable__user_campaign": ["model.iterable.int_iterable__campaign_event_metrics", "model.iterable.int_iterable__campaign_event_metrics", "model.iterable.int_iterable__user_event_metrics", "model.iterable.int_iterable__user_event_metrics", "test.iterable.dbt_utils_unique_combination_of_columns_iterable__user_campaign_user_email__campaign_id__experiment_id.e8e117b7aa", "test.iterable.not_null_iterable__user_campaign_user_email.e040b968fa"], "model.iterable.iterable__list_user_history": ["test.iterable.dbt_utils_unique_combination_of_columns_iterable__list_user_history_user_email__list_id__user_updated_at.3d3daf3864"], "model.iterable.int_iterable__list_user_unnest": ["model.iterable.iterable__list_user_history", "model.iterable.iterable__users"], "model.iterable.int_iterable__latest_campaign": ["model.iterable.int_iterable__recurring_campaigns"], "model.iterable.int_iterable__campaign_event_metrics": ["model.iterable.iterable__campaigns", "model.iterable.iterable__campaigns"], "model.iterable.int_iterable__campaign_lists": ["model.iterable.iterable__campaigns"], "model.iterable.int_iterable__latest_user": ["model.iterable.iterable__events"], "model.iterable.int_iterable__campaign_labels": ["model.iterable.iterable__campaigns"], "model.iterable.int_iterable__message_type_channel": ["model.iterable.int_iterable__latest_template", "model.iterable.iterable__events", "model.iterable.iterable__user_unsubscriptions"], "model.iterable.int_iterable__latest_template": ["model.iterable.iterable__campaigns", "model.iterable.iterable__events"], "model.iterable.int_iterable__user_event_metrics": ["model.iterable.iterable__users", "model.iterable.iterable__users"], "model.iterable.int_iterable__list_user_history": ["model.iterable.int_iterable__list_user_unnest"], "model.iterable.int_iterable__recurring_campaigns": ["model.iterable.iterable__campaigns", "model.iterable.iterable__events"], "model.iterable_source.stg_iterable__user_unsub_message_type_history": ["model.iterable.iterable__user_unsubscriptions", "test.iterable_source.not_null_stg_iterable__user_unsub_message_type_history_message_type_id.948c8b7127"], "model.iterable_source.stg_iterable__event_extension": ["model.iterable.iterable__events", "model.iterable.iterable__events", "test.iterable_source.not_null_stg_iterable__event_extension_event_id.144dedcd30", "test.iterable_source.unique_stg_iterable__event_extension_event_id.4553cb5979"], "model.iterable_source.stg_iterable__list": ["model.iterable.iterable__list_user_history", "test.iterable_source.not_null_stg_iterable__list_list_id.47029d839a", "test.iterable_source.unique_stg_iterable__list_list_id.1e73c3def7"], "model.iterable_source.stg_iterable__campaign_suppression_list_history": ["model.iterable.int_iterable__campaign_lists", "test.iterable_source.not_null_stg_iterable__campaign_suppression_list_history_campaign_id.3921289710"], "model.iterable_source.stg_iterable__campaign_list_history": ["model.iterable.int_iterable__campaign_lists", "test.iterable_source.not_null_stg_iterable__campaign_list_history_campaign_id.208f9bf9ed"], "model.iterable_source.stg_iterable__user_history": ["model.iterable.int_iterable__latest_user", "model.iterable.int_iterable__list_user_history", "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__user_history_email__updated_at.cb12f59c15", "test.iterable_source.not_null_stg_iterable__user_history_email.14ff93a17c"], "model.iterable_source.stg_iterable__campaign_label_history": ["model.iterable.int_iterable__campaign_labels", "test.iterable_source.not_null_stg_iterable__campaign_label_history_campaign_id.1918cef89a"], "model.iterable_source.stg_iterable__event": ["model.iterable.iterable__events", "test.iterable_source.not_null_stg_iterable__event_event_id.370cd4bc9d", "test.iterable_source.unique_stg_iterable__event_event_id.ddb8510fc1"], "model.iterable_source.stg_iterable__user_unsubscribed_channel_history": ["model.iterable.iterable__user_unsubscriptions", "test.iterable_source.not_null_stg_iterable__user_unsubscribed_channel_history_channel_id.b4667878b9"], "model.iterable_source.stg_iterable__template_history": ["model.iterable.int_iterable__latest_template", "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__template_history_template_id__updated_at.e0b90faa8d", "test.iterable_source.not_null_stg_iterable__template_history_template_id.14b24a1dfe"], "model.iterable_source.stg_iterable__channel": ["model.iterable.int_iterable__message_type_channel", "test.iterable_source.not_null_stg_iterable__channel_channel_id.182ceb9636", "test.iterable_source.unique_stg_iterable__channel_channel_id.fc1eec7fbc"], "model.iterable_source.stg_iterable__campaign_history": ["model.iterable.int_iterable__latest_campaign", "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__campaign_history_campaign_id__updated_at.81e1a1b9b5", "test.iterable_source.not_null_stg_iterable__campaign_history_campaign_id.b7c36e4525"], "model.iterable_source.stg_iterable__message_type": ["model.iterable.int_iterable__message_type_channel", "test.iterable_source.not_null_stg_iterable__message_type_message_type_id.75eaa6fa62", "test.iterable_source.unique_stg_iterable__message_type_message_type_id.0f75f83a34"], "model.iterable_source.stg_iterable__campaign_history_tmp": ["model.iterable_source.stg_iterable__campaign_history", "model.iterable_source.stg_iterable__campaign_history"], "model.iterable_source.stg_iterable__list_tmp": ["model.iterable_source.stg_iterable__list", "model.iterable_source.stg_iterable__list"], "model.iterable_source.stg_iterable__campaign_suppression_list_history_tmp": ["model.iterable_source.stg_iterable__campaign_suppression_list_history", "model.iterable_source.stg_iterable__campaign_suppression_list_history"], "model.iterable_source.stg_iterable__template_history_tmp": ["model.iterable_source.stg_iterable__template_history", "model.iterable_source.stg_iterable__template_history"], "model.iterable_source.stg_iterable__campaign_list_history_tmp": ["model.iterable_source.stg_iterable__campaign_list_history", "model.iterable_source.stg_iterable__campaign_list_history"], "model.iterable_source.stg_iterable__channel_tmp": ["model.iterable_source.stg_iterable__channel", "model.iterable_source.stg_iterable__channel"], "model.iterable_source.stg_iterable__event_tmp": ["model.iterable_source.stg_iterable__event", "model.iterable_source.stg_iterable__event"], "model.iterable_source.stg_iterable__user_unsubscribed_channel_history_tmp": ["model.iterable_source.stg_iterable__user_unsubscribed_channel_history", "model.iterable_source.stg_iterable__user_unsubscribed_channel_history"], "model.iterable_source.stg_iterable__user_unsub_message_type_history_tmp": ["model.iterable_source.stg_iterable__user_unsub_message_type_history", "model.iterable_source.stg_iterable__user_unsub_message_type_history"], "model.iterable_source.stg_iterable__event_extension_tmp": ["model.iterable_source.stg_iterable__event_extension", "model.iterable_source.stg_iterable__event_extension"], "model.iterable_source.stg_iterable__campaign_label_history_tmp": ["model.iterable_source.stg_iterable__campaign_label_history", "model.iterable_source.stg_iterable__campaign_label_history"], "model.iterable_source.stg_iterable__user_history_tmp": ["model.iterable_source.stg_iterable__user_history", "model.iterable_source.stg_iterable__user_history"], "model.iterable_source.stg_iterable__message_type_tmp": ["model.iterable_source.stg_iterable__message_type", "model.iterable_source.stg_iterable__message_type"], "test.iterable.not_null_iterable__campaigns_campaign_id.03c9448919": [], "test.iterable.dbt_utils_unique_combination_of_columns_iterable__campaigns_campaign_id__experiment_id.be21d4243f": [], "test.iterable.unique_iterable__events_event_id.93e30d3c2c": [], "test.iterable.not_null_iterable__events_event_id.ed1d28a650": [], "test.iterable.dbt_utils_unique_combination_of_columns_iterable__list_user_history_user_email__list_id__user_updated_at.3d3daf3864": [], "test.iterable.not_null_iterable__user_campaign_user_email.e040b968fa": [], "test.iterable.dbt_utils_unique_combination_of_columns_iterable__user_campaign_user_email__campaign_id__experiment_id.e8e117b7aa": [], "test.iterable.dbt_utils_unique_combination_of_columns_iterable__user_unsubscriptions_email__message_type_id__is_unsubscribed_channel_wide.08cf764cb7": [], "test.iterable.unique_iterable__users_email.5917fa5069": [], "test.iterable.not_null_iterable__users_email.ffe9c8a4c4": [], "test.iterable_source.not_null_stg_iterable__campaign_history_campaign_id.b7c36e4525": [], "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__campaign_history_campaign_id__updated_at.81e1a1b9b5": [], "test.iterable_source.not_null_stg_iterable__campaign_label_history_campaign_id.1918cef89a": [], "test.iterable_source.not_null_stg_iterable__campaign_list_history_campaign_id.208f9bf9ed": [], "test.iterable_source.not_null_stg_iterable__campaign_suppression_list_history_campaign_id.3921289710": [], "test.iterable_source.unique_stg_iterable__channel_channel_id.fc1eec7fbc": [], "test.iterable_source.not_null_stg_iterable__channel_channel_id.182ceb9636": [], "test.iterable_source.unique_stg_iterable__event_event_id.ddb8510fc1": [], "test.iterable_source.not_null_stg_iterable__event_event_id.370cd4bc9d": [], "test.iterable_source.unique_stg_iterable__event_extension_event_id.4553cb5979": [], "test.iterable_source.not_null_stg_iterable__event_extension_event_id.144dedcd30": [], "test.iterable_source.unique_stg_iterable__list_list_id.1e73c3def7": [], "test.iterable_source.not_null_stg_iterable__list_list_id.47029d839a": [], "test.iterable_source.unique_stg_iterable__message_type_message_type_id.0f75f83a34": [], "test.iterable_source.not_null_stg_iterable__message_type_message_type_id.75eaa6fa62": [], "test.iterable_source.not_null_stg_iterable__template_history_template_id.14b24a1dfe": [], "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__template_history_template_id__updated_at.e0b90faa8d": [], "test.iterable_source.not_null_stg_iterable__user_history_email.14ff93a17c": [], "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__user_history_email__updated_at.cb12f59c15": [], "test.iterable_source.not_null_stg_iterable__user_unsubscribed_channel_history_channel_id.b4667878b9": [], "test.iterable_source.not_null_stg_iterable__user_unsub_message_type_history_message_type_id.948c8b7127": [], "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__user_device_history_email__updated_at__index.9c0dac7320": [], "source.iterable_source.iterable.campaign_history": ["model.iterable_source.stg_iterable__campaign_history_tmp"], "source.iterable_source.iterable.campaign_label_history": ["model.iterable_source.stg_iterable__campaign_label_history_tmp"], "source.iterable_source.iterable.campaign_list_history": ["model.iterable_source.stg_iterable__campaign_list_history_tmp"], "source.iterable_source.iterable.campaign_suppression_list_history": ["model.iterable_source.stg_iterable__campaign_suppression_list_history_tmp"], "source.iterable_source.iterable.channel": ["model.iterable_source.stg_iterable__channel_tmp"], "source.iterable_source.iterable.event": ["model.iterable_source.stg_iterable__event_tmp"], "source.iterable_source.iterable.event_extension": ["model.iterable_source.stg_iterable__event_extension_tmp"], "source.iterable_source.iterable.list": ["model.iterable_source.stg_iterable__list_tmp"], "source.iterable_source.iterable.message_type": ["model.iterable_source.stg_iterable__message_type_tmp"], "source.iterable_source.iterable.template_history": ["model.iterable_source.stg_iterable__template_history_tmp"], "source.iterable_source.iterable.user_history": ["model.iterable_source.stg_iterable__user_history_tmp"], "source.iterable_source.iterable.user_device_history": [], "source.iterable_source.iterable.user_unsubscribed_channel_history": ["model.iterable_source.stg_iterable__user_unsubscribed_channel_history_tmp"], "source.iterable_source.iterable.user_unsubscribed_message_type_history": ["model.iterable_source.stg_iterable__user_unsub_message_type_history_tmp"]}, "group_map": {}} \ No newline at end of file +{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/manifest/v9.json", "dbt_version": "1.5.2", "generated_at": "2023-07-06T19:56:52.886169Z", "invocation_id": "66964340-d877-4856-8b35-70c76ccfd3d8", "env": {}, "project_id": "726648524a3768595307d45548dac26e", "user_id": "8268eefe-e8f7-472e-ab2a-a92f0135d76d", "send_anonymous_usage_stats": true, "adapter_type": "postgres"}, "nodes": {"seed.iterable_integration_tests.user_unsubscribed_message_type_history_data": {"database": "postgres", "schema": "iterable_integration_tests_03", "name": "user_unsubscribed_message_type_history_data", "resource_type": "seed", "package_name": "iterable_integration_tests", "path": "user_unsubscribed_message_type_history_data.csv", "original_file_path": "seeds/user_unsubscribed_message_type_history_data.csv", "unique_id": "seed.iterable_integration_tests.user_unsubscribed_message_type_history_data", "fqn": ["iterable_integration_tests", "user_unsubscribed_message_type_history_data"], "alias": "user_unsubscribed_message_type_history_data", "checksum": {"name": "sha256", "checksum": "fc48afe6cd985667c411e549e65f6ced089d09f40ec2cdc80dd6ae59d7204c0d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "message_type_id": "bigint"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": false, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"quote_columns": "{{ true if target.type == 'redshift' else false }}", "column_types": {"message_type_id": "{%- if target.type == 'bigquery' -%} INT64 {%- else -%} bigint {%- endif -%}"}}, "created_at": 1688673390.029048, "relation_name": "\"postgres\".\"iterable_integration_tests_03\".\"user_unsubscribed_message_type_history_data\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "depends_on": {"macros": []}}, "seed.iterable_integration_tests.user_history_data": {"database": "postgres", "schema": "iterable_integration_tests_03", "name": "user_history_data", "resource_type": "seed", "package_name": "iterable_integration_tests", "path": "user_history_data.csv", "original_file_path": "seeds/user_history_data.csv", "unique_id": "seed.iterable_integration_tests.user_history_data", "fqn": ["iterable_integration_tests", "user_history_data"], "alias": "user_history_data", "checksum": {"name": "sha256", "checksum": "89aa99b15681c6e66f0c3ac57ae78d98cdca35c4284af1a4ee724037ebd80ad9"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "updated_at": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": false, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"quote_columns": "{{ true if target.type == 'redshift' else false }}", "column_types": {"updated_at": "timestamp"}}, "created_at": 1688673390.037612, "relation_name": "\"postgres\".\"iterable_integration_tests_03\".\"user_history_data\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "depends_on": {"macros": []}}, "seed.iterable_integration_tests.campaign_suppression_list_history_data": {"database": "postgres", "schema": "iterable_integration_tests_03", "name": "campaign_suppression_list_history_data", "resource_type": "seed", "package_name": "iterable_integration_tests", "path": "campaign_suppression_list_history_data.csv", "original_file_path": "seeds/campaign_suppression_list_history_data.csv", "unique_id": "seed.iterable_integration_tests.campaign_suppression_list_history_data", "fqn": ["iterable_integration_tests", "campaign_suppression_list_history_data"], "alias": "campaign_suppression_list_history_data", "checksum": {"name": "sha256", "checksum": "c5c35e247b3a31225afddec1a2f5beb0adfcaf4bf60721121f07a9db64f3fbbc"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"_fivetran_synced": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": false, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"quote_columns": "{{ true if target.type == 'redshift' else false }}", "column_types": {"_fivetran_synced": "timestamp"}}, "created_at": 1688673390.039532, "relation_name": "\"postgres\".\"iterable_integration_tests_03\".\"campaign_suppression_list_history_data\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "depends_on": {"macros": []}}, "seed.iterable_integration_tests.campaign_list_history_data": {"database": "postgres", "schema": "iterable_integration_tests_03", "name": "campaign_list_history_data", "resource_type": "seed", "package_name": "iterable_integration_tests", "path": "campaign_list_history_data.csv", "original_file_path": "seeds/campaign_list_history_data.csv", "unique_id": "seed.iterable_integration_tests.campaign_list_history_data", "fqn": ["iterable_integration_tests", "campaign_list_history_data"], "alias": "campaign_list_history_data", "checksum": {"name": "sha256", "checksum": "6b5a41243873190001d23094e5aa29b9fa1330cf852cb3c79f9ef53df5763292"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"_fivetran_synced": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": false, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"quote_columns": "{{ true if target.type == 'redshift' else false }}", "column_types": {"_fivetran_synced": "timestamp"}}, "created_at": 1688673390.041356, "relation_name": "\"postgres\".\"iterable_integration_tests_03\".\"campaign_list_history_data\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "depends_on": {"macros": []}}, "seed.iterable_integration_tests.template_history_data": {"database": "postgres", "schema": "iterable_integration_tests_03", "name": "template_history_data", "resource_type": "seed", "package_name": "iterable_integration_tests", "path": "template_history_data.csv", "original_file_path": "seeds/template_history_data.csv", "unique_id": "seed.iterable_integration_tests.template_history_data", "fqn": ["iterable_integration_tests", "template_history_data"], "alias": "template_history_data", "checksum": {"name": "sha256", "checksum": "1bb816e86e95c24ae4b18f12c876c8ce09c81eb3c31273f5e8e8a40271cbbd92"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"_fivetran_synced": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": false, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"quote_columns": "{{ true if target.type == 'redshift' else false }}", "column_types": {"_fivetran_synced": "timestamp"}}, "created_at": 1688673390.0435998, "relation_name": "\"postgres\".\"iterable_integration_tests_03\".\"template_history_data\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "depends_on": {"macros": []}}, "seed.iterable_integration_tests.event_extension_data": {"database": "postgres", "schema": "iterable_integration_tests_03", "name": "event_extension_data", "resource_type": "seed", "package_name": "iterable_integration_tests", "path": "event_extension_data.csv", "original_file_path": "seeds/event_extension_data.csv", "unique_id": "seed.iterable_integration_tests.event_extension_data", "fqn": ["iterable_integration_tests", "event_extension_data"], "alias": "event_extension_data", "checksum": {"name": "sha256", "checksum": "8bb0120c5aec7717e04ee9bb0d91be54525aa88b8d94419267923d2d51dbc8aa"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "payload": "varchar(100)"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": false, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"quote_columns": "{{ true if target.type == 'redshift' else false }}", "column_types": {"payload": "{{ 'varchar(100)' if target.type in ('redshift', 'postgres') else 'string'}}"}}, "created_at": 1688673390.04559, "relation_name": "\"postgres\".\"iterable_integration_tests_03\".\"event_extension_data\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "depends_on": {"macros": []}}, "seed.iterable_integration_tests.channel_data": {"database": "postgres", "schema": "iterable_integration_tests_03", "name": "channel_data", "resource_type": "seed", "package_name": "iterable_integration_tests", "path": "channel_data.csv", "original_file_path": "seeds/channel_data.csv", "unique_id": "seed.iterable_integration_tests.channel_data", "fqn": ["iterable_integration_tests", "channel_data"], "alias": "channel_data", "checksum": {"name": "sha256", "checksum": "123db5a6b276a09bad786967fe3eb0060738508a0235bcd92fb878059f1418c4"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "id": "bigint"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": false, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"quote_columns": "{{ true if target.type == 'redshift' else false }}", "column_types": {"id": "{%- if target.type == 'bigquery' -%} INT64 {%- else -%} bigint {%- endif -%}"}}, "created_at": 1688673390.047689, "relation_name": "\"postgres\".\"iterable_integration_tests_03\".\"channel_data\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "depends_on": {"macros": []}}, "seed.iterable_integration_tests.user_unsubscribed_channel_history_data": {"database": "postgres", "schema": "iterable_integration_tests_03", "name": "user_unsubscribed_channel_history_data", "resource_type": "seed", "package_name": "iterable_integration_tests", "path": "user_unsubscribed_channel_history_data.csv", "original_file_path": "seeds/user_unsubscribed_channel_history_data.csv", "unique_id": "seed.iterable_integration_tests.user_unsubscribed_channel_history_data", "fqn": ["iterable_integration_tests", "user_unsubscribed_channel_history_data"], "alias": "user_unsubscribed_channel_history_data", "checksum": {"name": "sha256", "checksum": "cbcf35dbe806ae22ba30067e46ada18f4e49fac5c0a063a866fe5d15853339af"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "channel_id": "bigint"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": false, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"quote_columns": "{{ true if target.type == 'redshift' else false }}", "column_types": {"channel_id": "{%- if target.type == 'bigquery' -%} INT64 {%- else -%} bigint {%- endif -%}"}}, "created_at": 1688673390.049717, "relation_name": "\"postgres\".\"iterable_integration_tests_03\".\"user_unsubscribed_channel_history_data\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "depends_on": {"macros": []}}, "seed.iterable_integration_tests.user_device_history_data": {"database": "postgres", "schema": "iterable_integration_tests_03", "name": "user_device_history_data", "resource_type": "seed", "package_name": "iterable_integration_tests", "path": "user_device_history_data.csv", "original_file_path": "seeds/user_device_history_data.csv", "unique_id": "seed.iterable_integration_tests.user_device_history_data", "fqn": ["iterable_integration_tests", "user_device_history_data"], "alias": "user_device_history_data", "checksum": {"name": "sha256", "checksum": "5ee0aa8024231fcdf2581fa0a05f41910236f05ecbcd202e1eaefeaa19e9b942"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"_fivetran_synced": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": false, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"quote_columns": "{{ true if target.type == 'redshift' else false }}", "column_types": {"_fivetran_synced": "timestamp"}}, "created_at": 1688673390.0515242, "relation_name": "\"postgres\".\"iterable_integration_tests_03\".\"user_device_history_data\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "depends_on": {"macros": []}}, "seed.iterable_integration_tests.campaign_label_history_data": {"database": "postgres", "schema": "iterable_integration_tests_03", "name": "campaign_label_history_data", "resource_type": "seed", "package_name": "iterable_integration_tests", "path": "campaign_label_history_data.csv", "original_file_path": "seeds/campaign_label_history_data.csv", "unique_id": "seed.iterable_integration_tests.campaign_label_history_data", "fqn": ["iterable_integration_tests", "campaign_label_history_data"], "alias": "campaign_label_history_data", "checksum": {"name": "sha256", "checksum": "779ac5d0dc0f1b647e197af3378d3226ec92c9fefa1cfd05ed5f447f81645bb3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"_fivetran_synced": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": false, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"quote_columns": "{{ true if target.type == 'redshift' else false }}", "column_types": {"_fivetran_synced": "timestamp"}}, "created_at": 1688673390.053335, "relation_name": "\"postgres\".\"iterable_integration_tests_03\".\"campaign_label_history_data\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "depends_on": {"macros": []}}, "seed.iterable_integration_tests.campaign_history_data": {"database": "postgres", "schema": "iterable_integration_tests_03", "name": "campaign_history_data", "resource_type": "seed", "package_name": "iterable_integration_tests", "path": "campaign_history_data.csv", "original_file_path": "seeds/campaign_history_data.csv", "unique_id": "seed.iterable_integration_tests.campaign_history_data", "fqn": ["iterable_integration_tests", "campaign_history_data"], "alias": "campaign_history_data", "checksum": {"name": "sha256", "checksum": "67af6f24672ccfd401d619f204b27324254979c25f1b296da9978c10da88d43d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"_fivetran_synced": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": false, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"quote_columns": "{{ true if target.type == 'redshift' else false }}", "column_types": {"_fivetran_synced": "timestamp"}}, "created_at": 1688673390.055115, "relation_name": "\"postgres\".\"iterable_integration_tests_03\".\"campaign_history_data\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "depends_on": {"macros": []}}, "seed.iterable_integration_tests.message_type_data": {"database": "postgres", "schema": "iterable_integration_tests_03", "name": "message_type_data", "resource_type": "seed", "package_name": "iterable_integration_tests", "path": "message_type_data.csv", "original_file_path": "seeds/message_type_data.csv", "unique_id": "seed.iterable_integration_tests.message_type_data", "fqn": ["iterable_integration_tests", "message_type_data"], "alias": "message_type_data", "checksum": {"name": "sha256", "checksum": "554080d0fffca5b9ff6524541513e63f2f251f36823cd9f40393d83f1c082eef"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "id": "bigint", "channel_id": "bigint"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": false, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"quote_columns": "{{ true if target.type == 'redshift' else false }}", "column_types": {"id": "{%- if target.type == 'bigquery' -%} INT64 {%- else -%} bigint {%- endif -%}", "channel_id": "{%- if target.type == 'bigquery' -%} INT64 {%- else -%} bigint {%- endif -%}"}}, "created_at": 1688673390.057497, "relation_name": "\"postgres\".\"iterable_integration_tests_03\".\"message_type_data\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "depends_on": {"macros": []}}, "seed.iterable_integration_tests.campaign_metrics_data": {"database": "postgres", "schema": "iterable_integration_tests_03", "name": "campaign_metrics_data", "resource_type": "seed", "package_name": "iterable_integration_tests", "path": "campaign_metrics_data.csv", "original_file_path": "seeds/campaign_metrics_data.csv", "unique_id": "seed.iterable_integration_tests.campaign_metrics_data", "fqn": ["iterable_integration_tests", "campaign_metrics_data"], "alias": "campaign_metrics_data", "checksum": {"name": "sha256", "checksum": "0d8bd317f335734235dbe14136baacfb49d72f697ddbd03a8e4ebc52c80de06b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"_fivetran_synced": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": false, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"quote_columns": "{{ true if target.type == 'redshift' else false }}", "column_types": {"_fivetran_synced": "timestamp"}}, "created_at": 1688673390.059372, "relation_name": "\"postgres\".\"iterable_integration_tests_03\".\"campaign_metrics_data\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "depends_on": {"macros": []}}, "seed.iterable_integration_tests.list_data": {"database": "postgres", "schema": "iterable_integration_tests_03", "name": "list_data", "resource_type": "seed", "package_name": "iterable_integration_tests", "path": "list_data.csv", "original_file_path": "seeds/list_data.csv", "unique_id": "seed.iterable_integration_tests.list_data", "fqn": ["iterable_integration_tests", "list_data"], "alias": "list_data", "checksum": {"name": "sha256", "checksum": "0a60614611d2f3d75c45056e49e0ce829e0145bd867c7a25ae9bb6cec988f2f5"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"_fivetran_synced": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": false, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"quote_columns": "{{ true if target.type == 'redshift' else false }}", "column_types": {"_fivetran_synced": "timestamp"}}, "created_at": 1688673390.0611799, "relation_name": "\"postgres\".\"iterable_integration_tests_03\".\"list_data\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "depends_on": {"macros": []}}, "seed.iterable_integration_tests.event_data": {"database": "postgres", "schema": "iterable_integration_tests_03", "name": "event_data", "resource_type": "seed", "package_name": "iterable_integration_tests", "path": "event_data.csv", "original_file_path": "seeds/event_data.csv", "unique_id": "seed.iterable_integration_tests.event_data", "fqn": ["iterable_integration_tests", "event_data"], "alias": "event_data", "checksum": {"name": "sha256", "checksum": "d3518c86fcfaf17b0436480adcc6d16d5af3f4f32a07ccfbf4fe20617a867eed"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "transactional_data": "varchar(100)", "created_at": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "quote_columns": false, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"quote_columns": "{{ true if target.type == 'redshift' else false }}", "column_types": {"transactional_data": "{{ 'varchar(100)' if target.type in ('redshift', 'postgres') else 'string'}}", "created_at": "timestamp"}}, "created_at": 1688673390.063162, "relation_name": "\"postgres\".\"iterable_integration_tests_03\".\"event_data\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "depends_on": {"macros": []}}, "model.iterable.iterable__events": {"database": "postgres", "schema": "iterable_integration_tests_03_iterable", "name": "iterable__events", "resource_type": "model", "package_name": "iterable", "path": "iterable__events.sql", "original_file_path": "models/iterable__events.sql", "unique_id": "model.iterable.iterable__events", "fqn": ["iterable", "iterable__events"], "alias": "iterable__events", "checksum": {"name": "sha256", "checksum": "e1a310fa82db58643322886d7ebce902480fa3b69e1d104060fe4614420b9ff5"}, "config": {"enabled": true, "alias": null, "schema": "iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "incremental", "incremental_strategy": "delete+insert", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": "event_id", "on_schema_change": "fail", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "partition_by": {"field": "created_on", "data_type": "date"}, "file_format": "parquet", "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that provides a comprehensive view of all events with enriched information such as the campaign, user effected, and template used.", "columns": {"event_id": {"name": "event_id", "description": "Unique id of the event generated by Fivetran", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "Reference to the campaign from which the event originated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "content_id": {"name": "content_id", "description": "Reference to the content the event is associated with", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "Creation timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email": {"name": "email", "description": "Reference to the unique user the event was applied to", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "additional_properties": {"name": "additional_properties", "description": "json object containing addition event properties", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "event_name": {"name": "event_name", "description": "Name provided to the individual event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_bus_id": {"name": "message_bus_id", "description": "Reference to the message bus associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_id": {"name": "message_id", "description": "Reference to the message the event is associated with", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_type_id": {"name": "message_type_id", "description": "Reference to the type of message the event is associated with", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_state": {"name": "recipient_state", "description": "The state of the recipient upon receiving the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "status": {"name": "status", "description": "Status of the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "transactional_data": {"name": "transactional_data", "description": "Transactional data associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unsub_source": {"name": "unsub_source", "description": "Source of the unsubscribe event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_agent": {"name": "user_agent", "description": "User agent associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_agent_device": {"name": "user_agent_device", "description": "The device of the user agent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "Timestamp of when the event record was synced by Fivetran", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "campaign_name": {"name": "campaign_name", "description": "The name of the campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "campaign_type": {"name": "campaign_type", "description": "The type of campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_campaign_recurring": {"name": "is_campaign_recurring", "description": "Boolean indicating if the campaign is recurrent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recurring_campaign_name": {"name": "recurring_campaign_name", "description": "The name of the recurring campaign (if applicable)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recurring_campaign_id": {"name": "recurring_campaign_id", "description": "The campaign if of the recurring campaign (if applicable)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_id": {"name": "user_id", "description": "User defined identifier of the user. This is not a unique field", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_full_name": {"name": "user_full_name", "description": "Full name of the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_type_name": {"name": "message_type_name", "description": "Name of the message type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_medium": {"name": "message_medium", "description": "Medium of the message", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "channel_id": {"name": "channel_id", "description": "Unique identifier of the channel", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "channel_name": {"name": "channel_name", "description": "The channel name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "channel_type": {"name": "channel_type", "description": "The type of channel", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_app_already_running": {"name": "is_app_already_running", "description": "Boolean indicating if the app is already running", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "badge": {"name": "badge", "description": "Badge associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "canonical_url_id": {"name": "canonical_url_id", "description": "Reference to the url associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_content_available": {"name": "is_content_available", "description": "Content available from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "deeplink_android": {"name": "deeplink_android", "description": "Deeplink associated with the event from an android device", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "deeplink_ios": {"name": "deeplink_ios", "description": "Deeplink associated with the event from an ios device", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "device": {"name": "device", "description": "The device associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email_id": {"name": "email_id", "description": "Reference to the email associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email_subject": {"name": "email_subject", "description": "Subject of the email associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "experiment_id": {"name": "experiment_id", "description": "Reference to the experiment used if the event is an experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "from_phone_number_id": {"name": "from_phone_number_id", "description": "Reference to the phone number which the event is from", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "from_smssender_id": {"name": "from_smssender_id", "description": "Reference to the sms sender which the event is from", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "image_url": {"name": "image_url", "description": "Image url of the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_ghost_push": {"name": "is_ghost_push", "description": "Boolean indicating if the event is a result of a ghost push", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "link_id": {"name": "link_id", "description": "Reference to the link associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "link_url": {"name": "link_url", "description": "Url of the link associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "locale": {"name": "locale", "description": "Locale associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "payload": {"name": "payload", "description": "Payload resulted from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "platform_endpoint": {"name": "platform_endpoint", "description": "The specific platform endpoint of the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "push_message": {"name": "push_message", "description": "Boolean indicating if the event is a push message", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "region": {"name": "region", "description": "Region of the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sms_message": {"name": "sms_message", "description": "Boolean indicating if the event is an sms message", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sms_provider_response_code": {"name": "sms_provider_response_code", "description": "sms provider response code from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sms_provider_response_message": {"name": "sms_provider_response_message", "description": "sms provider response message from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sms_provider_response_more_info": {"name": "sms_provider_response_more_info", "description": "sms provider response addition info from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sms_provider_response_status": {"name": "sms_provider_response_status", "description": "Status of the sms provider response from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sound": {"name": "sound", "description": "Boolean indicating if a sound was used with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "to_phone_number": {"name": "to_phone_number", "description": "To phone number associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "url": {"name": "url", "description": "Url associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "workflow_id": {"name": "workflow_id", "description": "Reference to the workflow which the event originated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "workflow_name": {"name": "workflow_name", "description": "Name of the workflow which the event originated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "template_id": {"name": "template_id", "description": "Unique identifer of the template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "template_name": {"name": "template_name", "description": "User defined name of the template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "template_creator_user_id": {"name": "template_creator_user_id", "description": "Reference to the user who created the template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_on": {"name": "created_on", "description": "Timestamp of when the event was created", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "incremental", "schema": "iterable", "unique_key": "event_id", "incremental_strategy": "delete+insert", "partition_by": {"field": "created_on", "data_type": "date"}, "file_format": "parquet", "on_schema_change": "fail"}, "created_at": 1688673390.506876, "relation_name": "\"postgres\".\"iterable_integration_tests_03_iterable\".\"iterable__events\"", "raw_code": "{{ config(\n materialized='incremental',\n unique_key='event_id',\n incremental_strategy='insert_overwrite' if target.type in ('bigquery', 'spark', 'databricks') else 'delete+insert',\n partition_by={\"field\": \"created_on\", \"data_type\": \"date\"} if target.type not in ('spark','databricks') else ['created_on'],\n file_format='parquet',\n on_schema_change='fail'\n ) \n}}\n\nwith events as (\n\n select *\n from {{ var('event') }}\n\n {% if is_incremental() %}\n where created_at >= (select max(created_at) from {{ this }} )\n {% endif %}\n\n), campaign as (\n\n select *\n from {{ ref('int_iterable__recurring_campaigns') }}\n\n), event_extension as (\n\n select *\n from {{ var('event_extension') }}\n\n), users as (\n\n select *\n from {{ ref('int_iterable__latest_user') }}\n\n), message_type_channel as (\n\n select *\n from {{ ref('int_iterable__message_type_channel') }}\n\n), template as (\n\n select *\n from {{ ref('int_iterable__latest_template') }}\n\n), event_join as (\n\n select \n events.*,\n campaign.campaign_name,\n campaign.campaign_type,\n campaign.is_campaign_recurring,\n campaign.recurring_campaign_name,\n campaign.recurring_campaign_id,\n\n users.user_id,\n users.first_name || ' ' || users.last_name as user_full_name,\n\n message_type_channel.message_type_name,\n message_type_channel.message_medium,\n message_type_channel.channel_id,\n message_type_channel.channel_name,\n message_type_channel.channel_type,\n\n {% set exclude_fields = [\"event_id\", \"content_id\", \"_fivetran_synced\"] %}\n {{ dbt_utils.star(from=ref('stg_iterable__event_extension'), except= exclude_fields ) }}\n ,\n campaign.template_id,\n template.template_name,\n template.creator_user_id as template_creator_user_id\n \n from events \n left join event_extension \n on events.event_id = event_extension.event_id\n left join campaign \n on events.campaign_id = campaign.campaign_id\n left join users\n on events.email = users.email\n left join message_type_channel\n on events.message_type_id = message_type_channel.message_type_id\n left join template \n on campaign.template_id = template.template_id\n)\n\nselect *\nfrom event_join", "language": "sql", "refs": [{"name": "stg_iterable__event", "package": null, "version": null}, {"name": "int_iterable__recurring_campaigns", "package": null, "version": null}, {"name": "stg_iterable__event_extension", "package": null, "version": null}, {"name": "int_iterable__latest_user", "package": null, "version": null}, {"name": "int_iterable__message_type_channel", "package": null, "version": null}, {"name": "int_iterable__latest_template", "package": null, "version": null}, {"name": "stg_iterable__event_extension", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.is_incremental", "macro.dbt_utils.star"], "nodes": ["model.iterable_source.stg_iterable__event", "model.iterable.int_iterable__recurring_campaigns", "model.iterable_source.stg_iterable__event_extension", "model.iterable.int_iterable__latest_user", "model.iterable.int_iterable__message_type_channel", "model.iterable.int_iterable__latest_template", "model.iterable_source.stg_iterable__event_extension"]}, "compiled_path": "target/compiled/iterable/models/iterable__events.sql", "compiled": true, "compiled_code": "\n\nwith events as (\n\n select *\n from \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__event\"\n\n \n where created_at >= (select max(created_at) from \"postgres\".\"iterable_integration_tests_03_iterable\".\"iterable__events\" )\n \n\n), campaign as (\n\n select *\n from \"postgres\".\"iterable_integration_tests_03_int_iterable\".\"int_iterable__recurring_campaigns\"\n\n), event_extension as (\n\n select *\n from \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__event_extension\"\n\n), users as (\n\n select *\n from \"postgres\".\"iterable_integration_tests_03_int_iterable\".\"int_iterable__latest_user\"\n\n), message_type_channel as (\n\n select *\n from \"postgres\".\"iterable_integration_tests_03_int_iterable\".\"int_iterable__message_type_channel\"\n\n), template as (\n\n select *\n from \"postgres\".\"iterable_integration_tests_03_int_iterable\".\"int_iterable__latest_template\"\n\n), event_join as (\n\n select \n events.*,\n campaign.campaign_name,\n campaign.campaign_type,\n campaign.is_campaign_recurring,\n campaign.recurring_campaign_name,\n campaign.recurring_campaign_id,\n\n users.user_id,\n users.first_name || ' ' || users.last_name as user_full_name,\n\n message_type_channel.message_type_name,\n message_type_channel.message_medium,\n message_type_channel.channel_id,\n message_type_channel.channel_name,\n message_type_channel.channel_type,\n\n \n \"is_app_already_running\",\n \"badge\",\n \"canonical_url_id\",\n \"is_content_available\",\n \"deeplink_android\",\n \"deeplink_ios\",\n \"device\",\n \"email_id\",\n \"email_subject\",\n \"experiment_id\",\n \"from_phone_number_id\",\n \"from_smssender_id\",\n \"image_url\",\n \"is_ghost_push\",\n \"link_id\",\n \"link_url\",\n \"locale\",\n \"payload\",\n \"platform_endpoint\",\n \"push_message\",\n \"region\",\n \"sms_message\",\n \"sms_provider_response_code\",\n \"sms_provider_response_message\",\n \"sms_provider_response_more_info\",\n \"sms_provider_response_status\",\n \"sound\",\n \"to_phone_number\",\n \"url\",\n \"workflow_id\",\n \"workflow_name\"\n ,\n campaign.template_id,\n template.template_name,\n template.creator_user_id as template_creator_user_id\n \n from events \n left join event_extension \n on events.event_id = event_extension.event_id\n left join campaign \n on events.campaign_id = campaign.campaign_id\n left join users\n on events.email = users.email\n left join message_type_channel\n on events.message_type_id = message_type_channel.message_type_id\n left join template \n on campaign.template_id = template.template_id\n)\n\nselect *\nfrom event_join", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.iterable__campaigns": {"database": "postgres", "schema": "iterable_integration_tests_03_iterable", "name": "iterable__campaigns", "resource_type": "model", "package_name": "iterable", "path": "iterable__campaigns.sql", "original_file_path": "models/iterable__campaigns.sql", "unique_id": "model.iterable.iterable__campaigns", "fqn": ["iterable", "iterable__campaigns"], "alias": "iterable__campaigns", "checksum": {"name": "sha256", "checksum": "89e11c24b53dd7eca956b891278bd4b21b83b3b6c65243f8e3c661772bd9d67b"}, "config": {"enabled": true, "alias": null, "schema": "iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that provides aggregations for campaigns at the experiment grain.", "columns": {"campaign_id": {"name": "campaign_id", "description": "Unique identifier of the campaign record", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "campaign_name": {"name": "campaign_name", "description": "User defined name of the campaign.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "campaign_state": {"name": "campaign_state", "description": "State of the campaign. Can be Draft, Ready, Scheduled, Running, Finished, Starting, Aborted or Recurring", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "campaign_type": {"name": "campaign_type", "description": "The campaign type. Can be Blast or Triggered", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "send_size": {"name": "send_size", "description": "Size of the campaign. Number of individuals included in the campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "start_at": {"name": "start_at", "description": "Start timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "ended_at": {"name": "ended_at", "description": "Ended timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "Creation timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_by_user_id": {"name": "created_by_user_id", "description": "Reference to the user who created the campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "template_id": {"name": "template_id", "description": "Reference to the campaign template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recurring_campaign_id": {"name": "recurring_campaign_id", "description": "Unique identifier of the recurring campaign (if applicable)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recurring_campaign_name": {"name": "recurring_campaign_name", "description": "Name of the recurring campaign (if applicable)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recurring_campaign_state": {"name": "recurring_campaign_state", "description": "State of the recurring campaign (if applicable)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recurring_campaign_send_size": {"name": "recurring_campaign_send_size", "description": "Size of the recurring campaign. Number of individuals included in the recurring campaign (if applicable)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recurring_campaign_start_at": {"name": "recurring_campaign_start_at", "description": "Timestamp of when the recurring campaign started (if applicable)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_campaign_recurring": {"name": "is_campaign_recurring", "description": "Boolean indicating if the campaign is a recurring campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "experiment_id": {"name": "experiment_id", "description": "Reference to the experiment used if the event is an experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "count_unique_users": {"name": "count_unique_users", "description": "Count of total unique users within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailclick": {"name": "total_emailclick", "description": "Total email clicks within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_emailclick": {"name": "unique_total_emailclick", "description": "Unique email clicks within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailunsubscribe": {"name": "total_emailunsubscribe", "description": "Total email unsubscribe events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_emailunsubscribe": {"name": "unique_total_emailunsubscribe", "description": "Unique total email unsubscribe events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailcomplaint": {"name": "total_emailcomplaint", "description": "Total email complaints within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_emailcomplaint": {"name": "unique_total_emailcomplaint", "description": "Unique total email complaints within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_customevent": {"name": "total_customevent", "description": "Total custom events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_customevent": {"name": "unique_total_customevent", "description": "Unique total custom events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailsubscribe": {"name": "total_emailsubscribe", "description": "Total email subscribe events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_emailsubscribe": {"name": "unique_total_emailsubscribe", "description": "Unique total email subscribe events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailopen": {"name": "total_emailopen", "description": "Total email open events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_emailopen": {"name": "unique_total_emailopen", "description": "Unique total email open events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_pushsend": {"name": "total_pushsend", "description": "Total push send event within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_pushsend": {"name": "unique_total_pushsend", "description": "Unique total push send events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_smsbounce": {"name": "total_smsbounce", "description": "Total sms bounce events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_smsbounce": {"name": "unique_total_smsbounce", "description": "Unique total sms bounce events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_pushbounce": {"name": "total_pushbounce", "description": "Total push bounce events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_pushbounce": {"name": "unique_total_pushbounce", "description": "Unique total push bounce events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_inappsendskip": {"name": "total_inappsendskip", "description": "Total in app send skip events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_inappsendskip": {"name": "unique_total_inappsendskip", "description": "Unique total in app send skip events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_smssend": {"name": "total_smssend", "description": "Total sms send events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_smssend": {"name": "unique_total_smssend", "description": "Unique total sms send events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_inappsend": {"name": "total_inappsend", "description": "Total in app send events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_inappsend": {"name": "unique_total_inappsend", "description": "Unique total in app send events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_pushopen": {"name": "total_pushopen", "description": "Total push open events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_pushopen": {"name": "unique_total_pushopen", "description": "Unique total push open events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailsend": {"name": "total_emailsend", "description": "Total email send events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_emailsend": {"name": "unique_total_emailsend", "description": "Unique total email send events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_pushsendskip": {"name": "total_pushsendskip", "description": "Total push send skip events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_pushsendskip": {"name": "unique_total_pushsendskip", "description": "Unique total push send skip events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_inappopen": {"name": "total_inappopen", "description": "Total in app open events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_inappopen": {"name": "unique_total_inappopen", "description": "Unique total in app open events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailsendskip": {"name": "total_emailsendskip", "description": "Total email send skip events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_emailsendskip": {"name": "unique_total_emailsendskip", "description": "Unique total email send skip events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailbounce": {"name": "total_emailbounce", "description": "Total email bounce events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_emailbounce": {"name": "unique_total_emailbounce", "description": "Unique total email bounce events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_inappclick": {"name": "total_inappclick", "description": "Total in app click events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_inappclick": {"name": "unique_total_inappclick", "description": "Unique total in app click events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_pushuninstall": {"name": "total_pushuninstall", "description": "Total push uninstall events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unique_total_pushuninstall": {"name": "unique_total_pushuninstall", "description": "Unique total push uninstall events within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "count_send_lists": {"name": "count_send_lists", "description": "Count of send lists within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "count_suppress_lists": {"name": "count_suppress_lists", "description": "Count of suppress lists within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "labels": {"name": "labels", "description": "List of labels associated with the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "template_name": {"name": "template_name", "description": "Name of the template associated with the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "template_creator_user_id": {"name": "template_creator_user_id", "description": "The creator user id of the template associated with the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_medium": {"name": "message_medium", "description": "The medium which the message was provided", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_type_name": {"name": "message_type_name", "description": "The message type name associated with the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "channel_name": {"name": "channel_name", "description": "The channel name associated with the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "channel_id": {"name": "channel_id", "description": "The channel identifier associated with the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "channel_type": {"name": "channel_type", "description": "The channel type associated with the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "iterable"}, "created_at": 1688673390.490408, "relation_name": "\"postgres\".\"iterable_integration_tests_03_iterable\".\"iterable__campaigns\"", "raw_code": "with campaign_event_metrics as (\n\n select *\n from {{ ref('int_iterable__campaign_event_metrics') }}\n\n), campaign_list_metrics as (\n\n select\n campaign_id,\n sum(case when list_activity = 'send' then 1 else 0 end) as count_send_lists,\n sum(case when list_activity = 'suppress' then 1 else 0 end) as count_suppress_lists\n \n from {{ ref('int_iterable__campaign_lists') }}\n group by campaign_id\n\n), campaign as (\n\n select *\n from {{ ref('int_iterable__recurring_campaigns') }}\n \n{% if var('iterable__using_campaign_label_history', true) %}\n), campaign_labels as (\n\n select *\n from {{ ref('int_iterable__campaign_labels') }}\n\n{% endif %}\n\n), template as (\n -- rebringing this in (it is brought in iterable__events) in case any campaigns don't have events yet\n -- this will result in some DAG ugliness but maintains template info for non-sent campaigns\n select *\n from {{ ref('int_iterable__latest_template') }}\n\n), campaign_join as (\n\n {% set exclude_fields = [ 'campaign_id', 'template_id'] %} -- these are both in campaigns\n\n -- this query will be at the campaign-experiment variation grain\n select\n campaign.*,\n {{ dbt_utils.star(from=ref('int_iterable__campaign_event_metrics'), except=exclude_fields) }}\n , \n campaign_list_metrics.count_send_lists,\n campaign_list_metrics.count_suppress_lists,\n {% if var('iterable__using_campaign_label_history', true) %}\n campaign_labels.labels,\n {% endif %}\n template.template_name,\n template.creator_user_id as template_creator_user_id,\n template.message_medium,\n template.message_type_name,\n template.channel_name,\n template.channel_id,\n template.channel_type\n\n from campaign\n left join campaign_event_metrics \n on campaign.campaign_id = campaign_event_metrics.campaign_id\n left join campaign_list_metrics \n on campaign.campaign_id = campaign_list_metrics.campaign_id\n\n {% if var('iterable__using_campaign_label_history', true) %}\n left join campaign_labels \n on campaign.campaign_id = campaign_labels.campaign_id\n {% endif %}\n \n left join template\n on campaign.template_id = template.template_id\n)\n\nselect *\nfrom campaign_join", "language": "sql", "refs": [{"name": "int_iterable__campaign_event_metrics", "package": null, "version": null}, {"name": "int_iterable__campaign_lists", "package": null, "version": null}, {"name": "int_iterable__recurring_campaigns", "package": null, "version": null}, {"name": "int_iterable__campaign_labels", "package": null, "version": null}, {"name": "int_iterable__latest_template", "package": null, "version": null}, {"name": "int_iterable__campaign_event_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.star"], "nodes": ["model.iterable.int_iterable__campaign_event_metrics", "model.iterable.int_iterable__campaign_lists", "model.iterable.int_iterable__recurring_campaigns", "model.iterable.int_iterable__campaign_labels", "model.iterable.int_iterable__latest_template", "model.iterable.int_iterable__campaign_event_metrics"]}, "compiled_path": "target/compiled/iterable/models/iterable__campaigns.sql", "compiled": true, "compiled_code": "with campaign_event_metrics as (\n\n select *\n from \"postgres\".\"iterable_integration_tests_03_int_iterable\".\"int_iterable__campaign_event_metrics\"\n\n), campaign_list_metrics as (\n\n select\n campaign_id,\n sum(case when list_activity = 'send' then 1 else 0 end) as count_send_lists,\n sum(case when list_activity = 'suppress' then 1 else 0 end) as count_suppress_lists\n \n from \"postgres\".\"iterable_integration_tests_03_int_iterable\".\"int_iterable__campaign_lists\"\n group by campaign_id\n\n), campaign as (\n\n select *\n from \"postgres\".\"iterable_integration_tests_03_int_iterable\".\"int_iterable__recurring_campaigns\"\n \n\n), campaign_labels as (\n\n select *\n from \"postgres\".\"iterable_integration_tests_03_int_iterable\".\"int_iterable__campaign_labels\"\n\n\n\n), template as (\n -- rebringing this in (it is brought in iterable__events) in case any campaigns don't have events yet\n -- this will result in some DAG ugliness but maintains template info for non-sent campaigns\n select *\n from \"postgres\".\"iterable_integration_tests_03_int_iterable\".\"int_iterable__latest_template\"\n\n), campaign_join as (\n\n -- these are both in campaigns\n\n -- this query will be at the campaign-experiment variation grain\n select\n campaign.*,\n \"experiment_id\",\n \"count_unique_users\",\n \"total_emailclick\",\n \"unique_total_emailclick\",\n \"total_emailunsubscribe\",\n \"unique_total_emailunsubscribe\",\n \"total_emailcomplaint\",\n \"unique_total_emailcomplaint\",\n \"total_customevent\",\n \"unique_total_customevent\",\n \"total_emailsubscribe\",\n \"unique_total_emailsubscribe\",\n \"total_emailopen\",\n \"unique_total_emailopen\",\n \"total_pushsend\",\n \"unique_total_pushsend\",\n \"total_smsbounce\",\n \"unique_total_smsbounce\",\n \"total_pushbounce\",\n \"unique_total_pushbounce\",\n \"total_inappsendskip\",\n \"unique_total_inappsendskip\",\n \"total_smssend\",\n \"unique_total_smssend\",\n \"total_inappsend\",\n \"unique_total_inappsend\",\n \"total_pushopen\",\n \"unique_total_pushopen\",\n \"total_emailsend\",\n \"unique_total_emailsend\",\n \"total_pushsendskip\",\n \"unique_total_pushsendskip\",\n \"total_inappopen\",\n \"unique_total_inappopen\",\n \"total_emailsendskip\",\n \"unique_total_emailsendskip\",\n \"total_emailbounce\",\n \"unique_total_emailbounce\",\n \"total_inappclick\",\n \"unique_total_inappclick\",\n \"total_pushuninstall\",\n \"unique_total_pushuninstall\"\n , \n campaign_list_metrics.count_send_lists,\n campaign_list_metrics.count_suppress_lists,\n \n campaign_labels.labels,\n \n template.template_name,\n template.creator_user_id as template_creator_user_id,\n template.message_medium,\n template.message_type_name,\n template.channel_name,\n template.channel_id,\n template.channel_type\n\n from campaign\n left join campaign_event_metrics \n on campaign.campaign_id = campaign_event_metrics.campaign_id\n left join campaign_list_metrics \n on campaign.campaign_id = campaign_list_metrics.campaign_id\n\n \n left join campaign_labels \n on campaign.campaign_id = campaign_labels.campaign_id\n \n \n left join template\n on campaign.template_id = template.template_id\n)\n\nselect *\nfrom campaign_join", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.iterable__user_unsubscriptions": {"database": "postgres", "schema": "iterable_integration_tests_03_iterable", "name": "iterable__user_unsubscriptions", "resource_type": "model", "package_name": "iterable", "path": "iterable__user_unsubscriptions.sql", "original_file_path": "models/iterable__user_unsubscriptions.sql", "unique_id": "model.iterable.iterable__user_unsubscriptions", "fqn": ["iterable", "iterable__user_unsubscriptions"], "alias": "iterable__user_unsubscriptions", "checksum": {"name": "sha256", "checksum": "f6351a64deac081b12ce790fd5dbc2b30c3cba4a535a89b0684deaac6080b1c4"}, "config": {"enabled": true, "alias": null, "schema": "iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that generates the total channel and message types a user has chosen to unsubscribe.", "columns": {"email": {"name": "email", "description": "Unique identifier of the user as well as their email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "channel_id": {"name": "channel_id", "description": "Unique identifier of the channel which the user is unsubscribed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_type_id": {"name": "message_type_id", "description": "Unique identifer of the message type which the user is unsubscribed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "channel_name": {"name": "channel_name", "description": "The name of the channel which the user is unsubscribed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_type_name": {"name": "message_type_name", "description": "The name of the message type which the user is unsubscribed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "channel_type": {"name": "channel_type", "description": "The channel type which the user is unsubscribed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_medium": {"name": "message_medium", "description": "The medium type the message was provided which the user is unsubscribed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Timestamp of when the user unsubscribed from the channel or message type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_unsubscribed_channel_wide": {"name": "is_unsubscribed_channel_wide", "description": "Boolean indicating if the user unsubscribed at the channel level (i.e. unsubscribed to all message types) or if they unsubscribed from only an individual message type.\n", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "iterable"}, "created_at": 1688673390.541762, "relation_name": "\"postgres\".\"iterable_integration_tests_03_iterable\".\"iterable__user_unsubscriptions\"", "raw_code": "with message_type_channel as (\n\n select *\n from {{ ref('int_iterable__message_type_channel') }}\n\n), user_unsubscribed_channel_history as (\n\n select \n *,\n rank() over(partition by email order by updated_at desc) as latest_batch_index\n\n from {{ var('user_unsubscribed_channel_history') }}\n\n{% if var('iterable__using_user_unsubscribed_message_type_history', True) %}\n), user_unsubscribed_message_type_history as (\n\n select \n *,\n rank() over(partition by email order by updated_at desc) as latest_batch_index\n\n from {{ var('user_unsubscribed_message_type_history') }}\n\n{% endif %}\n), combine_histories as (\n\n-- we are combining because channels are effectively parents of message types\n select \n email,\n channel_id,\n cast(null as {{ dbt.type_int() }}) as message_type_id,\n updated_at\n\n from user_unsubscribed_channel_history\n where latest_batch_index = 1\n\n{% if var('iterable__using_user_unsubscribed_message_type_history', True) %}\n union all\n\n select \n email,\n cast(null as {{ dbt.type_int() }}) as channel_id,\n message_type_id,\n updated_at\n \n from user_unsubscribed_message_type_history\n where latest_batch_index = 1\n{% endif %}\n\n), final as (\n\n select \n combine_histories.email,\n -- coalescing since message_type -> channel goes up a grain\n coalesce(combine_histories.channel_id, message_type_channel.channel_id) as channel_id,\n coalesce(combine_histories.message_type_id, message_type_channel.message_type_id) as message_type_id,\n message_type_channel.channel_name,\n message_type_channel.message_type_name,\n message_type_channel.channel_type,\n message_type_channel.message_medium,\n combine_histories.updated_at,\n case when combine_histories.channel_id is not null then true else false end as is_unsubscribed_channel_wide\n\n from combine_histories\n\n -- unsubscribing from an entire channel unsubscribes a user from all message types in that channel\n join message_type_channel \n on combine_histories.channel_id = message_type_channel.channel_id\n or combine_histories.message_type_id = message_type_channel.message_type_id\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "int_iterable__message_type_channel", "package": null, "version": null}, {"name": "stg_iterable__user_unsubscribed_channel_history", "package": null, "version": null}, {"name": "stg_iterable__user_unsub_message_type_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.type_int"], "nodes": ["model.iterable.int_iterable__message_type_channel", "model.iterable_source.stg_iterable__user_unsubscribed_channel_history", "model.iterable_source.stg_iterable__user_unsub_message_type_history"]}, "compiled_path": "target/compiled/iterable/models/iterable__user_unsubscriptions.sql", "compiled": true, "compiled_code": "with message_type_channel as (\n\n select *\n from \"postgres\".\"iterable_integration_tests_03_int_iterable\".\"int_iterable__message_type_channel\"\n\n), user_unsubscribed_channel_history as (\n\n select \n *,\n rank() over(partition by email order by updated_at desc) as latest_batch_index\n\n from \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__user_unsubscribed_channel_history\"\n\n\n), user_unsubscribed_message_type_history as (\n\n select \n *,\n rank() over(partition by email order by updated_at desc) as latest_batch_index\n\n from \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__user_unsub_message_type_history\"\n\n\n), combine_histories as (\n\n-- we are combining because channels are effectively parents of message types\n select \n email,\n channel_id,\n cast(null as INT) as message_type_id,\n updated_at\n\n from user_unsubscribed_channel_history\n where latest_batch_index = 1\n\n\n union all\n\n select \n email,\n cast(null as INT) as channel_id,\n message_type_id,\n updated_at\n \n from user_unsubscribed_message_type_history\n where latest_batch_index = 1\n\n\n), final as (\n\n select \n combine_histories.email,\n -- coalescing since message_type -> channel goes up a grain\n coalesce(combine_histories.channel_id, message_type_channel.channel_id) as channel_id,\n coalesce(combine_histories.message_type_id, message_type_channel.message_type_id) as message_type_id,\n message_type_channel.channel_name,\n message_type_channel.message_type_name,\n message_type_channel.channel_type,\n message_type_channel.message_medium,\n combine_histories.updated_at,\n case when combine_histories.channel_id is not null then true else false end as is_unsubscribed_channel_wide\n\n from combine_histories\n\n -- unsubscribing from an entire channel unsubscribes a user from all message types in that channel\n join message_type_channel \n on combine_histories.channel_id = message_type_channel.channel_id\n or combine_histories.message_type_id = message_type_channel.message_type_id\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.iterable__users": {"database": "postgres", "schema": "iterable_integration_tests_03_iterable", "name": "iterable__users", "resource_type": "model", "package_name": "iterable", "path": "iterable__users.sql", "original_file_path": "models/iterable__users.sql", "unique_id": "model.iterable.iterable__users", "fqn": ["iterable", "iterable__users"], "alias": "iterable__users", "checksum": {"name": "sha256", "checksum": "612b1081e40ae0f83294ba9826df3a17e26847bafe1efde632f656fc54ab9571"}, "config": {"enabled": true, "alias": null, "schema": "iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that provides unique user enriched information.", "columns": {"email": {"name": "email", "description": "Unique identifier of the user as well as their email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "first_name": {"name": "first_name", "description": "First name of the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_name": {"name": "last_name", "description": "Last name of the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_id": {"name": "user_id", "description": "User defined identifier of the user. This is not a unique field", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "signup_date": {"name": "signup_date", "description": "Timestamp as epoch time in milliseconds of when the user signed up", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "signup_source": {"name": "signup_source", "description": "Source where the user signed up", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "phone_number": {"name": "phone_number", "description": "Phone number associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email_list_ids": {"name": "email_list_ids", "description": "Array of all email lists associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "count_lists": {"name": "count_lists", "description": "Total count of lists associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "count_total_campaigns": {"name": "count_total_campaigns", "description": "Count of all campaigns the user has been in", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "first_event_at": {"name": "first_event_at", "description": "The first event the user ever encountered", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_event_at": {"name": "last_event_at", "description": "The most recent event the user has encountered", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailclick": {"name": "total_emailclick", "description": "Total number of email clicks the user has performed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailunsubscribe": {"name": "total_emailunsubscribe", "description": "Total unsubscription events the user has performed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailcomplaint": {"name": "total_emailcomplaint", "description": "Total email complaints the user has performed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_customevent": {"name": "total_customevent", "description": "Total custom events associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailsubscribe": {"name": "total_emailsubscribe", "description": "Total subscription events the user has performed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailopen": {"name": "total_emailopen", "description": "Total email opened events the user has performed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_pushsend": {"name": "total_pushsend", "description": "The push send events the user has experienced", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_smsbounce": {"name": "total_smsbounce", "description": "Total sms bounces that are associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_pushbounce": {"name": "total_pushbounce", "description": "Total number of push bounces associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_inappsendskip": {"name": "total_inappsendskip", "description": "Total in app send skips associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_smssend": {"name": "total_smssend", "description": "Total sms sends that the user has experienced", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_inappsend": {"name": "total_inappsend", "description": "Total in app sends the user has experienced", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_pushopen": {"name": "total_pushopen", "description": "Total push messages the user has opened", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailsend": {"name": "total_emailsend", "description": "Total emails that have been sent to the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_pushsendskip": {"name": "total_pushsendskip", "description": "Total push sends the user has skipped", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_inappopen": {"name": "total_inappopen", "description": "Total in app opens the user has performed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailsendskip": {"name": "total_emailsendskip", "description": "Total email sends the user has skipped", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailbounce": {"name": "total_emailbounce", "description": "Total number of emails that have bounced from the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_inappclick": {"name": "total_inappclick", "description": "Total in app clicks associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_pushuninstall": {"name": "total_pushuninstall", "description": "Total push uninstall events the user has performed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "count_devices": {"name": "count_devices", "description": "Count of all devices that are associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "iterable"}, "created_at": 1688673390.548705, "relation_name": "\"postgres\".\"iterable_integration_tests_03_iterable\".\"iterable__users\"", "raw_code": "with user_event_metrics as (\n\n select *\n from {{ ref('int_iterable__user_event_metrics') }}\n\n{% if var('iterable__using_user_device_history', false) %}\n), user_devices as (\n\n select *\n from {{ ref('int_iterable__latest_user_device') }}\n\n{% endif %}\n\n), user_unnested as (\n -- this has all the user fields we're looking to pass through\n\n select *\n from {{ ref('int_iterable__list_user_unnest') }}\n\n -- limit to current lists they are a member of. each list-user combo is a unique row, which we will roll up\n where is_current\n\n), user_with_list_metrics as (\n\n select\n email,\n first_name,\n last_name,\n user_id,\n signup_date,\n signup_source,\n updated_at,\n phone_number,\n email_list_ids,\n count(distinct list_id) as count_lists\n\n from user_unnested\n -- roll up to the user\n {{ dbt_utils.group_by(n=9) }}\n\n), user_join as (\n\n select \n user_with_list_metrics.*,\n {{ dbt_utils.star(from=ref('int_iterable__user_event_metrics'), except=['user_email']) }}\n {% if var('iterable__using_user_device_history', false) %}\n ,\n user_devices.count_devices\n {% endif %}\n\n from user_with_list_metrics\n left join user_event_metrics \n on user_with_list_metrics.email = user_event_metrics.user_email\n \n {% if var('iterable__using_user_device_history', false) %}\n left join user_devices\n on user_with_list_metrics.email = user_devices.email\n {% endif %}\n)\n\nselect *\nfrom user_join", "language": "sql", "refs": [{"name": "int_iterable__user_event_metrics", "package": null, "version": null}, {"name": "int_iterable__list_user_unnest", "package": null, "version": null}, {"name": "int_iterable__user_event_metrics", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.group_by", "macro.dbt_utils.star"], "nodes": ["model.iterable.int_iterable__user_event_metrics", "model.iterable.int_iterable__list_user_unnest", "model.iterable.int_iterable__user_event_metrics"]}, "compiled_path": "target/compiled/iterable/models/iterable__users.sql", "compiled": true, "compiled_code": "with user_event_metrics as (\n\n select *\n from \"postgres\".\"iterable_integration_tests_03_int_iterable\".\"int_iterable__user_event_metrics\"\n\n\n\n), user_unnested as (\n -- this has all the user fields we're looking to pass through\n\n select *\n from \"postgres\".\"iterable_integration_tests_03_int_iterable\".\"int_iterable__list_user_unnest\"\n\n -- limit to current lists they are a member of. each list-user combo is a unique row, which we will roll up\n where is_current\n\n), user_with_list_metrics as (\n\n select\n email,\n first_name,\n last_name,\n user_id,\n signup_date,\n signup_source,\n updated_at,\n phone_number,\n email_list_ids,\n count(distinct list_id) as count_lists\n\n from user_unnested\n -- roll up to the user\n group by 1,2,3,4,5,6,7,8,9\n\n), user_join as (\n\n select \n user_with_list_metrics.*,\n \"count_total_campaigns\",\n \"first_event_at\",\n \"last_event_at\",\n \"total_emailclick\",\n \"total_emailunsubscribe\",\n \"total_emailcomplaint\",\n \"total_customevent\",\n \"total_emailsubscribe\",\n \"total_emailopen\",\n \"total_pushsend\",\n \"total_smsbounce\",\n \"total_pushbounce\",\n \"total_inappsendskip\",\n \"total_smssend\",\n \"total_inappsend\",\n \"total_pushopen\",\n \"total_emailsend\",\n \"total_pushsendskip\",\n \"total_inappopen\",\n \"total_emailsendskip\",\n \"total_emailbounce\",\n \"total_inappclick\",\n \"total_pushuninstall\"\n \n\n from user_with_list_metrics\n left join user_event_metrics \n on user_with_list_metrics.email = user_event_metrics.user_email\n \n \n)\n\nselect *\nfrom user_join", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.iterable__user_campaign": {"database": "postgres", "schema": "iterable_integration_tests_03_iterable", "name": "iterable__user_campaign", "resource_type": "model", "package_name": "iterable", "path": "iterable__user_campaign.sql", "original_file_path": "models/iterable__user_campaign.sql", "unique_id": "model.iterable.iterable__user_campaign", "fqn": ["iterable", "iterable__user_campaign"], "alias": "iterable__user_campaign", "checksum": {"name": "sha256", "checksum": "13b5c6554709c51dd0613796627846b67d0d97659536d5b57e4ed466cb563505"}, "config": {"enabled": true, "alias": null, "schema": "iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that provides total and unique metrics for a user associated with particular campaigns.", "columns": {"user_email": {"name": "user_email", "description": "Unique identifier of the user as well as their email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_full_name": {"name": "user_full_name", "description": "The users first and last name", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The unique identifier of the campaign which the user metrics are associated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "campaign_name": {"name": "campaign_name", "description": "The name of the campaign which the user metrics are associated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "template_id": {"name": "template_id", "description": "The unique identifier of the template used within the campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "template_name": {"name": "template_name", "description": "The name of the template used for the campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "experiment_id": {"name": "experiment_id", "description": "The unique experiment variation of the campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recurring_campaign_id": {"name": "recurring_campaign_id", "description": "The unique identifier of the recurring campaign which the campaign is tied to", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recurring_campaign_name": {"name": "recurring_campaign_name", "description": "The name of the recurring campaign which the campaign is tied to", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "first_event_at": {"name": "first_event_at", "description": "Timestamp of the first campaign/experiment event associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_event_at": {"name": "last_event_at", "description": "Timestamp of the most recent campaign/experiment event associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailclick": {"name": "total_emailclick", "description": "Total email clicks events the user took within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailunsubscribe": {"name": "total_emailunsubscribe", "description": "Total email unsubscription events the user performed within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailcomplaint": {"name": "total_emailcomplaint", "description": "Total email complaint events the user performed within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_customevent": {"name": "total_customevent", "description": "Total custom events associated with the user within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailsubscribe": {"name": "total_emailsubscribe", "description": "Total email subscription events associate with the user within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailopen": {"name": "total_emailopen", "description": "Total email open events the user performed within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_pushsend": {"name": "total_pushsend", "description": "Total push send events the user performed within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_smsbounce": {"name": "total_smsbounce", "description": "Total sms bounce events associated with the user within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_pushbounce": {"name": "total_pushbounce", "description": "Total push bounce events associated with the user within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_inappsendskip": {"name": "total_inappsendskip", "description": "Total in app send skip events the user performed within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_smssend": {"name": "total_smssend", "description": "Total sms send events associated with the user within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_inappsend": {"name": "total_inappsend", "description": "Total in app send events associated with the user within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_pushopen": {"name": "total_pushopen", "description": "Total push open events the user performed within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailsend": {"name": "total_emailsend", "description": "Total email send event associated with the user within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_pushsendskip": {"name": "total_pushsendskip", "description": "Total push send skip events associated with the user within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_inappopen": {"name": "total_inappopen", "description": "Total in app open events associated with the user within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailsendskip": {"name": "total_emailsendskip", "description": "Total email send skip events associated with the user within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_emailbounce": {"name": "total_emailbounce", "description": "Total email bounce events associated with the user within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_inappclick": {"name": "total_inappclick", "description": "Total in app click events associated with the user within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "total_pushuninstall": {"name": "total_pushuninstall", "description": "Total push uninstall events associated with the user within the campaign/experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "iterable"}, "created_at": 1688673390.539335, "relation_name": "\"postgres\".\"iterable_integration_tests_03_iterable\".\"iterable__user_campaign\"", "raw_code": "with events as (\n\n select *\n from {{ ref('iterable__events') }}\n\n), pivot_out_events as (\n\n-- this will be at the user-campaign-experiment variation level\n-- if experiment_id is null, the user-campaign interactions happened outside of an experiment\n-- if campaign_id is null, the user interactions are organic\n select \n email as user_email,\n user_full_name,\n campaign_id,\n experiment_id,\n case when campaign_id is null then 'organic' else campaign_name end as campaign_name,\n template_id,\n template_name,\n \n\n recurring_campaign_id,\n recurring_campaign_name,\n\n min(created_at) as first_event_at,\n max(created_at) as last_event_at\n\n -- count up the number of instances of each metric\n -- `iterable__event_metrics` is set by default to all events brought in by fivetran+iterable\n -- https://fivetran.com/docs/applications/iterable#schemanotes\n {% for em in var('iterable__event_metrics') %}\n , sum(case when lower(event_name) = '{{ em | lower }}' then 1 else 0 end) \n as {{ 'total_' ~ em | replace(' ', '_') | replace('(', '') | replace(')', '') | lower }} \n {% endfor %}\n\n from events\n {{ dbt_utils.group_by(n=9) }}\n\n)\n\nselect *\nfrom pivot_out_events", "language": "sql", "refs": [{"name": "iterable__events", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.group_by"], "nodes": ["model.iterable.iterable__events"]}, "compiled_path": "target/compiled/iterable/models/iterable__user_campaign.sql", "compiled": true, "compiled_code": "with events as (\n\n select *\n from \"postgres\".\"iterable_integration_tests_03_iterable\".\"iterable__events\"\n\n), pivot_out_events as (\n\n-- this will be at the user-campaign-experiment variation level\n-- if experiment_id is null, the user-campaign interactions happened outside of an experiment\n-- if campaign_id is null, the user interactions are organic\n select \n email as user_email,\n user_full_name,\n campaign_id,\n experiment_id,\n case when campaign_id is null then 'organic' else campaign_name end as campaign_name,\n template_id,\n template_name,\n \n\n recurring_campaign_id,\n recurring_campaign_name,\n\n min(created_at) as first_event_at,\n max(created_at) as last_event_at\n\n -- count up the number of instances of each metric\n -- `iterable__event_metrics` is set by default to all events brought in by fivetran+iterable\n -- https://fivetran.com/docs/applications/iterable#schemanotes\n \n , sum(case when lower(event_name) = 'emailclick' then 1 else 0 end) \n as total_emailclick \n \n , sum(case when lower(event_name) = 'emailunsubscribe' then 1 else 0 end) \n as total_emailunsubscribe \n \n , sum(case when lower(event_name) = 'emailcomplaint' then 1 else 0 end) \n as total_emailcomplaint \n \n , sum(case when lower(event_name) = 'customevent' then 1 else 0 end) \n as total_customevent \n \n , sum(case when lower(event_name) = 'emailsubscribe' then 1 else 0 end) \n as total_emailsubscribe \n \n , sum(case when lower(event_name) = 'emailopen' then 1 else 0 end) \n as total_emailopen \n \n , sum(case when lower(event_name) = 'pushsend' then 1 else 0 end) \n as total_pushsend \n \n , sum(case when lower(event_name) = 'smsbounce' then 1 else 0 end) \n as total_smsbounce \n \n , sum(case when lower(event_name) = 'pushbounce' then 1 else 0 end) \n as total_pushbounce \n \n , sum(case when lower(event_name) = 'inappsendskip' then 1 else 0 end) \n as total_inappsendskip \n \n , sum(case when lower(event_name) = 'smssend' then 1 else 0 end) \n as total_smssend \n \n , sum(case when lower(event_name) = 'inappsend' then 1 else 0 end) \n as total_inappsend \n \n , sum(case when lower(event_name) = 'pushopen' then 1 else 0 end) \n as total_pushopen \n \n , sum(case when lower(event_name) = 'emailsend' then 1 else 0 end) \n as total_emailsend \n \n , sum(case when lower(event_name) = 'pushsendskip' then 1 else 0 end) \n as total_pushsendskip \n \n , sum(case when lower(event_name) = 'inappopen' then 1 else 0 end) \n as total_inappopen \n \n , sum(case when lower(event_name) = 'emailsendskip' then 1 else 0 end) \n as total_emailsendskip \n \n , sum(case when lower(event_name) = 'emailbounce' then 1 else 0 end) \n as total_emailbounce \n \n , sum(case when lower(event_name) = 'inappclick' then 1 else 0 end) \n as total_inappclick \n \n , sum(case when lower(event_name) = 'pushuninstall' then 1 else 0 end) \n as total_pushuninstall \n \n\n from events\n group by 1,2,3,4,5,6,7,8,9\n\n)\n\nselect *\nfrom pivot_out_events", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.iterable__list_user_history": {"database": "postgres", "schema": "iterable_integration_tests_03_iterable", "name": "iterable__list_user_history", "resource_type": "model", "package_name": "iterable", "path": "iterable__list_user_history.sql", "original_file_path": "models/iterable__list_user_history.sql", "unique_id": "model.iterable.iterable__list_user_history", "fqn": ["iterable", "iterable__list_user_history"], "alias": "iterable__list_user_history", "checksum": {"name": "sha256", "checksum": "7f044fa45d5fc42e163c61ca45d840cd6216047bbc0a633ced0e2be26eda0070"}, "config": {"enabled": true, "alias": null, "schema": "iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that recreates the `list_user_history` source table. Additionally, this table provides an `is_current` field to identify the current lists associated with the user. Additionally, the grain of this table is at the user/list/updated_at grain.\n", "columns": {"user_email": {"name": "user_email", "description": "Unique identifier of the user as well as their email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_first_name": {"name": "user_first_name", "description": "First name of the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_last_name": {"name": "user_last_name", "description": "Last name of the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_id": {"name": "user_id", "description": "User defined identifier of the user. This is not a unique field", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_signup_date": {"name": "user_signup_date", "description": "Timestamp as epoch time in milliseconds of when the user signed up", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_signup_source": {"name": "user_signup_source", "description": "Source where the user signed up", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_updated_at": {"name": "user_updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "list_id": {"name": "list_id", "description": "The list associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_current": {"name": "is_current", "description": "Boolean indicating if the current list is active", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "list_name": {"name": "list_name", "description": "Name of the list associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "list_type": {"name": "list_type", "description": "Type of list associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "list_created_at": {"name": "list_created_at", "description": "Date the list was created", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "iterable"}, "created_at": 1688673390.509708, "relation_name": "\"postgres\".\"iterable_integration_tests_03_iterable\".\"iterable__list_user_history\"", "raw_code": "with user_list_unnest as (\n\n select * \n from {{ ref('int_iterable__list_user_unnest') }}\n\n), lists as (\n\n select * \n from {{ var('list') }}\n\n), final as (\n select\n user_list_unnest.email as user_email,\n user_list_unnest.first_name as user_first_name,\n user_list_unnest.last_name as user_last_name,\n user_list_unnest.user_id,\n user_list_unnest.signup_date as user_signup_date,\n user_list_unnest.signup_source as user_signup_source,\n user_list_unnest.updated_at as user_updated_at,\n user_list_unnest.list_id,\n user_list_unnest.is_current,\n lists.list_name,\n lists.list_type,\n lists.created_at as list_created_at \n\n from user_list_unnest\n left join lists\n on lists.list_id = user_list_unnest.list_id\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "int_iterable__list_user_unnest", "package": null, "version": null}, {"name": "stg_iterable__list", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": [], "nodes": ["model.iterable.int_iterable__list_user_unnest", "model.iterable_source.stg_iterable__list"]}, "compiled_path": "target/compiled/iterable/models/iterable__list_user_history.sql", "compiled": true, "compiled_code": "with user_list_unnest as (\n\n select * \n from \"postgres\".\"iterable_integration_tests_03_int_iterable\".\"int_iterable__list_user_unnest\"\n\n), lists as (\n\n select * \n from \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__list\"\n\n), final as (\n select\n user_list_unnest.email as user_email,\n user_list_unnest.first_name as user_first_name,\n user_list_unnest.last_name as user_last_name,\n user_list_unnest.user_id,\n user_list_unnest.signup_date as user_signup_date,\n user_list_unnest.signup_source as user_signup_source,\n user_list_unnest.updated_at as user_updated_at,\n user_list_unnest.list_id,\n user_list_unnest.is_current,\n lists.list_name,\n lists.list_type,\n lists.created_at as list_created_at \n\n from user_list_unnest\n left join lists\n on lists.list_id = user_list_unnest.list_id\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.int_iterable__list_user_unnest": {"database": "postgres", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__list_user_unnest", "resource_type": "model", "package_name": "iterable", "path": "intermediate/int_iterable__list_user_unnest.sql", "original_file_path": "models/intermediate/int_iterable__list_user_unnest.sql", "unique_id": "model.iterable.int_iterable__list_user_unnest", "fqn": ["iterable", "intermediate", "int_iterable__list_user_unnest"], "alias": "int_iterable__list_user_unnest", "checksum": {"name": "sha256", "checksum": "60b85fb3e597c991cf4d80bf06f21db109fa5297141f291f9efedcce55444762"}, "config": {"enabled": true, "alias": null, "schema": "int_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "incremental", "incremental_strategy": "delete+insert", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": "unique_key", "on_schema_change": "fail", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "partition_by": {"field": "date_day", "data_type": "date"}, "file_format": "parquet", "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that unnests the `email_list_id` field for each user to create a new record for each user and the unique list it was associated with at a unique update. Due to the unnesting functions varying greatly between warehouses, conditional logic is applied throughout the model to appropriately accommodate the model being ran within Redshift, Snowflake, BigQuery, and Postgres.\n", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/intermediate/int_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "incremental", "schema": "int_iterable", "unique_key": "unique_key", "incremental_strategy": "delete+insert", "partition_by": {"field": "date_day", "data_type": "date"}, "file_format": "parquet", "on_schema_change": "fail"}, "created_at": 1688673390.592864, "relation_name": "\"postgres\".\"iterable_integration_tests_03_int_iterable\".\"int_iterable__list_user_unnest\"", "raw_code": "{{ config(\n materialized='incremental',\n unique_key='unique_key',\n incremental_strategy='insert_overwrite' if target.type in ('bigquery', 'spark', 'databricks') else 'delete+insert',\n partition_by={\"field\": \"date_day\", \"data_type\": \"date\"} if target.type not in ('spark','databricks') else ['date_day'],\n file_format='parquet',\n on_schema_change='fail'\n ) \n}}\n\nwith user_history as (\n\n select * \n from {{ ref('int_iterable__list_user_history') }} as user_history\n\n {% if is_incremental() %}\n {# the only rows we potentially want to overwrite are active ones #}\n where user_history.updated_at >= coalesce((select min(updated_at) from {{ this }} where is_current), '2010-01-01')\n {% endif %}\n\n{% if target.type == 'redshift' %}\n{# using PartiQL syntax to work with redshift's SUPER types #}\n), redshift_parse_email_lists as (\n\n select\n email,\n first_name,\n last_name,\n user_id,\n signup_date,\n signup_source,\n phone_number,\n updated_at,\n is_current,\n email_list_ids,\n {# let's not remove empty array-rows #}\n json_parse(case when email_list_ids = '[]' then '[\"is_null\"]' else email_list_ids end) as super_email_list_ids\n \n from user_history\n\n), unnest_email_array as (\n\n select\n email,\n first_name,\n last_name,\n user_id,\n signup_date,\n signup_source,\n phone_number,\n updated_at,\n is_current,\n {# go back to strings #}\n cast(email_list_ids as {{ dbt.type_string() }}) as email_list_ids, \n cast(email_list_id as {{ dbt.type_string() }}) as email_list_id\n\n from redshift_parse_email_lists as emails, emails.super_email_list_ids as email_list_id\n\n{% else %}\n), unnest_email_array as (\n\n select\n email,\n first_name,\n last_name,\n user_id,\n signup_date,\n signup_source,\n phone_number,\n updated_at,\n is_current,\n email_list_ids,\n case when email_list_ids != '[]' then\n {% if target.type == 'snowflake' %}\n email_list_id.value\n {% elif target.type in ('spark','databricks') %}\n email_list_id.col\n {% else %} email_list_id {% endif %} \n else null \n end as email_list_id\n\n from user_history\n\n {% if target.type == 'snowflake' %}\n cross join \n table(flatten(input => parse_json(case when email_list_ids = '[]' then '[\"is_null\"]' {# to not remove empty array-rows #}\n else email_list_ids end))) as email_list_id\n {% elif target.type == 'bigquery' %}\n cross join \n unnest(JSON_EXTRACT_STRING_ARRAY(case when email_list_ids = '[]' then '[\"is_null\"]' {# to not remove empty array-rows #}\n else email_list_ids end)) as email_list_id\n {% elif target.type in ('spark','databricks') %}\n cross join \n lateral explode_outer(from_json(case when email_list_ids = '[]' then '[\"is_null\"]' {# to not remove empty array-rows #}\n else email_list_ids end, 'array')) as email_list_id\n {% else %} {# target is postgres #}\n cross join \n json_array_elements_text(cast((\n case when email_list_ids = '[]' then '[\"is_null\"]' {# to not remove empty array-rows #}\n else email_list_ids end) as json)) as email_list_id\n {%- endif %}\n\n{%- endif -%}\n), adjust_nulls as (\n\n select\n email,\n first_name,\n last_name,\n user_id,\n signup_date,\n signup_source,\n updated_at,\n phone_number,\n is_current,\n case when email_list_ids = '[\"is_null\"]' then '[]' else email_list_ids end as email_list_ids,\n cast(NULLIF(email_list_id, 'is_null') as {{ dbt.type_int() }}) as list_id\n\n from unnest_email_array\n\n), final as (\n\n select\n email,\n first_name,\n last_name,\n user_id,\n signup_date,\n signup_source,\n updated_at,\n phone_number,\n is_current,\n email_list_ids,\n list_id,\n {{ dbt_utils.generate_surrogate_key([\"email\", \"list_id\", \"updated_at\"]) }} as unique_key,\n cast( {{ dbt.date_trunc('day', 'updated_at') }} as date) as date_day\n \n from adjust_nulls\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "int_iterable__list_user_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.is_incremental", "macro.dbt.type_int", "macro.dbt_utils.generate_surrogate_key", "macro.dbt.date_trunc"], "nodes": ["model.iterable.int_iterable__list_user_history"]}, "compiled_path": "target/compiled/iterable/models/intermediate/int_iterable__list_user_unnest.sql", "compiled": true, "compiled_code": "\n\nwith user_history as (\n\n select * \n from \"postgres\".\"iterable_integration_tests_03_int_iterable\".\"int_iterable__list_user_history\" as user_history\n\n \n \n where user_history.updated_at >= coalesce((select min(updated_at) from \"postgres\".\"iterable_integration_tests_03_int_iterable\".\"int_iterable__list_user_unnest\" where is_current), '2010-01-01')\n \n\n\n), unnest_email_array as (\n\n select\n email,\n first_name,\n last_name,\n user_id,\n signup_date,\n signup_source,\n phone_number,\n updated_at,\n is_current,\n email_list_ids,\n case when email_list_ids != '[]' then\n email_list_id \n else null \n end as email_list_id\n\n from user_history\n\n \n cross join \n json_array_elements_text(cast((\n case when email_list_ids = '[]' then '[\"is_null\"]' \n else email_list_ids end) as json)) as email_list_id), adjust_nulls as (\n\n select\n email,\n first_name,\n last_name,\n user_id,\n signup_date,\n signup_source,\n updated_at,\n phone_number,\n is_current,\n case when email_list_ids = '[\"is_null\"]' then '[]' else email_list_ids end as email_list_ids,\n cast(NULLIF(email_list_id, 'is_null') as INT) as list_id\n\n from unnest_email_array\n\n), final as (\n\n select\n email,\n first_name,\n last_name,\n user_id,\n signup_date,\n signup_source,\n updated_at,\n phone_number,\n is_current,\n email_list_ids,\n list_id,\n md5(cast(coalesce(cast(email as TEXT), '_dbt_utils_surrogate_key_null_') || '-' || coalesce(cast(list_id as TEXT), '_dbt_utils_surrogate_key_null_') || '-' || coalesce(cast(updated_at as TEXT), '_dbt_utils_surrogate_key_null_') as TEXT)) as unique_key,\n cast( date_trunc('day', updated_at) as date) as date_day\n \n from adjust_nulls\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.int_iterable__latest_campaign": {"database": "postgres", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__latest_campaign", "resource_type": "model", "package_name": "iterable", "path": "intermediate/int_iterable__latest_campaign.sql", "original_file_path": "models/intermediate/int_iterable__latest_campaign.sql", "unique_id": "model.iterable.int_iterable__latest_campaign", "fqn": ["iterable", "intermediate", "int_iterable__latest_campaign"], "alias": "int_iterable__latest_campaign", "checksum": {"name": "sha256", "checksum": "02638804ee58aa752c0cd0374948f66a3a0b57a1e29e1903ab882a0ee6471138"}, "config": {"enabled": true, "alias": null, "schema": "int_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that filters out historical versions of the campaign, and returns the most recent campaign version.", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/intermediate/int_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "int_iterable"}, "created_at": 1688673390.5915499, "relation_name": "\"postgres\".\"iterable_integration_tests_03_int_iterable\".\"int_iterable__latest_campaign\"", "raw_code": "with campaign_history as (\n select *\n from {{ var('campaign_history') }}\n\n), latest_campaign as (\n select\n *,\n row_number() over(partition by campaign_id order by updated_at desc) as latest_campaign_index\n from campaign_history\n)\n\nselect *\nfrom latest_campaign\nwhere latest_campaign_index = 1", "language": "sql", "refs": [{"name": "stg_iterable__campaign_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": [], "nodes": ["model.iterable_source.stg_iterable__campaign_history"]}, "compiled_path": "target/compiled/iterable/models/intermediate/int_iterable__latest_campaign.sql", "compiled": true, "compiled_code": "with campaign_history as (\n select *\n from \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__campaign_history\"\n\n), latest_campaign as (\n select\n *,\n row_number() over(partition by campaign_id order by updated_at desc) as latest_campaign_index\n from campaign_history\n)\n\nselect *\nfrom latest_campaign\nwhere latest_campaign_index = 1", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.int_iterable__campaign_event_metrics": {"database": "postgres", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__campaign_event_metrics", "resource_type": "model", "package_name": "iterable", "path": "intermediate/int_iterable__campaign_event_metrics.sql", "original_file_path": "models/intermediate/int_iterable__campaign_event_metrics.sql", "unique_id": "model.iterable.int_iterable__campaign_event_metrics", "fqn": ["iterable", "intermediate", "int_iterable__campaign_event_metrics"], "alias": "int_iterable__campaign_event_metrics", "checksum": {"name": "sha256", "checksum": "3eed84d176de96b3c92efaf784758a7c8040a67eff8b88d1a3c2c2893bd4b6e9"}, "config": {"enabled": true, "alias": null, "schema": "int_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that generates relevant total and unique campaign/experiment level aggregations.", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/intermediate/int_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "int_iterable"}, "created_at": 1688673390.590695, "relation_name": "\"postgres\".\"iterable_integration_tests_03_int_iterable\".\"int_iterable__campaign_event_metrics\"", "raw_code": "with user_campaign as (\n\n select *\n from {{ ref('iterable__user_campaign') }}\n\n), campaign_user_event_metrics as (\n\n{%- set user_campaign_columns = adapter.get_columns_in_relation(ref('iterable__user_campaign')) %}\n\n select\n campaign_id, \n template_id,\n experiment_id,\n count(distinct user_email) as count_unique_users\n {% for col in user_campaign_columns %}\n {% if col.name|lower not in ['user_email', 'user_full_name', 'campaign_id', 'campaign_name', 'recurring_campaign_id', \n 'recurring_campaign_name', 'first_event_at', 'last_event_at', 'template_id', 'template_name',\n 'experiment_id'] %}\n , sum( {{ col.name }} ) as {{ col.name }}\n , sum(case when {{ col.name }} > 0 then 1 else 0 end) as {{ 'unique_' ~ col.name }}\n\n {% endif %}\n {% endfor -%}\n\n from user_campaign\n group by 1,2,3\n\n)\n\nselect *\nfrom campaign_user_event_metrics", "language": "sql", "refs": [{"name": "iterable__user_campaign", "package": null, "version": null}, {"name": "iterable__user_campaign", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": [], "nodes": ["model.iterable.iterable__user_campaign", "model.iterable.iterable__user_campaign"]}, "compiled_path": "target/compiled/iterable/models/intermediate/int_iterable__campaign_event_metrics.sql", "compiled": true, "compiled_code": "with user_campaign as (\n\n select *\n from \"postgres\".\"iterable_integration_tests_03_iterable\".\"iterable__user_campaign\"\n\n), campaign_user_event_metrics as (\n\n select\n campaign_id, \n template_id,\n experiment_id,\n count(distinct user_email) as count_unique_users\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n , sum( total_emailclick ) as total_emailclick\n , sum(case when total_emailclick > 0 then 1 else 0 end) as unique_total_emailclick\n\n \n \n \n , sum( total_emailunsubscribe ) as total_emailunsubscribe\n , sum(case when total_emailunsubscribe > 0 then 1 else 0 end) as unique_total_emailunsubscribe\n\n \n \n \n , sum( total_emailcomplaint ) as total_emailcomplaint\n , sum(case when total_emailcomplaint > 0 then 1 else 0 end) as unique_total_emailcomplaint\n\n \n \n \n , sum( total_customevent ) as total_customevent\n , sum(case when total_customevent > 0 then 1 else 0 end) as unique_total_customevent\n\n \n \n \n , sum( total_emailsubscribe ) as total_emailsubscribe\n , sum(case when total_emailsubscribe > 0 then 1 else 0 end) as unique_total_emailsubscribe\n\n \n \n \n , sum( total_emailopen ) as total_emailopen\n , sum(case when total_emailopen > 0 then 1 else 0 end) as unique_total_emailopen\n\n \n \n \n , sum( total_pushsend ) as total_pushsend\n , sum(case when total_pushsend > 0 then 1 else 0 end) as unique_total_pushsend\n\n \n \n \n , sum( total_smsbounce ) as total_smsbounce\n , sum(case when total_smsbounce > 0 then 1 else 0 end) as unique_total_smsbounce\n\n \n \n \n , sum( total_pushbounce ) as total_pushbounce\n , sum(case when total_pushbounce > 0 then 1 else 0 end) as unique_total_pushbounce\n\n \n \n \n , sum( total_inappsendskip ) as total_inappsendskip\n , sum(case when total_inappsendskip > 0 then 1 else 0 end) as unique_total_inappsendskip\n\n \n \n \n , sum( total_smssend ) as total_smssend\n , sum(case when total_smssend > 0 then 1 else 0 end) as unique_total_smssend\n\n \n \n \n , sum( total_inappsend ) as total_inappsend\n , sum(case when total_inappsend > 0 then 1 else 0 end) as unique_total_inappsend\n\n \n \n \n , sum( total_pushopen ) as total_pushopen\n , sum(case when total_pushopen > 0 then 1 else 0 end) as unique_total_pushopen\n\n \n \n \n , sum( total_emailsend ) as total_emailsend\n , sum(case when total_emailsend > 0 then 1 else 0 end) as unique_total_emailsend\n\n \n \n \n , sum( total_pushsendskip ) as total_pushsendskip\n , sum(case when total_pushsendskip > 0 then 1 else 0 end) as unique_total_pushsendskip\n\n \n \n \n , sum( total_inappopen ) as total_inappopen\n , sum(case when total_inappopen > 0 then 1 else 0 end) as unique_total_inappopen\n\n \n \n \n , sum( total_emailsendskip ) as total_emailsendskip\n , sum(case when total_emailsendskip > 0 then 1 else 0 end) as unique_total_emailsendskip\n\n \n \n \n , sum( total_emailbounce ) as total_emailbounce\n , sum(case when total_emailbounce > 0 then 1 else 0 end) as unique_total_emailbounce\n\n \n \n \n , sum( total_inappclick ) as total_inappclick\n , sum(case when total_inappclick > 0 then 1 else 0 end) as unique_total_inappclick\n\n \n \n \n , sum( total_pushuninstall ) as total_pushuninstall\n , sum(case when total_pushuninstall > 0 then 1 else 0 end) as unique_total_pushuninstall\n\n \n from user_campaign\n group by 1,2,3\n\n)\n\nselect *\nfrom campaign_user_event_metrics", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.int_iterable__campaign_lists": {"database": "postgres", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__campaign_lists", "resource_type": "model", "package_name": "iterable", "path": "intermediate/int_iterable__campaign_lists.sql", "original_file_path": "models/intermediate/int_iterable__campaign_lists.sql", "unique_id": "model.iterable.int_iterable__campaign_lists", "fqn": ["iterable", "intermediate", "int_iterable__campaign_lists"], "alias": "int_iterable__campaign_lists", "checksum": {"name": "sha256", "checksum": "76c681170c2099129bb9a3e99431bcd6fc5f7132fe5c6feb8abbbdcaa105df89"}, "config": {"enabled": true, "alias": null, "schema": "int_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that identifies the suppressed and send lists associated with a campaign.", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/intermediate/int_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "int_iterable"}, "created_at": 1688673390.591279, "relation_name": "\"postgres\".\"iterable_integration_tests_03_int_iterable\".\"int_iterable__campaign_lists\"", "raw_code": "with \n\n{% if var('iterable__using_campaign_suppression_list_history', True) %}\n\ncampaign_suppression_list_history as (\n\n select *\n from {{ var('campaign_suppression_list_history') }}\n\n), \n\n{% endif %}\n\ncampaign_send_list_history as (\n\n select *\n from {{ var('campaign_list_history') }}\n\n), combine_list_histories as (\n\n{% if var('iterable__using_campaign_suppression_list_history', True) %}\n\n select \n suppressed_list_id as list_id,\n campaign_id,\n updated_at,\n 'suppress' as list_activity\n from campaign_suppression_list_history\n\n union all \n\n{% endif %}\n\n select \n list_id,\n campaign_id,\n updated_at,\n 'send' as list_activity\n from campaign_send_list_history\n\n), order_campaign_list_history as (\n\n select\n *,\n row_number() over(partition by list_id, campaign_id order by updated_at desc) as latest_list_index\n from combine_list_histories\n\n), latest_campaign_list_history as (\n\n select \n list_id,\n campaign_id,\n updated_at,\n list_activity\n\n from order_campaign_list_history \n where latest_list_index = 1\n)\n\nselect *\nfrom latest_campaign_list_history", "language": "sql", "refs": [{"name": "stg_iterable__campaign_suppression_list_history", "package": null, "version": null}, {"name": "stg_iterable__campaign_list_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": [], "nodes": ["model.iterable_source.stg_iterable__campaign_suppression_list_history", "model.iterable_source.stg_iterable__campaign_list_history"]}, "compiled_path": "target/compiled/iterable/models/intermediate/int_iterable__campaign_lists.sql", "compiled": true, "compiled_code": "with \n\n\n\ncampaign_suppression_list_history as (\n\n select *\n from \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__campaign_suppression_list_history\"\n\n), \n\n\n\ncampaign_send_list_history as (\n\n select *\n from \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__campaign_list_history\"\n\n), combine_list_histories as (\n\n\n\n select \n suppressed_list_id as list_id,\n campaign_id,\n updated_at,\n 'suppress' as list_activity\n from campaign_suppression_list_history\n\n union all \n\n\n\n select \n list_id,\n campaign_id,\n updated_at,\n 'send' as list_activity\n from campaign_send_list_history\n\n), order_campaign_list_history as (\n\n select\n *,\n row_number() over(partition by list_id, campaign_id order by updated_at desc) as latest_list_index\n from combine_list_histories\n\n), latest_campaign_list_history as (\n\n select \n list_id,\n campaign_id,\n updated_at,\n list_activity\n\n from order_campaign_list_history \n where latest_list_index = 1\n)\n\nselect *\nfrom latest_campaign_list_history", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.int_iterable__latest_user": {"database": "postgres", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__latest_user", "resource_type": "model", "package_name": "iterable", "path": "intermediate/int_iterable__latest_user.sql", "original_file_path": "models/intermediate/int_iterable__latest_user.sql", "unique_id": "model.iterable.int_iterable__latest_user", "fqn": ["iterable", "intermediate", "int_iterable__latest_user"], "alias": "int_iterable__latest_user", "checksum": {"name": "sha256", "checksum": "bd44577fee9b3734789ddafd51e670549da1eea9d748cb38c1cb3cc11852be59"}, "config": {"enabled": true, "alias": null, "schema": "int_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that filters out historical versions of the user, and returns only the most recent version.", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/intermediate/int_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "int_iterable"}, "created_at": 1688673390.592347, "relation_name": "\"postgres\".\"iterable_integration_tests_03_int_iterable\".\"int_iterable__latest_user\"", "raw_code": "with user_history as (\n select *\n from {{ var('user_history') }}\n\n), latest_user as (\n select\n *,\n row_number() over(partition by email order by updated_at desc) as latest_user_index\n from user_history\n)\n\nselect *\nfrom latest_user\nwhere latest_user_index = 1", "language": "sql", "refs": [{"name": "stg_iterable__user_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": [], "nodes": ["model.iterable_source.stg_iterable__user_history"]}, "compiled_path": "target/compiled/iterable/models/intermediate/int_iterable__latest_user.sql", "compiled": true, "compiled_code": "with user_history as (\n select *\n from \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__user_history\"\n\n), latest_user as (\n select\n *,\n row_number() over(partition by email order by updated_at desc) as latest_user_index\n from user_history\n)\n\nselect *\nfrom latest_user\nwhere latest_user_index = 1", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.int_iterable__campaign_labels": {"database": "postgres", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__campaign_labels", "resource_type": "model", "package_name": "iterable", "path": "intermediate/int_iterable__campaign_labels.sql", "original_file_path": "models/intermediate/int_iterable__campaign_labels.sql", "unique_id": "model.iterable.int_iterable__campaign_labels", "fqn": ["iterable", "intermediate", "int_iterable__campaign_labels"], "alias": "int_iterable__campaign_labels", "checksum": {"name": "sha256", "checksum": "53f0cae6b442f3d6de9a2543afb815951ff196ff1d61f1bf2ed74e27ecfc359b"}, "config": {"enabled": true, "alias": null, "schema": "int_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that provides the distinct string aggregation of labels for each campaign.", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/intermediate/int_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "int_iterable", "enabled": true}, "created_at": 1688673390.591001, "relation_name": "\"postgres\".\"iterable_integration_tests_03_int_iterable\".\"int_iterable__campaign_labels\"", "raw_code": "{{ config(enabled=var('iterable__using_campaign_label_history', True)) }}\n\nwith campaign_label_history as (\n\n select *\n from {{ var('campaign_label_history') }}\n\n), order_campaign_labels as (\n\n select \n *,\n rank() over(partition by campaign_id order by updated_at desc) as latest_label_batch_index\n\n from campaign_label_history\n\n), latest_labels as (\n\n select *\n from order_campaign_labels\n where latest_label_batch_index = 1\n\n), aggregate_labels as (\n\n select \n campaign_id,\n {{ fivetran_utils.string_agg('distinct label', \"', '\") }} as labels \n\n from latest_labels\n group by campaign_id\n)\n\nselect * from aggregate_labels", "language": "sql", "refs": [{"name": "stg_iterable__campaign_label_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.string_agg"], "nodes": ["model.iterable_source.stg_iterable__campaign_label_history"]}, "compiled_path": "target/compiled/iterable/models/intermediate/int_iterable__campaign_labels.sql", "compiled": true, "compiled_code": "\n\nwith campaign_label_history as (\n\n select *\n from \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__campaign_label_history\"\n\n), order_campaign_labels as (\n\n select \n *,\n rank() over(partition by campaign_id order by updated_at desc) as latest_label_batch_index\n\n from campaign_label_history\n\n), latest_labels as (\n\n select *\n from order_campaign_labels\n where latest_label_batch_index = 1\n\n), aggregate_labels as (\n\n select \n campaign_id,\n \n string_agg(distinct label, ', ')\n\n as labels \n\n from latest_labels\n group by campaign_id\n)\n\nselect * from aggregate_labels", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.int_iterable__message_type_channel": {"database": "postgres", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__message_type_channel", "resource_type": "model", "package_name": "iterable", "path": "intermediate/int_iterable__message_type_channel.sql", "original_file_path": "models/intermediate/int_iterable__message_type_channel.sql", "unique_id": "model.iterable.int_iterable__message_type_channel", "fqn": ["iterable", "intermediate", "int_iterable__message_type_channel"], "alias": "int_iterable__message_type_channel", "checksum": {"name": "sha256", "checksum": "7675596443596d8bd27ae247ea53d0d3b69e035bffa631505ee4e0c0dd17c2e5"}, "config": {"enabled": true, "alias": null, "schema": "int_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that joins the message type and channel records together into one comprehensive model to be referenced downstream.", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/intermediate/int_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "int_iterable"}, "created_at": 1688673390.593121, "relation_name": "\"postgres\".\"iterable_integration_tests_03_int_iterable\".\"int_iterable__message_type_channel\"", "raw_code": "with message_type as (\n\n select *\n from {{ var('message_type') }}\n\n), channel as (\n\n select *\n from {{ var('channel') }}\n\n), final as (\n\n select \n channel.*,\n message_type.message_type_name,\n message_type.message_type_id\n from channel\n left join message_type on channel.channel_id = message_type.channel_id\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_iterable__message_type", "package": null, "version": null}, {"name": "stg_iterable__channel", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": [], "nodes": ["model.iterable_source.stg_iterable__message_type", "model.iterable_source.stg_iterable__channel"]}, "compiled_path": "target/compiled/iterable/models/intermediate/int_iterable__message_type_channel.sql", "compiled": true, "compiled_code": "with message_type as (\n\n select *\n from \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__message_type\"\n\n), channel as (\n\n select *\n from \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__channel\"\n\n), final as (\n\n select \n channel.*,\n message_type.message_type_name,\n message_type.message_type_id\n from channel\n left join message_type on channel.channel_id = message_type.channel_id\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.int_iterable__latest_template": {"database": "postgres", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__latest_template", "resource_type": "model", "package_name": "iterable", "path": "intermediate/int_iterable__latest_template.sql", "original_file_path": "models/intermediate/int_iterable__latest_template.sql", "unique_id": "model.iterable.int_iterable__latest_template", "fqn": ["iterable", "intermediate", "int_iterable__latest_template"], "alias": "int_iterable__latest_template", "checksum": {"name": "sha256", "checksum": "031c6f50ed5e2a6f0182fcfd3686b20c298c4175850cf3a73a002740ad27174b"}, "config": {"enabled": true, "alias": null, "schema": "int_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that provides the most recent version of the template as well as joining relevant message type information.", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/intermediate/int_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "int_iterable"}, "created_at": 1688673390.591816, "relation_name": "\"postgres\".\"iterable_integration_tests_03_int_iterable\".\"int_iterable__latest_template\"", "raw_code": "with template_history as (\n select *\n from {{ var('template_history') }}\n\n), order_template as (\n select\n *,\n row_number() over(partition by template_id order by updated_at desc) as latest_template_index\n from template_history\n\n), latest_template as (\n\n select *\n from order_template\n where latest_template_index = 1\n\n), message_type_channel as (\n\n select *\n from {{ ref('int_iterable__message_type_channel') }}\n\n), template_join as (\n\n select \n latest_template.*,\n message_type_channel.message_type_name,\n message_type_channel.channel_id,\n message_type_channel.channel_name,\n message_type_channel.channel_type,\n message_type_channel.message_medium\n\n from latest_template \n left join message_type_channel \n on latest_template.message_type_id = message_type_channel.message_type_id\n)\n\nselect *\nfrom template_join", "language": "sql", "refs": [{"name": "stg_iterable__template_history", "package": null, "version": null}, {"name": "int_iterable__message_type_channel", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": [], "nodes": ["model.iterable_source.stg_iterable__template_history", "model.iterable.int_iterable__message_type_channel"]}, "compiled_path": "target/compiled/iterable/models/intermediate/int_iterable__latest_template.sql", "compiled": true, "compiled_code": "with template_history as (\n select *\n from \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__template_history\"\n\n), order_template as (\n select\n *,\n row_number() over(partition by template_id order by updated_at desc) as latest_template_index\n from template_history\n\n), latest_template as (\n\n select *\n from order_template\n where latest_template_index = 1\n\n), message_type_channel as (\n\n select *\n from \"postgres\".\"iterable_integration_tests_03_int_iterable\".\"int_iterable__message_type_channel\"\n\n), template_join as (\n\n select \n latest_template.*,\n message_type_channel.message_type_name,\n message_type_channel.channel_id,\n message_type_channel.channel_name,\n message_type_channel.channel_type,\n message_type_channel.message_medium\n\n from latest_template \n left join message_type_channel \n on latest_template.message_type_id = message_type_channel.message_type_id\n)\n\nselect *\nfrom template_join", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.int_iterable__user_event_metrics": {"database": "postgres", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__user_event_metrics", "resource_type": "model", "package_name": "iterable", "path": "intermediate/int_iterable__user_event_metrics.sql", "original_file_path": "models/intermediate/int_iterable__user_event_metrics.sql", "unique_id": "model.iterable.int_iterable__user_event_metrics", "fqn": ["iterable", "intermediate", "int_iterable__user_event_metrics"], "alias": "int_iterable__user_event_metrics", "checksum": {"name": "sha256", "checksum": "7e1ce19ecac5f23dd6ee473a0799cbc19f3ac02f6f3c21060f217b6a5271e408"}, "config": {"enabled": true, "alias": null, "schema": "int_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that generates user aggregations at the campaign level.", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/intermediate/int_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "int_iterable"}, "created_at": 1688673390.594284, "relation_name": "\"postgres\".\"iterable_integration_tests_03_int_iterable\".\"int_iterable__user_event_metrics\"", "raw_code": "with user_campaign as (\n\n select *\n from {{ ref('iterable__user_campaign') }}\n\n), user_event_metrics as (\n\n{%- set user_campaign_columns = adapter.get_columns_in_relation(ref('iterable__user_campaign')) %}\n\n select\n user_email, \n count(distinct campaign_id) as count_total_campaigns,\n min(first_event_at) as first_event_at,\n max(last_event_at) as last_event_at\n\n {% for col in user_campaign_columns %}\n {% if col.name|lower not in ['user_email', 'user_full_name', 'campaign_id', 'campaign_name', 'recurring_campaign_id', \n 'recurring_campaign_name', 'first_event_at', 'last_event_at', 'template_id', 'template_name',\n 'experiment_id'] %}\n , sum( {{ col.name }} ) as {{ col.name }}\n {% endif %}\n {% endfor -%}\n\n from user_campaign\n group by user_email\n\n)\n\nselect *\nfrom user_event_metrics", "language": "sql", "refs": [{"name": "iterable__user_campaign", "package": null, "version": null}, {"name": "iterable__user_campaign", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": [], "nodes": ["model.iterable.iterable__user_campaign", "model.iterable.iterable__user_campaign"]}, "compiled_path": "target/compiled/iterable/models/intermediate/int_iterable__user_event_metrics.sql", "compiled": true, "compiled_code": "with user_campaign as (\n\n select *\n from \"postgres\".\"iterable_integration_tests_03_iterable\".\"iterable__user_campaign\"\n\n), user_event_metrics as (\n\n select\n user_email, \n count(distinct campaign_id) as count_total_campaigns,\n min(first_event_at) as first_event_at,\n max(last_event_at) as last_event_at\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n , sum( total_emailclick ) as total_emailclick\n \n \n \n , sum( total_emailunsubscribe ) as total_emailunsubscribe\n \n \n \n , sum( total_emailcomplaint ) as total_emailcomplaint\n \n \n \n , sum( total_customevent ) as total_customevent\n \n \n \n , sum( total_emailsubscribe ) as total_emailsubscribe\n \n \n \n , sum( total_emailopen ) as total_emailopen\n \n \n \n , sum( total_pushsend ) as total_pushsend\n \n \n \n , sum( total_smsbounce ) as total_smsbounce\n \n \n \n , sum( total_pushbounce ) as total_pushbounce\n \n \n \n , sum( total_inappsendskip ) as total_inappsendskip\n \n \n \n , sum( total_smssend ) as total_smssend\n \n \n \n , sum( total_inappsend ) as total_inappsend\n \n \n \n , sum( total_pushopen ) as total_pushopen\n \n \n \n , sum( total_emailsend ) as total_emailsend\n \n \n \n , sum( total_pushsendskip ) as total_pushsendskip\n \n \n \n , sum( total_inappopen ) as total_inappopen\n \n \n \n , sum( total_emailsendskip ) as total_emailsendskip\n \n \n \n , sum( total_emailbounce ) as total_emailbounce\n \n \n \n , sum( total_inappclick ) as total_inappclick\n \n \n \n , sum( total_pushuninstall ) as total_pushuninstall\n \n from user_campaign\n group by user_email\n\n)\n\nselect *\nfrom user_event_metrics", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.int_iterable__list_user_history": {"database": "postgres", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__list_user_history", "resource_type": "model", "package_name": "iterable", "path": "intermediate/int_iterable__list_user_history.sql", "original_file_path": "models/intermediate/int_iterable__list_user_history.sql", "unique_id": "model.iterable.int_iterable__list_user_history", "fqn": ["iterable", "intermediate", "int_iterable__list_user_history"], "alias": "int_iterable__list_user_history", "checksum": {"name": "sha256", "checksum": "3e94b1e49f8579ff27fc3c016f0e9de39555096ec6b4fd9d4236a9fa76c4f7ae"}, "config": {"enabled": true, "alias": null, "schema": "int_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that provides a history of all lists the user has been associated with.", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/intermediate/int_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "int_iterable"}, "created_at": 1688673390.592607, "relation_name": "\"postgres\".\"iterable_integration_tests_03_int_iterable\".\"int_iterable__list_user_history\"", "raw_code": "-- this model will serve to extract only email-list changes\nwith user_history as (\n\n select *\n from {{ var('user_history') }}\n\n), previous_email_list_ids as (\n\n select\n *,\n lag(email_list_ids) over(partition by email order by updated_at asc) as previous_ids\n\n from user_history \n\n), only_new_email_list_ids as (\n\n select \n email,\n user_id,\n first_name,\n last_name,\n email_list_ids,\n phone_number,\n signup_date,\n signup_source,\n updated_at\n\n from previous_email_list_ids\n where email_list_ids != coalesce(previous_ids, 'this is new') -- list ids are always stored in their arrays in numerical order\n\n), most_recent_list_ids as (\n\n select \n *,\n row_number() over(partition by email order by updated_at desc) as latest_user_index\n \n from only_new_email_list_ids\n\n), final as (\n\n select \n email,\n user_id,\n first_name,\n last_name,\n email_list_ids,\n phone_number,\n signup_date,\n signup_source,\n updated_at,\n latest_user_index = 1 as is_current\n\n from most_recent_list_ids\n)\n\nselect * from final", "language": "sql", "refs": [{"name": "stg_iterable__user_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": [], "nodes": ["model.iterable_source.stg_iterable__user_history"]}, "compiled_path": "target/compiled/iterable/models/intermediate/int_iterable__list_user_history.sql", "compiled": true, "compiled_code": "-- this model will serve to extract only email-list changes\nwith user_history as (\n\n select *\n from \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__user_history\"\n\n), previous_email_list_ids as (\n\n select\n *,\n lag(email_list_ids) over(partition by email order by updated_at asc) as previous_ids\n\n from user_history \n\n), only_new_email_list_ids as (\n\n select \n email,\n user_id,\n first_name,\n last_name,\n email_list_ids,\n phone_number,\n signup_date,\n signup_source,\n updated_at\n\n from previous_email_list_ids\n where email_list_ids != coalesce(previous_ids, 'this is new') -- list ids are always stored in their arrays in numerical order\n\n), most_recent_list_ids as (\n\n select \n *,\n row_number() over(partition by email order by updated_at desc) as latest_user_index\n \n from only_new_email_list_ids\n\n), final as (\n\n select \n email,\n user_id,\n first_name,\n last_name,\n email_list_ids,\n phone_number,\n signup_date,\n signup_source,\n updated_at,\n latest_user_index = 1 as is_current\n\n from most_recent_list_ids\n)\n\nselect * from final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable.int_iterable__recurring_campaigns": {"database": "postgres", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__recurring_campaigns", "resource_type": "model", "package_name": "iterable", "path": "intermediate/int_iterable__recurring_campaigns.sql", "original_file_path": "models/intermediate/int_iterable__recurring_campaigns.sql", "unique_id": "model.iterable.int_iterable__recurring_campaigns", "fqn": ["iterable", "intermediate", "int_iterable__recurring_campaigns"], "alias": "int_iterable__recurring_campaigns", "checksum": {"name": "sha256", "checksum": "e74aa500d7ec1ab63d75bccff6f7091cc16d99652d4d9ea2513a2e06dd6f8a40"}, "config": {"enabled": true, "alias": null, "schema": "int_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that identifies when a campaign is associated with a recurring campaign and provides additional enriched recurring campaign information.", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/intermediate/int_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "int_iterable"}, "created_at": 1688673390.593919, "relation_name": "\"postgres\".\"iterable_integration_tests_03_int_iterable\".\"int_iterable__recurring_campaigns\"", "raw_code": "with latest_campaign as (\n\n select * \n from {{ ref('int_iterable__latest_campaign') }}\n\n), recurring_campaign_join as (\n select\n latest_campaign.campaign_id,\n latest_campaign.campaign_name,\n latest_campaign.updated_at,\n latest_campaign.campaign_state,\n latest_campaign.campaign_type,\n latest_campaign.send_size,\n latest_campaign.start_at,\n latest_campaign.ended_at,\n latest_campaign.created_at,\n latest_campaign.created_by_user_id,\n latest_campaign.template_id,\n latest_campaign.recurring_campaign_id,\n\n recurring_campaign.campaign_name as recurring_campaign_name,\n recurring_campaign.campaign_state as recurring_campaign_state,\n recurring_campaign.send_size as recurring_campaign_send_size,\n recurring_campaign.start_at as recurring_campaign_start_at\n\n from latest_campaign\n\n left join latest_campaign as recurring_campaign\n on latest_campaign.recurring_campaign_id = recurring_campaign.campaign_id\n\n), final as (\n\n select\n recurring_campaign_join.*,\n case when latest_campaign.recurring_campaign_id is not null then true \n else false end as is_campaign_recurring\n\n from recurring_campaign_join\n left join latest_campaign on recurring_campaign_join.campaign_id = latest_campaign.recurring_campaign_id\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "int_iterable__latest_campaign", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": [], "nodes": ["model.iterable.int_iterable__latest_campaign"]}, "compiled_path": "target/compiled/iterable/models/intermediate/int_iterable__recurring_campaigns.sql", "compiled": true, "compiled_code": "with latest_campaign as (\n\n select * \n from \"postgres\".\"iterable_integration_tests_03_int_iterable\".\"int_iterable__latest_campaign\"\n\n), recurring_campaign_join as (\n select\n latest_campaign.campaign_id,\n latest_campaign.campaign_name,\n latest_campaign.updated_at,\n latest_campaign.campaign_state,\n latest_campaign.campaign_type,\n latest_campaign.send_size,\n latest_campaign.start_at,\n latest_campaign.ended_at,\n latest_campaign.created_at,\n latest_campaign.created_by_user_id,\n latest_campaign.template_id,\n latest_campaign.recurring_campaign_id,\n\n recurring_campaign.campaign_name as recurring_campaign_name,\n recurring_campaign.campaign_state as recurring_campaign_state,\n recurring_campaign.send_size as recurring_campaign_send_size,\n recurring_campaign.start_at as recurring_campaign_start_at\n\n from latest_campaign\n\n left join latest_campaign as recurring_campaign\n on latest_campaign.recurring_campaign_id = recurring_campaign.campaign_id\n\n), final as (\n\n select\n recurring_campaign_join.*,\n case when latest_campaign.recurring_campaign_id is not null then true \n else false end as is_campaign_recurring\n\n from recurring_campaign_join\n left join latest_campaign on recurring_campaign_join.campaign_id = latest_campaign.recurring_campaign_id\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__user_unsub_message_type_history": {"database": "postgres", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__user_unsub_message_type_history", "resource_type": "model", "package_name": "iterable_source", "path": "stg_iterable__user_unsub_message_type_history.sql", "original_file_path": "models/stg_iterable__user_unsub_message_type_history.sql", "unique_id": "model.iterable_source.stg_iterable__user_unsub_message_type_history", "fqn": ["iterable_source", "stg_iterable__user_unsub_message_type_history"], "alias": "stg_iterable__user_unsub_message_type_history", "checksum": {"name": "sha256", "checksum": "dd1f083c091aaf65ea53c8c7679f59bb1c3a6892771e8bddd8aa35d34b45a703"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table containing the history of message types from which a user has unsubscribed. \"Unsubscribed\" is shortened to \"unsub\" for postgres compatibility.", "columns": {"message_type_id": {"name": "message_type_id", "description": "Reference to the message type from which the user unsubscribed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email": {"name": "email", "description": "Unique identifier of the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable_source://models/stg_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "stg_iterable", "enabled": true}, "created_at": 1688673390.6245692, "relation_name": "\"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__user_unsub_message_type_history\"", "raw_code": "{{ config(enabled=var('iterable__using_user_unsubscribed_message_type_history', True)) }}\n\nwith base as (\n\n select * \n from {{ ref('stg_iterable__user_unsub_message_type_history_tmp') }}\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_iterable__user_unsub_message_type_history_tmp')),\n staging_columns=get_user_unsubscribed_message_type_history_columns()\n )\n }}\n \n from base\n),\n\nfinal as (\n \n select \n email,\n message_type_id,\n updated_at,\n _fivetran_synced\n from fields\n)\n\nselect * from final", "language": "sql", "refs": [{"name": "stg_iterable__user_unsub_message_type_history_tmp", "package": null, "version": null}, {"name": "stg_iterable__user_unsub_message_type_history_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.iterable_source.get_user_unsubscribed_message_type_history_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": ["model.iterable_source.stg_iterable__user_unsub_message_type_history_tmp", "model.iterable_source.stg_iterable__user_unsub_message_type_history_tmp"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable__user_unsub_message_type_history.sql", "compiled": true, "compiled_code": "\n\nwith base as (\n\n select * \n from \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__user_unsub_message_type_history_tmp\"\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n email\n \n as \n \n email\n \n, \n \n \n message_type_id\n \n as \n \n message_type_id\n \n, \n \n \n updated_at\n \n as \n \n updated_at\n \n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n email,\n message_type_id,\n updated_at,\n _fivetran_synced\n from fields\n)\n\nselect * from final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__event_extension": {"database": "postgres", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__event_extension", "resource_type": "model", "package_name": "iterable_source", "path": "stg_iterable__event_extension.sql", "original_file_path": "models/stg_iterable__event_extension.sql", "unique_id": "model.iterable_source.stg_iterable__event_extension", "fqn": ["iterable_source", "stg_iterable__event_extension"], "alias": "stg_iterable__event_extension", "checksum": {"name": "sha256", "checksum": "59817ce3436e64a80edbe368adf5f8d1debdac47193acb7ad1a1259671eab15d"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table containing addition properties from the event table.", "columns": {"event_id": {"name": "event_id", "description": "Unique identifier of the event. Generated by Fivetran", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_app_already_running": {"name": "is_app_already_running", "description": "Boolean indicating if the app is currently running or not", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "badge": {"name": "badge", "description": "Badge associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "canonical_url_id": {"name": "canonical_url_id", "description": "Reference to the url associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_content_available": {"name": "is_content_available", "description": "Content available from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "content_id": {"name": "content_id", "description": "Reference to the content associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "deeplink_android": {"name": "deeplink_android", "description": "Deeplink associated with the event from an android device", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "deeplink_ios": {"name": "deeplink_ios", "description": "Deeplink associated with the event from an ios device", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "device": {"name": "device", "description": "The device associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email_id": {"name": "email_id", "description": "Reference to the email associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email_subject": {"name": "email_subject", "description": "Subject of the email associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "experiment_id": {"name": "experiment_id", "description": "Reference to the experiment used if the event is an experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "from_phone_number_id": {"name": "from_phone_number_id", "description": "Reference to the phone number which the event is from", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "from_smssender_id": {"name": "from_smssender_id", "description": "Reference to the sms sender which the event is from", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "image_url": {"name": "image_url", "description": "Image url of the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_ghost_push": {"name": "is_ghost_push", "description": "Boolean indicating if the event is a result of a ghost push", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "link_id": {"name": "link_id", "description": "Reference to the link associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "link_url": {"name": "link_url", "description": "Url of the link associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "locale": {"name": "locale", "description": "Locale associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "payload": {"name": "payload", "description": "Payload resulted from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "platform_endpoint": {"name": "platform_endpoint", "description": "The specific platform endpoint of the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "push_message": {"name": "push_message", "description": "Boolean indicating if the event is a push message", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "region": {"name": "region", "description": "Region of the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sms_message": {"name": "sms_message", "description": "Boolean indicating if the event is an sms message", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sms_provider_response_code": {"name": "sms_provider_response_code", "description": "sms provider response code from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sms_provider_response_message": {"name": "sms_provider_response_message", "description": "sms provider response message from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sms_provider_response_more_info": {"name": "sms_provider_response_more_info", "description": "sms provider response addition info from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sms_provider_response_status": {"name": "sms_provider_response_status", "description": "Status of the sms provider response from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sound": {"name": "sound", "description": "Boolean indicating if a sound was used with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "to_phone_number": {"name": "to_phone_number", "description": "To phone number associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "url": {"name": "url", "description": "Url associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "workflow_id": {"name": "workflow_id", "description": "Reference to the workflow which the event originated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "workflow_name": {"name": "workflow_name", "description": "Name of the workflow which the event originated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable_source://models/stg_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable"}, "created_at": 1688673390.615533, "relation_name": "\"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__event_extension\"", "raw_code": "{{\n config( materialized='view' )\n}}\n\nwith base as (\n\n select * \n from {{ ref('stg_iterable__event_extension_tmp') }}\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_iterable__event_extension_tmp')),\n staging_columns=get_event_extension_columns()\n )\n }}\n \n from base\n),\n\nfinal as (\n select\n _fivetran_id as event_id,\n app_already_running as is_app_already_running,\n badge,\n canonical_url_id,\n content_available as is_content_available,\n content_id,\n deeplink_android,\n deeplink_ios,\n device,\n email_id,\n email_subject,\n experiment_id,\n from_phone_number_id,\n from_smssender_id,\n image_url,\n is_ghost_push,\n link_id,\n link_url,\n locale,\n payload,\n platform_endpoint,\n push_message,\n region,\n sms_message,\n sms_provider_response_code,\n sms_provider_response_message,\n sms_provider_response_more_info,\n sms_provider_response_status,\n sound,\n to_phone_number,\n url,\n workflow_id,\n workflow_name,\n _fivetran_synced\n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_iterable__event_extension_tmp", "package": null, "version": null}, {"name": "stg_iterable__event_extension_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.iterable_source.get_event_extension_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": ["model.iterable_source.stg_iterable__event_extension_tmp", "model.iterable_source.stg_iterable__event_extension_tmp"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable__event_extension.sql", "compiled": true, "compiled_code": "\n\nwith base as (\n\n select * \n from \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__event_extension_tmp\"\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n \n \n \n _fivetran_id\n \n as \n \n _fivetran_id\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n app_already_running\n \n as \n \n app_already_running\n \n, \n \n \n badge\n \n as \n \n badge\n \n, \n \n \n canonical_url_id\n \n as \n \n canonical_url_id\n \n, \n \n \n content_available\n \n as \n \n content_available\n \n, \n \n \n content_id\n \n as \n \n content_id\n \n, \n \n \n deeplink_android\n \n as \n \n deeplink_android\n \n, \n \n \n deeplink_ios\n \n as \n \n deeplink_ios\n \n, \n \n \n device\n \n as \n \n device\n \n, \n \n \n email_id\n \n as \n \n email_id\n \n, \n \n \n email_subject\n \n as \n \n email_subject\n \n, \n \n \n experiment_id\n \n as \n \n experiment_id\n \n, \n \n \n from_phone_number_id\n \n as \n \n from_phone_number_id\n \n, \n \n \n from_smssender_id\n \n as \n \n from_smssender_id\n \n, \n \n \n image_url\n \n as \n \n image_url\n \n, \n \n \n is_ghost_push\n \n as \n \n is_ghost_push\n \n, \n \n \n link_id\n \n as \n \n link_id\n \n, \n \n \n link_url\n \n as \n \n link_url\n \n, \n \n \n locale\n \n as \n \n locale\n \n, \n \n \n payload\n \n as \n \n payload\n \n, \n \n \n platform_endpoint\n \n as \n \n platform_endpoint\n \n, \n \n \n push_message\n \n as \n \n push_message\n \n, \n \n \n region\n \n as \n \n region\n \n, \n \n \n sms_message\n \n as \n \n sms_message\n \n, \n \n \n sms_provider_response_code\n \n as \n \n sms_provider_response_code\n \n, \n \n \n sms_provider_response_message\n \n as \n \n sms_provider_response_message\n \n, \n \n \n sms_provider_response_more_info\n \n as \n \n sms_provider_response_more_info\n \n, \n \n \n sms_provider_response_status\n \n as \n \n sms_provider_response_status\n \n, \n \n \n sound\n \n as \n \n sound\n \n, \n \n \n to_phone_number\n \n as \n \n to_phone_number\n \n, \n \n \n url\n \n as \n \n url\n \n, \n \n \n workflow_id\n \n as \n \n workflow_id\n \n, \n \n \n workflow_name\n \n as \n \n workflow_name\n \n\n\n\n \n from base\n),\n\nfinal as (\n select\n _fivetran_id as event_id,\n app_already_running as is_app_already_running,\n badge,\n canonical_url_id,\n content_available as is_content_available,\n content_id,\n deeplink_android,\n deeplink_ios,\n device,\n email_id,\n email_subject,\n experiment_id,\n from_phone_number_id,\n from_smssender_id,\n image_url,\n is_ghost_push,\n link_id,\n link_url,\n locale,\n payload,\n platform_endpoint,\n push_message,\n region,\n sms_message,\n sms_provider_response_code,\n sms_provider_response_message,\n sms_provider_response_more_info,\n sms_provider_response_status,\n sound,\n to_phone_number,\n url,\n workflow_id,\n workflow_name,\n _fivetran_synced\n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__list": {"database": "postgres", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__list", "resource_type": "model", "package_name": "iterable_source", "path": "stg_iterable__list.sql", "original_file_path": "models/stg_iterable__list.sql", "unique_id": "model.iterable_source.stg_iterable__list", "fqn": ["iterable_source", "stg_iterable__list"], "alias": "stg_iterable__list", "checksum": {"name": "sha256", "checksum": "3eab07c1791503eab83c97fc80fd872a230267615fb8be09526f9abce0f6fbc3"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table containing users and the lists the users are associated with.", "columns": {"list_id": {"name": "list_id", "description": "Unique identifier of the list", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "list_name": {"name": "list_name", "description": "User defined name of the list", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "list_type": {"name": "list_type", "description": "The list type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "Creation timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable_source://models/stg_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "stg_iterable"}, "created_at": 1688673390.616933, "relation_name": "\"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__list\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_iterable__list_tmp') }}\n where not coalesce(_fivetran_deleted, true)\n\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_iterable__list_tmp')),\n staging_columns=get_list_columns()\n )\n }}\n \n from base\n),\n\nfinal as (\n \n select \n id as list_id,\n name as list_name,\n list_type,\n created_at,\n _fivetran_synced\n from fields\n)\n\nselect * \nfrom final", "language": "sql", "refs": [{"name": "stg_iterable__list_tmp", "package": null, "version": null}, {"name": "stg_iterable__list_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.iterable_source.get_list_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": ["model.iterable_source.stg_iterable__list_tmp", "model.iterable_source.stg_iterable__list_tmp"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable__list.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__list_tmp\"\n where not coalesce(_fivetran_deleted, true)\n\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n created_at\n \n as \n \n created_at\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n list_type\n \n as \n \n list_type\n \n, \n \n \n name\n \n as \n \n name\n \n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n id as list_id,\n name as list_name,\n list_type,\n created_at,\n _fivetran_synced\n from fields\n)\n\nselect * \nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__campaign_suppression_list_history": {"database": "postgres", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_suppression_list_history", "resource_type": "model", "package_name": "iterable_source", "path": "stg_iterable__campaign_suppression_list_history.sql", "original_file_path": "models/stg_iterable__campaign_suppression_list_history.sql", "unique_id": "model.iterable_source.stg_iterable__campaign_suppression_list_history", "fqn": ["iterable_source", "stg_iterable__campaign_suppression_list_history"], "alias": "stg_iterable__campaign_suppression_list_history", "checksum": {"name": "sha256", "checksum": "b26245c60e0878874be4fa8c33ba64558883756ac79d0972e05b8acafdc95d87"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table containing a history of suppression lists.", "columns": {"campaign_id": {"name": "campaign_id", "description": "Reference to the campaign associated with the label", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "suppressed_list_id": {"name": "suppressed_list_id", "description": "Reference to the list used", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable_source://models/stg_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "stg_iterable", "enabled": true}, "created_at": 1688673390.603529, "relation_name": "\"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__campaign_suppression_list_history\"", "raw_code": "{{ config(enabled=var('iterable__using_campaign_suppression_list_history', True)) }}\n\nwith base as (\n\n select * \n from {{ ref('stg_iterable__campaign_suppression_list_history_tmp') }}\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_iterable__campaign_suppression_list_history_tmp')),\n staging_columns=get_campaign_suppression_list_history_columns()\n )\n }}\n \n from base\n),\n\nfinal as (\n \n select \n campaign_id,\n suppressed_list_id,\n updated_at,\n _fivetran_synced\n from fields\n)\n\nselect * \nfrom final", "language": "sql", "refs": [{"name": "stg_iterable__campaign_suppression_list_history_tmp", "package": null, "version": null}, {"name": "stg_iterable__campaign_suppression_list_history_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.iterable_source.get_campaign_suppression_list_history_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": ["model.iterable_source.stg_iterable__campaign_suppression_list_history_tmp", "model.iterable_source.stg_iterable__campaign_suppression_list_history_tmp"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable__campaign_suppression_list_history.sql", "compiled": true, "compiled_code": "\n\nwith base as (\n\n select * \n from \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__campaign_suppression_list_history_tmp\"\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n campaign_id\n \n as \n \n campaign_id\n \n, \n \n \n suppressed_list_id\n \n as \n \n suppressed_list_id\n \n, \n \n \n updated_at\n \n as \n \n updated_at\n \n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n campaign_id,\n suppressed_list_id,\n updated_at,\n _fivetran_synced\n from fields\n)\n\nselect * \nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__campaign_list_history": {"database": "postgres", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_list_history", "resource_type": "model", "package_name": "iterable_source", "path": "stg_iterable__campaign_list_history.sql", "original_file_path": "models/stg_iterable__campaign_list_history.sql", "unique_id": "model.iterable_source.stg_iterable__campaign_list_history", "fqn": ["iterable_source", "stg_iterable__campaign_list_history"], "alias": "stg_iterable__campaign_list_history", "checksum": {"name": "sha256", "checksum": "20a57369f8e5b742fc3db8aef5a0226acbec06496e2c7d9c62048f7379422523"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table containing a history of lists.", "columns": {"campaign_id": {"name": "campaign_id", "description": "Reference to the campaign associated with the label", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "list_id": {"name": "list_id", "description": "Reference to the list used", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable_source://models/stg_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "stg_iterable"}, "created_at": 1688673390.602548, "relation_name": "\"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__campaign_list_history\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_iterable__campaign_list_history_tmp') }}\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_iterable__campaign_list_history_tmp')),\n staging_columns=get_campaign_list_history_columns()\n )\n }}\n \n from base\n),\n\nfinal as (\n \n select \n campaign_id,\n list_id,\n updated_at,\n _fivetran_synced\n from fields\n)\n\nselect * \nfrom final", "language": "sql", "refs": [{"name": "stg_iterable__campaign_list_history_tmp", "package": null, "version": null}, {"name": "stg_iterable__campaign_list_history_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.iterable_source.get_campaign_list_history_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": ["model.iterable_source.stg_iterable__campaign_list_history_tmp", "model.iterable_source.stg_iterable__campaign_list_history_tmp"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable__campaign_list_history.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__campaign_list_history_tmp\"\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n campaign_id\n \n as \n \n campaign_id\n \n, \n \n \n list_id\n \n as \n \n list_id\n \n, \n \n \n updated_at\n \n as \n \n updated_at\n \n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n campaign_id,\n list_id,\n updated_at,\n _fivetran_synced\n from fields\n)\n\nselect * \nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__user_history": {"database": "postgres", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__user_history", "resource_type": "model", "package_name": "iterable_source", "path": "stg_iterable__user_history.sql", "original_file_path": "models/stg_iterable__user_history.sql", "unique_id": "model.iterable_source.stg_iterable__user_history", "fqn": ["iterable_source", "stg_iterable__user_history"], "alias": "stg_iterable__user_history", "checksum": {"name": "sha256", "checksum": "9e00d5fcf91c3422906d33a4540c19603b7911f9e3036c8d740edebb9c649fb5"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table containing individual user history information.", "columns": {"email": {"name": "email", "description": "Unique identifier of the user as well as their email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_id": {"name": "user_id", "description": "User defined identifier of the user. This is not a unique field", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "first_name": {"name": "first_name", "description": "First name of the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_name": {"name": "last_name", "description": "Last name of the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email_list_ids": {"name": "email_list_ids", "description": "Array of references to the lists associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "signup_date": {"name": "signup_date", "description": "Timestamp as epoch time in milliseconds of when the user signed up", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "signup_source": {"name": "signup_source", "description": "Source where the user signed up", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "phone_number": {"name": "phone_number", "description": "Phone number associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable_source://models/stg_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "stg_iterable"}, "created_at": 1688673390.6219158, "relation_name": "\"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__user_history\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_iterable__user_history_tmp') }}\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_iterable__user_history_tmp')),\n staging_columns=get_user_history_columns()\n )\n }}\n \n from base\n),\n\nfinal as (\n \n select \n lower(email) as email,\n user_id,\n first_name,\n last_name,\n email_list_ids,\n phone_number,\n signup_date,\n signup_source,\n updated_at,\n _fivetran_synced\n from fields\n)\n\nselect * \nfrom final", "language": "sql", "refs": [{"name": "stg_iterable__user_history_tmp", "package": null, "version": null}, {"name": "stg_iterable__user_history_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.iterable_source.get_user_history_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": ["model.iterable_source.stg_iterable__user_history_tmp", "model.iterable_source.stg_iterable__user_history_tmp"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable__user_history.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__user_history_tmp\"\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n email\n \n as \n \n email\n \n, \n \n \n email_list_ids\n \n as \n \n email_list_ids\n \n, \n \n \n first_name\n \n as \n \n first_name\n \n, \n \n \n last_name\n \n as \n \n last_name\n \n, \n \n \n phone_number\n \n as \n \n phone_number\n \n, \n \n \n signup_date\n \n as \n \n signup_date\n \n, \n \n \n signup_source\n \n as \n \n signup_source\n \n, \n \n \n updated_at\n \n as \n \n updated_at\n \n, \n \n \n user_id\n \n as \n \n user_id\n \n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n lower(email) as email,\n user_id,\n first_name,\n last_name,\n email_list_ids,\n phone_number,\n signup_date,\n signup_source,\n updated_at,\n _fivetran_synced\n from fields\n)\n\nselect * \nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__campaign_label_history": {"database": "postgres", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_label_history", "resource_type": "model", "package_name": "iterable_source", "path": "stg_iterable__campaign_label_history.sql", "original_file_path": "models/stg_iterable__campaign_label_history.sql", "unique_id": "model.iterable_source.stg_iterable__campaign_label_history", "fqn": ["iterable_source", "stg_iterable__campaign_label_history"], "alias": "stg_iterable__campaign_label_history", "checksum": {"name": "sha256", "checksum": "6d11fed62c5b00f24c4b13c246650dab16dc2ce8520e116e9dffcd0bdc589767"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table containing a history of labels.", "columns": {"campaign_id": {"name": "campaign_id", "description": "Reference to the campaign associated with the label", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "label": {"name": "label", "description": "Name of the label", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable_source://models/stg_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "stg_iterable", "enabled": true}, "created_at": 1688673390.601652, "relation_name": "\"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__campaign_label_history\"", "raw_code": "{{ config(enabled=var('iterable__using_campaign_label_history', True)) }}\n\nwith base as (\n\n select * \n from {{ ref('stg_iterable__campaign_label_history_tmp') }}\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_iterable__campaign_label_history_tmp')),\n staging_columns=get_campaign_label_history_columns()\n )\n }}\n \n from base\n),\n\nfinal as (\n \n select \n campaign_id,\n label,\n updated_at,\n _fivetran_synced\n from fields\n)\n\nselect * \nfrom final", "language": "sql", "refs": [{"name": "stg_iterable__campaign_label_history_tmp", "package": null, "version": null}, {"name": "stg_iterable__campaign_label_history_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.iterable_source.get_campaign_label_history_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": ["model.iterable_source.stg_iterable__campaign_label_history_tmp", "model.iterable_source.stg_iterable__campaign_label_history_tmp"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable__campaign_label_history.sql", "compiled": true, "compiled_code": "\n\nwith base as (\n\n select * \n from \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__campaign_label_history_tmp\"\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n campaign_id\n \n as \n \n campaign_id\n \n, \n \n \n label\n \n as \n \n label\n \n, \n \n \n updated_at\n \n as \n \n updated_at\n \n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n campaign_id,\n label,\n updated_at,\n _fivetran_synced\n from fields\n)\n\nselect * \nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__event": {"database": "postgres", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__event", "resource_type": "model", "package_name": "iterable_source", "path": "stg_iterable__event.sql", "original_file_path": "models/stg_iterable__event.sql", "unique_id": "model.iterable_source.stg_iterable__event", "fqn": ["iterable_source", "stg_iterable__event"], "alias": "stg_iterable__event", "checksum": {"name": "sha256", "checksum": "e067289423db2c6b5bd5907c5914590f54c55f84b88b56779f8526cacf0456de"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table containing individual events within campaigns.", "columns": {"event_id": {"name": "event_id", "description": "Unique id of the event generated by Fivetran", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "Reference to the campaign from which the event originated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "content_id": {"name": "content_id", "description": "Reference to the content the event is associated with", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "Creation timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email": {"name": "email", "description": "Reference to the unique user the event was applied to", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "additional_properties": {"name": "additional_properties", "description": "json object containing addition event properties", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "event_name": {"name": "event_name", "description": "Name provided to the individual event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_bus_id": {"name": "message_bus_id", "description": "Reference to the message bus associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_id": {"name": "message_id", "description": "Reference to the message the event is associated with", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_type_id": {"name": "message_type_id", "description": "Reference to the type of message the event is associated with", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_state": {"name": "recipient_state", "description": "The state of the recipient upon receiving the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "status": {"name": "status", "description": "Status of the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "transactional_data": {"name": "transactional_data", "description": "Transactional data associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unsub_source": {"name": "unsub_source", "description": "Source of the unsubscribe event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_agent": {"name": "user_agent", "description": "User agent associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_agent_device": {"name": "user_agent_device", "description": "The device of the user agent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable_source://models/stg_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable"}, "created_at": 1688673390.608324, "relation_name": "\"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__event\"", "raw_code": "{{ config( materialized = 'view' ) }}\n\nwith base as (\n\n select * \n from {{ ref('stg_iterable__event_tmp') }}\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_iterable__event_tmp')),\n staging_columns=get_event_columns()\n )\n }}\n \n from base\n),\n\nfinal as (\n \n select \n _fivetran_id as event_id,\n campaign_id,\n content_id,\n created_at,\n cast( {{ dbt.date_trunc('day', 'created_at') }} as date) as created_on,\n lower(email) as email,\n additional_properties,\n event_name,\n message_bus_id,\n message_id,\n message_type_id,\n recipient_state,\n status,\n transactional_data,\n unsub_source,\n user_agent,\n user_agent_device,\n _fivetran_synced\n from fields\n)\n\nselect * \nfrom final", "language": "sql", "refs": [{"name": "stg_iterable__event_tmp", "package": null, "version": null}, {"name": "stg_iterable__event_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.iterable_source.get_event_columns", "macro.fivetran_utils.fill_staging_columns", "macro.dbt.date_trunc"], "nodes": ["model.iterable_source.stg_iterable__event_tmp", "model.iterable_source.stg_iterable__event_tmp"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable__event.sql", "compiled": true, "compiled_code": "\n\nwith base as (\n\n select * \n from \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__event_tmp\"\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n \n \n \n _fivetran_id\n \n as \n \n _fivetran_id\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n campaign_id\n \n as \n \n campaign_id\n \n, \n \n \n content_id\n \n as \n \n content_id\n \n, \n \n \n created_at\n \n as \n \n created_at\n \n, \n \n \n email\n \n as \n \n email\n \n, \n \n \n event_name\n \n as \n \n event_name\n \n, \n \n \n message_bus_id\n \n as \n \n message_bus_id\n \n, \n \n \n message_id\n \n as \n \n message_id\n \n, \n \n \n message_type_id\n \n as \n \n message_type_id\n \n, \n \n \n recipient_state\n \n as \n \n recipient_state\n \n, \n \n \n status\n \n as \n \n status\n \n, \n \n \n unsub_source\n \n as \n \n unsub_source\n \n, \n \n \n user_agent\n \n as \n \n user_agent\n \n, \n \n \n user_agent_device\n \n as \n \n user_agent_device\n \n, \n \n \n transactional_data\n \n as \n \n transactional_data\n \n, \n \n \n additional_properties\n \n as \n \n additional_properties\n \n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n _fivetran_id as event_id,\n campaign_id,\n content_id,\n created_at,\n cast( date_trunc('day', created_at) as date) as created_on,\n lower(email) as email,\n additional_properties,\n event_name,\n message_bus_id,\n message_id,\n message_type_id,\n recipient_state,\n status,\n transactional_data,\n unsub_source,\n user_agent,\n user_agent_device,\n _fivetran_synced\n from fields\n)\n\nselect * \nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__user_unsubscribed_channel_history": {"database": "postgres", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__user_unsubscribed_channel_history", "resource_type": "model", "package_name": "iterable_source", "path": "stg_iterable__user_unsubscribed_channel_history.sql", "original_file_path": "models/stg_iterable__user_unsubscribed_channel_history.sql", "unique_id": "model.iterable_source.stg_iterable__user_unsubscribed_channel_history", "fqn": ["iterable_source", "stg_iterable__user_unsubscribed_channel_history"], "alias": "stg_iterable__user_unsubscribed_channel_history", "checksum": {"name": "sha256", "checksum": "9de6da09c129c04712e0cd2c5f5f60390cd332a42a149ff12f62eee6e3c4630b"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table containing the history of channels from which a user has unsubscribed.", "columns": {"channel_id": {"name": "channel_id", "description": "Reference to the channel from which the user unsubscribed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email": {"name": "email", "description": "Unique identifier of the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable_source://models/stg_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "stg_iterable"}, "created_at": 1688673390.6228101, "relation_name": "\"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__user_unsubscribed_channel_history\"", "raw_code": "with base as (\n select *\n from {{ ref('stg_iterable__user_unsubscribed_channel_history_tmp') }}\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_iterable__user_unsubscribed_channel_history_tmp')),\n staging_columns=get_user_unsubscribed_channel_history_columns()\n )\n }}\n \n from base\n),\n\nfinal as (\n \n select \n channel_id,\n email,\n updated_at,\n _fivetran_synced\n from fields\n)\n\nselect * \nfrom final", "language": "sql", "refs": [{"name": "stg_iterable__user_unsubscribed_channel_history_tmp", "package": null, "version": null}, {"name": "stg_iterable__user_unsubscribed_channel_history_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.iterable_source.get_user_unsubscribed_channel_history_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": ["model.iterable_source.stg_iterable__user_unsubscribed_channel_history_tmp", "model.iterable_source.stg_iterable__user_unsubscribed_channel_history_tmp"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable__user_unsubscribed_channel_history.sql", "compiled": true, "compiled_code": "with base as (\n select *\n from \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__user_unsubscribed_channel_history_tmp\"\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n channel_id\n \n as \n \n channel_id\n \n, \n \n \n email\n \n as \n \n email\n \n, \n \n \n updated_at\n \n as \n \n updated_at\n \n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n channel_id,\n email,\n updated_at,\n _fivetran_synced\n from fields\n)\n\nselect * \nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__template_history": {"database": "postgres", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__template_history", "resource_type": "model", "package_name": "iterable_source", "path": "stg_iterable__template_history.sql", "original_file_path": "models/stg_iterable__template_history.sql", "unique_id": "model.iterable_source.stg_iterable__template_history", "fqn": ["iterable_source", "stg_iterable__template_history"], "alias": "stg_iterable__template_history", "checksum": {"name": "sha256", "checksum": "12bf0ab232197e22a37f8dd9338202e614f9121904e1d863a2d8cad9774d186e"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table containing unique templates used across campaigns.", "columns": {"template_id": {"name": "template_id", "description": "Unique identifer of the template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "template_name": {"name": "template_name", "description": "User defined name of the template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "template_type": {"name": "template_type", "description": "The type of the template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "Creation timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "client_template_id": {"name": "client_template_id", "description": "Reference to the client template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "creator_user_id": {"name": "creator_user_id", "description": "Reference to the user who created the template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_type_id": {"name": "message_type_id", "description": "Reference to the message type associated with the template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable_source://models/stg_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "stg_iterable"}, "created_at": 1688673390.619858, "relation_name": "\"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__template_history\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_iterable__template_history_tmp') }}\n\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_iterable__template_history_tmp')),\n staging_columns=get_template_history_columns()\n )\n }}\n \n from base\n),\n\nfinal as (\n \n select \n id as template_id,\n name as template_name,\n template_type,\n created_at,\n client_template_id,\n creator_user_id,\n message_type_id,\n updated_at,\n _fivetran_synced\n from fields\n)\n\nselect * \nfrom final", "language": "sql", "refs": [{"name": "stg_iterable__template_history_tmp", "package": null, "version": null}, {"name": "stg_iterable__template_history_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.iterable_source.get_template_history_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": ["model.iterable_source.stg_iterable__template_history_tmp", "model.iterable_source.stg_iterable__template_history_tmp"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable__template_history.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__template_history_tmp\"\n\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n client_template_id\n \n as \n \n client_template_id\n \n, \n \n \n created_at\n \n as \n \n created_at\n \n, \n \n \n creator_user_id\n \n as \n \n creator_user_id\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n message_type_id\n \n as \n \n message_type_id\n \n, \n \n \n name\n \n as \n \n name\n \n, \n \n \n template_type\n \n as \n \n template_type\n \n, \n \n \n updated_at\n \n as \n \n updated_at\n \n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n id as template_id,\n name as template_name,\n template_type,\n created_at,\n client_template_id,\n creator_user_id,\n message_type_id,\n updated_at,\n _fivetran_synced\n from fields\n)\n\nselect * \nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__channel": {"database": "postgres", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__channel", "resource_type": "model", "package_name": "iterable_source", "path": "stg_iterable__channel.sql", "original_file_path": "models/stg_iterable__channel.sql", "unique_id": "model.iterable_source.stg_iterable__channel", "fqn": ["iterable_source", "stg_iterable__channel"], "alias": "stg_iterable__channel", "checksum": {"name": "sha256", "checksum": "1053da5bc8d71d897e14858bbe412ffda90715aecd2a69d04d81afefca7bdd01"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table containing unique channels.", "columns": {"channel_id": {"name": "channel_id", "description": "Unique identifier of the channel", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "channel_name": {"name": "channel_name", "description": "User defined name of the channel", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "channel_type": {"name": "channel_type", "description": "The channel type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_medium": {"name": "message_medium", "description": "The message medium associated with the channel", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable_source://models/stg_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "stg_iterable"}, "created_at": 1688673390.6049979, "relation_name": "\"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__channel\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_iterable__channel_tmp') }}\n where not coalesce(_fivetran_deleted, false)\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_iterable__channel_tmp')),\n staging_columns=get_channel_columns()\n )\n }}\n \n from base\n),\n\nfinal as (\n \n select \n id as channel_id, \n name as channel_name,\n channel_type,\n message_medium,\n _fivetran_synced\n \n from fields\n)\n\nselect * \nfrom final", "language": "sql", "refs": [{"name": "stg_iterable__channel_tmp", "package": null, "version": null}, {"name": "stg_iterable__channel_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.iterable_source.get_channel_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": ["model.iterable_source.stg_iterable__channel_tmp", "model.iterable_source.stg_iterable__channel_tmp"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable__channel.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__channel_tmp\"\n where not coalesce(_fivetran_deleted, false)\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n channel_type\n \n as \n \n channel_type\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n message_medium\n \n as \n \n message_medium\n \n, \n \n \n name\n \n as \n \n name\n \n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n id as channel_id, \n name as channel_name,\n channel_type,\n message_medium,\n _fivetran_synced\n \n from fields\n)\n\nselect * \nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__campaign_history": {"database": "postgres", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_history", "resource_type": "model", "package_name": "iterable_source", "path": "stg_iterable__campaign_history.sql", "original_file_path": "models/stg_iterable__campaign_history.sql", "unique_id": "model.iterable_source.stg_iterable__campaign_history", "fqn": ["iterable_source", "stg_iterable__campaign_history"], "alias": "stg_iterable__campaign_history", "checksum": {"name": "sha256", "checksum": "7422ec697a075451761011fa2463c050e190c39766846c1da298407417a53e2b"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table containing a history of campaigns.", "columns": {"campaign_id": {"name": "campaign_id", "description": "Unique identifier of the campaign record", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "campaign_name": {"name": "campaign_name", "description": "User defined name of the campaign.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "campaign_state": {"name": "campaign_state", "description": "State of the campaign. Can be Draft, Ready, Scheduled, Running, Finished, Starting, Aborted or Recurring", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "type": {"name": "type", "description": "The campaign type. Can be Blast or Triggered", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "send_size": {"name": "send_size", "description": "Size of the campaign. Number of individuals included in the campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "start_at": {"name": "start_at", "description": "Start timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "ended_at": {"name": "ended_at", "description": "Ended timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "Creation timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recurring_campaign_id": {"name": "recurring_campaign_id", "description": "Reference to the recurring campaign, if applicable", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_by_user_id": {"name": "created_by_user_id", "description": "Reference to the user who created the campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "template_id": {"name": "template_id", "description": "Reference to the campaign template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable_source://models/stg_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "stg_iterable"}, "created_at": 1688673390.6006331, "relation_name": "\"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__campaign_history\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_iterable__campaign_history_tmp') }}\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_iterable__campaign_history_tmp')),\n staging_columns=get_campaign_history_columns()\n )\n }}\n \n from base\n),\n\nfinal as (\n \n select \n id as campaign_id,\n updated_at,\n name as campaign_name,\n campaign_state,\n type as campaign_type,\n send_size,\n start_at,\n ended_at,\n created_at,\n recurring_campaign_id,\n created_by_user_id,\n template_id,\n workflow_id,\n _fivetran_synced\n\n from fields\n)\n\nselect * \nfrom final", "language": "sql", "refs": [{"name": "stg_iterable__campaign_history_tmp", "package": null, "version": null}, {"name": "stg_iterable__campaign_history_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.iterable_source.get_campaign_history_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": ["model.iterable_source.stg_iterable__campaign_history_tmp", "model.iterable_source.stg_iterable__campaign_history_tmp"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable__campaign_history.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__campaign_history_tmp\"\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n campaign_state\n \n as \n \n campaign_state\n \n, \n \n \n created_at\n \n as \n \n created_at\n \n, \n \n \n created_by_user_id\n \n as \n \n created_by_user_id\n \n, \n \n \n ended_at\n \n as \n \n ended_at\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n name\n \n as \n \n name\n \n, \n \n \n recurring_campaign_id\n \n as \n \n recurring_campaign_id\n \n, \n \n \n send_size\n \n as \n \n send_size\n \n, \n \n \n start_at\n \n as \n \n start_at\n \n, \n \n \n template_id\n \n as \n \n template_id\n \n, \n \n \n type\n \n as \n \n type\n \n, \n \n \n updated_at\n \n as \n \n updated_at\n \n, \n \n \n workflow_id\n \n as \n \n workflow_id\n \n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n id as campaign_id,\n updated_at,\n name as campaign_name,\n campaign_state,\n type as campaign_type,\n send_size,\n start_at,\n ended_at,\n created_at,\n recurring_campaign_id,\n created_by_user_id,\n template_id,\n workflow_id,\n _fivetran_synced\n\n from fields\n)\n\nselect * \nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__message_type": {"database": "postgres", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__message_type", "resource_type": "model", "package_name": "iterable_source", "path": "stg_iterable__message_type.sql", "original_file_path": "models/stg_iterable__message_type.sql", "unique_id": "model.iterable_source.stg_iterable__message_type", "fqn": ["iterable_source", "stg_iterable__message_type"], "alias": "stg_iterable__message_type", "checksum": {"name": "sha256", "checksum": "39e49a10bdc33327588264335a5eb77b8251039f75148bb6f9ad1382c91ad274"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table containing unique message types.", "columns": {"message_type_id": {"name": "message_type_id", "description": "Unique identifer of the message type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_type_name": {"name": "message_type_name", "description": "User defined name of the message type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "channel_id": {"name": "channel_id", "description": "Channel that this message type belongs to", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable_source://models/stg_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "stg_iterable"}, "created_at": 1688673390.618017, "relation_name": "\"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__message_type\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_iterable__message_type_tmp') }}\n where not coalesce(_fivetran_deleted, false)\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_iterable__message_type_tmp')),\n staging_columns=get_message_type_columns()\n )\n }}\n \n from base\n),\n\nfinal as (\n \n select \n id as message_type_id,\n name as message_type_name,\n channel_id,\n _fivetran_synced\n from fields\n)\n\nselect * \nfrom final", "language": "sql", "refs": [{"name": "stg_iterable__message_type_tmp", "package": null, "version": null}, {"name": "stg_iterable__message_type_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.iterable_source.get_message_type_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": ["model.iterable_source.stg_iterable__message_type_tmp", "model.iterable_source.stg_iterable__message_type_tmp"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable__message_type.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__message_type_tmp\"\n where not coalesce(_fivetran_deleted, false)\n\n),\n\nfields as (\n\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n channel_id\n \n as \n \n channel_id\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n name\n \n as \n \n name\n \n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n id as message_type_id,\n name as message_type_name,\n channel_id,\n _fivetran_synced\n from fields\n)\n\nselect * \nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__campaign_history_tmp": {"database": "postgres", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_history_tmp", "resource_type": "model", "package_name": "iterable_source", "path": "tmp/stg_iterable__campaign_history_tmp.sql", "original_file_path": "models/tmp/stg_iterable__campaign_history_tmp.sql", "unique_id": "model.iterable_source.stg_iterable__campaign_history_tmp", "fqn": ["iterable_source", "tmp", "stg_iterable__campaign_history_tmp"], "alias": "stg_iterable__campaign_history_tmp", "checksum": {"name": "sha256", "checksum": "bb282de99b1ae9fa6a15f3eb0b34af502256cd91fcb75ea82a3a9e056b88c41d"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable"}, "created_at": 1688673390.393831, "relation_name": "\"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__campaign_history_tmp\"", "raw_code": "select * \nfrom {{ var('campaign_history') }}", "language": "sql", "refs": [], "sources": [["iterable", "campaign_history"]], "metrics": [], "depends_on": {"macros": [], "nodes": ["source.iterable_source.iterable.campaign_history"]}, "compiled_path": "target/compiled/iterable_source/models/tmp/stg_iterable__campaign_history_tmp.sql", "compiled": true, "compiled_code": "select * \nfrom \"postgres\".\"iterable_integration_tests_03\".\"campaign_history_data\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__list_tmp": {"database": "postgres", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__list_tmp", "resource_type": "model", "package_name": "iterable_source", "path": "tmp/stg_iterable__list_tmp.sql", "original_file_path": "models/tmp/stg_iterable__list_tmp.sql", "unique_id": "model.iterable_source.stg_iterable__list_tmp", "fqn": ["iterable_source", "tmp", "stg_iterable__list_tmp"], "alias": "stg_iterable__list_tmp", "checksum": {"name": "sha256", "checksum": "95a022b0a2a9952f8accd09104d65a377006ce43624ce801ad19a862342e1a40"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable"}, "created_at": 1688673390.3984342, "relation_name": "\"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__list_tmp\"", "raw_code": "select *\nfrom {{ var('list') }}", "language": "sql", "refs": [], "sources": [["iterable", "list"]], "metrics": [], "depends_on": {"macros": [], "nodes": ["source.iterable_source.iterable.list"]}, "compiled_path": "target/compiled/iterable_source/models/tmp/stg_iterable__list_tmp.sql", "compiled": true, "compiled_code": "select *\nfrom \"postgres\".\"iterable_integration_tests_03\".\"list_data\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__campaign_suppression_list_history_tmp": {"database": "postgres", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_suppression_list_history_tmp", "resource_type": "model", "package_name": "iterable_source", "path": "tmp/stg_iterable__campaign_suppression_list_history_tmp.sql", "original_file_path": "models/tmp/stg_iterable__campaign_suppression_list_history_tmp.sql", "unique_id": "model.iterable_source.stg_iterable__campaign_suppression_list_history_tmp", "fqn": ["iterable_source", "tmp", "stg_iterable__campaign_suppression_list_history_tmp"], "alias": "stg_iterable__campaign_suppression_list_history_tmp", "checksum": {"name": "sha256", "checksum": "37cb068fdbbe8edec7c153113909064e74bfa24bf15c7018d9838f0e43726d0c"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable", "enabled": true}, "created_at": 1688673390.403114, "relation_name": "\"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__campaign_suppression_list_history_tmp\"", "raw_code": "{{ config(enabled=var('iterable__using_campaign_suppression_list_history', True)) }}\n\nselect *\nfrom {{ var('campaign_suppression_list_history') }}", "language": "sql", "refs": [], "sources": [["iterable", "campaign_suppression_list_history"]], "metrics": [], "depends_on": {"macros": [], "nodes": ["source.iterable_source.iterable.campaign_suppression_list_history"]}, "compiled_path": "target/compiled/iterable_source/models/tmp/stg_iterable__campaign_suppression_list_history_tmp.sql", "compiled": true, "compiled_code": "\n\nselect *\nfrom \"postgres\".\"iterable_integration_tests_03\".\"campaign_suppression_list_history_data\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__template_history_tmp": {"database": "postgres", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__template_history_tmp", "resource_type": "model", "package_name": "iterable_source", "path": "tmp/stg_iterable__template_history_tmp.sql", "original_file_path": "models/tmp/stg_iterable__template_history_tmp.sql", "unique_id": "model.iterable_source.stg_iterable__template_history_tmp", "fqn": ["iterable_source", "tmp", "stg_iterable__template_history_tmp"], "alias": "stg_iterable__template_history_tmp", "checksum": {"name": "sha256", "checksum": "d1e566c6334325cd48d85f8375986a9f55f0e51f17669475c1666c1ab89d1dc3"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable"}, "created_at": 1688673390.408457, "relation_name": "\"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__template_history_tmp\"", "raw_code": "select *\nfrom {{ var('template_history') }}", "language": "sql", "refs": [], "sources": [["iterable", "template_history"]], "metrics": [], "depends_on": {"macros": [], "nodes": ["source.iterable_source.iterable.template_history"]}, "compiled_path": "target/compiled/iterable_source/models/tmp/stg_iterable__template_history_tmp.sql", "compiled": true, "compiled_code": "select *\nfrom \"postgres\".\"iterable_integration_tests_03\".\"template_history_data\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__campaign_list_history_tmp": {"database": "postgres", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_list_history_tmp", "resource_type": "model", "package_name": "iterable_source", "path": "tmp/stg_iterable__campaign_list_history_tmp.sql", "original_file_path": "models/tmp/stg_iterable__campaign_list_history_tmp.sql", "unique_id": "model.iterable_source.stg_iterable__campaign_list_history_tmp", "fqn": ["iterable_source", "tmp", "stg_iterable__campaign_list_history_tmp"], "alias": "stg_iterable__campaign_list_history_tmp", "checksum": {"name": "sha256", "checksum": "4e82db7dd5777da80046052b6432a53b38bf1db40480ed344da0a19ad4004045"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable"}, "created_at": 1688673390.414103, "relation_name": "\"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__campaign_list_history_tmp\"", "raw_code": "select *\nfrom {{ var('campaign_list_history') }}", "language": "sql", "refs": [], "sources": [["iterable", "campaign_list_history"]], "metrics": [], "depends_on": {"macros": [], "nodes": ["source.iterable_source.iterable.campaign_list_history"]}, "compiled_path": "target/compiled/iterable_source/models/tmp/stg_iterable__campaign_list_history_tmp.sql", "compiled": true, "compiled_code": "select *\nfrom \"postgres\".\"iterable_integration_tests_03\".\"campaign_list_history_data\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__channel_tmp": {"database": "postgres", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__channel_tmp", "resource_type": "model", "package_name": "iterable_source", "path": "tmp/stg_iterable__channel_tmp.sql", "original_file_path": "models/tmp/stg_iterable__channel_tmp.sql", "unique_id": "model.iterable_source.stg_iterable__channel_tmp", "fqn": ["iterable_source", "tmp", "stg_iterable__channel_tmp"], "alias": "stg_iterable__channel_tmp", "checksum": {"name": "sha256", "checksum": "310586f3e5676006e7bff72a94d157fcef31260b5013768d7775515929f33fb2"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable"}, "created_at": 1688673390.418873, "relation_name": "\"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__channel_tmp\"", "raw_code": "select *\nfrom {{ var('channel') }}", "language": "sql", "refs": [], "sources": [["iterable", "channel"]], "metrics": [], "depends_on": {"macros": [], "nodes": ["source.iterable_source.iterable.channel"]}, "compiled_path": "target/compiled/iterable_source/models/tmp/stg_iterable__channel_tmp.sql", "compiled": true, "compiled_code": "select *\nfrom \"postgres\".\"iterable_integration_tests_03\".\"channel_data\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__event_tmp": {"database": "postgres", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__event_tmp", "resource_type": "model", "package_name": "iterable_source", "path": "tmp/stg_iterable__event_tmp.sql", "original_file_path": "models/tmp/stg_iterable__event_tmp.sql", "unique_id": "model.iterable_source.stg_iterable__event_tmp", "fqn": ["iterable_source", "tmp", "stg_iterable__event_tmp"], "alias": "stg_iterable__event_tmp", "checksum": {"name": "sha256", "checksum": "6ad43717502fb55c95be8a00eb132a0002a9b0021ce33fe301345069b44e9bb5"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable"}, "created_at": 1688673390.4234629, "relation_name": "\"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__event_tmp\"", "raw_code": "select * \nfrom {{ var('event') }}", "language": "sql", "refs": [], "sources": [["iterable", "event"]], "metrics": [], "depends_on": {"macros": [], "nodes": ["source.iterable_source.iterable.event"]}, "compiled_path": "target/compiled/iterable_source/models/tmp/stg_iterable__event_tmp.sql", "compiled": true, "compiled_code": "select * \nfrom \"postgres\".\"iterable_integration_tests_03\".\"event_data\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__user_unsubscribed_channel_history_tmp": {"database": "postgres", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__user_unsubscribed_channel_history_tmp", "resource_type": "model", "package_name": "iterable_source", "path": "tmp/stg_iterable__user_unsubscribed_channel_history_tmp.sql", "original_file_path": "models/tmp/stg_iterable__user_unsubscribed_channel_history_tmp.sql", "unique_id": "model.iterable_source.stg_iterable__user_unsubscribed_channel_history_tmp", "fqn": ["iterable_source", "tmp", "stg_iterable__user_unsubscribed_channel_history_tmp"], "alias": "stg_iterable__user_unsubscribed_channel_history_tmp", "checksum": {"name": "sha256", "checksum": "334ad9a49cd15cf5a1848f41622cd1db20c510157fbec13dfe16d18af0ba7b45"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable"}, "created_at": 1688673390.427969, "relation_name": "\"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__user_unsubscribed_channel_history_tmp\"", "raw_code": "select *\nfrom {{ var('user_unsubscribed_channel_history') }}", "language": "sql", "refs": [], "sources": [["iterable", "user_unsubscribed_channel_history"]], "metrics": [], "depends_on": {"macros": [], "nodes": ["source.iterable_source.iterable.user_unsubscribed_channel_history"]}, "compiled_path": "target/compiled/iterable_source/models/tmp/stg_iterable__user_unsubscribed_channel_history_tmp.sql", "compiled": true, "compiled_code": "select *\nfrom \"postgres\".\"iterable_integration_tests_03\".\"user_unsubscribed_channel_history_data\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__user_unsub_message_type_history_tmp": {"database": "postgres", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__user_unsub_message_type_history_tmp", "resource_type": "model", "package_name": "iterable_source", "path": "tmp/stg_iterable__user_unsub_message_type_history_tmp.sql", "original_file_path": "models/tmp/stg_iterable__user_unsub_message_type_history_tmp.sql", "unique_id": "model.iterable_source.stg_iterable__user_unsub_message_type_history_tmp", "fqn": ["iterable_source", "tmp", "stg_iterable__user_unsub_message_type_history_tmp"], "alias": "stg_iterable__user_unsub_message_type_history_tmp", "checksum": {"name": "sha256", "checksum": "02cafc5d720f202a67fe2583752304fd9ef8156f78b8e11b4b38ed2173ca601f"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable", "enabled": true}, "created_at": 1688673390.437712, "relation_name": "\"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__user_unsub_message_type_history_tmp\"", "raw_code": "{{ config(enabled=var('iterable__using_user_unsubscribed_message_type_history', True)) }}\n\nselect * \nfrom {{ var('user_unsubscribed_message_type_history') }}\n-- had to rename this to be compatible with postgres....", "language": "sql", "refs": [], "sources": [["iterable", "user_unsubscribed_message_type_history"]], "metrics": [], "depends_on": {"macros": [], "nodes": ["source.iterable_source.iterable.user_unsubscribed_message_type_history"]}, "compiled_path": "target/compiled/iterable_source/models/tmp/stg_iterable__user_unsub_message_type_history_tmp.sql", "compiled": true, "compiled_code": "\n\nselect * \nfrom \"postgres\".\"iterable_integration_tests_03\".\"user_unsubscribed_message_type_history_data\"\n-- had to rename this to be compatible with postgres....", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__event_extension_tmp": {"database": "postgres", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__event_extension_tmp", "resource_type": "model", "package_name": "iterable_source", "path": "tmp/stg_iterable__event_extension_tmp.sql", "original_file_path": "models/tmp/stg_iterable__event_extension_tmp.sql", "unique_id": "model.iterable_source.stg_iterable__event_extension_tmp", "fqn": ["iterable_source", "tmp", "stg_iterable__event_extension_tmp"], "alias": "stg_iterable__event_extension_tmp", "checksum": {"name": "sha256", "checksum": "1265f2807dba4556722c0b5ab9a5950665913aafc1e545dade856ddfbbbc6016"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable"}, "created_at": 1688673390.444021, "relation_name": "\"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__event_extension_tmp\"", "raw_code": "select * \nfrom {{ var('event_extension') }}", "language": "sql", "refs": [], "sources": [["iterable", "event_extension"]], "metrics": [], "depends_on": {"macros": [], "nodes": ["source.iterable_source.iterable.event_extension"]}, "compiled_path": "target/compiled/iterable_source/models/tmp/stg_iterable__event_extension_tmp.sql", "compiled": true, "compiled_code": "select * \nfrom \"postgres\".\"iterable_integration_tests_03\".\"event_extension_data\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__campaign_label_history_tmp": {"database": "postgres", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__campaign_label_history_tmp", "resource_type": "model", "package_name": "iterable_source", "path": "tmp/stg_iterable__campaign_label_history_tmp.sql", "original_file_path": "models/tmp/stg_iterable__campaign_label_history_tmp.sql", "unique_id": "model.iterable_source.stg_iterable__campaign_label_history_tmp", "fqn": ["iterable_source", "tmp", "stg_iterable__campaign_label_history_tmp"], "alias": "stg_iterable__campaign_label_history_tmp", "checksum": {"name": "sha256", "checksum": "98880bf131f348167891de3ff5b7203ebf154f2b2113b1153524bcec63f6a278"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable", "enabled": true}, "created_at": 1688673390.4490812, "relation_name": "\"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__campaign_label_history_tmp\"", "raw_code": "{{ config(enabled=var('iterable__using_campaign_label_history', True)) }}\n\nselect *\nfrom {{ var('campaign_label_history') }}", "language": "sql", "refs": [], "sources": [["iterable", "campaign_label_history"]], "metrics": [], "depends_on": {"macros": [], "nodes": ["source.iterable_source.iterable.campaign_label_history"]}, "compiled_path": "target/compiled/iterable_source/models/tmp/stg_iterable__campaign_label_history_tmp.sql", "compiled": true, "compiled_code": "\n\nselect *\nfrom \"postgres\".\"iterable_integration_tests_03\".\"campaign_label_history_data\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__user_history_tmp": {"database": "postgres", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__user_history_tmp", "resource_type": "model", "package_name": "iterable_source", "path": "tmp/stg_iterable__user_history_tmp.sql", "original_file_path": "models/tmp/stg_iterable__user_history_tmp.sql", "unique_id": "model.iterable_source.stg_iterable__user_history_tmp", "fqn": ["iterable_source", "tmp", "stg_iterable__user_history_tmp"], "alias": "stg_iterable__user_history_tmp", "checksum": {"name": "sha256", "checksum": "9baf9df0022d95316b7767c47e2188e1c11d1d67e820430689cbfe651211ba49"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable"}, "created_at": 1688673390.4540942, "relation_name": "\"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__user_history_tmp\"", "raw_code": "select * \nfrom {{ var('user_history') }}", "language": "sql", "refs": [], "sources": [["iterable", "user_history"]], "metrics": [], "depends_on": {"macros": [], "nodes": ["source.iterable_source.iterable.user_history"]}, "compiled_path": "target/compiled/iterable_source/models/tmp/stg_iterable__user_history_tmp.sql", "compiled": true, "compiled_code": "select * \nfrom \"postgres\".\"iterable_integration_tests_03\".\"user_history_data\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "model.iterable_source.stg_iterable__message_type_tmp": {"database": "postgres", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__message_type_tmp", "resource_type": "model", "package_name": "iterable_source", "path": "tmp/stg_iterable__message_type_tmp.sql", "original_file_path": "models/tmp/stg_iterable__message_type_tmp.sql", "unique_id": "model.iterable_source.stg_iterable__message_type_tmp", "fqn": ["iterable_source", "tmp", "stg_iterable__message_type_tmp"], "alias": "stg_iterable__message_type_tmp", "checksum": {"name": "sha256", "checksum": "78c2e59be0171cfb3676085cb4e9bb485e579b97e2d2859520d533488fed4acb"}, "config": {"enabled": true, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable"}, "created_at": 1688673390.458772, "relation_name": "\"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__message_type_tmp\"", "raw_code": "select *\nfrom {{ var('message_type') }}", "language": "sql", "refs": [], "sources": [["iterable", "message_type"]], "metrics": [], "depends_on": {"macros": [], "nodes": ["source.iterable_source.iterable.message_type"]}, "compiled_path": "target/compiled/iterable_source/models/tmp/stg_iterable__message_type_tmp.sql", "compiled": true, "compiled_code": "select *\nfrom \"postgres\".\"iterable_integration_tests_03\".\"message_type_data\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}, "test.iterable.not_null_iterable__campaigns_campaign_id.03c9448919": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "campaign_id", "model": "{{ get_where_subquery(ref('iterable__campaigns')) }}"}, "namespace": null}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_iterable__campaigns_campaign_id", "resource_type": "test", "package_name": "iterable", "path": "not_null_iterable__campaigns_campaign_id.sql", "original_file_path": "models/iterable.yml", "unique_id": "test.iterable.not_null_iterable__campaigns_campaign_id.03c9448919", "fqn": ["iterable", "not_null_iterable__campaigns_campaign_id"], "alias": "not_null_iterable__campaigns_campaign_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1688673390.559196, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "iterable__campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable.iterable__campaigns"]}, "compiled_path": "target/compiled/iterable/models/iterable.yml/not_null_iterable__campaigns_campaign_id.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect campaign_id\nfrom \"postgres\".\"iterable_integration_tests_03_iterable\".\"iterable__campaigns\"\nwhere campaign_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "campaign_id", "file_key_name": "models.iterable__campaigns", "attached_node": "model.iterable.iterable__campaigns"}, "test.iterable.dbt_utils_unique_combination_of_columns_iterable__campaigns_campaign_id__experiment_id.be21d4243f": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["campaign_id", "experiment_id"], "model": "{{ get_where_subquery(ref('iterable__campaigns')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_iterable__campaigns_campaign_id__experiment_id", "resource_type": "test", "package_name": "iterable", "path": "dbt_utils_unique_combination_o_a69a99bf843115cbe2afcb5886237041.sql", "original_file_path": "models/iterable.yml", "unique_id": "test.iterable.dbt_utils_unique_combination_of_columns_iterable__campaigns_campaign_id__experiment_id.be21d4243f", "fqn": ["iterable", "dbt_utils_unique_combination_of_columns_iterable__campaigns_campaign_id__experiment_id"], "alias": "dbt_utils_unique_combination_o_a69a99bf843115cbe2afcb5886237041", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_a69a99bf843115cbe2afcb5886237041", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_a69a99bf843115cbe2afcb5886237041"}, "created_at": 1688673390.5609212, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_a69a99bf843115cbe2afcb5886237041\") }}", "language": "sql", "refs": [{"name": "iterable__campaigns", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable.iterable__campaigns"]}, "compiled_path": "target/compiled/iterable/models/iterable.yml/dbt_utils_unique_combination_o_a69a99bf843115cbe2afcb5886237041.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n campaign_id, experiment_id\n from \"postgres\".\"iterable_integration_tests_03_iterable\".\"iterable__campaigns\"\n group by campaign_id, experiment_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.iterable__campaigns", "attached_node": "model.iterable.iterable__campaigns"}, "test.iterable.unique_iterable__events_event_id.93e30d3c2c": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('iterable__events')) }}"}, "namespace": null}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "unique_iterable__events_event_id", "resource_type": "test", "package_name": "iterable", "path": "unique_iterable__events_event_id.sql", "original_file_path": "models/iterable.yml", "unique_id": "test.iterable.unique_iterable__events_event_id.93e30d3c2c", "fqn": ["iterable", "unique_iterable__events_event_id"], "alias": "unique_iterable__events_event_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1688673390.569938, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "iterable__events", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable.iterable__events"]}, "compiled_path": "target/compiled/iterable/models/iterable.yml/unique_iterable__events_event_id.sql", "compiled": true, "compiled_code": "\n \n \n\nselect\n event_id as unique_field,\n count(*) as n_records\n\nfrom \"postgres\".\"iterable_integration_tests_03_iterable\".\"iterable__events\"\nwhere event_id is not null\ngroup by event_id\nhaving count(*) > 1\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.iterable__events", "attached_node": "model.iterable.iterable__events"}, "test.iterable.not_null_iterable__events_event_id.ed1d28a650": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('iterable__events')) }}"}, "namespace": null}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_iterable__events_event_id", "resource_type": "test", "package_name": "iterable", "path": "not_null_iterable__events_event_id.sql", "original_file_path": "models/iterable.yml", "unique_id": "test.iterable.not_null_iterable__events_event_id.ed1d28a650", "fqn": ["iterable", "not_null_iterable__events_event_id"], "alias": "not_null_iterable__events_event_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1688673390.5716228, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "iterable__events", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable.iterable__events"]}, "compiled_path": "target/compiled/iterable/models/iterable.yml/not_null_iterable__events_event_id.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect event_id\nfrom \"postgres\".\"iterable_integration_tests_03_iterable\".\"iterable__events\"\nwhere event_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.iterable__events", "attached_node": "model.iterable.iterable__events"}, "test.iterable.dbt_utils_unique_combination_of_columns_iterable__list_user_history_user_email__list_id__user_updated_at.3d3daf3864": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["user_email", "list_id", "user_updated_at"], "model": "{{ get_where_subquery(ref('iterable__list_user_history')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_iterable__list_user_history_user_email__list_id__user_updated_at", "resource_type": "test", "package_name": "iterable", "path": "dbt_utils_unique_combination_o_ab92bcc4ef27f7d64d2de97fdef39bbd.sql", "original_file_path": "models/iterable.yml", "unique_id": "test.iterable.dbt_utils_unique_combination_of_columns_iterable__list_user_history_user_email__list_id__user_updated_at.3d3daf3864", "fqn": ["iterable", "dbt_utils_unique_combination_of_columns_iterable__list_user_history_user_email__list_id__user_updated_at"], "alias": "dbt_utils_unique_combination_o_ab92bcc4ef27f7d64d2de97fdef39bbd", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_ab92bcc4ef27f7d64d2de97fdef39bbd", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_ab92bcc4ef27f7d64d2de97fdef39bbd"}, "created_at": 1688673390.573384, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_ab92bcc4ef27f7d64d2de97fdef39bbd\") }}", "language": "sql", "refs": [{"name": "iterable__list_user_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable.iterable__list_user_history"]}, "compiled_path": "target/compiled/iterable/models/iterable.yml/dbt_utils_unique_combination_o_ab92bcc4ef27f7d64d2de97fdef39bbd.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n user_email, list_id, user_updated_at\n from \"postgres\".\"iterable_integration_tests_03_iterable\".\"iterable__list_user_history\"\n group by user_email, list_id, user_updated_at\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.iterable__list_user_history", "attached_node": "model.iterable.iterable__list_user_history"}, "test.iterable.not_null_iterable__user_campaign_user_email.e040b968fa": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "user_email", "model": "{{ get_where_subquery(ref('iterable__user_campaign')) }}"}, "namespace": null}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_iterable__user_campaign_user_email", "resource_type": "test", "package_name": "iterable", "path": "not_null_iterable__user_campaign_user_email.sql", "original_file_path": "models/iterable.yml", "unique_id": "test.iterable.not_null_iterable__user_campaign_user_email.e040b968fa", "fqn": ["iterable", "not_null_iterable__user_campaign_user_email"], "alias": "not_null_iterable__user_campaign_user_email", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1688673390.5775201, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "iterable__user_campaign", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable.iterable__user_campaign"]}, "compiled_path": "target/compiled/iterable/models/iterable.yml/not_null_iterable__user_campaign_user_email.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect user_email\nfrom \"postgres\".\"iterable_integration_tests_03_iterable\".\"iterable__user_campaign\"\nwhere user_email is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "user_email", "file_key_name": "models.iterable__user_campaign", "attached_node": "model.iterable.iterable__user_campaign"}, "test.iterable.dbt_utils_unique_combination_of_columns_iterable__user_campaign_user_email__campaign_id__experiment_id.e8e117b7aa": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["user_email", "campaign_id", "experiment_id"], "model": "{{ get_where_subquery(ref('iterable__user_campaign')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_iterable__user_campaign_user_email__campaign_id__experiment_id", "resource_type": "test", "package_name": "iterable", "path": "dbt_utils_unique_combination_o_bc6e8d53089f3f7f49fefc8ad95453d8.sql", "original_file_path": "models/iterable.yml", "unique_id": "test.iterable.dbt_utils_unique_combination_of_columns_iterable__user_campaign_user_email__campaign_id__experiment_id.e8e117b7aa", "fqn": ["iterable", "dbt_utils_unique_combination_of_columns_iterable__user_campaign_user_email__campaign_id__experiment_id"], "alias": "dbt_utils_unique_combination_o_bc6e8d53089f3f7f49fefc8ad95453d8", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_bc6e8d53089f3f7f49fefc8ad95453d8", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_bc6e8d53089f3f7f49fefc8ad95453d8"}, "created_at": 1688673390.579194, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_bc6e8d53089f3f7f49fefc8ad95453d8\") }}", "language": "sql", "refs": [{"name": "iterable__user_campaign", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable.iterable__user_campaign"]}, "compiled_path": "target/compiled/iterable/models/iterable.yml/dbt_utils_unique_combination_o_bc6e8d53089f3f7f49fefc8ad95453d8.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n user_email, campaign_id, experiment_id\n from \"postgres\".\"iterable_integration_tests_03_iterable\".\"iterable__user_campaign\"\n group by user_email, campaign_id, experiment_id\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.iterable__user_campaign", "attached_node": "model.iterable.iterable__user_campaign"}, "test.iterable.dbt_utils_unique_combination_of_columns_iterable__user_unsubscriptions_email__message_type_id__is_unsubscribed_channel_wide.08cf764cb7": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["email", "message_type_id", "is_unsubscribed_channel_wide"], "model": "{{ get_where_subquery(ref('iterable__user_unsubscriptions')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_iterable__user_unsubscriptions_email__message_type_id__is_unsubscribed_channel_wide", "resource_type": "test", "package_name": "iterable", "path": "dbt_utils_unique_combination_o_6e778368f021e025c54f760d15c94542.sql", "original_file_path": "models/iterable.yml", "unique_id": "test.iterable.dbt_utils_unique_combination_of_columns_iterable__user_unsubscriptions_email__message_type_id__is_unsubscribed_channel_wide.08cf764cb7", "fqn": ["iterable", "dbt_utils_unique_combination_of_columns_iterable__user_unsubscriptions_email__message_type_id__is_unsubscribed_channel_wide"], "alias": "dbt_utils_unique_combination_o_6e778368f021e025c54f760d15c94542", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_6e778368f021e025c54f760d15c94542", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_6e778368f021e025c54f760d15c94542"}, "created_at": 1688673390.5830028, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_6e778368f021e025c54f760d15c94542\") }}", "language": "sql", "refs": [{"name": "iterable__user_unsubscriptions", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable.iterable__user_unsubscriptions"]}, "compiled_path": "target/compiled/iterable/models/iterable.yml/dbt_utils_unique_combination_o_6e778368f021e025c54f760d15c94542.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n email, message_type_id, is_unsubscribed_channel_wide\n from \"postgres\".\"iterable_integration_tests_03_iterable\".\"iterable__user_unsubscriptions\"\n group by email, message_type_id, is_unsubscribed_channel_wide\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.iterable__user_unsubscriptions", "attached_node": "model.iterable.iterable__user_unsubscriptions"}, "test.iterable.unique_iterable__users_email.5917fa5069": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "email", "model": "{{ get_where_subquery(ref('iterable__users')) }}"}, "namespace": null}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "unique_iterable__users_email", "resource_type": "test", "package_name": "iterable", "path": "unique_iterable__users_email.sql", "original_file_path": "models/iterable.yml", "unique_id": "test.iterable.unique_iterable__users_email.5917fa5069", "fqn": ["iterable", "unique_iterable__users_email"], "alias": "unique_iterable__users_email", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1688673390.587741, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "iterable__users", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable.iterable__users"]}, "compiled_path": "target/compiled/iterable/models/iterable.yml/unique_iterable__users_email.sql", "compiled": true, "compiled_code": "\n \n \n\nselect\n email as unique_field,\n count(*) as n_records\n\nfrom \"postgres\".\"iterable_integration_tests_03_iterable\".\"iterable__users\"\nwhere email is not null\ngroup by email\nhaving count(*) > 1\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "email", "file_key_name": "models.iterable__users", "attached_node": "model.iterable.iterable__users"}, "test.iterable.not_null_iterable__users_email.ffe9c8a4c4": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "email", "model": "{{ get_where_subquery(ref('iterable__users')) }}"}, "namespace": null}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_iterable__users_email", "resource_type": "test", "package_name": "iterable", "path": "not_null_iterable__users_email.sql", "original_file_path": "models/iterable.yml", "unique_id": "test.iterable.not_null_iterable__users_email.ffe9c8a4c4", "fqn": ["iterable", "not_null_iterable__users_email"], "alias": "not_null_iterable__users_email", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1688673390.589338, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "iterable__users", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable.iterable__users"]}, "compiled_path": "target/compiled/iterable/models/iterable.yml/not_null_iterable__users_email.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect email\nfrom \"postgres\".\"iterable_integration_tests_03_iterable\".\"iterable__users\"\nwhere email is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "email", "file_key_name": "models.iterable__users", "attached_node": "model.iterable.iterable__users"}, "test.iterable_source.not_null_stg_iterable__campaign_history_campaign_id.b7c36e4525": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "campaign_id", "model": "{{ get_where_subquery(ref('stg_iterable__campaign_history')) }}"}, "namespace": null}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_stg_iterable__campaign_history_campaign_id", "resource_type": "test", "package_name": "iterable_source", "path": "not_null_stg_iterable__campaign_history_campaign_id.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.not_null_stg_iterable__campaign_history_campaign_id.b7c36e4525", "fqn": ["iterable_source", "not_null_stg_iterable__campaign_history_campaign_id"], "alias": "not_null_stg_iterable__campaign_history_campaign_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1688673390.627069, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_iterable__campaign_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable_source.stg_iterable__campaign_history"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable.yml/not_null_stg_iterable__campaign_history_campaign_id.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect campaign_id\nfrom \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__campaign_history\"\nwhere campaign_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "campaign_id", "file_key_name": "models.stg_iterable__campaign_history", "attached_node": "model.iterable_source.stg_iterable__campaign_history"}, "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__campaign_history_campaign_id__updated_at.81e1a1b9b5": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["campaign_id", "updated_at"], "model": "{{ get_where_subquery(ref('stg_iterable__campaign_history')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_iterable__campaign_history_campaign_id__updated_at", "resource_type": "test", "package_name": "iterable_source", "path": "dbt_utils_unique_combination_o_291a386e6835dbc855f54cbe574e4abc.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__campaign_history_campaign_id__updated_at.81e1a1b9b5", "fqn": ["iterable_source", "dbt_utils_unique_combination_of_columns_stg_iterable__campaign_history_campaign_id__updated_at"], "alias": "dbt_utils_unique_combination_o_291a386e6835dbc855f54cbe574e4abc", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_291a386e6835dbc855f54cbe574e4abc", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_291a386e6835dbc855f54cbe574e4abc"}, "created_at": 1688673390.6287181, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_291a386e6835dbc855f54cbe574e4abc\") }}", "language": "sql", "refs": [{"name": "stg_iterable__campaign_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable_source.stg_iterable__campaign_history"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable.yml/dbt_utils_unique_combination_o_291a386e6835dbc855f54cbe574e4abc.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n campaign_id, updated_at\n from \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__campaign_history\"\n group by campaign_id, updated_at\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.stg_iterable__campaign_history", "attached_node": "model.iterable_source.stg_iterable__campaign_history"}, "test.iterable_source.not_null_stg_iterable__campaign_label_history_campaign_id.1918cef89a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "campaign_id", "model": "{{ get_where_subquery(ref('stg_iterable__campaign_label_history')) }}"}, "namespace": null}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_stg_iterable__campaign_label_history_campaign_id", "resource_type": "test", "package_name": "iterable_source", "path": "not_null_stg_iterable__campaign_label_history_campaign_id.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.not_null_stg_iterable__campaign_label_history_campaign_id.1918cef89a", "fqn": ["iterable_source", "not_null_stg_iterable__campaign_label_history_campaign_id"], "alias": "not_null_stg_iterable__campaign_label_history_campaign_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1688673390.632349, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_iterable__campaign_label_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable_source.stg_iterable__campaign_label_history"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable.yml/not_null_stg_iterable__campaign_label_history_campaign_id.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect campaign_id\nfrom \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__campaign_label_history\"\nwhere campaign_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "campaign_id", "file_key_name": "models.stg_iterable__campaign_label_history", "attached_node": "model.iterable_source.stg_iterable__campaign_label_history"}, "test.iterable_source.not_null_stg_iterable__campaign_list_history_campaign_id.208f9bf9ed": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "campaign_id", "model": "{{ get_where_subquery(ref('stg_iterable__campaign_list_history')) }}"}, "namespace": null}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_stg_iterable__campaign_list_history_campaign_id", "resource_type": "test", "package_name": "iterable_source", "path": "not_null_stg_iterable__campaign_list_history_campaign_id.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.not_null_stg_iterable__campaign_list_history_campaign_id.208f9bf9ed", "fqn": ["iterable_source", "not_null_stg_iterable__campaign_list_history_campaign_id"], "alias": "not_null_stg_iterable__campaign_list_history_campaign_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1688673390.6339269, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_iterable__campaign_list_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable_source.stg_iterable__campaign_list_history"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable.yml/not_null_stg_iterable__campaign_list_history_campaign_id.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect campaign_id\nfrom \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__campaign_list_history\"\nwhere campaign_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "campaign_id", "file_key_name": "models.stg_iterable__campaign_list_history", "attached_node": "model.iterable_source.stg_iterable__campaign_list_history"}, "test.iterable_source.not_null_stg_iterable__campaign_suppression_list_history_campaign_id.3921289710": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "campaign_id", "model": "{{ get_where_subquery(ref('stg_iterable__campaign_suppression_list_history')) }}"}, "namespace": null}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_stg_iterable__campaign_suppression_list_history_campaign_id", "resource_type": "test", "package_name": "iterable_source", "path": "not_null_stg_iterable__campaig_3ce753a10225cac67c8a1434b5541997.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.not_null_stg_iterable__campaign_suppression_list_history_campaign_id.3921289710", "fqn": ["iterable_source", "not_null_stg_iterable__campaign_suppression_list_history_campaign_id"], "alias": "not_null_stg_iterable__campaig_3ce753a10225cac67c8a1434b5541997", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_stg_iterable__campaig_3ce753a10225cac67c8a1434b5541997", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_stg_iterable__campaig_3ce753a10225cac67c8a1434b5541997"}, "created_at": 1688673390.63572, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_stg_iterable__campaig_3ce753a10225cac67c8a1434b5541997\") }}", "language": "sql", "refs": [{"name": "stg_iterable__campaign_suppression_list_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable_source.stg_iterable__campaign_suppression_list_history"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable.yml/not_null_stg_iterable__campaig_3ce753a10225cac67c8a1434b5541997.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect campaign_id\nfrom \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__campaign_suppression_list_history\"\nwhere campaign_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "campaign_id", "file_key_name": "models.stg_iterable__campaign_suppression_list_history", "attached_node": "model.iterable_source.stg_iterable__campaign_suppression_list_history"}, "test.iterable_source.unique_stg_iterable__channel_channel_id.fc1eec7fbc": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "channel_id", "model": "{{ get_where_subquery(ref('stg_iterable__channel')) }}"}, "namespace": null}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "unique_stg_iterable__channel_channel_id", "resource_type": "test", "package_name": "iterable_source", "path": "unique_stg_iterable__channel_channel_id.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.unique_stg_iterable__channel_channel_id.fc1eec7fbc", "fqn": ["iterable_source", "unique_stg_iterable__channel_channel_id"], "alias": "unique_stg_iterable__channel_channel_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1688673390.637203, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_iterable__channel", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable_source.stg_iterable__channel"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable.yml/unique_stg_iterable__channel_channel_id.sql", "compiled": true, "compiled_code": "\n \n \n\nselect\n channel_id as unique_field,\n count(*) as n_records\n\nfrom \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__channel\"\nwhere channel_id is not null\ngroup by channel_id\nhaving count(*) > 1\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "channel_id", "file_key_name": "models.stg_iterable__channel", "attached_node": "model.iterable_source.stg_iterable__channel"}, "test.iterable_source.not_null_stg_iterable__channel_channel_id.182ceb9636": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "channel_id", "model": "{{ get_where_subquery(ref('stg_iterable__channel')) }}"}, "namespace": null}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_stg_iterable__channel_channel_id", "resource_type": "test", "package_name": "iterable_source", "path": "not_null_stg_iterable__channel_channel_id.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.not_null_stg_iterable__channel_channel_id.182ceb9636", "fqn": ["iterable_source", "not_null_stg_iterable__channel_channel_id"], "alias": "not_null_stg_iterable__channel_channel_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1688673390.6389709, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_iterable__channel", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable_source.stg_iterable__channel"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable.yml/not_null_stg_iterable__channel_channel_id.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect channel_id\nfrom \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__channel\"\nwhere channel_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "channel_id", "file_key_name": "models.stg_iterable__channel", "attached_node": "model.iterable_source.stg_iterable__channel"}, "test.iterable_source.unique_stg_iterable__event_event_id.ddb8510fc1": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('stg_iterable__event')) }}"}, "namespace": null}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "unique_stg_iterable__event_event_id", "resource_type": "test", "package_name": "iterable_source", "path": "unique_stg_iterable__event_event_id.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.unique_stg_iterable__event_event_id.ddb8510fc1", "fqn": ["iterable_source", "unique_stg_iterable__event_event_id"], "alias": "unique_stg_iterable__event_event_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1688673390.640553, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_iterable__event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable_source.stg_iterable__event"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable.yml/unique_stg_iterable__event_event_id.sql", "compiled": true, "compiled_code": "\n \n \n\nselect\n event_id as unique_field,\n count(*) as n_records\n\nfrom \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__event\"\nwhere event_id is not null\ngroup by event_id\nhaving count(*) > 1\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.stg_iterable__event", "attached_node": "model.iterable_source.stg_iterable__event"}, "test.iterable_source.not_null_stg_iterable__event_event_id.370cd4bc9d": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('stg_iterable__event')) }}"}, "namespace": null}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_stg_iterable__event_event_id", "resource_type": "test", "package_name": "iterable_source", "path": "not_null_stg_iterable__event_event_id.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.not_null_stg_iterable__event_event_id.370cd4bc9d", "fqn": ["iterable_source", "not_null_stg_iterable__event_event_id"], "alias": "not_null_stg_iterable__event_event_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1688673390.641991, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_iterable__event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable_source.stg_iterable__event"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable.yml/not_null_stg_iterable__event_event_id.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect event_id\nfrom \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__event\"\nwhere event_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.stg_iterable__event", "attached_node": "model.iterable_source.stg_iterable__event"}, "test.iterable_source.unique_stg_iterable__event_extension_event_id.4553cb5979": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('stg_iterable__event_extension')) }}"}, "namespace": null}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "unique_stg_iterable__event_extension_event_id", "resource_type": "test", "package_name": "iterable_source", "path": "unique_stg_iterable__event_extension_event_id.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.unique_stg_iterable__event_extension_event_id.4553cb5979", "fqn": ["iterable_source", "unique_stg_iterable__event_extension_event_id"], "alias": "unique_stg_iterable__event_extension_event_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1688673390.643546, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_iterable__event_extension", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable_source.stg_iterable__event_extension"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable.yml/unique_stg_iterable__event_extension_event_id.sql", "compiled": true, "compiled_code": "\n \n \n\nselect\n event_id as unique_field,\n count(*) as n_records\n\nfrom \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__event_extension\"\nwhere event_id is not null\ngroup by event_id\nhaving count(*) > 1\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.stg_iterable__event_extension", "attached_node": "model.iterable_source.stg_iterable__event_extension"}, "test.iterable_source.not_null_stg_iterable__event_extension_event_id.144dedcd30": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "event_id", "model": "{{ get_where_subquery(ref('stg_iterable__event_extension')) }}"}, "namespace": null}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_stg_iterable__event_extension_event_id", "resource_type": "test", "package_name": "iterable_source", "path": "not_null_stg_iterable__event_extension_event_id.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.not_null_stg_iterable__event_extension_event_id.144dedcd30", "fqn": ["iterable_source", "not_null_stg_iterable__event_extension_event_id"], "alias": "not_null_stg_iterable__event_extension_event_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1688673390.644938, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_iterable__event_extension", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable_source.stg_iterable__event_extension"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable.yml/not_null_stg_iterable__event_extension_event_id.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect event_id\nfrom \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__event_extension\"\nwhere event_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "event_id", "file_key_name": "models.stg_iterable__event_extension", "attached_node": "model.iterable_source.stg_iterable__event_extension"}, "test.iterable_source.unique_stg_iterable__list_list_id.1e73c3def7": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "list_id", "model": "{{ get_where_subquery(ref('stg_iterable__list')) }}"}, "namespace": null}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "unique_stg_iterable__list_list_id", "resource_type": "test", "package_name": "iterable_source", "path": "unique_stg_iterable__list_list_id.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.unique_stg_iterable__list_list_id.1e73c3def7", "fqn": ["iterable_source", "unique_stg_iterable__list_list_id"], "alias": "unique_stg_iterable__list_list_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1688673390.6463099, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_iterable__list", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable_source.stg_iterable__list"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable.yml/unique_stg_iterable__list_list_id.sql", "compiled": true, "compiled_code": "\n \n \n\nselect\n list_id as unique_field,\n count(*) as n_records\n\nfrom \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__list\"\nwhere list_id is not null\ngroup by list_id\nhaving count(*) > 1\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "list_id", "file_key_name": "models.stg_iterable__list", "attached_node": "model.iterable_source.stg_iterable__list"}, "test.iterable_source.not_null_stg_iterable__list_list_id.47029d839a": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "list_id", "model": "{{ get_where_subquery(ref('stg_iterable__list')) }}"}, "namespace": null}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_stg_iterable__list_list_id", "resource_type": "test", "package_name": "iterable_source", "path": "not_null_stg_iterable__list_list_id.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.not_null_stg_iterable__list_list_id.47029d839a", "fqn": ["iterable_source", "not_null_stg_iterable__list_list_id"], "alias": "not_null_stg_iterable__list_list_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1688673390.647778, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_iterable__list", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable_source.stg_iterable__list"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable.yml/not_null_stg_iterable__list_list_id.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect list_id\nfrom \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__list\"\nwhere list_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "list_id", "file_key_name": "models.stg_iterable__list", "attached_node": "model.iterable_source.stg_iterable__list"}, "test.iterable_source.unique_stg_iterable__message_type_message_type_id.0f75f83a34": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "message_type_id", "model": "{{ get_where_subquery(ref('stg_iterable__message_type')) }}"}, "namespace": null}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "unique_stg_iterable__message_type_message_type_id", "resource_type": "test", "package_name": "iterable_source", "path": "unique_stg_iterable__message_type_message_type_id.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.unique_stg_iterable__message_type_message_type_id.0f75f83a34", "fqn": ["iterable_source", "unique_stg_iterable__message_type_message_type_id"], "alias": "unique_stg_iterable__message_type_message_type_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1688673390.649132, "relation_name": null, "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_iterable__message_type", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable_source.stg_iterable__message_type"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable.yml/unique_stg_iterable__message_type_message_type_id.sql", "compiled": true, "compiled_code": "\n \n \n\nselect\n message_type_id as unique_field,\n count(*) as n_records\n\nfrom \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__message_type\"\nwhere message_type_id is not null\ngroup by message_type_id\nhaving count(*) > 1\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "message_type_id", "file_key_name": "models.stg_iterable__message_type", "attached_node": "model.iterable_source.stg_iterable__message_type"}, "test.iterable_source.not_null_stg_iterable__message_type_message_type_id.75eaa6fa62": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "message_type_id", "model": "{{ get_where_subquery(ref('stg_iterable__message_type')) }}"}, "namespace": null}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_stg_iterable__message_type_message_type_id", "resource_type": "test", "package_name": "iterable_source", "path": "not_null_stg_iterable__message_type_message_type_id.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.not_null_stg_iterable__message_type_message_type_id.75eaa6fa62", "fqn": ["iterable_source", "not_null_stg_iterable__message_type_message_type_id"], "alias": "not_null_stg_iterable__message_type_message_type_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1688673390.650476, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_iterable__message_type", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable_source.stg_iterable__message_type"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable.yml/not_null_stg_iterable__message_type_message_type_id.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect message_type_id\nfrom \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__message_type\"\nwhere message_type_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "message_type_id", "file_key_name": "models.stg_iterable__message_type", "attached_node": "model.iterable_source.stg_iterable__message_type"}, "test.iterable_source.not_null_stg_iterable__template_history_template_id.14b24a1dfe": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "template_id", "model": "{{ get_where_subquery(ref('stg_iterable__template_history')) }}"}, "namespace": null}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_stg_iterable__template_history_template_id", "resource_type": "test", "package_name": "iterable_source", "path": "not_null_stg_iterable__template_history_template_id.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.not_null_stg_iterable__template_history_template_id.14b24a1dfe", "fqn": ["iterable_source", "not_null_stg_iterable__template_history_template_id"], "alias": "not_null_stg_iterable__template_history_template_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1688673390.6520078, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_iterable__template_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable_source.stg_iterable__template_history"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable.yml/not_null_stg_iterable__template_history_template_id.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect template_id\nfrom \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__template_history\"\nwhere template_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "template_id", "file_key_name": "models.stg_iterable__template_history", "attached_node": "model.iterable_source.stg_iterable__template_history"}, "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__template_history_template_id__updated_at.e0b90faa8d": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["template_id", "updated_at"], "model": "{{ get_where_subquery(ref('stg_iterable__template_history')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_iterable__template_history_template_id__updated_at", "resource_type": "test", "package_name": "iterable_source", "path": "dbt_utils_unique_combination_o_99dd1e1cb3e7ff0badf3d0de717a98ce.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__template_history_template_id__updated_at.e0b90faa8d", "fqn": ["iterable_source", "dbt_utils_unique_combination_of_columns_stg_iterable__template_history_template_id__updated_at"], "alias": "dbt_utils_unique_combination_o_99dd1e1cb3e7ff0badf3d0de717a98ce", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_99dd1e1cb3e7ff0badf3d0de717a98ce", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_99dd1e1cb3e7ff0badf3d0de717a98ce"}, "created_at": 1688673390.653653, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_99dd1e1cb3e7ff0badf3d0de717a98ce\") }}", "language": "sql", "refs": [{"name": "stg_iterable__template_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable_source.stg_iterable__template_history"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable.yml/dbt_utils_unique_combination_o_99dd1e1cb3e7ff0badf3d0de717a98ce.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n template_id, updated_at\n from \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__template_history\"\n group by template_id, updated_at\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.stg_iterable__template_history", "attached_node": "model.iterable_source.stg_iterable__template_history"}, "test.iterable_source.not_null_stg_iterable__user_history_email.14ff93a17c": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "email", "model": "{{ get_where_subquery(ref('stg_iterable__user_history')) }}"}, "namespace": null}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_stg_iterable__user_history_email", "resource_type": "test", "package_name": "iterable_source", "path": "not_null_stg_iterable__user_history_email.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.not_null_stg_iterable__user_history_email.14ff93a17c", "fqn": ["iterable_source", "not_null_stg_iterable__user_history_email"], "alias": "not_null_stg_iterable__user_history_email", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1688673390.658299, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_iterable__user_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable_source.stg_iterable__user_history"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable.yml/not_null_stg_iterable__user_history_email.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect email\nfrom \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__user_history\"\nwhere email is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "email", "file_key_name": "models.stg_iterable__user_history", "attached_node": "model.iterable_source.stg_iterable__user_history"}, "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__user_history_email__updated_at.cb12f59c15": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["email", "updated_at"], "model": "{{ get_where_subquery(ref('stg_iterable__user_history')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_iterable__user_history_email__updated_at", "resource_type": "test", "package_name": "iterable_source", "path": "dbt_utils_unique_combination_o_9b39bbb5083d5d1d6ae8f94f3a6e073b.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__user_history_email__updated_at.cb12f59c15", "fqn": ["iterable_source", "dbt_utils_unique_combination_of_columns_stg_iterable__user_history_email__updated_at"], "alias": "dbt_utils_unique_combination_o_9b39bbb5083d5d1d6ae8f94f3a6e073b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_9b39bbb5083d5d1d6ae8f94f3a6e073b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_9b39bbb5083d5d1d6ae8f94f3a6e073b"}, "created_at": 1688673390.659745, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_9b39bbb5083d5d1d6ae8f94f3a6e073b\") }}", "language": "sql", "refs": [{"name": "stg_iterable__user_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable_source.stg_iterable__user_history"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable.yml/dbt_utils_unique_combination_o_9b39bbb5083d5d1d6ae8f94f3a6e073b.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n email, updated_at\n from \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__user_history\"\n group by email, updated_at\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.stg_iterable__user_history", "attached_node": "model.iterable_source.stg_iterable__user_history"}, "test.iterable_source.not_null_stg_iterable__user_unsubscribed_channel_history_channel_id.b4667878b9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "channel_id", "model": "{{ get_where_subquery(ref('stg_iterable__user_unsubscribed_channel_history')) }}"}, "namespace": null}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_stg_iterable__user_unsubscribed_channel_history_channel_id", "resource_type": "test", "package_name": "iterable_source", "path": "not_null_stg_iterable__user_un_19677928d89aeed4fd3fa200e21ce879.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.not_null_stg_iterable__user_unsubscribed_channel_history_channel_id.b4667878b9", "fqn": ["iterable_source", "not_null_stg_iterable__user_unsubscribed_channel_history_channel_id"], "alias": "not_null_stg_iterable__user_un_19677928d89aeed4fd3fa200e21ce879", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_stg_iterable__user_un_19677928d89aeed4fd3fa200e21ce879", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_stg_iterable__user_un_19677928d89aeed4fd3fa200e21ce879"}, "created_at": 1688673390.6636019, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_stg_iterable__user_un_19677928d89aeed4fd3fa200e21ce879\") }}", "language": "sql", "refs": [{"name": "stg_iterable__user_unsubscribed_channel_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable_source.stg_iterable__user_unsubscribed_channel_history"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable.yml/not_null_stg_iterable__user_un_19677928d89aeed4fd3fa200e21ce879.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect channel_id\nfrom \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__user_unsubscribed_channel_history\"\nwhere channel_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "channel_id", "file_key_name": "models.stg_iterable__user_unsubscribed_channel_history", "attached_node": "model.iterable_source.stg_iterable__user_unsubscribed_channel_history"}, "test.iterable_source.not_null_stg_iterable__user_unsub_message_type_history_message_type_id.948c8b7127": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "message_type_id", "model": "{{ get_where_subquery(ref('stg_iterable__user_unsub_message_type_history')) }}"}, "namespace": null}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "not_null_stg_iterable__user_unsub_message_type_history_message_type_id", "resource_type": "test", "package_name": "iterable_source", "path": "not_null_stg_iterable__user_un_f732ee711ea960e00499ed50cf222090.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.not_null_stg_iterable__user_unsub_message_type_history_message_type_id.948c8b7127", "fqn": ["iterable_source", "not_null_stg_iterable__user_unsub_message_type_history_message_type_id"], "alias": "not_null_stg_iterable__user_un_f732ee711ea960e00499ed50cf222090", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_stg_iterable__user_un_f732ee711ea960e00499ed50cf222090", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_stg_iterable__user_un_f732ee711ea960e00499ed50cf222090"}, "created_at": 1688673390.665056, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_stg_iterable__user_un_f732ee711ea960e00499ed50cf222090\") }}", "language": "sql", "refs": [{"name": "stg_iterable__user_unsub_message_type_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.iterable_source.stg_iterable__user_unsub_message_type_history"]}, "compiled_path": "target/compiled/iterable_source/models/stg_iterable.yml/not_null_stg_iterable__user_un_f732ee711ea960e00499ed50cf222090.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect message_type_id\nfrom \"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__user_unsub_message_type_history\"\nwhere message_type_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "checksum": null}, "column_name": "message_type_id", "file_key_name": "models.stg_iterable__user_unsub_message_type_history", "attached_node": "model.iterable_source.stg_iterable__user_unsub_message_type_history"}, "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__user_device_history_email__updated_at__index.9c0dac7320": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["email", "updated_at", "index"], "model": "{{ get_where_subquery(ref('stg_iterable__user_device_history')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "iterable_integration_tests_03_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_iterable__user_device_history_email__updated_at__index", "resource_type": "test", "package_name": "iterable_source", "path": "dbt_utils_unique_combination_o_454ac6ab9d7f92f7eb89416e2065a84e.sql", "original_file_path": "models/stg_iterable.yml", "unique_id": "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__user_device_history_email__updated_at__index.9c0dac7320", "fqn": ["iterable_source", "dbt_utils_unique_combination_of_columns_stg_iterable__user_device_history_email__updated_at__index"], "alias": "dbt_utils_unique_combination_o_454ac6ab9d7f92f7eb89416e2065a84e", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": false, "alias": "dbt_utils_unique_combination_o_454ac6ab9d7f92f7eb89416e2065a84e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_454ac6ab9d7f92f7eb89416e2065a84e"}, "created_at": 1688673390.6664839, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_454ac6ab9d7f92f7eb89416e2065a84e\") }}", "language": "sql", "refs": [{"name": "stg_iterable__user_device_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": []}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "column_name": null, "file_key_name": "models.stg_iterable__user_device_history", "attached_node": "model.iterable_source.stg_iterable__user_device_history"}}, "sources": {"source.iterable_source.iterable.campaign_history": {"database": "postgres", "schema": "iterable_integration_tests_03", "name": "campaign_history", "resource_type": "source", "package_name": "iterable_source", "path": "models/src_iterable.yml", "original_file_path": "models/src_iterable.yml", "unique_id": "source.iterable_source.iterable.campaign_history", "fqn": ["iterable_source", "iterable", "campaign_history"], "source_name": "iterable", "source_description": "", "loader": "fivetran", "identifier": "campaign_history_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": "_fivetran_synced", "freshness": {"warn_after": {"count": 72, "period": "hour"}, "error_after": {"count": 168, "period": "hour"}, "filter": null}, "external": null, "description": "Table containing a history of campaigns.", "columns": {"id": {"name": "id", "description": "Unique identifier of the campaign record", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update's timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "name": {"name": "name", "description": "User defined name of the campaign.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "campaign_state": {"name": "campaign_state", "description": "State of the campaign. Can be Draft, Ready, Scheduled, Running, Finished, Starting, Aborted or Recurring", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "type": {"name": "type", "description": "The campaign type. Can be Blast or Triggered", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "send_size": {"name": "send_size", "description": "Size of the campaign. Number of individuals included in the campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "start_at": {"name": "start_at", "description": "Start timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "ended_at": {"name": "ended_at", "description": "Ended timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "Creation timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recurring_campaign_id": {"name": "recurring_campaign_id", "description": "Reference to the recurring campaign, if applicable", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_by_user_id": {"name": "created_by_user_id", "description": "Reference to the user who created the campaign", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "template_id": {"name": "template_id", "description": "Reference to the campaign template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"iterable_integration_tests_03\".\"campaign_history_data\"", "created_at": 1688673390.7110069}, "source.iterable_source.iterable.campaign_label_history": {"database": "postgres", "schema": "iterable_integration_tests_03", "name": "campaign_label_history", "resource_type": "source", "package_name": "iterable_source", "path": "models/src_iterable.yml", "original_file_path": "models/src_iterable.yml", "unique_id": "source.iterable_source.iterable.campaign_label_history", "fqn": ["iterable_source", "iterable", "campaign_label_history"], "source_name": "iterable", "source_description": "", "loader": "fivetran", "identifier": "campaign_label_history_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": "_fivetran_synced", "freshness": {"warn_after": {"count": 72, "period": "hour"}, "error_after": {"count": 168, "period": "hour"}, "filter": null}, "external": null, "description": "Table containing a history of labels.", "columns": {"campaign_id": {"name": "campaign_id", "description": "Reference to the campaign associated with the label", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "label": {"name": "label", "description": "Name of the label", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {"is_enabled": true}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"iterable_integration_tests_03\".\"campaign_label_history_data\"", "created_at": 1688673390.711176}, "source.iterable_source.iterable.campaign_list_history": {"database": "postgres", "schema": "iterable_integration_tests_03", "name": "campaign_list_history", "resource_type": "source", "package_name": "iterable_source", "path": "models/src_iterable.yml", "original_file_path": "models/src_iterable.yml", "unique_id": "source.iterable_source.iterable.campaign_list_history", "fqn": ["iterable_source", "iterable", "campaign_list_history"], "source_name": "iterable", "source_description": "", "loader": "fivetran", "identifier": "campaign_list_history_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": "_fivetran_synced", "freshness": {"warn_after": {"count": 72, "period": "hour"}, "error_after": {"count": 168, "period": "hour"}, "filter": null}, "external": null, "description": "Table containing a history of lists.", "columns": {"campaign_id": {"name": "campaign_id", "description": "Reference to the campaign associated with the label", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "list_id": {"name": "list_id", "description": "Reference to the list used", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"iterable_integration_tests_03\".\"campaign_list_history_data\"", "created_at": 1688673390.711303}, "source.iterable_source.iterable.campaign_suppression_list_history": {"database": "postgres", "schema": "iterable_integration_tests_03", "name": "campaign_suppression_list_history", "resource_type": "source", "package_name": "iterable_source", "path": "models/src_iterable.yml", "original_file_path": "models/src_iterable.yml", "unique_id": "source.iterable_source.iterable.campaign_suppression_list_history", "fqn": ["iterable_source", "iterable", "campaign_suppression_list_history"], "source_name": "iterable", "source_description": "", "loader": "fivetran", "identifier": "campaign_suppression_list_history_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": "_fivetran_synced", "freshness": {"warn_after": {"count": 72, "period": "hour"}, "error_after": {"count": 168, "period": "hour"}, "filter": null}, "external": null, "description": "Table containing a history of suppression lists.\n", "columns": {"campaign_id": {"name": "campaign_id", "description": "Reference to the campaign associated with the label", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "suppressed_list_id": {"name": "suppressed_list_id", "description": "Reference to the list used", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"iterable_integration_tests_03\".\"campaign_suppression_list_history_data\"", "created_at": 1688673390.711424}, "source.iterable_source.iterable.channel": {"database": "postgres", "schema": "iterable_integration_tests_03", "name": "channel", "resource_type": "source", "package_name": "iterable_source", "path": "models/src_iterable.yml", "original_file_path": "models/src_iterable.yml", "unique_id": "source.iterable_source.iterable.channel", "fqn": ["iterable_source", "iterable", "channel"], "source_name": "iterable", "source_description": "", "loader": "fivetran", "identifier": "channel_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": "_fivetran_synced", "freshness": {"warn_after": {"count": 72, "period": "hour"}, "error_after": {"count": 168, "period": "hour"}, "filter": null}, "external": null, "description": "Table containing unique channels.", "columns": {"id": {"name": "id", "description": "Unique identifier of the channel", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "name": {"name": "name", "description": "User defined name of the channel", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "channel_type": {"name": "channel_type", "description": "The channel type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_medium": {"name": "message_medium", "description": "The message medium associated with the channel", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"iterable_integration_tests_03\".\"channel_data\"", "created_at": 1688673390.7115479}, "source.iterable_source.iterable.event": {"database": "postgres", "schema": "iterable_integration_tests_03", "name": "event", "resource_type": "source", "package_name": "iterable_source", "path": "models/src_iterable.yml", "original_file_path": "models/src_iterable.yml", "unique_id": "source.iterable_source.iterable.event", "fqn": ["iterable_source", "iterable", "event"], "source_name": "iterable", "source_description": "", "loader": "fivetran", "identifier": "event_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": "_fivetran_synced", "freshness": {"warn_after": {"count": 72, "period": "hour"}, "error_after": {"count": 168, "period": "hour"}, "filter": null}, "external": null, "description": "Table containing individual events within campaigns.", "columns": {"_fivetran_id": {"name": "_fivetran_id", "description": "Unique id of the event generated by Fivetran", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "Reference to the campaign from which the event originated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "content_id": {"name": "content_id", "description": "Reference to the content the event is associated with.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "Creation timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email": {"name": "email", "description": "Reference to the unique user the event was applied to", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "additional_properties": {"name": "additional_properties", "description": "json object containing addition event properties", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "event_name": {"name": "event_name", "description": "Name provided to the individual event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_bus_id": {"name": "message_bus_id", "description": "Reference to the message bus associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_id": {"name": "message_id", "description": "Reference to the message the event is associated with", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_type_id": {"name": "message_type_id", "description": "Reference to the type of message the event is associated with", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_state": {"name": "recipient_state", "description": "The state of the recipient upon receiving the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "status": {"name": "status", "description": "Status of the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "transactional_data": {"name": "transactional_data", "description": "Transactional data associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unsub_source": {"name": "unsub_source", "description": "Source of the unsubscribe event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_agent": {"name": "user_agent", "description": "User agent associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_agent_device": {"name": "user_agent_device", "description": "The device of the user agent", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"iterable_integration_tests_03\".\"event_data\"", "created_at": 1688673390.7116868}, "source.iterable_source.iterable.event_extension": {"database": "postgres", "schema": "iterable_integration_tests_03", "name": "event_extension", "resource_type": "source", "package_name": "iterable_source", "path": "models/src_iterable.yml", "original_file_path": "models/src_iterable.yml", "unique_id": "source.iterable_source.iterable.event_extension", "fqn": ["iterable_source", "iterable", "event_extension"], "source_name": "iterable", "source_description": "", "loader": "fivetran", "identifier": "event_extension_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": "_fivetran_synced", "freshness": {"warn_after": {"count": 72, "period": "hour"}, "error_after": {"count": 168, "period": "hour"}, "filter": null}, "external": null, "description": "Table containing additional properties from the event table.", "columns": {"_fivetran_id": {"name": "_fivetran_id", "description": "Unique identifier of the event. Generated by Fivetran", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "app_already_running": {"name": "app_already_running", "description": "Boolean indicating if the app is currently running or not", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "badge": {"name": "badge", "description": "Badge associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "canonical_url_id": {"name": "canonical_url_id", "description": "Reference to the url associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "content_available": {"name": "content_available", "description": "Content available from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "content_id": {"name": "content_id", "description": "Reference to the content associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "deeplink_android": {"name": "deeplink_android", "description": "Deeplink associated with the event from an android device", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "deeplink_ios": {"name": "deeplink_ios", "description": "Deeplink associated with the event from an ios device", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "device": {"name": "device", "description": "The device associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email_id": {"name": "email_id", "description": "Reference to the email associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email_subject": {"name": "email_subject", "description": "Subject of the email associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "experiment_id": {"name": "experiment_id", "description": "Reference to the experiment used if the event is an experiment", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "from_phone_number_id": {"name": "from_phone_number_id", "description": "Reference to the phone number which the event is from", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "from_smssender_id": {"name": "from_smssender_id", "description": "Reference to the sms sender which the event is from", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "image_url": {"name": "image_url", "description": "Image url of the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_ghost_push": {"name": "is_ghost_push", "description": "Boolean indicating if the event is a result of a ghost push", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "link_id": {"name": "link_id", "description": "Reference to the link associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "link_url": {"name": "link_url", "description": "Url of the link associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "locale": {"name": "locale", "description": "Locale associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "payload": {"name": "payload", "description": "Payload resulted from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "platform_endpoint": {"name": "platform_endpoint", "description": "The specific platform endpoint of the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "push_message": {"name": "push_message", "description": "Boolean indicating if the event is a push message", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "region": {"name": "region", "description": "Region of the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sms_message": {"name": "sms_message", "description": "Boolean indicating if the event is an sms message", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sms_provider_response_code": {"name": "sms_provider_response_code", "description": "sms provider response code from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sms_provider_response_message": {"name": "sms_provider_response_message", "description": "sms provider response message from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sms_provider_response_more_info": {"name": "sms_provider_response_more_info", "description": "sms provider response addition info from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sms_provider_response_status": {"name": "sms_provider_response_status", "description": "Status of the sms provider response from the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sound": {"name": "sound", "description": "Boolean indicating if a sound was used with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "to_phone_number": {"name": "to_phone_number", "description": "To phone number associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "url": {"name": "url", "description": "Url associated with the event", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "workflow_id": {"name": "workflow_id", "description": "Reference to the workflow which the event originated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "workflow_name": {"name": "workflow_name", "description": "Name of the workflow which the event originated", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"iterable_integration_tests_03\".\"event_extension_data\"", "created_at": 1688673390.711848}, "source.iterable_source.iterable.list": {"database": "postgres", "schema": "iterable_integration_tests_03", "name": "list", "resource_type": "source", "package_name": "iterable_source", "path": "models/src_iterable.yml", "original_file_path": "models/src_iterable.yml", "unique_id": "source.iterable_source.iterable.list", "fqn": ["iterable_source", "iterable", "list"], "source_name": "iterable", "source_description": "", "loader": "fivetran", "identifier": "list_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": "_fivetran_synced", "freshness": {"warn_after": {"count": 72, "period": "hour"}, "error_after": {"count": 168, "period": "hour"}, "filter": null}, "external": null, "description": "Table containing users and the lists the users are associated with.", "columns": {"id": {"name": "id", "description": "Unique identifier of the list", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "name": {"name": "name", "description": "User defined name of the list", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "list_type": {"name": "list_type", "description": "The list type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "Creation timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"iterable_integration_tests_03\".\"list_data\"", "created_at": 1688673390.71204}, "source.iterable_source.iterable.message_type": {"database": "postgres", "schema": "iterable_integration_tests_03", "name": "message_type", "resource_type": "source", "package_name": "iterable_source", "path": "models/src_iterable.yml", "original_file_path": "models/src_iterable.yml", "unique_id": "source.iterable_source.iterable.message_type", "fqn": ["iterable_source", "iterable", "message_type"], "source_name": "iterable", "source_description": "", "loader": "fivetran", "identifier": "message_type_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": "_fivetran_synced", "freshness": {"warn_after": {"count": 72, "period": "hour"}, "error_after": {"count": 168, "period": "hour"}, "filter": null}, "external": null, "description": "Table containing unique message types.", "columns": {"id": {"name": "id", "description": "Unique identifer of the message type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "name": {"name": "name", "description": "User defined name of the message type", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "channel_id": {"name": "channel_id", "description": "Channel that this message type belongs to", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"iterable_integration_tests_03\".\"message_type_data\"", "created_at": 1688673390.712163}, "source.iterable_source.iterable.template_history": {"database": "postgres", "schema": "iterable_integration_tests_03", "name": "template_history", "resource_type": "source", "package_name": "iterable_source", "path": "models/src_iterable.yml", "original_file_path": "models/src_iterable.yml", "unique_id": "source.iterable_source.iterable.template_history", "fqn": ["iterable_source", "iterable", "template_history"], "source_name": "iterable", "source_description": "", "loader": "fivetran", "identifier": "template_history_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": "_fivetran_synced", "freshness": {"warn_after": {"count": 72, "period": "hour"}, "error_after": {"count": 168, "period": "hour"}, "filter": null}, "external": null, "description": "Table containing unique templates used across campaigns.", "columns": {"id": {"name": "id", "description": "Unique identifer of the template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "name": {"name": "name", "description": "User defined name of the template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "template_type": {"name": "template_type", "description": "The type of the template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "Creation timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "client_template_id": {"name": "client_template_id", "description": "Reference to the client template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "creator_user_id": {"name": "creator_user_id", "description": "Reference to the user who created the template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_type_id": {"name": "message_type_id", "description": "Reference to the message type associated with the template", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"iterable_integration_tests_03\".\"template_history_data\"", "created_at": 1688673390.712288}, "source.iterable_source.iterable.user_history": {"database": "postgres", "schema": "iterable_integration_tests_03", "name": "user_history", "resource_type": "source", "package_name": "iterable_source", "path": "models/src_iterable.yml", "original_file_path": "models/src_iterable.yml", "unique_id": "source.iterable_source.iterable.user_history", "fqn": ["iterable_source", "iterable", "user_history"], "source_name": "iterable", "source_description": "", "loader": "fivetran", "identifier": "user_history_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": "_fivetran_synced", "freshness": {"warn_after": {"count": 72, "period": "hour"}, "error_after": {"count": 168, "period": "hour"}, "filter": null}, "external": null, "description": "Table containing individual user history information.", "columns": {"email": {"name": "email", "description": "Unique identifier of the user as well as their email", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_id": {"name": "user_id", "description": "User defined identifier of the user. This is not a unique field", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "first_name": {"name": "first_name", "description": "First name of the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_name": {"name": "last_name", "description": "Last name of the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email_list_ids": {"name": "email_list_ids", "description": "Array of references to the lists associated with the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "signup_date": {"name": "signup_date", "description": "Timestamp as epoch time in milliseconds of when the user signed up", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "signup_source": {"name": "signup_source", "description": "Source where the user signed up", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"iterable_integration_tests_03\".\"user_history_data\"", "created_at": 1688673390.7124119}, "source.iterable_source.iterable.user_device_history": {"database": "postgres", "schema": "iterable_integration_tests_03", "name": "user_device_history", "resource_type": "source", "package_name": "iterable_source", "path": "models/src_iterable.yml", "original_file_path": "models/src_iterable.yml", "unique_id": "source.iterable_source.iterable.user_device_history", "fqn": ["iterable_source", "iterable", "user_device_history"], "source_name": "iterable", "source_description": "", "loader": "fivetran", "identifier": "user_device_history_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": "_fivetran_synced", "freshness": {"warn_after": {"count": 72, "period": "hour"}, "error_after": {"count": 168, "period": "hour"}, "filter": null}, "external": null, "description": "Table capturing the history of devices associated with in-app and push notifications to a user.", "columns": {"application_name": {"name": "application_name", "description": "The Iterable push integration to associate with the device token. Usually matches the package name (or bundle ID) of the relevant mobile app. \n", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email": {"name": "email", "description": "User email associated with the device.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "endpoint_enabled": {"name": "endpoint_enabled", "description": "Boolean that is true if the user has not disabled Push notifications and their endpoint remains enabled.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "identifier_for_vendor": {"name": "identifier_for_vendor", "description": "An alphanumeric string that uniquely identifies a device to the app's vendor.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "index": {"name": "index", "description": "Index representing the order in which devices were added to a user.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "platform": {"name": "platform", "description": "The device platform. Can be APNS, APNS_SANDBOX or GCM", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "platform_endpoint": {"name": "platform_endpoint", "description": "The platform's endpoint.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "token": {"name": "token", "description": "Device token registered for push notifications.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Timestamp of when this device was updated last.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {"is_enabled": false}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"iterable_integration_tests_03\".\"user_device_history_data\"", "created_at": 1688673390.712538}, "source.iterable_source.iterable.user_unsubscribed_channel_history": {"database": "postgres", "schema": "iterable_integration_tests_03", "name": "user_unsubscribed_channel_history", "resource_type": "source", "package_name": "iterable_source", "path": "models/src_iterable.yml", "original_file_path": "models/src_iterable.yml", "unique_id": "source.iterable_source.iterable.user_unsubscribed_channel_history", "fqn": ["iterable_source", "iterable", "user_unsubscribed_channel_history"], "source_name": "iterable", "source_description": "", "loader": "fivetran", "identifier": "user_unsubscribed_channel_history_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": "_fivetran_synced", "freshness": {"warn_after": {"count": 72, "period": "hour"}, "error_after": {"count": 168, "period": "hour"}, "filter": null}, "external": null, "description": "Table containing the history of channels from which a user has unsubscribed.", "columns": {"channel_id": {"name": "channel_id", "description": "Reference to the channel from which the user unsubscribed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email": {"name": "email", "description": "Unique identifier of the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"iterable_integration_tests_03\".\"user_unsubscribed_channel_history_data\"", "created_at": 1688673390.712652}, "source.iterable_source.iterable.user_unsubscribed_message_type_history": {"database": "postgres", "schema": "iterable_integration_tests_03", "name": "user_unsubscribed_message_type_history", "resource_type": "source", "package_name": "iterable_source", "path": "models/src_iterable.yml", "original_file_path": "models/src_iterable.yml", "unique_id": "source.iterable_source.iterable.user_unsubscribed_message_type_history", "fqn": ["iterable_source", "iterable", "user_unsubscribed_message_type_history"], "source_name": "iterable", "source_description": "", "loader": "fivetran", "identifier": "user_unsubscribed_message_type_history_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": "_fivetran_synced", "freshness": {"warn_after": {"count": 72, "period": "hour"}, "error_after": {"count": 168, "period": "hour"}, "filter": null}, "external": null, "description": "Table containing the history of message types from which a user has unsubscribed.", "columns": {"message_type_id": {"name": "message_type_id", "description": "Reference to the message type from which the user unsubscribed", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email": {"name": "email", "description": "Unique identifier of the user", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Last update timestamp as epoch time in milliseconds", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {"is_enabled": true}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"iterable_integration_tests_03\".\"user_unsubscribed_message_type_history_data\"", "created_at": 1688673390.712766}}, "macros": {"macro.dbt_postgres.postgres__current_timestamp": {"name": "postgres__current_timestamp", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/timestamps.sql", "original_file_path": "macros/timestamps.sql", "unique_id": "macro.dbt_postgres.postgres__current_timestamp", "macro_sql": "{% macro postgres__current_timestamp() -%}\n now()\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.4224, "supported_languages": null}, "macro.dbt_postgres.postgres__snapshot_string_as_time": {"name": "postgres__snapshot_string_as_time", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/timestamps.sql", "original_file_path": "macros/timestamps.sql", "unique_id": "macro.dbt_postgres.postgres__snapshot_string_as_time", "macro_sql": "{% macro postgres__snapshot_string_as_time(timestamp) -%}\n {%- set result = \"'\" ~ timestamp ~ \"'::timestamp without time zone\" -%}\n {{ return(result) }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.422644, "supported_languages": null}, "macro.dbt_postgres.postgres__snapshot_get_time": {"name": "postgres__snapshot_get_time", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/timestamps.sql", "original_file_path": "macros/timestamps.sql", "unique_id": "macro.dbt_postgres.postgres__snapshot_get_time", "macro_sql": "{% macro postgres__snapshot_get_time() -%}\n {{ current_timestamp() }}::timestamp without time zone\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.422772, "supported_languages": null}, "macro.dbt_postgres.postgres__current_timestamp_backcompat": {"name": "postgres__current_timestamp_backcompat", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/timestamps.sql", "original_file_path": "macros/timestamps.sql", "unique_id": "macro.dbt_postgres.postgres__current_timestamp_backcompat", "macro_sql": "{% macro postgres__current_timestamp_backcompat() %}\n current_timestamp::{{ type_timestamp() }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.4228952, "supported_languages": null}, "macro.dbt_postgres.postgres__current_timestamp_in_utc_backcompat": {"name": "postgres__current_timestamp_in_utc_backcompat", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/timestamps.sql", "original_file_path": "macros/timestamps.sql", "unique_id": "macro.dbt_postgres.postgres__current_timestamp_in_utc_backcompat", "macro_sql": "{% macro postgres__current_timestamp_in_utc_backcompat() %}\n (current_timestamp at time zone 'utc')::{{ type_timestamp() }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.4230132, "supported_languages": null}, "macro.dbt_postgres.postgres__get_catalog": {"name": "postgres__get_catalog", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/catalog.sql", "original_file_path": "macros/catalog.sql", "unique_id": "macro.dbt_postgres.postgres__get_catalog", "macro_sql": "{% macro postgres__get_catalog(information_schema, schemas) -%}\n\n {%- call statement('catalog', fetch_result=True) -%}\n {#\n If the user has multiple databases set and the first one is wrong, this will fail.\n But we won't fail in the case where there are multiple quoting-difference-only dbs, which is better.\n #}\n {% set database = information_schema.database %}\n {{ adapter.verify_database(database) }}\n\n select\n '{{ database }}' as table_database,\n sch.nspname as table_schema,\n tbl.relname as table_name,\n case tbl.relkind\n when 'v' then 'VIEW'\n else 'BASE TABLE'\n end as table_type,\n tbl_desc.description as table_comment,\n col.attname as column_name,\n col.attnum as column_index,\n pg_catalog.format_type(col.atttypid, col.atttypmod) as column_type,\n col_desc.description as column_comment,\n pg_get_userbyid(tbl.relowner) as table_owner\n\n from pg_catalog.pg_namespace sch\n join pg_catalog.pg_class tbl on tbl.relnamespace = sch.oid\n join pg_catalog.pg_attribute col on col.attrelid = tbl.oid\n left outer join pg_catalog.pg_description tbl_desc on (tbl_desc.objoid = tbl.oid and tbl_desc.objsubid = 0)\n left outer join pg_catalog.pg_description col_desc on (col_desc.objoid = tbl.oid and col_desc.objsubid = col.attnum)\n\n where (\n {%- for schema in schemas -%}\n upper(sch.nspname) = upper('{{ schema }}'){%- if not loop.last %} or {% endif -%}\n {%- endfor -%}\n )\n and not pg_is_other_temp_schema(sch.oid) -- not a temporary schema belonging to another session\n and tbl.relpersistence in ('p', 'u') -- [p]ermanent table or [u]nlogged table. Exclude [t]emporary tables\n and tbl.relkind in ('r', 'v', 'f', 'p') -- o[r]dinary table, [v]iew, [f]oreign table, [p]artitioned table. Other values are [i]ndex, [S]equence, [c]omposite type, [t]OAST table, [m]aterialized view\n and col.attnum > 0 -- negative numbers are used for system columns such as oid\n and not col.attisdropped -- column as not been dropped\n\n order by\n sch.nspname,\n tbl.relname,\n col.attnum\n\n {%- endcall -%}\n\n {{ return(load_result('catalog').table) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.424247, "supported_languages": null}, "macro.dbt_postgres.postgres_get_relations": {"name": "postgres_get_relations", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations.sql", "original_file_path": "macros/relations.sql", "unique_id": "macro.dbt_postgres.postgres_get_relations", "macro_sql": "{% macro postgres_get_relations () -%}\n\n {#\n -- in pg_depend, objid is the dependent, refobjid is the referenced object\n -- > a pg_depend entry indicates that the referenced object cannot be\n -- > dropped without also dropping the dependent object.\n #}\n\n {%- call statement('relations', fetch_result=True) -%}\n with relation as (\n select\n pg_rewrite.ev_class as class,\n pg_rewrite.oid as id\n from pg_rewrite\n ),\n class as (\n select\n oid as id,\n relname as name,\n relnamespace as schema,\n relkind as kind\n from pg_class\n ),\n dependency as (\n select distinct\n pg_depend.objid as id,\n pg_depend.refobjid as ref\n from pg_depend\n ),\n schema as (\n select\n pg_namespace.oid as id,\n pg_namespace.nspname as name\n from pg_namespace\n where nspname != 'information_schema' and nspname not like 'pg\\_%'\n ),\n referenced as (\n select\n relation.id AS id,\n referenced_class.name ,\n referenced_class.schema ,\n referenced_class.kind\n from relation\n join class as referenced_class on relation.class=referenced_class.id\n where referenced_class.kind in ('r', 'v')\n ),\n relationships as (\n select\n referenced.name as referenced_name,\n referenced.schema as referenced_schema_id,\n dependent_class.name as dependent_name,\n dependent_class.schema as dependent_schema_id,\n referenced.kind as kind\n from referenced\n join dependency on referenced.id=dependency.id\n join class as dependent_class on dependency.ref=dependent_class.id\n where\n (referenced.name != dependent_class.name or\n referenced.schema != dependent_class.schema)\n )\n\n select\n referenced_schema.name as referenced_schema,\n relationships.referenced_name as referenced_name,\n dependent_schema.name as dependent_schema,\n relationships.dependent_name as dependent_name\n from relationships\n join schema as dependent_schema on relationships.dependent_schema_id=dependent_schema.id\n join schema as referenced_schema on relationships.referenced_schema_id=referenced_schema.id\n group by referenced_schema, referenced_name, dependent_schema, dependent_name\n order by referenced_schema, referenced_name, dependent_schema, dependent_name;\n\n {%- endcall -%}\n\n {{ return(load_result('relations').table) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.425069, "supported_languages": null}, "macro.dbt_postgres.postgres__create_table_as": {"name": "postgres__create_table_as", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__create_table_as", "macro_sql": "{% macro postgres__create_table_as(temporary, relation, sql) -%}\n {%- set unlogged = config.get('unlogged', default=false) -%}\n {%- set sql_header = config.get('sql_header', none) -%}\n\n {{ sql_header if sql_header is not none }}\n\n create {% if temporary -%}\n temporary\n {%- elif unlogged -%}\n unlogged\n {%- endif %} table {{ relation }}\n {% set contract_config = config.get('contract') %}\n {% if contract_config.enforced %}\n {{ get_assert_columns_equivalent(sql) }}\n {{ get_table_columns_and_constraints() }} ;\n insert into {{ relation }} (\n {{ adapter.dispatch('get_column_names', 'dbt')() }}\n )\n {%- set sql = get_select_subquery(sql) %}\n {% else %}\n as\n {% endif %}\n (\n {{ sql }}\n );\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.get_assert_columns_equivalent", "macro.dbt.get_table_columns_and_constraints", "macro.dbt.default__get_column_names", "macro.dbt.get_select_subquery"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.4331388, "supported_languages": null}, "macro.dbt_postgres.postgres__get_create_index_sql": {"name": "postgres__get_create_index_sql", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__get_create_index_sql", "macro_sql": "{% macro postgres__get_create_index_sql(relation, index_dict) -%}\n {%- set index_config = adapter.parse_index(index_dict) -%}\n {%- set comma_separated_columns = \", \".join(index_config.columns) -%}\n {%- set index_name = index_config.render(relation) -%}\n\n create {% if index_config.unique -%}\n unique\n {%- endif %} index if not exists\n \"{{ index_name }}\"\n on {{ relation }} {% if index_config.type -%}\n using {{ index_config.type }}\n {%- endif %}\n ({{ comma_separated_columns }});\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.433693, "supported_languages": null}, "macro.dbt_postgres.postgres__create_schema": {"name": "postgres__create_schema", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__create_schema", "macro_sql": "{% macro postgres__create_schema(relation) -%}\n {% if relation.database -%}\n {{ adapter.verify_database(relation.database) }}\n {%- endif -%}\n {%- call statement('create_schema') -%}\n create schema if not exists {{ relation.without_identifier().include(database=False) }}\n {%- endcall -%}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.434047, "supported_languages": null}, "macro.dbt_postgres.postgres__drop_schema": {"name": "postgres__drop_schema", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__drop_schema", "macro_sql": "{% macro postgres__drop_schema(relation) -%}\n {% if relation.database -%}\n {{ adapter.verify_database(relation.database) }}\n {%- endif -%}\n {%- call statement('drop_schema') -%}\n drop schema if exists {{ relation.without_identifier().include(database=False) }} cascade\n {%- endcall -%}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.434398, "supported_languages": null}, "macro.dbt_postgres.postgres__get_columns_in_relation": {"name": "postgres__get_columns_in_relation", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__get_columns_in_relation", "macro_sql": "{% macro postgres__get_columns_in_relation(relation) -%}\n {% call statement('get_columns_in_relation', fetch_result=True) %}\n select\n column_name,\n data_type,\n character_maximum_length,\n numeric_precision,\n numeric_scale\n\n from {{ relation.information_schema('columns') }}\n where table_name = '{{ relation.identifier }}'\n {% if relation.schema %}\n and table_schema = '{{ relation.schema }}'\n {% endif %}\n order by ordinal_position\n\n {% endcall %}\n {% set table = load_result('get_columns_in_relation').table %}\n {{ return(sql_convert_columns_in_relation(table)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt.sql_convert_columns_in_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.434923, "supported_languages": null}, "macro.dbt_postgres.postgres__list_relations_without_caching": {"name": "postgres__list_relations_without_caching", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__list_relations_without_caching", "macro_sql": "{% macro postgres__list_relations_without_caching(schema_relation) %}\n {% call statement('list_relations_without_caching', fetch_result=True) -%}\n select\n '{{ schema_relation.database }}' as database,\n tablename as name,\n schemaname as schema,\n 'table' as type\n from pg_tables\n where schemaname ilike '{{ schema_relation.schema }}'\n union all\n select\n '{{ schema_relation.database }}' as database,\n viewname as name,\n schemaname as schema,\n 'view' as type\n from pg_views\n where schemaname ilike '{{ schema_relation.schema }}'\n {% endcall %}\n {{ return(load_result('list_relations_without_caching').table) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.43534, "supported_languages": null}, "macro.dbt_postgres.postgres__information_schema_name": {"name": "postgres__information_schema_name", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__information_schema_name", "macro_sql": "{% macro postgres__information_schema_name(database) -%}\n {% if database_name -%}\n {{ adapter.verify_database(database_name) }}\n {%- endif -%}\n information_schema\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.435529, "supported_languages": null}, "macro.dbt_postgres.postgres__list_schemas": {"name": "postgres__list_schemas", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__list_schemas", "macro_sql": "{% macro postgres__list_schemas(database) %}\n {% if database -%}\n {{ adapter.verify_database(database) }}\n {%- endif -%}\n {% call statement('list_schemas', fetch_result=True, auto_begin=False) %}\n select distinct nspname from pg_namespace\n {% endcall %}\n {{ return(load_result('list_schemas').table) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.435911, "supported_languages": null}, "macro.dbt_postgres.postgres__check_schema_exists": {"name": "postgres__check_schema_exists", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__check_schema_exists", "macro_sql": "{% macro postgres__check_schema_exists(information_schema, schema) -%}\n {% if information_schema.database -%}\n {{ adapter.verify_database(information_schema.database) }}\n {%- endif -%}\n {% call statement('check_schema_exists', fetch_result=True, auto_begin=False) %}\n select count(*) from pg_namespace where nspname = '{{ schema }}'\n {% endcall %}\n {{ return(load_result('check_schema_exists').table) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.436352, "supported_languages": null}, "macro.dbt_postgres.postgres__make_relation_with_suffix": {"name": "postgres__make_relation_with_suffix", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__make_relation_with_suffix", "macro_sql": "{% macro postgres__make_relation_with_suffix(base_relation, suffix, dstring) %}\n {% if dstring %}\n {% set dt = modules.datetime.datetime.now() %}\n {% set dtstring = dt.strftime(\"%H%M%S%f\") %}\n {% set suffix = suffix ~ dtstring %}\n {% endif %}\n {% set suffix_length = suffix|length %}\n {% set relation_max_name_length = base_relation.relation_max_name_length() %}\n {% if suffix_length > relation_max_name_length %}\n {% do exceptions.raise_compiler_error('Relation suffix is too long (' ~ suffix_length ~ ' characters). Maximum length is ' ~ relation_max_name_length ~ ' characters.') %}\n {% endif %}\n {% set identifier = base_relation.identifier[:relation_max_name_length - suffix_length] ~ suffix %}\n\n {{ return(base_relation.incorporate(path={\"identifier\": identifier })) }}\n\n {% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.4374158, "supported_languages": null}, "macro.dbt_postgres.postgres__make_intermediate_relation": {"name": "postgres__make_intermediate_relation", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__make_intermediate_relation", "macro_sql": "{% macro postgres__make_intermediate_relation(base_relation, suffix) %}\n {{ return(postgres__make_relation_with_suffix(base_relation, suffix, dstring=False)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__make_relation_with_suffix"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.437666, "supported_languages": null}, "macro.dbt_postgres.postgres__make_temp_relation": {"name": "postgres__make_temp_relation", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__make_temp_relation", "macro_sql": "{% macro postgres__make_temp_relation(base_relation, suffix) %}\n {% set temp_relation = postgres__make_relation_with_suffix(base_relation, suffix, dstring=True) %}\n {{ return(temp_relation.incorporate(path={\"schema\": none,\n \"database\": none})) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__make_relation_with_suffix"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.438024, "supported_languages": null}, "macro.dbt_postgres.postgres__make_backup_relation": {"name": "postgres__make_backup_relation", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__make_backup_relation", "macro_sql": "{% macro postgres__make_backup_relation(base_relation, backup_relation_type, suffix) %}\n {% set backup_relation = postgres__make_relation_with_suffix(base_relation, suffix, dstring=False) %}\n {{ return(backup_relation.incorporate(type=backup_relation_type)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__make_relation_with_suffix"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.438323, "supported_languages": null}, "macro.dbt_postgres.postgres_escape_comment": {"name": "postgres_escape_comment", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres_escape_comment", "macro_sql": "{% macro postgres_escape_comment(comment) -%}\n {% if comment is not string %}\n {% do exceptions.raise_compiler_error('cannot escape a non-string: ' ~ comment) %}\n {% endif %}\n {%- set magic = '$dbt_comment_literal_block$' -%}\n {%- if magic in comment -%}\n {%- do exceptions.raise_compiler_error('The string ' ~ magic ~ ' is not allowed in comments.') -%}\n {%- endif -%}\n {{ magic }}{{ comment }}{{ magic }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.438782, "supported_languages": null}, "macro.dbt_postgres.postgres__alter_relation_comment": {"name": "postgres__alter_relation_comment", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__alter_relation_comment", "macro_sql": "{% macro postgres__alter_relation_comment(relation, comment) %}\n {% set escaped_comment = postgres_escape_comment(comment) %}\n comment on {{ relation.type }} {{ relation }} is {{ escaped_comment }};\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres_escape_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.439021, "supported_languages": null}, "macro.dbt_postgres.postgres__alter_column_comment": {"name": "postgres__alter_column_comment", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__alter_column_comment", "macro_sql": "{% macro postgres__alter_column_comment(relation, column_dict) %}\n {% set existing_columns = adapter.get_columns_in_relation(relation) | map(attribute=\"name\") | list %}\n {% for column_name in column_dict if (column_name in existing_columns) %}\n {% set comment = column_dict[column_name]['description'] %}\n {% set escaped_comment = postgres_escape_comment(comment) %}\n comment on column {{ relation }}.{{ adapter.quote(column_name) if column_dict[column_name]['quote'] else column_name }} is {{ escaped_comment }};\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres_escape_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.439678, "supported_languages": null}, "macro.dbt_postgres.postgres__get_show_grant_sql": {"name": "postgres__get_show_grant_sql", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__get_show_grant_sql", "macro_sql": "\n\n{%- macro postgres__get_show_grant_sql(relation) -%}\n select grantee, privilege_type\n from {{ relation.information_schema('role_table_grants') }}\n where grantor = current_role\n and grantee != current_role\n and table_schema = '{{ relation.schema }}'\n and table_name = '{{ relation.identifier }}'\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.439896, "supported_languages": null}, "macro.dbt_postgres.postgres__copy_grants": {"name": "postgres__copy_grants", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__copy_grants", "macro_sql": "{% macro postgres__copy_grants() %}\n {{ return(False) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.440019, "supported_languages": null}, "macro.dbt_postgres.postgres__get_incremental_default_sql": {"name": "postgres__get_incremental_default_sql", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/materializations/incremental_strategies.sql", "original_file_path": "macros/materializations/incremental_strategies.sql", "unique_id": "macro.dbt_postgres.postgres__get_incremental_default_sql", "macro_sql": "{% macro postgres__get_incremental_default_sql(arg_dict) %}\n\n {% if arg_dict[\"unique_key\"] %}\n {% do return(get_incremental_delete_insert_sql(arg_dict)) %}\n {% else %}\n {% do return(get_incremental_append_sql(arg_dict)) %}\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_incremental_delete_insert_sql", "macro.dbt.get_incremental_append_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.440439, "supported_languages": null}, "macro.dbt_postgres.postgres__snapshot_merge_sql": {"name": "postgres__snapshot_merge_sql", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/materializations/snapshot_merge.sql", "original_file_path": "macros/materializations/snapshot_merge.sql", "unique_id": "macro.dbt_postgres.postgres__snapshot_merge_sql", "macro_sql": "{% macro postgres__snapshot_merge_sql(target, source, insert_cols) -%}\n {%- set insert_cols_csv = insert_cols | join(', ') -%}\n\n update {{ target }}\n set dbt_valid_to = DBT_INTERNAL_SOURCE.dbt_valid_to\n from {{ source }} as DBT_INTERNAL_SOURCE\n where DBT_INTERNAL_SOURCE.dbt_scd_id::text = {{ target }}.dbt_scd_id::text\n and DBT_INTERNAL_SOURCE.dbt_change_type::text in ('update'::text, 'delete'::text)\n and {{ target }}.dbt_valid_to is null;\n\n insert into {{ target }} ({{ insert_cols_csv }})\n select {% for column in insert_cols -%}\n DBT_INTERNAL_SOURCE.{{ column }} {%- if not loop.last %}, {%- endif %}\n {%- endfor %}\n from {{ source }} as DBT_INTERNAL_SOURCE\n where DBT_INTERNAL_SOURCE.dbt_change_type::text = 'insert'::text;\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.4411929, "supported_languages": null}, "macro.dbt_postgres.postgres__dateadd": {"name": "postgres__dateadd", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/utils/dateadd.sql", "original_file_path": "macros/utils/dateadd.sql", "unique_id": "macro.dbt_postgres.postgres__dateadd", "macro_sql": "{% macro postgres__dateadd(datepart, interval, from_date_or_timestamp) %}\n\n {{ from_date_or_timestamp }} + ((interval '1 {{ datepart }}') * ({{ interval }}))\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.441438, "supported_languages": null}, "macro.dbt_postgres.postgres__listagg": {"name": "postgres__listagg", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/utils/listagg.sql", "original_file_path": "macros/utils/listagg.sql", "unique_id": "macro.dbt_postgres.postgres__listagg", "macro_sql": "{% macro postgres__listagg(measure, delimiter_text, order_by_clause, limit_num) -%}\n\n {% if limit_num -%}\n array_to_string(\n (array_agg(\n {{ measure }}\n {% if order_by_clause -%}\n {{ order_by_clause }}\n {%- endif %}\n ))[1:{{ limit_num }}],\n {{ delimiter_text }}\n )\n {%- else %}\n string_agg(\n {{ measure }},\n {{ delimiter_text }}\n {% if order_by_clause -%}\n {{ order_by_clause }}\n {%- endif %}\n )\n {%- endif %}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.442115, "supported_languages": null}, "macro.dbt_postgres.postgres__datediff": {"name": "postgres__datediff", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/utils/datediff.sql", "original_file_path": "macros/utils/datediff.sql", "unique_id": "macro.dbt_postgres.postgres__datediff", "macro_sql": "{% macro postgres__datediff(first_date, second_date, datepart) -%}\n\n {% if datepart == 'year' %}\n (date_part('year', ({{second_date}})::date) - date_part('year', ({{first_date}})::date))\n {% elif datepart == 'quarter' %}\n ({{ datediff(first_date, second_date, 'year') }} * 4 + date_part('quarter', ({{second_date}})::date) - date_part('quarter', ({{first_date}})::date))\n {% elif datepart == 'month' %}\n ({{ datediff(first_date, second_date, 'year') }} * 12 + date_part('month', ({{second_date}})::date) - date_part('month', ({{first_date}})::date))\n {% elif datepart == 'day' %}\n (({{second_date}})::date - ({{first_date}})::date)\n {% elif datepart == 'week' %}\n ({{ datediff(first_date, second_date, 'day') }} / 7 + case\n when date_part('dow', ({{first_date}})::timestamp) <= date_part('dow', ({{second_date}})::timestamp) then\n case when {{first_date}} <= {{second_date}} then 0 else -1 end\n else\n case when {{first_date}} <= {{second_date}} then 1 else 0 end\n end)\n {% elif datepart == 'hour' %}\n ({{ datediff(first_date, second_date, 'day') }} * 24 + date_part('hour', ({{second_date}})::timestamp) - date_part('hour', ({{first_date}})::timestamp))\n {% elif datepart == 'minute' %}\n ({{ datediff(first_date, second_date, 'hour') }} * 60 + date_part('minute', ({{second_date}})::timestamp) - date_part('minute', ({{first_date}})::timestamp))\n {% elif datepart == 'second' %}\n ({{ datediff(first_date, second_date, 'minute') }} * 60 + floor(date_part('second', ({{second_date}})::timestamp)) - floor(date_part('second', ({{first_date}})::timestamp)))\n {% elif datepart == 'millisecond' %}\n ({{ datediff(first_date, second_date, 'minute') }} * 60000 + floor(date_part('millisecond', ({{second_date}})::timestamp)) - floor(date_part('millisecond', ({{first_date}})::timestamp)))\n {% elif datepart == 'microsecond' %}\n ({{ datediff(first_date, second_date, 'minute') }} * 60000000 + floor(date_part('microsecond', ({{second_date}})::timestamp)) - floor(date_part('microsecond', ({{first_date}})::timestamp)))\n {% else %}\n {{ exceptions.raise_compiler_error(\"Unsupported datepart for macro datediff in postgres: {!r}\".format(datepart)) }}\n {% endif %}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.datediff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.445685, "supported_languages": null}, "macro.dbt_postgres.postgres__any_value": {"name": "postgres__any_value", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/utils/any_value.sql", "original_file_path": "macros/utils/any_value.sql", "unique_id": "macro.dbt_postgres.postgres__any_value", "macro_sql": "{% macro postgres__any_value(expression) -%}\n\n min({{ expression }})\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.445853, "supported_languages": null}, "macro.dbt_postgres.postgres__last_day": {"name": "postgres__last_day", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/utils/last_day.sql", "original_file_path": "macros/utils/last_day.sql", "unique_id": "macro.dbt_postgres.postgres__last_day", "macro_sql": "{% macro postgres__last_day(date, datepart) -%}\n\n {%- if datepart == 'quarter' -%}\n -- postgres dateadd does not support quarter interval.\n cast(\n {{dbt.dateadd('day', '-1',\n dbt.dateadd('month', '3', dbt.date_trunc(datepart, date))\n )}}\n as date)\n {%- else -%}\n {{dbt.default_last_day(date, datepart)}}\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.dateadd", "macro.dbt.date_trunc", "macro.dbt.default_last_day"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.446378, "supported_languages": null}, "macro.dbt_postgres.postgres__split_part": {"name": "postgres__split_part", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/utils/split_part.sql", "original_file_path": "macros/utils/split_part.sql", "unique_id": "macro.dbt_postgres.postgres__split_part", "macro_sql": "{% macro postgres__split_part(string_text, delimiter_text, part_number) %}\n\n {% if part_number >= 0 %}\n {{ dbt.default__split_part(string_text, delimiter_text, part_number) }}\n {% else %}\n {{ dbt._split_part_negative(string_text, delimiter_text, part_number) }}\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__split_part", "macro.dbt._split_part_negative"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.446806, "supported_languages": null}, "macro.dbt.run_hooks": {"name": "run_hooks", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "unique_id": "macro.dbt.run_hooks", "macro_sql": "{% macro run_hooks(hooks, inside_transaction=True) %}\n {% for hook in hooks | selectattr('transaction', 'equalto', inside_transaction) %}\n {% if not inside_transaction and loop.first %}\n {% call statement(auto_begin=inside_transaction) %}\n commit;\n {% endcall %}\n {% endif %}\n {% set rendered = render(hook.get('sql')) | trim %}\n {% if (rendered | length) > 0 %}\n {% call statement(auto_begin=inside_transaction) %}\n {{ rendered }}\n {% endcall %}\n {% endif %}\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.448273, "supported_languages": null}, "macro.dbt.make_hook_config": {"name": "make_hook_config", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "unique_id": "macro.dbt.make_hook_config", "macro_sql": "{% macro make_hook_config(sql, inside_transaction) %}\n {{ tojson({\"sql\": sql, \"transaction\": inside_transaction}) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.448527, "supported_languages": null}, "macro.dbt.before_begin": {"name": "before_begin", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "unique_id": "macro.dbt.before_begin", "macro_sql": "{% macro before_begin(sql) %}\n {{ make_hook_config(sql, inside_transaction=False) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.make_hook_config"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.448695, "supported_languages": null}, "macro.dbt.in_transaction": {"name": "in_transaction", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "unique_id": "macro.dbt.in_transaction", "macro_sql": "{% macro in_transaction(sql) %}\n {{ make_hook_config(sql, inside_transaction=True) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.make_hook_config"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.448856, "supported_languages": null}, "macro.dbt.after_commit": {"name": "after_commit", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "unique_id": "macro.dbt.after_commit", "macro_sql": "{% macro after_commit(sql) %}\n {{ make_hook_config(sql, inside_transaction=False) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.make_hook_config"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.449014, "supported_languages": null}, "macro.dbt.set_sql_header": {"name": "set_sql_header", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/configs.sql", "original_file_path": "macros/materializations/configs.sql", "unique_id": "macro.dbt.set_sql_header", "macro_sql": "{% macro set_sql_header(config) -%}\n {{ config.set('sql_header', caller()) }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.449455, "supported_languages": null}, "macro.dbt.should_full_refresh": {"name": "should_full_refresh", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/configs.sql", "original_file_path": "macros/materializations/configs.sql", "unique_id": "macro.dbt.should_full_refresh", "macro_sql": "{% macro should_full_refresh() %}\n {% set config_full_refresh = config.get('full_refresh') %}\n {% if config_full_refresh is none %}\n {% set config_full_refresh = flags.FULL_REFRESH %}\n {% endif %}\n {% do return(config_full_refresh) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.4497988, "supported_languages": null}, "macro.dbt.should_store_failures": {"name": "should_store_failures", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/configs.sql", "original_file_path": "macros/materializations/configs.sql", "unique_id": "macro.dbt.should_store_failures", "macro_sql": "{% macro should_store_failures() %}\n {% set config_store_failures = config.get('store_failures') %}\n {% if config_store_failures is none %}\n {% set config_store_failures = flags.STORE_FAILURES %}\n {% endif %}\n {% do return(config_store_failures) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.4501371, "supported_languages": null}, "macro.dbt.snapshot_merge_sql": {"name": "snapshot_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/snapshot_merge.sql", "original_file_path": "macros/materializations/snapshots/snapshot_merge.sql", "unique_id": "macro.dbt.snapshot_merge_sql", "macro_sql": "{% macro snapshot_merge_sql(target, source, insert_cols) -%}\n {{ adapter.dispatch('snapshot_merge_sql', 'dbt')(target, source, insert_cols) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__snapshot_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.450759, "supported_languages": null}, "macro.dbt.default__snapshot_merge_sql": {"name": "default__snapshot_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/snapshot_merge.sql", "original_file_path": "macros/materializations/snapshots/snapshot_merge.sql", "unique_id": "macro.dbt.default__snapshot_merge_sql", "macro_sql": "{% macro default__snapshot_merge_sql(target, source, insert_cols) -%}\n {%- set insert_cols_csv = insert_cols | join(', ') -%}\n\n merge into {{ target }} as DBT_INTERNAL_DEST\n using {{ source }} as DBT_INTERNAL_SOURCE\n on DBT_INTERNAL_SOURCE.dbt_scd_id = DBT_INTERNAL_DEST.dbt_scd_id\n\n when matched\n and DBT_INTERNAL_DEST.dbt_valid_to is null\n and DBT_INTERNAL_SOURCE.dbt_change_type in ('update', 'delete')\n then update\n set dbt_valid_to = DBT_INTERNAL_SOURCE.dbt_valid_to\n\n when not matched\n and DBT_INTERNAL_SOURCE.dbt_change_type = 'insert'\n then insert ({{ insert_cols_csv }})\n values ({{ insert_cols_csv }})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.451081, "supported_languages": null}, "macro.dbt.strategy_dispatch": {"name": "strategy_dispatch", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.strategy_dispatch", "macro_sql": "{% macro strategy_dispatch(name) -%}\n{% set original_name = name %}\n {% if '.' in name %}\n {% set package_name, name = name.split(\".\", 1) %}\n {% else %}\n {% set package_name = none %}\n {% endif %}\n\n {% if package_name is none %}\n {% set package_context = context %}\n {% elif package_name in context %}\n {% set package_context = context[package_name] %}\n {% else %}\n {% set error_msg %}\n Could not find package '{{package_name}}', called with '{{original_name}}'\n {% endset %}\n {{ exceptions.raise_compiler_error(error_msg | trim) }}\n {% endif %}\n\n {%- set search_name = 'snapshot_' ~ name ~ '_strategy' -%}\n\n {% if search_name not in package_context %}\n {% set error_msg %}\n The specified strategy macro '{{name}}' was not found in package '{{ package_name }}'\n {% endset %}\n {{ exceptions.raise_compiler_error(error_msg | trim) }}\n {% endif %}\n {{ return(package_context[search_name]) }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.4554272, "supported_languages": null}, "macro.dbt.snapshot_hash_arguments": {"name": "snapshot_hash_arguments", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.snapshot_hash_arguments", "macro_sql": "{% macro snapshot_hash_arguments(args) -%}\n {{ adapter.dispatch('snapshot_hash_arguments', 'dbt')(args) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__snapshot_hash_arguments"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.455622, "supported_languages": null}, "macro.dbt.default__snapshot_hash_arguments": {"name": "default__snapshot_hash_arguments", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.default__snapshot_hash_arguments", "macro_sql": "{% macro default__snapshot_hash_arguments(args) -%}\n md5({%- for arg in args -%}\n coalesce(cast({{ arg }} as varchar ), '')\n {% if not loop.last %} || '|' || {% endif %}\n {%- endfor -%})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.4558668, "supported_languages": null}, "macro.dbt.snapshot_timestamp_strategy": {"name": "snapshot_timestamp_strategy", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.snapshot_timestamp_strategy", "macro_sql": "{% macro snapshot_timestamp_strategy(node, snapshotted_rel, current_rel, config, target_exists) %}\n {% set primary_key = config['unique_key'] %}\n {% set updated_at = config['updated_at'] %}\n {% set invalidate_hard_deletes = config.get('invalidate_hard_deletes', false) %}\n\n {#/*\n The snapshot relation might not have an {{ updated_at }} value if the\n snapshot strategy is changed from `check` to `timestamp`. We\n should use a dbt-created column for the comparison in the snapshot\n table instead of assuming that the user-supplied {{ updated_at }}\n will be present in the historical data.\n\n See https://github.com/dbt-labs/dbt-core/issues/2350\n */ #}\n {% set row_changed_expr -%}\n ({{ snapshotted_rel }}.dbt_valid_from < {{ current_rel }}.{{ updated_at }})\n {%- endset %}\n\n {% set scd_id_expr = snapshot_hash_arguments([primary_key, updated_at]) %}\n\n {% do return({\n \"unique_key\": primary_key,\n \"updated_at\": updated_at,\n \"row_changed\": row_changed_expr,\n \"scd_id\": scd_id_expr,\n \"invalidate_hard_deletes\": invalidate_hard_deletes\n }) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.snapshot_hash_arguments"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.456641, "supported_languages": null}, "macro.dbt.snapshot_string_as_time": {"name": "snapshot_string_as_time", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.snapshot_string_as_time", "macro_sql": "{% macro snapshot_string_as_time(timestamp) -%}\n {{ adapter.dispatch('snapshot_string_as_time', 'dbt')(timestamp) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__snapshot_string_as_time"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.456822, "supported_languages": null}, "macro.dbt.default__snapshot_string_as_time": {"name": "default__snapshot_string_as_time", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.default__snapshot_string_as_time", "macro_sql": "{% macro default__snapshot_string_as_time(timestamp) %}\n {% do exceptions.raise_not_implemented(\n 'snapshot_string_as_time macro not implemented for adapter '+adapter.type()\n ) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.457015, "supported_languages": null}, "macro.dbt.snapshot_check_all_get_existing_columns": {"name": "snapshot_check_all_get_existing_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.snapshot_check_all_get_existing_columns", "macro_sql": "{% macro snapshot_check_all_get_existing_columns(node, target_exists, check_cols_config) -%}\n {%- if not target_exists -%}\n {#-- no table yet -> return whatever the query does --#}\n {{ return((false, query_columns)) }}\n {%- endif -%}\n\n {#-- handle any schema changes --#}\n {%- set target_relation = adapter.get_relation(database=node.database, schema=node.schema, identifier=node.alias) -%}\n\n {% if check_cols_config == 'all' %}\n {%- set query_columns = get_columns_in_query(node['compiled_code']) -%}\n\n {% elif check_cols_config is iterable and (check_cols_config | length) > 0 %}\n {#-- query for proper casing/quoting, to support comparison below --#}\n {%- set select_check_cols_from_target -%}\n {#-- N.B. The whitespace below is necessary to avoid edge case issue with comments --#}\n {#-- See: https://github.com/dbt-labs/dbt-core/issues/6781 --#}\n select {{ check_cols_config | join(', ') }} from (\n {{ node['compiled_code'] }}\n ) subq\n {%- endset -%}\n {% set query_columns = get_columns_in_query(select_check_cols_from_target) %}\n\n {% else %}\n {% do exceptions.raise_compiler_error(\"Invalid value for 'check_cols': \" ~ check_cols_config) %}\n {% endif %}\n\n {%- set existing_cols = adapter.get_columns_in_relation(target_relation) | map(attribute = 'name') | list -%}\n {%- set ns = namespace() -%} {#-- handle for-loop scoping with a namespace --#}\n {%- set ns.column_added = false -%}\n\n {%- set intersection = [] -%}\n {%- for col in query_columns -%}\n {%- if col in existing_cols -%}\n {%- do intersection.append(adapter.quote(col)) -%}\n {%- else -%}\n {% set ns.column_added = true %}\n {%- endif -%}\n {%- endfor -%}\n {{ return((ns.column_added, intersection)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.get_columns_in_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.458808, "supported_languages": null}, "macro.dbt.snapshot_check_strategy": {"name": "snapshot_check_strategy", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.snapshot_check_strategy", "macro_sql": "{% macro snapshot_check_strategy(node, snapshotted_rel, current_rel, config, target_exists) %}\n {% set check_cols_config = config['check_cols'] %}\n {% set primary_key = config['unique_key'] %}\n {% set invalidate_hard_deletes = config.get('invalidate_hard_deletes', false) %}\n {% set updated_at = config.get('updated_at', snapshot_get_time()) %}\n\n {% set column_added = false %}\n\n {% set column_added, check_cols = snapshot_check_all_get_existing_columns(node, target_exists, check_cols_config) %}\n\n {%- set row_changed_expr -%}\n (\n {%- if column_added -%}\n {{ get_true_sql() }}\n {%- else -%}\n {%- for col in check_cols -%}\n {{ snapshotted_rel }}.{{ col }} != {{ current_rel }}.{{ col }}\n or\n (\n (({{ snapshotted_rel }}.{{ col }} is null) and not ({{ current_rel }}.{{ col }} is null))\n or\n ((not {{ snapshotted_rel }}.{{ col }} is null) and ({{ current_rel }}.{{ col }} is null))\n )\n {%- if not loop.last %} or {% endif -%}\n {%- endfor -%}\n {%- endif -%}\n )\n {%- endset %}\n\n {% set scd_id_expr = snapshot_hash_arguments([primary_key, updated_at]) %}\n\n {% do return({\n \"unique_key\": primary_key,\n \"updated_at\": updated_at,\n \"row_changed\": row_changed_expr,\n \"scd_id\": scd_id_expr,\n \"invalidate_hard_deletes\": invalidate_hard_deletes\n }) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.snapshot_get_time", "macro.dbt.snapshot_check_all_get_existing_columns", "macro.dbt.get_true_sql", "macro.dbt.snapshot_hash_arguments"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.460455, "supported_languages": null}, "macro.dbt.create_columns": {"name": "create_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.create_columns", "macro_sql": "{% macro create_columns(relation, columns) %}\n {{ adapter.dispatch('create_columns', 'dbt')(relation, columns) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__create_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.4650738, "supported_languages": null}, "macro.dbt.default__create_columns": {"name": "default__create_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.default__create_columns", "macro_sql": "{% macro default__create_columns(relation, columns) %}\n {% for column in columns %}\n {% call statement() %}\n alter table {{ relation }} add column \"{{ column.name }}\" {{ column.data_type }};\n {% endcall %}\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.465395, "supported_languages": null}, "macro.dbt.post_snapshot": {"name": "post_snapshot", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.post_snapshot", "macro_sql": "{% macro post_snapshot(staging_relation) %}\n {{ adapter.dispatch('post_snapshot', 'dbt')(staging_relation) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__post_snapshot"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.465577, "supported_languages": null}, "macro.dbt.default__post_snapshot": {"name": "default__post_snapshot", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.default__post_snapshot", "macro_sql": "{% macro default__post_snapshot(staging_relation) %}\n {# no-op #}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.465677, "supported_languages": null}, "macro.dbt.get_true_sql": {"name": "get_true_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.get_true_sql", "macro_sql": "{% macro get_true_sql() %}\n {{ adapter.dispatch('get_true_sql', 'dbt')() }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_true_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.465834, "supported_languages": null}, "macro.dbt.default__get_true_sql": {"name": "default__get_true_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.default__get_true_sql", "macro_sql": "{% macro default__get_true_sql() %}\n {{ return('TRUE') }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.4659631, "supported_languages": null}, "macro.dbt.snapshot_staging_table": {"name": "snapshot_staging_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.snapshot_staging_table", "macro_sql": "{% macro snapshot_staging_table(strategy, source_sql, target_relation) -%}\n {{ adapter.dispatch('snapshot_staging_table', 'dbt')(strategy, source_sql, target_relation) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__snapshot_staging_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.4661918, "supported_languages": null}, "macro.dbt.default__snapshot_staging_table": {"name": "default__snapshot_staging_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.default__snapshot_staging_table", "macro_sql": "{% macro default__snapshot_staging_table(strategy, source_sql, target_relation) -%}\n\n with snapshot_query as (\n\n {{ source_sql }}\n\n ),\n\n snapshotted_data as (\n\n select *,\n {{ strategy.unique_key }} as dbt_unique_key\n\n from {{ target_relation }}\n where dbt_valid_to is null\n\n ),\n\n insertions_source_data as (\n\n select\n *,\n {{ strategy.unique_key }} as dbt_unique_key,\n {{ strategy.updated_at }} as dbt_updated_at,\n {{ strategy.updated_at }} as dbt_valid_from,\n nullif({{ strategy.updated_at }}, {{ strategy.updated_at }}) as dbt_valid_to,\n {{ strategy.scd_id }} as dbt_scd_id\n\n from snapshot_query\n ),\n\n updates_source_data as (\n\n select\n *,\n {{ strategy.unique_key }} as dbt_unique_key,\n {{ strategy.updated_at }} as dbt_updated_at,\n {{ strategy.updated_at }} as dbt_valid_from,\n {{ strategy.updated_at }} as dbt_valid_to\n\n from snapshot_query\n ),\n\n {%- if strategy.invalidate_hard_deletes %}\n\n deletes_source_data as (\n\n select\n *,\n {{ strategy.unique_key }} as dbt_unique_key\n from snapshot_query\n ),\n {% endif %}\n\n insertions as (\n\n select\n 'insert' as dbt_change_type,\n source_data.*\n\n from insertions_source_data as source_data\n left outer join snapshotted_data on snapshotted_data.dbt_unique_key = source_data.dbt_unique_key\n where snapshotted_data.dbt_unique_key is null\n or (\n snapshotted_data.dbt_unique_key is not null\n and (\n {{ strategy.row_changed }}\n )\n )\n\n ),\n\n updates as (\n\n select\n 'update' as dbt_change_type,\n source_data.*,\n snapshotted_data.dbt_scd_id\n\n from updates_source_data as source_data\n join snapshotted_data on snapshotted_data.dbt_unique_key = source_data.dbt_unique_key\n where (\n {{ strategy.row_changed }}\n )\n )\n\n {%- if strategy.invalidate_hard_deletes -%}\n ,\n\n deletes as (\n\n select\n 'delete' as dbt_change_type,\n source_data.*,\n {{ snapshot_get_time() }} as dbt_valid_from,\n {{ snapshot_get_time() }} as dbt_updated_at,\n {{ snapshot_get_time() }} as dbt_valid_to,\n snapshotted_data.dbt_scd_id\n\n from snapshotted_data\n left join deletes_source_data as source_data on snapshotted_data.dbt_unique_key = source_data.dbt_unique_key\n where source_data.dbt_unique_key is null\n )\n {%- endif %}\n\n select * from insertions\n union all\n select * from updates\n {%- if strategy.invalidate_hard_deletes %}\n union all\n select * from deletes\n {%- endif %}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.snapshot_get_time"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.467169, "supported_languages": null}, "macro.dbt.build_snapshot_table": {"name": "build_snapshot_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.build_snapshot_table", "macro_sql": "{% macro build_snapshot_table(strategy, sql) -%}\n {{ adapter.dispatch('build_snapshot_table', 'dbt')(strategy, sql) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__build_snapshot_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.467392, "supported_languages": null}, "macro.dbt.default__build_snapshot_table": {"name": "default__build_snapshot_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.default__build_snapshot_table", "macro_sql": "{% macro default__build_snapshot_table(strategy, sql) %}\n\n select *,\n {{ strategy.scd_id }} as dbt_scd_id,\n {{ strategy.updated_at }} as dbt_updated_at,\n {{ strategy.updated_at }} as dbt_valid_from,\n nullif({{ strategy.updated_at }}, {{ strategy.updated_at }}) as dbt_valid_to\n from (\n {{ sql }}\n ) sbq\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.467676, "supported_languages": null}, "macro.dbt.build_snapshot_staging_table": {"name": "build_snapshot_staging_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.build_snapshot_staging_table", "macro_sql": "{% macro build_snapshot_staging_table(strategy, sql, target_relation) %}\n {% set temp_relation = make_temp_relation(target_relation) %}\n\n {% set select = snapshot_staging_table(strategy, sql, target_relation) %}\n\n {% call statement('build_snapshot_staging_relation') %}\n {{ create_table_as(True, temp_relation, select) }}\n {% endcall %}\n\n {% do return(temp_relation) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.make_temp_relation", "macro.dbt.snapshot_staging_table", "macro.dbt.statement", "macro.dbt.create_table_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.468184, "supported_languages": null}, "macro.dbt.materialization_snapshot_default": {"name": "materialization_snapshot_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/snapshot.sql", "original_file_path": "macros/materializations/snapshots/snapshot.sql", "unique_id": "macro.dbt.materialization_snapshot_default", "macro_sql": "{% materialization snapshot, default %}\n {%- set config = model['config'] -%}\n\n {%- set target_table = model.get('alias', model.get('name')) -%}\n\n {%- set strategy_name = config.get('strategy') -%}\n {%- set unique_key = config.get('unique_key') %}\n -- grab current tables grants config for comparision later on\n {%- set grant_config = config.get('grants') -%}\n\n {% set target_relation_exists, target_relation = get_or_create_relation(\n database=model.database,\n schema=model.schema,\n identifier=target_table,\n type='table') -%}\n\n {%- if not target_relation.is_table -%}\n {% do exceptions.relation_wrong_type(target_relation, 'table') %}\n {%- endif -%}\n\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\n\n {% set strategy_macro = strategy_dispatch(strategy_name) %}\n {% set strategy = strategy_macro(model, \"snapshotted_data\", \"source_data\", config, target_relation_exists) %}\n\n {% if not target_relation_exists %}\n\n {% set build_sql = build_snapshot_table(strategy, model['compiled_code']) %}\n {% set final_sql = create_table_as(False, target_relation, build_sql) %}\n\n {% else %}\n\n {{ adapter.valid_snapshot_target(target_relation) }}\n\n {% set staging_table = build_snapshot_staging_table(strategy, sql, target_relation) %}\n\n -- this may no-op if the database does not require column expansion\n {% do adapter.expand_target_column_types(from_relation=staging_table,\n to_relation=target_relation) %}\n\n {% set missing_columns = adapter.get_missing_columns(staging_table, target_relation)\n | rejectattr('name', 'equalto', 'dbt_change_type')\n | rejectattr('name', 'equalto', 'DBT_CHANGE_TYPE')\n | rejectattr('name', 'equalto', 'dbt_unique_key')\n | rejectattr('name', 'equalto', 'DBT_UNIQUE_KEY')\n | list %}\n\n {% do create_columns(target_relation, missing_columns) %}\n\n {% set source_columns = adapter.get_columns_in_relation(staging_table)\n | rejectattr('name', 'equalto', 'dbt_change_type')\n | rejectattr('name', 'equalto', 'DBT_CHANGE_TYPE')\n | rejectattr('name', 'equalto', 'dbt_unique_key')\n | rejectattr('name', 'equalto', 'DBT_UNIQUE_KEY')\n | list %}\n\n {% set quoted_source_columns = [] %}\n {% for column in source_columns %}\n {% do quoted_source_columns.append(adapter.quote(column.name)) %}\n {% endfor %}\n\n {% set final_sql = snapshot_merge_sql(\n target = target_relation,\n source = staging_table,\n insert_cols = quoted_source_columns\n )\n %}\n\n {% endif %}\n\n {% call statement('main') %}\n {{ final_sql }}\n {% endcall %}\n\n {% set should_revoke = should_revoke(target_relation_exists, full_refresh_mode=False) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n {% if not target_relation_exists %}\n {% do create_indexes(target_relation) %}\n {% endif %}\n\n {{ run_hooks(post_hooks, inside_transaction=True) }}\n\n {{ adapter.commit() }}\n\n {% if staging_table is defined %}\n {% do post_snapshot(staging_table) %}\n {% endif %}\n\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{% endmaterialization %}", "depends_on": {"macros": ["macro.dbt.get_or_create_relation", "macro.dbt.run_hooks", "macro.dbt.strategy_dispatch", "macro.dbt.build_snapshot_table", "macro.dbt.create_table_as", "macro.dbt.build_snapshot_staging_table", "macro.dbt.create_columns", "macro.dbt.snapshot_merge_sql", "macro.dbt.statement", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs", "macro.dbt.create_indexes", "macro.dbt.post_snapshot"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.475225, "supported_languages": ["sql"]}, "macro.dbt.materialization_test_default": {"name": "materialization_test_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/tests/test.sql", "original_file_path": "macros/materializations/tests/test.sql", "unique_id": "macro.dbt.materialization_test_default", "macro_sql": "{%- materialization test, default -%}\n\n {% set relations = [] %}\n\n {% if should_store_failures() %}\n\n {% set identifier = model['alias'] %}\n {% set old_relation = adapter.get_relation(database=database, schema=schema, identifier=identifier) %}\n {% set target_relation = api.Relation.create(\n identifier=identifier, schema=schema, database=database, type='table') -%} %}\n\n {% if old_relation %}\n {% do adapter.drop_relation(old_relation) %}\n {% endif %}\n\n {% call statement(auto_begin=True) %}\n {{ create_table_as(False, target_relation, sql) }}\n {% endcall %}\n\n {% do relations.append(target_relation) %}\n\n {% set main_sql %}\n select *\n from {{ target_relation }}\n {% endset %}\n\n {{ adapter.commit() }}\n\n {% else %}\n\n {% set main_sql = sql %}\n\n {% endif %}\n\n {% set limit = config.get('limit') %}\n {% set fail_calc = config.get('fail_calc') %}\n {% set warn_if = config.get('warn_if') %}\n {% set error_if = config.get('error_if') %}\n\n {% call statement('main', fetch_result=True) -%}\n\n {{ get_test_sql(main_sql, fail_calc, warn_if, error_if, limit)}}\n\n {%- endcall %}\n\n {{ return({'relations': relations}) }}\n\n{%- endmaterialization -%}", "depends_on": {"macros": ["macro.dbt.should_store_failures", "macro.dbt.statement", "macro.dbt.create_table_as", "macro.dbt.get_test_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.4775941, "supported_languages": ["sql"]}, "macro.dbt.get_test_sql": {"name": "get_test_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/tests/helpers.sql", "original_file_path": "macros/materializations/tests/helpers.sql", "unique_id": "macro.dbt.get_test_sql", "macro_sql": "{% macro get_test_sql(main_sql, fail_calc, warn_if, error_if, limit) -%}\n {{ adapter.dispatch('get_test_sql', 'dbt')(main_sql, fail_calc, warn_if, error_if, limit) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_test_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.478123, "supported_languages": null}, "macro.dbt.default__get_test_sql": {"name": "default__get_test_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/tests/helpers.sql", "original_file_path": "macros/materializations/tests/helpers.sql", "unique_id": "macro.dbt.default__get_test_sql", "macro_sql": "{% macro default__get_test_sql(main_sql, fail_calc, warn_if, error_if, limit) -%}\n select\n {{ fail_calc }} as failures,\n {{ fail_calc }} {{ warn_if }} as should_warn,\n {{ fail_calc }} {{ error_if }} as should_error\n from (\n {{ main_sql }}\n {{ \"limit \" ~ limit if limit != none }}\n ) dbt_internal_test\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.478627, "supported_languages": null}, "macro.dbt.get_where_subquery": {"name": "get_where_subquery", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/tests/where_subquery.sql", "original_file_path": "macros/materializations/tests/where_subquery.sql", "unique_id": "macro.dbt.get_where_subquery", "macro_sql": "{% macro get_where_subquery(relation) -%}\n {% do return(adapter.dispatch('get_where_subquery', 'dbt')(relation)) %}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_where_subquery"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.479115, "supported_languages": null}, "macro.dbt.default__get_where_subquery": {"name": "default__get_where_subquery", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/tests/where_subquery.sql", "original_file_path": "macros/materializations/tests/where_subquery.sql", "unique_id": "macro.dbt.default__get_where_subquery", "macro_sql": "{% macro default__get_where_subquery(relation) -%}\n {% set where = config.get('where', '') %}\n {% if where %}\n {%- set filtered -%}\n (select * from {{ relation }} where {{ where }}) dbt_subquery\n {%- endset -%}\n {% do return(filtered) %}\n {%- else -%}\n {% do return(relation) %}\n {%- endif -%}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.479541, "supported_languages": null}, "macro.dbt.get_quoted_csv": {"name": "get_quoted_csv", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "unique_id": "macro.dbt.get_quoted_csv", "macro_sql": "{% macro get_quoted_csv(column_names) %}\n\n {% set quoted = [] %}\n {% for col in column_names -%}\n {%- do quoted.append(adapter.quote(col)) -%}\n {%- endfor %}\n\n {%- set dest_cols_csv = quoted | join(', ') -%}\n {{ return(dest_cols_csv) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.481361, "supported_languages": null}, "macro.dbt.diff_columns": {"name": "diff_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "unique_id": "macro.dbt.diff_columns", "macro_sql": "{% macro diff_columns(source_columns, target_columns) %}\n\n {% set result = [] %}\n {% set source_names = source_columns | map(attribute = 'column') | list %}\n {% set target_names = target_columns | map(attribute = 'column') | list %}\n\n {# --check whether the name attribute exists in the target - this does not perform a data type check #}\n {% for sc in source_columns %}\n {% if sc.name not in target_names %}\n {{ result.append(sc) }}\n {% endif %}\n {% endfor %}\n\n {{ return(result) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.4819899, "supported_languages": null}, "macro.dbt.diff_column_data_types": {"name": "diff_column_data_types", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "unique_id": "macro.dbt.diff_column_data_types", "macro_sql": "{% macro diff_column_data_types(source_columns, target_columns) %}\n\n {% set result = [] %}\n {% for sc in source_columns %}\n {% set tc = target_columns | selectattr(\"name\", \"equalto\", sc.name) | list | first %}\n {% if tc %}\n {% if sc.data_type != tc.data_type and not sc.can_expand_to(other_column=tc) %}\n {{ result.append( { 'column_name': tc.name, 'new_type': sc.data_type } ) }}\n {% endif %}\n {% endif %}\n {% endfor %}\n\n {{ return(result) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.482743, "supported_languages": null}, "macro.dbt.get_merge_update_columns": {"name": "get_merge_update_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "unique_id": "macro.dbt.get_merge_update_columns", "macro_sql": "{% macro get_merge_update_columns(merge_update_columns, merge_exclude_columns, dest_columns) %}\n {{ return(adapter.dispatch('get_merge_update_columns', 'dbt')(merge_update_columns, merge_exclude_columns, dest_columns)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_merge_update_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.483018, "supported_languages": null}, "macro.dbt.default__get_merge_update_columns": {"name": "default__get_merge_update_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "unique_id": "macro.dbt.default__get_merge_update_columns", "macro_sql": "{% macro default__get_merge_update_columns(merge_update_columns, merge_exclude_columns, dest_columns) %}\n {%- set default_cols = dest_columns | map(attribute=\"quoted\") | list -%}\n\n {%- if merge_update_columns and merge_exclude_columns -%}\n {{ exceptions.raise_compiler_error(\n 'Model cannot specify merge_update_columns and merge_exclude_columns. Please update model to use only one config'\n )}}\n {%- elif merge_update_columns -%}\n {%- set update_columns = merge_update_columns -%}\n {%- elif merge_exclude_columns -%}\n {%- set update_columns = [] -%}\n {%- for column in dest_columns -%}\n {% if column.column | lower not in merge_exclude_columns | map(\"lower\") | list %}\n {%- do update_columns.append(column.quoted) -%}\n {% endif %}\n {%- endfor -%}\n {%- else -%}\n {%- set update_columns = default_cols -%}\n {%- endif -%}\n\n {{ return(update_columns) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.483826, "supported_languages": null}, "macro.dbt.get_merge_sql": {"name": "get_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "unique_id": "macro.dbt.get_merge_sql", "macro_sql": "{% macro get_merge_sql(target, source, unique_key, dest_columns, incremental_predicates=none) -%}\n -- back compat for old kwarg name\n {% set incremental_predicates = kwargs.get('predicates', incremental_predicates) %}\n {{ adapter.dispatch('get_merge_sql', 'dbt')(target, source, unique_key, dest_columns, incremental_predicates) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.4912472, "supported_languages": null}, "macro.dbt.default__get_merge_sql": {"name": "default__get_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "unique_id": "macro.dbt.default__get_merge_sql", "macro_sql": "{% macro default__get_merge_sql(target, source, unique_key, dest_columns, incremental_predicates=none) -%}\n {%- set predicates = [] if incremental_predicates is none else [] + incremental_predicates -%}\n {%- set dest_cols_csv = get_quoted_csv(dest_columns | map(attribute=\"name\")) -%}\n {%- set merge_update_columns = config.get('merge_update_columns') -%}\n {%- set merge_exclude_columns = config.get('merge_exclude_columns') -%}\n {%- set update_columns = get_merge_update_columns(merge_update_columns, merge_exclude_columns, dest_columns) -%}\n {%- set sql_header = config.get('sql_header', none) -%}\n\n {% if unique_key %}\n {% if unique_key is sequence and unique_key is not mapping and unique_key is not string %}\n {% for key in unique_key %}\n {% set this_key_match %}\n DBT_INTERNAL_SOURCE.{{ key }} = DBT_INTERNAL_DEST.{{ key }}\n {% endset %}\n {% do predicates.append(this_key_match) %}\n {% endfor %}\n {% else %}\n {% set unique_key_match %}\n DBT_INTERNAL_SOURCE.{{ unique_key }} = DBT_INTERNAL_DEST.{{ unique_key }}\n {% endset %}\n {% do predicates.append(unique_key_match) %}\n {% endif %}\n {% else %}\n {% do predicates.append('FALSE') %}\n {% endif %}\n\n {{ sql_header if sql_header is not none }}\n\n merge into {{ target }} as DBT_INTERNAL_DEST\n using {{ source }} as DBT_INTERNAL_SOURCE\n on {{\"(\" ~ predicates | join(\") and (\") ~ \")\"}}\n\n {% if unique_key %}\n when matched then update set\n {% for column_name in update_columns -%}\n {{ column_name }} = DBT_INTERNAL_SOURCE.{{ column_name }}\n {%- if not loop.last %}, {%- endif %}\n {%- endfor %}\n {% endif %}\n\n when not matched then insert\n ({{ dest_cols_csv }})\n values\n ({{ dest_cols_csv }})\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_quoted_csv", "macro.dbt.get_merge_update_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.493149, "supported_languages": null}, "macro.dbt.get_delete_insert_merge_sql": {"name": "get_delete_insert_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "unique_id": "macro.dbt.get_delete_insert_merge_sql", "macro_sql": "{% macro get_delete_insert_merge_sql(target, source, unique_key, dest_columns, incremental_predicates) -%}\n {{ adapter.dispatch('get_delete_insert_merge_sql', 'dbt')(target, source, unique_key, dest_columns, incremental_predicates) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_delete_insert_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.493442, "supported_languages": null}, "macro.dbt.default__get_delete_insert_merge_sql": {"name": "default__get_delete_insert_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "unique_id": "macro.dbt.default__get_delete_insert_merge_sql", "macro_sql": "{% macro default__get_delete_insert_merge_sql(target, source, unique_key, dest_columns, incremental_predicates) -%}\n\n {%- set dest_cols_csv = get_quoted_csv(dest_columns | map(attribute=\"name\")) -%}\n\n {% if unique_key %}\n {% if unique_key is sequence and unique_key is not string %}\n delete from {{target }}\n using {{ source }}\n where (\n {% for key in unique_key %}\n {{ source }}.{{ key }} = {{ target }}.{{ key }}\n {{ \"and \" if not loop.last}}\n {% endfor %}\n {% if incremental_predicates %}\n {% for predicate in incremental_predicates %}\n and {{ predicate }}\n {% endfor %}\n {% endif %}\n );\n {% else %}\n delete from {{ target }}\n where (\n {{ unique_key }}) in (\n select ({{ unique_key }})\n from {{ source }}\n )\n {%- if incremental_predicates %}\n {% for predicate in incremental_predicates %}\n and {{ predicate }}\n {% endfor %}\n {%- endif -%};\n\n {% endif %}\n {% endif %}\n\n insert into {{ target }} ({{ dest_cols_csv }})\n (\n select {{ dest_cols_csv }}\n from {{ source }}\n )\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.get_quoted_csv"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.494525, "supported_languages": null}, "macro.dbt.get_insert_overwrite_merge_sql": {"name": "get_insert_overwrite_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "unique_id": "macro.dbt.get_insert_overwrite_merge_sql", "macro_sql": "{% macro get_insert_overwrite_merge_sql(target, source, dest_columns, predicates, include_sql_header=false) -%}\n {{ adapter.dispatch('get_insert_overwrite_merge_sql', 'dbt')(target, source, dest_columns, predicates, include_sql_header) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_insert_overwrite_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.4948218, "supported_languages": null}, "macro.dbt.default__get_insert_overwrite_merge_sql": {"name": "default__get_insert_overwrite_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "unique_id": "macro.dbt.default__get_insert_overwrite_merge_sql", "macro_sql": "{% macro default__get_insert_overwrite_merge_sql(target, source, dest_columns, predicates, include_sql_header) -%}\n {#-- The only time include_sql_header is True: --#}\n {#-- BigQuery + insert_overwrite strategy + \"static\" partitions config --#}\n {#-- We should consider including the sql header at the materialization level instead --#}\n\n {%- set predicates = [] if predicates is none else [] + predicates -%}\n {%- set dest_cols_csv = get_quoted_csv(dest_columns | map(attribute=\"name\")) -%}\n {%- set sql_header = config.get('sql_header', none) -%}\n\n {{ sql_header if sql_header is not none and include_sql_header }}\n\n merge into {{ target }} as DBT_INTERNAL_DEST\n using {{ source }} as DBT_INTERNAL_SOURCE\n on FALSE\n\n when not matched by source\n {% if predicates %} and {{ predicates | join(' and ') }} {% endif %}\n then delete\n\n when not matched then insert\n ({{ dest_cols_csv }})\n values\n ({{ dest_cols_csv }})\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_quoted_csv"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.4955142, "supported_languages": null}, "macro.dbt.is_incremental": {"name": "is_incremental", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/is_incremental.sql", "original_file_path": "macros/materializations/models/incremental/is_incremental.sql", "unique_id": "macro.dbt.is_incremental", "macro_sql": "{% macro is_incremental() %}\n {#-- do not run introspective queries in parsing #}\n {% if not execute %}\n {{ return(False) }}\n {% else %}\n {% set relation = adapter.get_relation(this.database, this.schema, this.table) %}\n {{ return(relation is not none\n and relation.type == 'table'\n and model.config.materialized == 'incremental'\n and not should_full_refresh()) }}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.should_full_refresh"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.496205, "supported_languages": null}, "macro.dbt.get_incremental_append_sql": {"name": "get_incremental_append_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.get_incremental_append_sql", "macro_sql": "{% macro get_incremental_append_sql(arg_dict) %}\n\n {{ return(adapter.dispatch('get_incremental_append_sql', 'dbt')(arg_dict)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_incremental_append_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.497151, "supported_languages": null}, "macro.dbt.default__get_incremental_append_sql": {"name": "default__get_incremental_append_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.default__get_incremental_append_sql", "macro_sql": "{% macro default__get_incremental_append_sql(arg_dict) %}\n\n {% do return(get_insert_into_sql(arg_dict[\"target_relation\"], arg_dict[\"temp_relation\"], arg_dict[\"dest_columns\"])) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_insert_into_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.497401, "supported_languages": null}, "macro.dbt.get_incremental_delete_insert_sql": {"name": "get_incremental_delete_insert_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.get_incremental_delete_insert_sql", "macro_sql": "{% macro get_incremental_delete_insert_sql(arg_dict) %}\n\n {{ return(adapter.dispatch('get_incremental_delete_insert_sql', 'dbt')(arg_dict)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_incremental_delete_insert_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.497601, "supported_languages": null}, "macro.dbt.default__get_incremental_delete_insert_sql": {"name": "default__get_incremental_delete_insert_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.default__get_incremental_delete_insert_sql", "macro_sql": "{% macro default__get_incremental_delete_insert_sql(arg_dict) %}\n\n {% do return(get_delete_insert_merge_sql(arg_dict[\"target_relation\"], arg_dict[\"temp_relation\"], arg_dict[\"unique_key\"], arg_dict[\"dest_columns\"], arg_dict[\"incremental_predicates\"])) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_delete_insert_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.4979131, "supported_languages": null}, "macro.dbt.get_incremental_merge_sql": {"name": "get_incremental_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.get_incremental_merge_sql", "macro_sql": "{% macro get_incremental_merge_sql(arg_dict) %}\n\n {{ return(adapter.dispatch('get_incremental_merge_sql', 'dbt')(arg_dict)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_incremental_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.498114, "supported_languages": null}, "macro.dbt.default__get_incremental_merge_sql": {"name": "default__get_incremental_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.default__get_incremental_merge_sql", "macro_sql": "{% macro default__get_incremental_merge_sql(arg_dict) %}\n\n {% do return(get_merge_sql(arg_dict[\"target_relation\"], arg_dict[\"temp_relation\"], arg_dict[\"unique_key\"], arg_dict[\"dest_columns\"], arg_dict[\"incremental_predicates\"])) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.4985669, "supported_languages": null}, "macro.dbt.get_incremental_insert_overwrite_sql": {"name": "get_incremental_insert_overwrite_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.get_incremental_insert_overwrite_sql", "macro_sql": "{% macro get_incremental_insert_overwrite_sql(arg_dict) %}\n\n {{ return(adapter.dispatch('get_incremental_insert_overwrite_sql', 'dbt')(arg_dict)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_incremental_insert_overwrite_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.498828, "supported_languages": null}, "macro.dbt.default__get_incremental_insert_overwrite_sql": {"name": "default__get_incremental_insert_overwrite_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.default__get_incremental_insert_overwrite_sql", "macro_sql": "{% macro default__get_incremental_insert_overwrite_sql(arg_dict) %}\n\n {% do return(get_insert_overwrite_merge_sql(arg_dict[\"target_relation\"], arg_dict[\"temp_relation\"], arg_dict[\"dest_columns\"], arg_dict[\"incremental_predicates\"])) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_insert_overwrite_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.499135, "supported_languages": null}, "macro.dbt.get_incremental_default_sql": {"name": "get_incremental_default_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.get_incremental_default_sql", "macro_sql": "{% macro get_incremental_default_sql(arg_dict) %}\n\n {{ return(adapter.dispatch('get_incremental_default_sql', 'dbt')(arg_dict)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_incremental_default_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.49935, "supported_languages": null}, "macro.dbt.default__get_incremental_default_sql": {"name": "default__get_incremental_default_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.default__get_incremental_default_sql", "macro_sql": "{% macro default__get_incremental_default_sql(arg_dict) %}\n\n {% do return(get_incremental_append_sql(arg_dict)) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_incremental_append_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.49952, "supported_languages": null}, "macro.dbt.get_insert_into_sql": {"name": "get_insert_into_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.get_insert_into_sql", "macro_sql": "{% macro get_insert_into_sql(target_relation, temp_relation, dest_columns) %}\n\n {%- set dest_cols_csv = get_quoted_csv(dest_columns | map(attribute=\"name\")) -%}\n\n insert into {{ target_relation }} ({{ dest_cols_csv }})\n (\n select {{ dest_cols_csv }}\n from {{ temp_relation }}\n )\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_quoted_csv"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.499841, "supported_languages": null}, "macro.dbt.materialization_incremental_default": {"name": "materialization_incremental_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/incremental.sql", "original_file_path": "macros/materializations/models/incremental/incremental.sql", "unique_id": "macro.dbt.materialization_incremental_default", "macro_sql": "{% materialization incremental, default -%}\n\n -- relations\n {%- set existing_relation = load_cached_relation(this) -%}\n {%- set target_relation = this.incorporate(type='table') -%}\n {%- set temp_relation = make_temp_relation(target_relation)-%}\n {%- set intermediate_relation = make_intermediate_relation(target_relation)-%}\n {%- set backup_relation_type = 'table' if existing_relation is none else existing_relation.type -%}\n {%- set backup_relation = make_backup_relation(target_relation, backup_relation_type) -%}\n\n -- configs\n {%- set unique_key = config.get('unique_key') -%}\n {%- set full_refresh_mode = (should_full_refresh() or existing_relation.is_view) -%}\n {%- set on_schema_change = incremental_validate_on_schema_change(config.get('on_schema_change'), default='ignore') -%}\n\n -- the temp_ and backup_ relations should not already exist in the database; get_relation\n -- will return None in that case. Otherwise, we get a relation that we can drop\n -- later, before we try to use this name for the current operation. This has to happen before\n -- BEGIN, in a separate transaction\n {%- set preexisting_intermediate_relation = load_cached_relation(intermediate_relation)-%}\n {%- set preexisting_backup_relation = load_cached_relation(backup_relation) -%}\n -- grab current tables grants config for comparision later on\n {% set grant_config = config.get('grants') %}\n {{ drop_relation_if_exists(preexisting_intermediate_relation) }}\n {{ drop_relation_if_exists(preexisting_backup_relation) }}\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n -- `BEGIN` happens here:\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\n\n {% set to_drop = [] %}\n\n {% if existing_relation is none %}\n {% set build_sql = get_create_table_as_sql(False, target_relation, sql) %}\n {% elif full_refresh_mode %}\n {% set build_sql = get_create_table_as_sql(False, intermediate_relation, sql) %}\n {% set need_swap = true %}\n {% else %}\n {% do run_query(get_create_table_as_sql(True, temp_relation, sql)) %}\n {% do adapter.expand_target_column_types(\n from_relation=temp_relation,\n to_relation=target_relation) %}\n {#-- Process schema changes. Returns dict of changes if successful. Use source columns for upserting/merging --#}\n {% set dest_columns = process_schema_changes(on_schema_change, temp_relation, existing_relation) %}\n {% if not dest_columns %}\n {% set dest_columns = adapter.get_columns_in_relation(existing_relation) %}\n {% endif %}\n\n {#-- Get the incremental_strategy, the macro to use for the strategy, and build the sql --#}\n {% set incremental_strategy = config.get('incremental_strategy') or 'default' %}\n {% set incremental_predicates = config.get('predicates', none) or config.get('incremental_predicates', none) %}\n {% set strategy_sql_macro_func = adapter.get_incremental_strategy_macro(context, incremental_strategy) %}\n {% set strategy_arg_dict = ({'target_relation': target_relation, 'temp_relation': temp_relation, 'unique_key': unique_key, 'dest_columns': dest_columns, 'incremental_predicates': incremental_predicates }) %}\n {% set build_sql = strategy_sql_macro_func(strategy_arg_dict) %}\n\n {% endif %}\n\n {% call statement(\"main\") %}\n {{ build_sql }}\n {% endcall %}\n\n {% if need_swap %}\n {% do adapter.rename_relation(target_relation, backup_relation) %}\n {% do adapter.rename_relation(intermediate_relation, target_relation) %}\n {% do to_drop.append(backup_relation) %}\n {% endif %}\n\n {% set should_revoke = should_revoke(existing_relation, full_refresh_mode) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n {% if existing_relation is none or existing_relation.is_view or should_full_refresh() %}\n {% do create_indexes(target_relation) %}\n {% endif %}\n\n {{ run_hooks(post_hooks, inside_transaction=True) }}\n\n -- `COMMIT` happens here\n {% do adapter.commit() %}\n\n {% for rel in to_drop %}\n {% do adapter.drop_relation(rel) %}\n {% endfor %}\n\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{%- endmaterialization %}", "depends_on": {"macros": ["macro.dbt.load_cached_relation", "macro.dbt.make_temp_relation", "macro.dbt.make_intermediate_relation", "macro.dbt.make_backup_relation", "macro.dbt.should_full_refresh", "macro.dbt.incremental_validate_on_schema_change", "macro.dbt.drop_relation_if_exists", "macro.dbt.run_hooks", "macro.dbt.get_create_table_as_sql", "macro.dbt.run_query", "macro.dbt.process_schema_changes", "macro.dbt.statement", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs", "macro.dbt.create_indexes"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.505599, "supported_languages": ["sql"]}, "macro.dbt.incremental_validate_on_schema_change": {"name": "incremental_validate_on_schema_change", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/on_schema_change.sql", "original_file_path": "macros/materializations/models/incremental/on_schema_change.sql", "unique_id": "macro.dbt.incremental_validate_on_schema_change", "macro_sql": "{% macro incremental_validate_on_schema_change(on_schema_change, default='ignore') %}\n\n {% if on_schema_change not in ['sync_all_columns', 'append_new_columns', 'fail', 'ignore'] %}\n\n {% set log_message = 'Invalid value for on_schema_change (%s) specified. Setting default value of %s.' % (on_schema_change, default) %}\n {% do log(log_message) %}\n\n {{ return(default) }}\n\n {% else %}\n\n {{ return(on_schema_change) }}\n\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5118148, "supported_languages": null}, "macro.dbt.check_for_schema_changes": {"name": "check_for_schema_changes", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/on_schema_change.sql", "original_file_path": "macros/materializations/models/incremental/on_schema_change.sql", "unique_id": "macro.dbt.check_for_schema_changes", "macro_sql": "{% macro check_for_schema_changes(source_relation, target_relation) %}\n\n {% set schema_changed = False %}\n\n {%- set source_columns = adapter.get_columns_in_relation(source_relation) -%}\n {%- set target_columns = adapter.get_columns_in_relation(target_relation) -%}\n {%- set source_not_in_target = diff_columns(source_columns, target_columns) -%}\n {%- set target_not_in_source = diff_columns(target_columns, source_columns) -%}\n\n {% set new_target_types = diff_column_data_types(source_columns, target_columns) %}\n\n {% if source_not_in_target != [] %}\n {% set schema_changed = True %}\n {% elif target_not_in_source != [] or new_target_types != [] %}\n {% set schema_changed = True %}\n {% elif new_target_types != [] %}\n {% set schema_changed = True %}\n {% endif %}\n\n {% set changes_dict = {\n 'schema_changed': schema_changed,\n 'source_not_in_target': source_not_in_target,\n 'target_not_in_source': target_not_in_source,\n 'source_columns': source_columns,\n 'target_columns': target_columns,\n 'new_target_types': new_target_types\n } %}\n\n {% set msg %}\n In {{ target_relation }}:\n Schema changed: {{ schema_changed }}\n Source columns not in target: {{ source_not_in_target }}\n Target columns not in source: {{ target_not_in_source }}\n New column types: {{ new_target_types }}\n {% endset %}\n\n {% do log(msg) %}\n\n {{ return(changes_dict) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.diff_columns", "macro.dbt.diff_column_data_types"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.513151, "supported_languages": null}, "macro.dbt.sync_column_schemas": {"name": "sync_column_schemas", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/on_schema_change.sql", "original_file_path": "macros/materializations/models/incremental/on_schema_change.sql", "unique_id": "macro.dbt.sync_column_schemas", "macro_sql": "{% macro sync_column_schemas(on_schema_change, target_relation, schema_changes_dict) %}\n\n {%- set add_to_target_arr = schema_changes_dict['source_not_in_target'] -%}\n\n {%- if on_schema_change == 'append_new_columns'-%}\n {%- if add_to_target_arr | length > 0 -%}\n {%- do alter_relation_add_remove_columns(target_relation, add_to_target_arr, none) -%}\n {%- endif -%}\n\n {% elif on_schema_change == 'sync_all_columns' %}\n {%- set remove_from_target_arr = schema_changes_dict['target_not_in_source'] -%}\n {%- set new_target_types = schema_changes_dict['new_target_types'] -%}\n\n {% if add_to_target_arr | length > 0 or remove_from_target_arr | length > 0 %}\n {%- do alter_relation_add_remove_columns(target_relation, add_to_target_arr, remove_from_target_arr) -%}\n {% endif %}\n\n {% if new_target_types != [] %}\n {% for ntt in new_target_types %}\n {% set column_name = ntt['column_name'] %}\n {% set new_type = ntt['new_type'] %}\n {% do alter_column_type(target_relation, column_name, new_type) %}\n {% endfor %}\n {% endif %}\n\n {% endif %}\n\n {% set schema_change_message %}\n In {{ target_relation }}:\n Schema change approach: {{ on_schema_change }}\n Columns added: {{ add_to_target_arr }}\n Columns removed: {{ remove_from_target_arr }}\n Data types changed: {{ new_target_types }}\n {% endset %}\n\n {% do log(schema_change_message) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.alter_relation_add_remove_columns", "macro.dbt.alter_column_type"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.514421, "supported_languages": null}, "macro.dbt.process_schema_changes": {"name": "process_schema_changes", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/on_schema_change.sql", "original_file_path": "macros/materializations/models/incremental/on_schema_change.sql", "unique_id": "macro.dbt.process_schema_changes", "macro_sql": "{% macro process_schema_changes(on_schema_change, source_relation, target_relation) %}\n\n {% if on_schema_change == 'ignore' %}\n\n {{ return({}) }}\n\n {% else %}\n\n {% set schema_changes_dict = check_for_schema_changes(source_relation, target_relation) %}\n\n {% if schema_changes_dict['schema_changed'] %}\n\n {% if on_schema_change == 'fail' %}\n\n {% set fail_msg %}\n The source and target schemas on this incremental model are out of sync!\n They can be reconciled in several ways:\n - set the `on_schema_change` config to either append_new_columns or sync_all_columns, depending on your situation.\n - Re-run the incremental model with `full_refresh: True` to update the target schema.\n - update the schema manually and re-run the process.\n\n Additional troubleshooting context:\n Source columns not in target: {{ schema_changes_dict['source_not_in_target'] }}\n Target columns not in source: {{ schema_changes_dict['target_not_in_source'] }}\n New column types: {{ schema_changes_dict['new_target_types'] }}\n {% endset %}\n\n {% do exceptions.raise_compiler_error(fail_msg) %}\n\n {# -- unless we ignore, run the sync operation per the config #}\n {% else %}\n\n {% do sync_column_schemas(on_schema_change, target_relation, schema_changes_dict) %}\n\n {% endif %}\n\n {% endif %}\n\n {{ return(schema_changes_dict['source_columns']) }}\n\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.check_for_schema_changes", "macro.dbt.sync_column_schemas"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5153239, "supported_languages": null}, "macro.dbt.get_table_columns_and_constraints": {"name": "get_table_columns_and_constraints", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/columns_spec_ddl.sql", "original_file_path": "macros/materializations/models/table/columns_spec_ddl.sql", "unique_id": "macro.dbt.get_table_columns_and_constraints", "macro_sql": "{%- macro get_table_columns_and_constraints() -%}\n {{ adapter.dispatch('get_table_columns_and_constraints', 'dbt')() }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__get_table_columns_and_constraints"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.516383, "supported_languages": null}, "macro.dbt.default__get_table_columns_and_constraints": {"name": "default__get_table_columns_and_constraints", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/columns_spec_ddl.sql", "original_file_path": "macros/materializations/models/table/columns_spec_ddl.sql", "unique_id": "macro.dbt.default__get_table_columns_and_constraints", "macro_sql": "{% macro default__get_table_columns_and_constraints() -%}\n {{ return(table_columns_and_constraints()) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.table_columns_and_constraints"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.516515, "supported_languages": null}, "macro.dbt.table_columns_and_constraints": {"name": "table_columns_and_constraints", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/columns_spec_ddl.sql", "original_file_path": "macros/materializations/models/table/columns_spec_ddl.sql", "unique_id": "macro.dbt.table_columns_and_constraints", "macro_sql": "{% macro table_columns_and_constraints() %}\n {# loop through user_provided_columns to create DDL with data types and constraints #}\n {%- set raw_column_constraints = adapter.render_raw_columns_constraints(raw_columns=model['columns']) -%}\n {%- set raw_model_constraints = adapter.render_raw_model_constraints(raw_constraints=model['constraints']) -%}\n (\n {% for c in raw_column_constraints -%}\n {{ c }}{{ \",\" if not loop.last or raw_model_constraints }}\n {% endfor %}\n {% for c in raw_model_constraints -%}\n {{ c }}{{ \",\" if not loop.last }}\n {% endfor -%}\n )\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.517091, "supported_languages": null}, "macro.dbt.get_assert_columns_equivalent": {"name": "get_assert_columns_equivalent", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/columns_spec_ddl.sql", "original_file_path": "macros/materializations/models/table/columns_spec_ddl.sql", "unique_id": "macro.dbt.get_assert_columns_equivalent", "macro_sql": "\n\n{%- macro get_assert_columns_equivalent(sql) -%}\n {{ adapter.dispatch('get_assert_columns_equivalent', 'dbt')(sql) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__get_assert_columns_equivalent"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5172749, "supported_languages": null}, "macro.dbt.default__get_assert_columns_equivalent": {"name": "default__get_assert_columns_equivalent", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/columns_spec_ddl.sql", "original_file_path": "macros/materializations/models/table/columns_spec_ddl.sql", "unique_id": "macro.dbt.default__get_assert_columns_equivalent", "macro_sql": "{% macro default__get_assert_columns_equivalent(sql) -%}\n {{ return(assert_columns_equivalent(sql)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.assert_columns_equivalent"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5174232, "supported_languages": null}, "macro.dbt.assert_columns_equivalent": {"name": "assert_columns_equivalent", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/columns_spec_ddl.sql", "original_file_path": "macros/materializations/models/table/columns_spec_ddl.sql", "unique_id": "macro.dbt.assert_columns_equivalent", "macro_sql": "{% macro assert_columns_equivalent(sql) %}\n {#-- Obtain the column schema provided by sql file. #}\n {%- set sql_file_provided_columns = get_column_schema_from_query(sql, config.get('sql_header', none)) -%}\n {#--Obtain the column schema provided by the schema file by generating an 'empty schema' query from the model's columns. #}\n {%- set schema_file_provided_columns = get_column_schema_from_query(get_empty_schema_sql(model['columns'])) -%}\n\n {#-- create dictionaries with name and formatted data type and strings for exception #}\n {%- set sql_columns = format_columns(sql_file_provided_columns) -%}\n {%- set yaml_columns = format_columns(schema_file_provided_columns) -%}\n\n {%- if sql_columns|length != yaml_columns|length -%}\n {%- do exceptions.raise_contract_error(yaml_columns, sql_columns) -%}\n {%- endif -%}\n\n {%- for sql_col in sql_columns -%}\n {%- set yaml_col = [] -%}\n {%- for this_col in yaml_columns -%}\n {%- if this_col['name'] == sql_col['name'] -%}\n {%- do yaml_col.append(this_col) -%}\n {%- break -%}\n {%- endif -%}\n {%- endfor -%}\n {%- if not yaml_col -%}\n {#-- Column with name not found in yaml #}\n {%- do exceptions.raise_contract_error(yaml_columns, sql_columns) -%}\n {%- endif -%}\n {%- if sql_col['formatted'] != yaml_col[0]['formatted'] -%}\n {#-- Column data types don't match #}\n {%- do exceptions.raise_contract_error(yaml_columns, sql_columns) -%}\n {%- endif -%}\n {%- endfor -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_column_schema_from_query", "macro.dbt.get_empty_schema_sql", "macro.dbt.format_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5186481, "supported_languages": null}, "macro.dbt.format_columns": {"name": "format_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/columns_spec_ddl.sql", "original_file_path": "macros/materializations/models/table/columns_spec_ddl.sql", "unique_id": "macro.dbt.format_columns", "macro_sql": "{% macro format_columns(columns) %}\n {% set formatted_columns = [] %}\n {% for column in columns %}\n {%- set formatted_column = adapter.dispatch('format_column', 'dbt')(column) -%}\n {%- do formatted_columns.append(formatted_column) -%}\n {% endfor %}\n {{ return(formatted_columns) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__format_column"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.519061, "supported_languages": null}, "macro.dbt.default__format_column": {"name": "default__format_column", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/columns_spec_ddl.sql", "original_file_path": "macros/materializations/models/table/columns_spec_ddl.sql", "unique_id": "macro.dbt.default__format_column", "macro_sql": "{% macro default__format_column(column) -%}\n {% set data_type = column.dtype %}\n {% set formatted = column.column.lower() ~ \" \" ~ data_type %}\n {{ return({'name': column.name, 'data_type': data_type, 'formatted': formatted}) }}\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.519435, "supported_languages": null}, "macro.dbt.materialization_table_default": {"name": "materialization_table_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/table.sql", "original_file_path": "macros/materializations/models/table/table.sql", "unique_id": "macro.dbt.materialization_table_default", "macro_sql": "{% materialization table, default %}\n\n {%- set existing_relation = load_cached_relation(this) -%}\n {%- set target_relation = this.incorporate(type='table') %}\n {%- set intermediate_relation = make_intermediate_relation(target_relation) -%}\n -- the intermediate_relation should not already exist in the database; get_relation\n -- will return None in that case. Otherwise, we get a relation that we can drop\n -- later, before we try to use this name for the current operation\n {%- set preexisting_intermediate_relation = load_cached_relation(intermediate_relation) -%}\n /*\n See ../view/view.sql for more information about this relation.\n */\n {%- set backup_relation_type = 'table' if existing_relation is none else existing_relation.type -%}\n {%- set backup_relation = make_backup_relation(target_relation, backup_relation_type) -%}\n -- as above, the backup_relation should not already exist\n {%- set preexisting_backup_relation = load_cached_relation(backup_relation) -%}\n -- grab current tables grants config for comparision later on\n {% set grant_config = config.get('grants') %}\n\n -- drop the temp relations if they exist already in the database\n {{ drop_relation_if_exists(preexisting_intermediate_relation) }}\n {{ drop_relation_if_exists(preexisting_backup_relation) }}\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n -- `BEGIN` happens here:\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\n\n -- build model\n {% call statement('main') -%}\n {{ get_create_table_as_sql(False, intermediate_relation, sql) }}\n {%- endcall %}\n\n -- cleanup\n {% if existing_relation is not none %}\n {{ adapter.rename_relation(existing_relation, backup_relation) }}\n {% endif %}\n\n {{ adapter.rename_relation(intermediate_relation, target_relation) }}\n\n {% do create_indexes(target_relation) %}\n\n {{ run_hooks(post_hooks, inside_transaction=True) }}\n\n {% set should_revoke = should_revoke(existing_relation, full_refresh_mode=True) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n -- `COMMIT` happens here\n {{ adapter.commit() }}\n\n -- finally, drop the existing/backup relation after the commit\n {{ drop_relation_if_exists(backup_relation) }}\n\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n\n {{ return({'relations': [target_relation]}) }}\n{% endmaterialization %}", "depends_on": {"macros": ["macro.dbt.load_cached_relation", "macro.dbt.make_intermediate_relation", "macro.dbt.make_backup_relation", "macro.dbt.drop_relation_if_exists", "macro.dbt.run_hooks", "macro.dbt.statement", "macro.dbt.get_create_table_as_sql", "macro.dbt.create_indexes", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5223172, "supported_languages": ["sql"]}, "macro.dbt.get_create_table_as_sql": {"name": "get_create_table_as_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/create_table_as.sql", "original_file_path": "macros/materializations/models/table/create_table_as.sql", "unique_id": "macro.dbt.get_create_table_as_sql", "macro_sql": "{% macro get_create_table_as_sql(temporary, relation, sql) -%}\n {{ adapter.dispatch('get_create_table_as_sql', 'dbt')(temporary, relation, sql) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_create_table_as_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5232441, "supported_languages": null}, "macro.dbt.default__get_create_table_as_sql": {"name": "default__get_create_table_as_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/create_table_as.sql", "original_file_path": "macros/materializations/models/table/create_table_as.sql", "unique_id": "macro.dbt.default__get_create_table_as_sql", "macro_sql": "{% macro default__get_create_table_as_sql(temporary, relation, sql) -%}\n {{ return(create_table_as(temporary, relation, sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.create_table_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.523442, "supported_languages": null}, "macro.dbt.create_table_as": {"name": "create_table_as", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/create_table_as.sql", "original_file_path": "macros/materializations/models/table/create_table_as.sql", "unique_id": "macro.dbt.create_table_as", "macro_sql": "{% macro create_table_as(temporary, relation, compiled_code, language='sql') -%}\n {# backward compatibility for create_table_as that does not support language #}\n {% if language == \"sql\" %}\n {{ adapter.dispatch('create_table_as', 'dbt')(temporary, relation, compiled_code)}}\n {% else %}\n {{ adapter.dispatch('create_table_as', 'dbt')(temporary, relation, compiled_code, language) }}\n {% endif %}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__create_table_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5238988, "supported_languages": null}, "macro.dbt.default__create_table_as": {"name": "default__create_table_as", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/create_table_as.sql", "original_file_path": "macros/materializations/models/table/create_table_as.sql", "unique_id": "macro.dbt.default__create_table_as", "macro_sql": "{% macro default__create_table_as(temporary, relation, sql) -%}\n {%- set sql_header = config.get('sql_header', none) -%}\n\n {{ sql_header if sql_header is not none }}\n\n create {% if temporary: -%}temporary{%- endif %} table\n {{ relation.include(database=(not temporary), schema=(not temporary)) }}\n {% set contract_config = config.get('contract') %}\n {% if contract_config.enforced %}\n {{ get_assert_columns_equivalent(sql) }}\n {{ get_table_columns_and_constraints() }}\n {%- set sql = get_select_subquery(sql) %}\n {% endif %}\n as (\n {{ sql }}\n );\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.get_assert_columns_equivalent", "macro.dbt.get_table_columns_and_constraints", "macro.dbt.get_select_subquery"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.524603, "supported_languages": null}, "macro.dbt.default__get_column_names": {"name": "default__get_column_names", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/create_table_as.sql", "original_file_path": "macros/materializations/models/table/create_table_as.sql", "unique_id": "macro.dbt.default__get_column_names", "macro_sql": "{% macro default__get_column_names() %}\n {#- loop through user_provided_columns to get column names -#}\n {%- set user_provided_columns = model['columns'] -%}\n {%- for i in user_provided_columns %}\n {%- set col = user_provided_columns[i] -%}\n {%- set col_name = adapter.quote(col['name']) if col.get('quote') else col['name'] -%}\n {{ col_name }}{{ \", \" if not loop.last }}\n {%- endfor -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5250921, "supported_languages": null}, "macro.dbt.get_select_subquery": {"name": "get_select_subquery", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/create_table_as.sql", "original_file_path": "macros/materializations/models/table/create_table_as.sql", "unique_id": "macro.dbt.get_select_subquery", "macro_sql": "{% macro get_select_subquery(sql) %}\n {{ return(adapter.dispatch('get_select_subquery', 'dbt')(sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_select_subquery"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.525291, "supported_languages": null}, "macro.dbt.default__get_select_subquery": {"name": "default__get_select_subquery", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table/create_table_as.sql", "original_file_path": "macros/materializations/models/table/create_table_as.sql", "unique_id": "macro.dbt.default__get_select_subquery", "macro_sql": "{% macro default__get_select_subquery(sql) %}\n select {{ adapter.dispatch('get_column_names', 'dbt')() }}\n from (\n {{ sql }}\n ) as model_subq\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_column_names"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.525484, "supported_languages": null}, "macro.dbt.materialization_view_default": {"name": "materialization_view_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/view/view.sql", "original_file_path": "macros/materializations/models/view/view.sql", "unique_id": "macro.dbt.materialization_view_default", "macro_sql": "{%- materialization view, default -%}\n\n {%- set existing_relation = load_cached_relation(this) -%}\n {%- set target_relation = this.incorporate(type='view') -%}\n {%- set intermediate_relation = make_intermediate_relation(target_relation) -%}\n\n -- the intermediate_relation should not already exist in the database; get_relation\n -- will return None in that case. Otherwise, we get a relation that we can drop\n -- later, before we try to use this name for the current operation\n {%- set preexisting_intermediate_relation = load_cached_relation(intermediate_relation) -%}\n /*\n This relation (probably) doesn't exist yet. If it does exist, it's a leftover from\n a previous run, and we're going to try to drop it immediately. At the end of this\n materialization, we're going to rename the \"existing_relation\" to this identifier,\n and then we're going to drop it. In order to make sure we run the correct one of:\n - drop view ...\n - drop table ...\n\n We need to set the type of this relation to be the type of the existing_relation, if it exists,\n or else \"view\" as a sane default if it does not. Note that if the existing_relation does not\n exist, then there is nothing to move out of the way and subsequentally drop. In that case,\n this relation will be effectively unused.\n */\n {%- set backup_relation_type = 'view' if existing_relation is none else existing_relation.type -%}\n {%- set backup_relation = make_backup_relation(target_relation, backup_relation_type) -%}\n -- as above, the backup_relation should not already exist\n {%- set preexisting_backup_relation = load_cached_relation(backup_relation) -%}\n -- grab current tables grants config for comparision later on\n {% set grant_config = config.get('grants') %}\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n -- drop the temp relations if they exist already in the database\n {{ drop_relation_if_exists(preexisting_intermediate_relation) }}\n {{ drop_relation_if_exists(preexisting_backup_relation) }}\n\n -- `BEGIN` happens here:\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\n\n -- build model\n {% call statement('main') -%}\n {{ get_create_view_as_sql(intermediate_relation, sql) }}\n {%- endcall %}\n\n -- cleanup\n -- move the existing view out of the way\n {% if existing_relation is not none %}\n {{ adapter.rename_relation(existing_relation, backup_relation) }}\n {% endif %}\n {{ adapter.rename_relation(intermediate_relation, target_relation) }}\n\n {% set should_revoke = should_revoke(existing_relation, full_refresh_mode=True) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n {{ run_hooks(post_hooks, inside_transaction=True) }}\n\n {{ adapter.commit() }}\n\n {{ drop_relation_if_exists(backup_relation) }}\n\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{%- endmaterialization -%}", "depends_on": {"macros": ["macro.dbt.load_cached_relation", "macro.dbt.make_intermediate_relation", "macro.dbt.make_backup_relation", "macro.dbt.run_hooks", "macro.dbt.drop_relation_if_exists", "macro.dbt.statement", "macro.dbt.get_create_view_as_sql", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.528194, "supported_languages": ["sql"]}, "macro.dbt.handle_existing_table": {"name": "handle_existing_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/view/helpers.sql", "original_file_path": "macros/materializations/models/view/helpers.sql", "unique_id": "macro.dbt.handle_existing_table", "macro_sql": "{% macro handle_existing_table(full_refresh, old_relation) %}\n {{ adapter.dispatch('handle_existing_table', 'dbt')(full_refresh, old_relation) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__handle_existing_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.52862, "supported_languages": null}, "macro.dbt.default__handle_existing_table": {"name": "default__handle_existing_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/view/helpers.sql", "original_file_path": "macros/materializations/models/view/helpers.sql", "unique_id": "macro.dbt.default__handle_existing_table", "macro_sql": "{% macro default__handle_existing_table(full_refresh, old_relation) %}\n {{ log(\"Dropping relation \" ~ old_relation ~ \" because it is of type \" ~ old_relation.type) }}\n {{ adapter.drop_relation(old_relation) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.528916, "supported_languages": null}, "macro.dbt.create_or_replace_view": {"name": "create_or_replace_view", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/view/create_or_replace_view.sql", "original_file_path": "macros/materializations/models/view/create_or_replace_view.sql", "unique_id": "macro.dbt.create_or_replace_view", "macro_sql": "{% macro create_or_replace_view() %}\n {%- set identifier = model['alias'] -%}\n\n {%- set old_relation = adapter.get_relation(database=database, schema=schema, identifier=identifier) -%}\n {%- set exists_as_view = (old_relation is not none and old_relation.is_view) -%}\n\n {%- set target_relation = api.Relation.create(\n identifier=identifier, schema=schema, database=database,\n type='view') -%}\n {% set grant_config = config.get('grants') %}\n\n {{ run_hooks(pre_hooks) }}\n\n -- If there's a table with the same name and we weren't told to full refresh,\n -- that's an error. If we were told to full refresh, drop it. This behavior differs\n -- for Snowflake and BigQuery, so multiple dispatch is used.\n {%- if old_relation is not none and old_relation.is_table -%}\n {{ handle_existing_table(should_full_refresh(), old_relation) }}\n {%- endif -%}\n\n -- build model\n {% call statement('main') -%}\n {{ get_create_view_as_sql(target_relation, sql) }}\n {%- endcall %}\n\n {% set should_revoke = should_revoke(exists_as_view, full_refresh_mode=True) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {{ run_hooks(post_hooks) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_hooks", "macro.dbt.handle_existing_table", "macro.dbt.should_full_refresh", "macro.dbt.statement", "macro.dbt.get_create_view_as_sql", "macro.dbt.should_revoke", "macro.dbt.apply_grants"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.530544, "supported_languages": null}, "macro.dbt.get_create_view_as_sql": {"name": "get_create_view_as_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/view/create_view_as.sql", "original_file_path": "macros/materializations/models/view/create_view_as.sql", "unique_id": "macro.dbt.get_create_view_as_sql", "macro_sql": "{% macro get_create_view_as_sql(relation, sql) -%}\n {{ adapter.dispatch('get_create_view_as_sql', 'dbt')(relation, sql) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_create_view_as_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.531008, "supported_languages": null}, "macro.dbt.default__get_create_view_as_sql": {"name": "default__get_create_view_as_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/view/create_view_as.sql", "original_file_path": "macros/materializations/models/view/create_view_as.sql", "unique_id": "macro.dbt.default__get_create_view_as_sql", "macro_sql": "{% macro default__get_create_view_as_sql(relation, sql) -%}\n {{ return(create_view_as(relation, sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.create_view_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.531188, "supported_languages": null}, "macro.dbt.create_view_as": {"name": "create_view_as", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/view/create_view_as.sql", "original_file_path": "macros/materializations/models/view/create_view_as.sql", "unique_id": "macro.dbt.create_view_as", "macro_sql": "{% macro create_view_as(relation, sql) -%}\n {{ adapter.dispatch('create_view_as', 'dbt')(relation, sql) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__create_view_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.531381, "supported_languages": null}, "macro.dbt.default__create_view_as": {"name": "default__create_view_as", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/view/create_view_as.sql", "original_file_path": "macros/materializations/models/view/create_view_as.sql", "unique_id": "macro.dbt.default__create_view_as", "macro_sql": "{% macro default__create_view_as(relation, sql) -%}\n {%- set sql_header = config.get('sql_header', none) -%}\n\n {{ sql_header if sql_header is not none }}\n create view {{ relation }}\n {% set contract_config = config.get('contract') %}\n {% if contract_config.enforced %}\n {{ get_assert_columns_equivalent(sql) }}\n {%- endif %}\n as (\n {{ sql }}\n );\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.get_assert_columns_equivalent"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.531831, "supported_languages": null}, "macro.dbt.materialization_seed_default": {"name": "materialization_seed_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/seed.sql", "original_file_path": "macros/materializations/seeds/seed.sql", "unique_id": "macro.dbt.materialization_seed_default", "macro_sql": "{% materialization seed, default %}\n\n {%- set identifier = model['alias'] -%}\n {%- set full_refresh_mode = (should_full_refresh()) -%}\n\n {%- set old_relation = adapter.get_relation(database=database, schema=schema, identifier=identifier) -%}\n\n {%- set exists_as_table = (old_relation is not none and old_relation.is_table) -%}\n {%- set exists_as_view = (old_relation is not none and old_relation.is_view) -%}\n\n {%- set grant_config = config.get('grants') -%}\n {%- set agate_table = load_agate_table() -%}\n -- grab current tables grants config for comparision later on\n\n {%- do store_result('agate_table', response='OK', agate_table=agate_table) -%}\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n -- `BEGIN` happens here:\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\n\n -- build model\n {% set create_table_sql = \"\" %}\n {% if exists_as_view %}\n {{ exceptions.raise_compiler_error(\"Cannot seed to '{}', it is a view\".format(old_relation)) }}\n {% elif exists_as_table %}\n {% set create_table_sql = reset_csv_table(model, full_refresh_mode, old_relation, agate_table) %}\n {% else %}\n {% set create_table_sql = create_csv_table(model, agate_table) %}\n {% endif %}\n\n {% set code = 'CREATE' if full_refresh_mode else 'INSERT' %}\n {% set rows_affected = (agate_table.rows | length) %}\n {% set sql = load_csv_rows(model, agate_table) %}\n\n {% call noop_statement('main', code ~ ' ' ~ rows_affected, code, rows_affected) %}\n {{ get_csv_sql(create_table_sql, sql) }};\n {% endcall %}\n\n {% set target_relation = this.incorporate(type='table') %}\n\n {% set should_revoke = should_revoke(old_relation, full_refresh_mode) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n {% if full_refresh_mode or not exists_as_table %}\n {% do create_indexes(target_relation) %}\n {% endif %}\n\n {{ run_hooks(post_hooks, inside_transaction=True) }}\n\n -- `COMMIT` happens here\n {{ adapter.commit() }}\n\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{% endmaterialization %}", "depends_on": {"macros": ["macro.dbt.should_full_refresh", "macro.dbt.run_hooks", "macro.dbt.reset_csv_table", "macro.dbt.create_csv_table", "macro.dbt.load_csv_rows", "macro.dbt.noop_statement", "macro.dbt.get_csv_sql", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs", "macro.dbt.create_indexes"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5353448, "supported_languages": ["sql"]}, "macro.dbt.create_csv_table": {"name": "create_csv_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.create_csv_table", "macro_sql": "{% macro create_csv_table(model, agate_table) -%}\n {{ adapter.dispatch('create_csv_table', 'dbt')(model, agate_table) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__create_csv_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.541161, "supported_languages": null}, "macro.dbt.default__create_csv_table": {"name": "default__create_csv_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.default__create_csv_table", "macro_sql": "{% macro default__create_csv_table(model, agate_table) %}\n {%- set column_override = model['config'].get('column_types', {}) -%}\n {%- set quote_seed_column = model['config'].get('quote_columns', None) -%}\n\n {% set sql %}\n create table {{ this.render() }} (\n {%- for col_name in agate_table.column_names -%}\n {%- set inferred_type = adapter.convert_type(agate_table, loop.index0) -%}\n {%- set type = column_override.get(col_name, inferred_type) -%}\n {%- set column_name = (col_name | string) -%}\n {{ adapter.quote_seed_column(column_name, quote_seed_column) }} {{ type }} {%- if not loop.last -%}, {%- endif -%}\n {%- endfor -%}\n )\n {% endset %}\n\n {% call statement('_') -%}\n {{ sql }}\n {%- endcall %}\n\n {{ return(sql) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.542202, "supported_languages": null}, "macro.dbt.reset_csv_table": {"name": "reset_csv_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.reset_csv_table", "macro_sql": "{% macro reset_csv_table(model, full_refresh, old_relation, agate_table) -%}\n {{ adapter.dispatch('reset_csv_table', 'dbt')(model, full_refresh, old_relation, agate_table) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__reset_csv_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.542481, "supported_languages": null}, "macro.dbt.default__reset_csv_table": {"name": "default__reset_csv_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.default__reset_csv_table", "macro_sql": "{% macro default__reset_csv_table(model, full_refresh, old_relation, agate_table) %}\n {% set sql = \"\" %}\n {% if full_refresh %}\n {{ adapter.drop_relation(old_relation) }}\n {% set sql = create_csv_table(model, agate_table) %}\n {% else %}\n {{ adapter.truncate_relation(old_relation) }}\n {% set sql = \"truncate table \" ~ old_relation %}\n {% endif %}\n\n {{ return(sql) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.create_csv_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.543016, "supported_languages": null}, "macro.dbt.get_csv_sql": {"name": "get_csv_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.get_csv_sql", "macro_sql": "{% macro get_csv_sql(create_or_truncate_sql, insert_sql) %}\n {{ adapter.dispatch('get_csv_sql', 'dbt')(create_or_truncate_sql, insert_sql) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_csv_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.543236, "supported_languages": null}, "macro.dbt.default__get_csv_sql": {"name": "default__get_csv_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.default__get_csv_sql", "macro_sql": "{% macro default__get_csv_sql(create_or_truncate_sql, insert_sql) %}\n {{ create_or_truncate_sql }};\n -- dbt seed --\n {{ insert_sql }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.543387, "supported_languages": null}, "macro.dbt.get_binding_char": {"name": "get_binding_char", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.get_binding_char", "macro_sql": "{% macro get_binding_char() -%}\n {{ adapter.dispatch('get_binding_char', 'dbt')() }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_binding_char"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.543575, "supported_languages": null}, "macro.dbt.default__get_binding_char": {"name": "default__get_binding_char", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.default__get_binding_char", "macro_sql": "{% macro default__get_binding_char() %}\n {{ return('%s') }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.543759, "supported_languages": null}, "macro.dbt.get_batch_size": {"name": "get_batch_size", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.get_batch_size", "macro_sql": "{% macro get_batch_size() -%}\n {{ return(adapter.dispatch('get_batch_size', 'dbt')()) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_batch_size"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.543954, "supported_languages": null}, "macro.dbt.default__get_batch_size": {"name": "default__get_batch_size", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.default__get_batch_size", "macro_sql": "{% macro default__get_batch_size() %}\n {{ return(10000) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.544091, "supported_languages": null}, "macro.dbt.get_seed_column_quoted_csv": {"name": "get_seed_column_quoted_csv", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.get_seed_column_quoted_csv", "macro_sql": "{% macro get_seed_column_quoted_csv(model, column_names) %}\n {%- set quote_seed_column = model['config'].get('quote_columns', None) -%}\n {% set quoted = [] %}\n {% for col in column_names -%}\n {%- do quoted.append(adapter.quote_seed_column(col, quote_seed_column)) -%}\n {%- endfor %}\n\n {%- set dest_cols_csv = quoted | join(', ') -%}\n {{ return(dest_cols_csv) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.544634, "supported_languages": null}, "macro.dbt.load_csv_rows": {"name": "load_csv_rows", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.load_csv_rows", "macro_sql": "{% macro load_csv_rows(model, agate_table) -%}\n {{ adapter.dispatch('load_csv_rows', 'dbt')(model, agate_table) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__load_csv_rows"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.544849, "supported_languages": null}, "macro.dbt.default__load_csv_rows": {"name": "default__load_csv_rows", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.default__load_csv_rows", "macro_sql": "{% macro default__load_csv_rows(model, agate_table) %}\n\n {% set batch_size = get_batch_size() %}\n\n {% set cols_sql = get_seed_column_quoted_csv(model, agate_table.column_names) %}\n {% set bindings = [] %}\n\n {% set statements = [] %}\n\n {% for chunk in agate_table.rows | batch(batch_size) %}\n {% set bindings = [] %}\n\n {% for row in chunk %}\n {% do bindings.extend(row) %}\n {% endfor %}\n\n {% set sql %}\n insert into {{ this.render() }} ({{ cols_sql }}) values\n {% for row in chunk -%}\n ({%- for column in agate_table.column_names -%}\n {{ get_binding_char() }}\n {%- if not loop.last%},{%- endif %}\n {%- endfor -%})\n {%- if not loop.last%},{%- endif %}\n {%- endfor %}\n {% endset %}\n\n {% do adapter.add_query(sql, bindings=bindings, abridge_sql_log=True) %}\n\n {% if loop.index0 == 0 %}\n {% do statements.append(sql) %}\n {% endif %}\n {% endfor %}\n\n {# Return SQL so we can render it out into the compiled files #}\n {{ return(statements[0]) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_batch_size", "macro.dbt.get_seed_column_quoted_csv", "macro.dbt.get_binding_char"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.546311, "supported_languages": null}, "macro.dbt.generate_alias_name": {"name": "generate_alias_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_alias.sql", "original_file_path": "macros/get_custom_name/get_custom_alias.sql", "unique_id": "macro.dbt.generate_alias_name", "macro_sql": "{% macro generate_alias_name(custom_alias_name=none, node=none) -%}\n {% do return(adapter.dispatch('generate_alias_name', 'dbt')(custom_alias_name, node)) %}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__generate_alias_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5468569, "supported_languages": null}, "macro.dbt.default__generate_alias_name": {"name": "default__generate_alias_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_alias.sql", "original_file_path": "macros/get_custom_name/get_custom_alias.sql", "unique_id": "macro.dbt.default__generate_alias_name", "macro_sql": "{% macro default__generate_alias_name(custom_alias_name=none, node=none) -%}\n\n {%- if custom_alias_name -%}\n\n {{ custom_alias_name | trim }}\n\n {%- elif node.version -%}\n\n {{ return(node.name ~ \"_v\" ~ (node.version | replace(\".\", \"_\"))) }}\n\n {%- else -%}\n\n {{ node.name }}\n\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.547284, "supported_languages": null}, "macro.dbt.generate_schema_name": {"name": "generate_schema_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_schema.sql", "original_file_path": "macros/get_custom_name/get_custom_schema.sql", "unique_id": "macro.dbt.generate_schema_name", "macro_sql": "{% macro generate_schema_name(custom_schema_name=none, node=none) -%}\n {{ return(adapter.dispatch('generate_schema_name', 'dbt')(custom_schema_name, node)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__generate_schema_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.547942, "supported_languages": null}, "macro.dbt.default__generate_schema_name": {"name": "default__generate_schema_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_schema.sql", "original_file_path": "macros/get_custom_name/get_custom_schema.sql", "unique_id": "macro.dbt.default__generate_schema_name", "macro_sql": "{% macro default__generate_schema_name(custom_schema_name, node) -%}\n\n {%- set default_schema = target.schema -%}\n {%- if custom_schema_name is none -%}\n\n {{ default_schema }}\n\n {%- else -%}\n\n {{ default_schema }}_{{ custom_schema_name | trim }}\n\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5482361, "supported_languages": null}, "macro.dbt.generate_schema_name_for_env": {"name": "generate_schema_name_for_env", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_schema.sql", "original_file_path": "macros/get_custom_name/get_custom_schema.sql", "unique_id": "macro.dbt.generate_schema_name_for_env", "macro_sql": "{% macro generate_schema_name_for_env(custom_schema_name, node) -%}\n\n {%- set default_schema = target.schema -%}\n {%- if target.name == 'prod' and custom_schema_name is not none -%}\n\n {{ custom_schema_name | trim }}\n\n {%- else -%}\n\n {{ default_schema }}\n\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5485592, "supported_languages": null}, "macro.dbt.generate_database_name": {"name": "generate_database_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_database.sql", "original_file_path": "macros/get_custom_name/get_custom_database.sql", "unique_id": "macro.dbt.generate_database_name", "macro_sql": "{% macro generate_database_name(custom_database_name=none, node=none) -%}\n {% do return(adapter.dispatch('generate_database_name', 'dbt')(custom_database_name, node)) %}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__generate_database_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.549006, "supported_languages": null}, "macro.dbt.default__generate_database_name": {"name": "default__generate_database_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_database.sql", "original_file_path": "macros/get_custom_name/get_custom_database.sql", "unique_id": "macro.dbt.default__generate_database_name", "macro_sql": "{% macro default__generate_database_name(custom_database_name=none, node=none) -%}\n {%- set default_database = target.database -%}\n {%- if custom_database_name is none -%}\n\n {{ default_database }}\n\n {%- else -%}\n\n {{ custom_database_name }}\n\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5493472, "supported_languages": null}, "macro.dbt.default__test_relationships": {"name": "default__test_relationships", "resource_type": "macro", "package_name": "dbt", "path": "macros/generic_test_sql/relationships.sql", "original_file_path": "macros/generic_test_sql/relationships.sql", "unique_id": "macro.dbt.default__test_relationships", "macro_sql": "{% macro default__test_relationships(model, column_name, to, field) %}\n\nwith child as (\n select {{ column_name }} as from_field\n from {{ model }}\n where {{ column_name }} is not null\n),\n\nparent as (\n select {{ field }} as to_field\n from {{ to }}\n)\n\nselect\n from_field\n\nfrom child\nleft join parent\n on child.from_field = parent.to_field\n\nwhere parent.to_field is null\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.549747, "supported_languages": null}, "macro.dbt.default__test_not_null": {"name": "default__test_not_null", "resource_type": "macro", "package_name": "dbt", "path": "macros/generic_test_sql/not_null.sql", "original_file_path": "macros/generic_test_sql/not_null.sql", "unique_id": "macro.dbt.default__test_not_null", "macro_sql": "{% macro default__test_not_null(model, column_name) %}\n\n{% set column_list = '*' if should_store_failures() else column_name %}\n\nselect {{ column_list }}\nfrom {{ model }}\nwhere {{ column_name }} is null\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.should_store_failures"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.550082, "supported_languages": null}, "macro.dbt.default__test_unique": {"name": "default__test_unique", "resource_type": "macro", "package_name": "dbt", "path": "macros/generic_test_sql/unique.sql", "original_file_path": "macros/generic_test_sql/unique.sql", "unique_id": "macro.dbt.default__test_unique", "macro_sql": "{% macro default__test_unique(model, column_name) %}\n\nselect\n {{ column_name }} as unique_field,\n count(*) as n_records\n\nfrom {{ model }}\nwhere {{ column_name }} is not null\ngroup by {{ column_name }}\nhaving count(*) > 1\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5503511, "supported_languages": null}, "macro.dbt.default__test_accepted_values": {"name": "default__test_accepted_values", "resource_type": "macro", "package_name": "dbt", "path": "macros/generic_test_sql/accepted_values.sql", "original_file_path": "macros/generic_test_sql/accepted_values.sql", "unique_id": "macro.dbt.default__test_accepted_values", "macro_sql": "{% macro default__test_accepted_values(model, column_name, values, quote=True) %}\n\nwith all_values as (\n\n select\n {{ column_name }} as value_field,\n count(*) as n_records\n\n from {{ model }}\n group by {{ column_name }}\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n {% for value in values -%}\n {% if quote -%}\n '{{ value }}'\n {%- else -%}\n {{ value }}\n {%- endif -%}\n {%- if not loop.last -%},{%- endif %}\n {%- endfor %}\n)\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.55099, "supported_languages": null}, "macro.dbt.statement": {"name": "statement", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/statement.sql", "original_file_path": "macros/etc/statement.sql", "unique_id": "macro.dbt.statement", "macro_sql": "\n{%- macro statement(name=None, fetch_result=False, auto_begin=True, language='sql') -%}\n {%- if execute: -%}\n {%- set compiled_code = caller() -%}\n\n {%- if name == 'main' -%}\n {{ log('Writing runtime {} for node \"{}\"'.format(language, model['unique_id'])) }}\n {{ write(compiled_code) }}\n {%- endif -%}\n {%- if language == 'sql'-%}\n {%- set res, table = adapter.execute(compiled_code, auto_begin=auto_begin, fetch=fetch_result) -%}\n {%- elif language == 'python' -%}\n {%- set res = submit_python_job(model, compiled_code) -%}\n {#-- TODO: What should table be for python models? --#}\n {%- set table = None -%}\n {%- else -%}\n {% do exceptions.raise_compiler_error(\"statement macro didn't get supported language\") %}\n {%- endif -%}\n\n {%- if name is not none -%}\n {{ store_result(name, response=res, agate_table=table) }}\n {%- endif -%}\n\n {%- endif -%}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.552642, "supported_languages": null}, "macro.dbt.noop_statement": {"name": "noop_statement", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/statement.sql", "original_file_path": "macros/etc/statement.sql", "unique_id": "macro.dbt.noop_statement", "macro_sql": "{% macro noop_statement(name=None, message=None, code=None, rows_affected=None, res=None) -%}\n {%- set sql = caller() -%}\n\n {%- if name == 'main' -%}\n {{ log('Writing runtime SQL for node \"{}\"'.format(model['unique_id'])) }}\n {{ write(sql) }}\n {%- endif -%}\n\n {%- if name is not none -%}\n {{ store_raw_result(name, message=message, code=code, rows_affected=rows_affected, agate_table=res) }}\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5533938, "supported_languages": null}, "macro.dbt.run_query": {"name": "run_query", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/statement.sql", "original_file_path": "macros/etc/statement.sql", "unique_id": "macro.dbt.run_query", "macro_sql": "{% macro run_query(sql) %}\n {% call statement(\"run_query_statement\", fetch_result=true, auto_begin=false) %}\n {{ sql }}\n {% endcall %}\n\n {% do return(load_result(\"run_query_statement\").table) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.553899, "supported_languages": null}, "macro.dbt.convert_datetime": {"name": "convert_datetime", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/datetime.sql", "original_file_path": "macros/etc/datetime.sql", "unique_id": "macro.dbt.convert_datetime", "macro_sql": "{% macro convert_datetime(date_str, date_fmt) %}\n\n {% set error_msg -%}\n The provided partition date '{{ date_str }}' does not match the expected format '{{ date_fmt }}'\n {%- endset %}\n\n {% set res = try_or_compiler_error(error_msg, modules.datetime.datetime.strptime, date_str.strip(), date_fmt) %}\n {{ return(res) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.556206, "supported_languages": null}, "macro.dbt.dates_in_range": {"name": "dates_in_range", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/datetime.sql", "original_file_path": "macros/etc/datetime.sql", "unique_id": "macro.dbt.dates_in_range", "macro_sql": "{% macro dates_in_range(start_date_str, end_date_str=none, in_fmt=\"%Y%m%d\", out_fmt=\"%Y%m%d\") %}\n {% set end_date_str = start_date_str if end_date_str is none else end_date_str %}\n\n {% set start_date = convert_datetime(start_date_str, in_fmt) %}\n {% set end_date = convert_datetime(end_date_str, in_fmt) %}\n\n {% set day_count = (end_date - start_date).days %}\n {% if day_count < 0 %}\n {% set msg -%}\n Partiton start date is after the end date ({{ start_date }}, {{ end_date }})\n {%- endset %}\n\n {{ exceptions.raise_compiler_error(msg, model) }}\n {% endif %}\n\n {% set date_list = [] %}\n {% for i in range(0, day_count + 1) %}\n {% set the_date = (modules.datetime.timedelta(days=i) + start_date) %}\n {% if not out_fmt %}\n {% set _ = date_list.append(the_date) %}\n {% else %}\n {% set _ = date_list.append(the_date.strftime(out_fmt)) %}\n {% endif %}\n {% endfor %}\n\n {{ return(date_list) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.convert_datetime"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.557587, "supported_languages": null}, "macro.dbt.partition_range": {"name": "partition_range", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/datetime.sql", "original_file_path": "macros/etc/datetime.sql", "unique_id": "macro.dbt.partition_range", "macro_sql": "{% macro partition_range(raw_partition_date, date_fmt='%Y%m%d') %}\n {% set partition_range = (raw_partition_date | string).split(\",\") %}\n\n {% if (partition_range | length) == 1 %}\n {% set start_date = partition_range[0] %}\n {% set end_date = none %}\n {% elif (partition_range | length) == 2 %}\n {% set start_date = partition_range[0] %}\n {% set end_date = partition_range[1] %}\n {% else %}\n {{ exceptions.raise_compiler_error(\"Invalid partition time. Expected format: {Start Date}[,{End Date}]. Got: \" ~ raw_partition_date) }}\n {% endif %}\n\n {{ return(dates_in_range(start_date, end_date, in_fmt=date_fmt)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.dates_in_range"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.558455, "supported_languages": null}, "macro.dbt.py_current_timestring": {"name": "py_current_timestring", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/datetime.sql", "original_file_path": "macros/etc/datetime.sql", "unique_id": "macro.dbt.py_current_timestring", "macro_sql": "{% macro py_current_timestring() %}\n {% set dt = modules.datetime.datetime.now() %}\n {% do return(dt.strftime(\"%Y%m%d%H%M%S%f\")) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.558733, "supported_languages": null}, "macro.dbt.except": {"name": "except", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/except.sql", "original_file_path": "macros/utils/except.sql", "unique_id": "macro.dbt.except", "macro_sql": "{% macro except() %}\n {{ return(adapter.dispatch('except', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__except"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5590138, "supported_languages": null}, "macro.dbt.default__except": {"name": "default__except", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/except.sql", "original_file_path": "macros/utils/except.sql", "unique_id": "macro.dbt.default__except", "macro_sql": "{% macro default__except() %}\n\n except\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.559102, "supported_languages": null}, "macro.dbt.replace": {"name": "replace", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/replace.sql", "original_file_path": "macros/utils/replace.sql", "unique_id": "macro.dbt.replace", "macro_sql": "{% macro replace(field, old_chars, new_chars) -%}\n {{ return(adapter.dispatch('replace', 'dbt') (field, old_chars, new_chars)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__replace"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.559598, "supported_languages": null}, "macro.dbt.default__replace": {"name": "default__replace", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/replace.sql", "original_file_path": "macros/utils/replace.sql", "unique_id": "macro.dbt.default__replace", "macro_sql": "{% macro default__replace(field, old_chars, new_chars) %}\n\n replace(\n {{ field }},\n {{ old_chars }},\n {{ new_chars }}\n )\n\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.559816, "supported_languages": null}, "macro.dbt.concat": {"name": "concat", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/concat.sql", "original_file_path": "macros/utils/concat.sql", "unique_id": "macro.dbt.concat", "macro_sql": "{% macro concat(fields) -%}\n {{ return(adapter.dispatch('concat', 'dbt')(fields)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__concat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.560124, "supported_languages": null}, "macro.dbt.default__concat": {"name": "default__concat", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/concat.sql", "original_file_path": "macros/utils/concat.sql", "unique_id": "macro.dbt.default__concat", "macro_sql": "{% macro default__concat(fields) -%}\n {{ fields|join(' || ') }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.560374, "supported_languages": null}, "macro.dbt.length": {"name": "length", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/length.sql", "original_file_path": "macros/utils/length.sql", "unique_id": "macro.dbt.length", "macro_sql": "{% macro length(expression) -%}\n {{ return(adapter.dispatch('length', 'dbt') (expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__length"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.560748, "supported_languages": null}, "macro.dbt.default__length": {"name": "default__length", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/length.sql", "original_file_path": "macros/utils/length.sql", "unique_id": "macro.dbt.default__length", "macro_sql": "{% macro default__length(expression) %}\n\n length(\n {{ expression }}\n )\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.560885, "supported_languages": null}, "macro.dbt.dateadd": {"name": "dateadd", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/dateadd.sql", "original_file_path": "macros/utils/dateadd.sql", "unique_id": "macro.dbt.dateadd", "macro_sql": "{% macro dateadd(datepart, interval, from_date_or_timestamp) %}\n {{ return(adapter.dispatch('dateadd', 'dbt')(datepart, interval, from_date_or_timestamp)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.561271, "supported_languages": null}, "macro.dbt.default__dateadd": {"name": "default__dateadd", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/dateadd.sql", "original_file_path": "macros/utils/dateadd.sql", "unique_id": "macro.dbt.default__dateadd", "macro_sql": "{% macro default__dateadd(datepart, interval, from_date_or_timestamp) %}\n\n dateadd(\n {{ datepart }},\n {{ interval }},\n {{ from_date_or_timestamp }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.561455, "supported_languages": null}, "macro.dbt.intersect": {"name": "intersect", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/intersect.sql", "original_file_path": "macros/utils/intersect.sql", "unique_id": "macro.dbt.intersect", "macro_sql": "{% macro intersect() %}\n {{ return(adapter.dispatch('intersect', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__intersect"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5617049, "supported_languages": null}, "macro.dbt.default__intersect": {"name": "default__intersect", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/intersect.sql", "original_file_path": "macros/utils/intersect.sql", "unique_id": "macro.dbt.default__intersect", "macro_sql": "{% macro default__intersect() %}\n\n intersect\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5617878, "supported_languages": null}, "macro.dbt.escape_single_quotes": {"name": "escape_single_quotes", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/escape_single_quotes.sql", "original_file_path": "macros/utils/escape_single_quotes.sql", "unique_id": "macro.dbt.escape_single_quotes", "macro_sql": "{% macro escape_single_quotes(expression) %}\n {{ return(adapter.dispatch('escape_single_quotes', 'dbt') (expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__escape_single_quotes"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5620658, "supported_languages": null}, "macro.dbt.default__escape_single_quotes": {"name": "default__escape_single_quotes", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/escape_single_quotes.sql", "original_file_path": "macros/utils/escape_single_quotes.sql", "unique_id": "macro.dbt.default__escape_single_quotes", "macro_sql": "{% macro default__escape_single_quotes(expression) -%}\n{{ expression | replace(\"'\",\"''\") }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.562219, "supported_languages": null}, "macro.dbt.right": {"name": "right", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/right.sql", "original_file_path": "macros/utils/right.sql", "unique_id": "macro.dbt.right", "macro_sql": "{% macro right(string_text, length_expression) -%}\n {{ return(adapter.dispatch('right', 'dbt') (string_text, length_expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__right"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.562528, "supported_languages": null}, "macro.dbt.default__right": {"name": "default__right", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/right.sql", "original_file_path": "macros/utils/right.sql", "unique_id": "macro.dbt.default__right", "macro_sql": "{% macro default__right(string_text, length_expression) %}\n\n right(\n {{ string_text }},\n {{ length_expression }}\n )\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5627599, "supported_languages": null}, "macro.dbt.listagg": {"name": "listagg", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/listagg.sql", "original_file_path": "macros/utils/listagg.sql", "unique_id": "macro.dbt.listagg", "macro_sql": "{% macro listagg(measure, delimiter_text=\"','\", order_by_clause=none, limit_num=none) -%}\n {{ return(adapter.dispatch('listagg', 'dbt') (measure, delimiter_text, order_by_clause, limit_num)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__listagg"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.563436, "supported_languages": null}, "macro.dbt.default__listagg": {"name": "default__listagg", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/listagg.sql", "original_file_path": "macros/utils/listagg.sql", "unique_id": "macro.dbt.default__listagg", "macro_sql": "{% macro default__listagg(measure, delimiter_text, order_by_clause, limit_num) -%}\n\n {% if limit_num -%}\n array_to_string(\n array_slice(\n array_agg(\n {{ measure }}\n ){% if order_by_clause -%}\n within group ({{ order_by_clause }})\n {%- endif %}\n ,0\n ,{{ limit_num }}\n ),\n {{ delimiter_text }}\n )\n {%- else %}\n listagg(\n {{ measure }},\n {{ delimiter_text }}\n )\n {% if order_by_clause -%}\n within group ({{ order_by_clause }})\n {%- endif %}\n {%- endif %}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.563864, "supported_languages": null}, "macro.dbt.datediff": {"name": "datediff", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/datediff.sql", "original_file_path": "macros/utils/datediff.sql", "unique_id": "macro.dbt.datediff", "macro_sql": "{% macro datediff(first_date, second_date, datepart) %}\n {{ return(adapter.dispatch('datediff', 'dbt')(first_date, second_date, datepart)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__datediff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.56422, "supported_languages": null}, "macro.dbt.default__datediff": {"name": "default__datediff", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/datediff.sql", "original_file_path": "macros/utils/datediff.sql", "unique_id": "macro.dbt.default__datediff", "macro_sql": "{% macro default__datediff(first_date, second_date, datepart) -%}\n\n datediff(\n {{ datepart }},\n {{ first_date }},\n {{ second_date }}\n )\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5643961, "supported_languages": null}, "macro.dbt.safe_cast": {"name": "safe_cast", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/safe_cast.sql", "original_file_path": "macros/utils/safe_cast.sql", "unique_id": "macro.dbt.safe_cast", "macro_sql": "{% macro safe_cast(field, type) %}\n {{ return(adapter.dispatch('safe_cast', 'dbt') (field, type)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__safe_cast"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.564694, "supported_languages": null}, "macro.dbt.default__safe_cast": {"name": "default__safe_cast", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/safe_cast.sql", "original_file_path": "macros/utils/safe_cast.sql", "unique_id": "macro.dbt.default__safe_cast", "macro_sql": "{% macro default__safe_cast(field, type) %}\n {# most databases don't support this function yet\n so we just need to use cast #}\n cast({{field}} as {{type}})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.564842, "supported_languages": null}, "macro.dbt.hash": {"name": "hash", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/hash.sql", "original_file_path": "macros/utils/hash.sql", "unique_id": "macro.dbt.hash", "macro_sql": "{% macro hash(field) -%}\n {{ return(adapter.dispatch('hash', 'dbt') (field)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__hash"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.565111, "supported_languages": null}, "macro.dbt.default__hash": {"name": "default__hash", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/hash.sql", "original_file_path": "macros/utils/hash.sql", "unique_id": "macro.dbt.default__hash", "macro_sql": "{% macro default__hash(field) -%}\n md5(cast({{ field }} as {{ api.Column.translate_type('string') }}))\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.565281, "supported_languages": null}, "macro.dbt.cast_bool_to_text": {"name": "cast_bool_to_text", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/cast_bool_to_text.sql", "original_file_path": "macros/utils/cast_bool_to_text.sql", "unique_id": "macro.dbt.cast_bool_to_text", "macro_sql": "{% macro cast_bool_to_text(field) %}\n {{ adapter.dispatch('cast_bool_to_text', 'dbt') (field) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__cast_bool_to_text"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.565537, "supported_languages": null}, "macro.dbt.default__cast_bool_to_text": {"name": "default__cast_bool_to_text", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/cast_bool_to_text.sql", "original_file_path": "macros/utils/cast_bool_to_text.sql", "unique_id": "macro.dbt.default__cast_bool_to_text", "macro_sql": "{% macro default__cast_bool_to_text(field) %}\n cast({{ field }} as {{ api.Column.translate_type('string') }})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5657039, "supported_languages": null}, "macro.dbt.any_value": {"name": "any_value", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/any_value.sql", "original_file_path": "macros/utils/any_value.sql", "unique_id": "macro.dbt.any_value", "macro_sql": "{% macro any_value(expression) -%}\n {{ return(adapter.dispatch('any_value', 'dbt') (expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__any_value"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.565962, "supported_languages": null}, "macro.dbt.default__any_value": {"name": "default__any_value", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/any_value.sql", "original_file_path": "macros/utils/any_value.sql", "unique_id": "macro.dbt.default__any_value", "macro_sql": "{% macro default__any_value(expression) -%}\n\n any_value({{ expression }})\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5660732, "supported_languages": null}, "macro.dbt.position": {"name": "position", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/position.sql", "original_file_path": "macros/utils/position.sql", "unique_id": "macro.dbt.position", "macro_sql": "{% macro position(substring_text, string_text) -%}\n {{ return(adapter.dispatch('position', 'dbt') (substring_text, string_text)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__position"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.566376, "supported_languages": null}, "macro.dbt.default__position": {"name": "default__position", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/position.sql", "original_file_path": "macros/utils/position.sql", "unique_id": "macro.dbt.default__position", "macro_sql": "{% macro default__position(substring_text, string_text) %}\n\n position(\n {{ substring_text }} in {{ string_text }}\n )\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5665238, "supported_languages": null}, "macro.dbt.string_literal": {"name": "string_literal", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/literal.sql", "original_file_path": "macros/utils/literal.sql", "unique_id": "macro.dbt.string_literal", "macro_sql": "{%- macro string_literal(value) -%}\n {{ return(adapter.dispatch('string_literal', 'dbt') (value)) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__string_literal"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.566781, "supported_languages": null}, "macro.dbt.default__string_literal": {"name": "default__string_literal", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/literal.sql", "original_file_path": "macros/utils/literal.sql", "unique_id": "macro.dbt.default__string_literal", "macro_sql": "{% macro default__string_literal(value) -%}\n '{{ value }}'\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.566891, "supported_languages": null}, "macro.dbt.type_string": {"name": "type_string", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_string", "macro_sql": "\n\n{%- macro type_string() -%}\n {{ return(adapter.dispatch('type_string', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5678568, "supported_languages": null}, "macro.dbt.default__type_string": {"name": "default__type_string", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_string", "macro_sql": "{% macro default__type_string() %}\n {{ return(api.Column.translate_type(\"string\")) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.568021, "supported_languages": null}, "macro.dbt.type_timestamp": {"name": "type_timestamp", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_timestamp", "macro_sql": "\n\n{%- macro type_timestamp() -%}\n {{ return(adapter.dispatch('type_timestamp', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.568259, "supported_languages": null}, "macro.dbt.default__type_timestamp": {"name": "default__type_timestamp", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_timestamp", "macro_sql": "{% macro default__type_timestamp() %}\n {{ return(api.Column.translate_type(\"timestamp\")) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.568418, "supported_languages": null}, "macro.dbt.type_float": {"name": "type_float", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_float", "macro_sql": "\n\n{%- macro type_float() -%}\n {{ return(adapter.dispatch('type_float', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_float"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5685902, "supported_languages": null}, "macro.dbt.default__type_float": {"name": "default__type_float", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_float", "macro_sql": "{% macro default__type_float() %}\n {{ return(api.Column.translate_type(\"float\")) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5687559, "supported_languages": null}, "macro.dbt.type_numeric": {"name": "type_numeric", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_numeric", "macro_sql": "\n\n{%- macro type_numeric() -%}\n {{ return(adapter.dispatch('type_numeric', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_numeric"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5689301, "supported_languages": null}, "macro.dbt.default__type_numeric": {"name": "default__type_numeric", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_numeric", "macro_sql": "{% macro default__type_numeric() %}\n {{ return(api.Column.numeric_type(\"numeric\", 28, 6)) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.569119, "supported_languages": null}, "macro.dbt.type_bigint": {"name": "type_bigint", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_bigint", "macro_sql": "\n\n{%- macro type_bigint() -%}\n {{ return(adapter.dispatch('type_bigint', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_bigint"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.56937, "supported_languages": null}, "macro.dbt.default__type_bigint": {"name": "default__type_bigint", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_bigint", "macro_sql": "{% macro default__type_bigint() %}\n {{ return(api.Column.translate_type(\"bigint\")) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.56967, "supported_languages": null}, "macro.dbt.type_int": {"name": "type_int", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_int", "macro_sql": "\n\n{%- macro type_int() -%}\n {{ return(adapter.dispatch('type_int', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_int"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5698712, "supported_languages": null}, "macro.dbt.default__type_int": {"name": "default__type_int", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_int", "macro_sql": "{%- macro default__type_int() -%}\n {{ return(api.Column.translate_type(\"integer\")) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5700321, "supported_languages": null}, "macro.dbt.type_boolean": {"name": "type_boolean", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_boolean", "macro_sql": "\n\n{%- macro type_boolean() -%}\n {{ return(adapter.dispatch('type_boolean', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_boolean"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5702028, "supported_languages": null}, "macro.dbt.default__type_boolean": {"name": "default__type_boolean", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_boolean", "macro_sql": "{%- macro default__type_boolean() -%}\n {{ return(api.Column.translate_type(\"boolean\")) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.570368, "supported_languages": null}, "macro.dbt.array_concat": {"name": "array_concat", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/array_concat.sql", "original_file_path": "macros/utils/array_concat.sql", "unique_id": "macro.dbt.array_concat", "macro_sql": "{% macro array_concat(array_1, array_2) -%}\n {{ return(adapter.dispatch('array_concat', 'dbt')(array_1, array_2)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__array_concat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.570668, "supported_languages": null}, "macro.dbt.default__array_concat": {"name": "default__array_concat", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/array_concat.sql", "original_file_path": "macros/utils/array_concat.sql", "unique_id": "macro.dbt.default__array_concat", "macro_sql": "{% macro default__array_concat(array_1, array_2) -%}\n array_cat({{ array_1 }}, {{ array_2 }})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.570812, "supported_languages": null}, "macro.dbt.bool_or": {"name": "bool_or", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/bool_or.sql", "original_file_path": "macros/utils/bool_or.sql", "unique_id": "macro.dbt.bool_or", "macro_sql": "{% macro bool_or(expression) -%}\n {{ return(adapter.dispatch('bool_or', 'dbt') (expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__bool_or"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.571084, "supported_languages": null}, "macro.dbt.default__bool_or": {"name": "default__bool_or", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/bool_or.sql", "original_file_path": "macros/utils/bool_or.sql", "unique_id": "macro.dbt.default__bool_or", "macro_sql": "{% macro default__bool_or(expression) -%}\n\n bool_or({{ expression }})\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5711958, "supported_languages": null}, "macro.dbt.last_day": {"name": "last_day", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/last_day.sql", "original_file_path": "macros/utils/last_day.sql", "unique_id": "macro.dbt.last_day", "macro_sql": "{% macro last_day(date, datepart) %}\n {{ return(adapter.dispatch('last_day', 'dbt') (date, datepart)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__last_day"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.571554, "supported_languages": null}, "macro.dbt.default_last_day": {"name": "default_last_day", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/last_day.sql", "original_file_path": "macros/utils/last_day.sql", "unique_id": "macro.dbt.default_last_day", "macro_sql": "\n\n{%- macro default_last_day(date, datepart) -%}\n cast(\n {{dbt.dateadd('day', '-1',\n dbt.dateadd(datepart, '1', dbt.date_trunc(datepart, date))\n )}}\n as date)\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.dateadd", "macro.dbt.date_trunc"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5718489, "supported_languages": null}, "macro.dbt.default__last_day": {"name": "default__last_day", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/last_day.sql", "original_file_path": "macros/utils/last_day.sql", "unique_id": "macro.dbt.default__last_day", "macro_sql": "{% macro default__last_day(date, datepart) -%}\n {{dbt.default_last_day(date, datepart)}}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default_last_day"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.572011, "supported_languages": null}, "macro.dbt.split_part": {"name": "split_part", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/split_part.sql", "original_file_path": "macros/utils/split_part.sql", "unique_id": "macro.dbt.split_part", "macro_sql": "{% macro split_part(string_text, delimiter_text, part_number) %}\n {{ return(adapter.dispatch('split_part', 'dbt') (string_text, delimiter_text, part_number)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__split_part"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.572582, "supported_languages": null}, "macro.dbt.default__split_part": {"name": "default__split_part", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/split_part.sql", "original_file_path": "macros/utils/split_part.sql", "unique_id": "macro.dbt.default__split_part", "macro_sql": "{% macro default__split_part(string_text, delimiter_text, part_number) %}\n\n split_part(\n {{ string_text }},\n {{ delimiter_text }},\n {{ part_number }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.572772, "supported_languages": null}, "macro.dbt._split_part_negative": {"name": "_split_part_negative", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/split_part.sql", "original_file_path": "macros/utils/split_part.sql", "unique_id": "macro.dbt._split_part_negative", "macro_sql": "{% macro _split_part_negative(string_text, delimiter_text, part_number) %}\n\n split_part(\n {{ string_text }},\n {{ delimiter_text }},\n length({{ string_text }})\n - length(\n replace({{ string_text }}, {{ delimiter_text }}, '')\n ) + 2 {{ part_number }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.573098, "supported_languages": null}, "macro.dbt.date_trunc": {"name": "date_trunc", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/date_trunc.sql", "original_file_path": "macros/utils/date_trunc.sql", "unique_id": "macro.dbt.date_trunc", "macro_sql": "{% macro date_trunc(datepart, date) -%}\n {{ return(adapter.dispatch('date_trunc', 'dbt') (datepart, date)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__date_trunc"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.573398, "supported_languages": null}, "macro.dbt.default__date_trunc": {"name": "default__date_trunc", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/date_trunc.sql", "original_file_path": "macros/utils/date_trunc.sql", "unique_id": "macro.dbt.default__date_trunc", "macro_sql": "{% macro default__date_trunc(datepart, date) -%}\n date_trunc('{{datepart}}', {{date}})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.573538, "supported_languages": null}, "macro.dbt.array_construct": {"name": "array_construct", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/array_construct.sql", "original_file_path": "macros/utils/array_construct.sql", "unique_id": "macro.dbt.array_construct", "macro_sql": "{% macro array_construct(inputs=[], data_type=api.Column.translate_type('integer')) -%}\n {{ return(adapter.dispatch('array_construct', 'dbt')(inputs, data_type)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__array_construct"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.573944, "supported_languages": null}, "macro.dbt.default__array_construct": {"name": "default__array_construct", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/array_construct.sql", "original_file_path": "macros/utils/array_construct.sql", "unique_id": "macro.dbt.default__array_construct", "macro_sql": "{% macro default__array_construct(inputs, data_type) -%}\n {% if inputs|length > 0 %}\n array[ {{ inputs|join(' , ') }} ]\n {% else %}\n array[]::{{data_type}}[]\n {% endif %}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.574212, "supported_languages": null}, "macro.dbt.array_append": {"name": "array_append", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/array_append.sql", "original_file_path": "macros/utils/array_append.sql", "unique_id": "macro.dbt.array_append", "macro_sql": "{% macro array_append(array, new_element) -%}\n {{ return(adapter.dispatch('array_append', 'dbt')(array, new_element)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__array_append"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.574516, "supported_languages": null}, "macro.dbt.default__array_append": {"name": "default__array_append", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/array_append.sql", "original_file_path": "macros/utils/array_append.sql", "unique_id": "macro.dbt.default__array_append", "macro_sql": "{% macro default__array_append(array, new_element) -%}\n array_append({{ array }}, {{ new_element }})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.574661, "supported_languages": null}, "macro.dbt.create_schema": {"name": "create_schema", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/schema.sql", "original_file_path": "macros/adapters/schema.sql", "unique_id": "macro.dbt.create_schema", "macro_sql": "{% macro create_schema(relation) -%}\n {{ adapter.dispatch('create_schema', 'dbt')(relation) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__create_schema"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.575069, "supported_languages": null}, "macro.dbt.default__create_schema": {"name": "default__create_schema", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/schema.sql", "original_file_path": "macros/adapters/schema.sql", "unique_id": "macro.dbt.default__create_schema", "macro_sql": "{% macro default__create_schema(relation) -%}\n {%- call statement('create_schema') -%}\n create schema if not exists {{ relation.without_identifier() }}\n {% endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.575267, "supported_languages": null}, "macro.dbt.drop_schema": {"name": "drop_schema", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/schema.sql", "original_file_path": "macros/adapters/schema.sql", "unique_id": "macro.dbt.drop_schema", "macro_sql": "{% macro drop_schema(relation) -%}\n {{ adapter.dispatch('drop_schema', 'dbt')(relation) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__drop_schema"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5754461, "supported_languages": null}, "macro.dbt.default__drop_schema": {"name": "default__drop_schema", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/schema.sql", "original_file_path": "macros/adapters/schema.sql", "unique_id": "macro.dbt.default__drop_schema", "macro_sql": "{% macro default__drop_schema(relation) -%}\n {%- call statement('drop_schema') -%}\n drop schema if exists {{ relation.without_identifier() }} cascade\n {% endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5756428, "supported_languages": null}, "macro.dbt.current_timestamp": {"name": "current_timestamp", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.current_timestamp", "macro_sql": "{%- macro current_timestamp() -%}\n {{ adapter.dispatch('current_timestamp', 'dbt')() }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_postgres.postgres__current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.576166, "supported_languages": null}, "macro.dbt.default__current_timestamp": {"name": "default__current_timestamp", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.default__current_timestamp", "macro_sql": "{% macro default__current_timestamp() -%}\n {{ exceptions.raise_not_implemented(\n 'current_timestamp macro not implemented for adapter ' + adapter.type()) }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.576329, "supported_languages": null}, "macro.dbt.snapshot_get_time": {"name": "snapshot_get_time", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.snapshot_get_time", "macro_sql": "\n\n{%- macro snapshot_get_time() -%}\n {{ adapter.dispatch('snapshot_get_time', 'dbt')() }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_postgres.postgres__snapshot_get_time"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.576482, "supported_languages": null}, "macro.dbt.default__snapshot_get_time": {"name": "default__snapshot_get_time", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.default__snapshot_get_time", "macro_sql": "{% macro default__snapshot_get_time() %}\n {{ current_timestamp() }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.576598, "supported_languages": null}, "macro.dbt.current_timestamp_backcompat": {"name": "current_timestamp_backcompat", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.current_timestamp_backcompat", "macro_sql": "{% macro current_timestamp_backcompat() %}\n {{ return(adapter.dispatch('current_timestamp_backcompat', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__current_timestamp_backcompat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.576789, "supported_languages": null}, "macro.dbt.default__current_timestamp_backcompat": {"name": "default__current_timestamp_backcompat", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.default__current_timestamp_backcompat", "macro_sql": "{% macro default__current_timestamp_backcompat() %}\n current_timestamp::timestamp\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.576871, "supported_languages": null}, "macro.dbt.current_timestamp_in_utc_backcompat": {"name": "current_timestamp_in_utc_backcompat", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.current_timestamp_in_utc_backcompat", "macro_sql": "{% macro current_timestamp_in_utc_backcompat() %}\n {{ return(adapter.dispatch('current_timestamp_in_utc_backcompat', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__current_timestamp_in_utc_backcompat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.577049, "supported_languages": null}, "macro.dbt.default__current_timestamp_in_utc_backcompat": {"name": "default__current_timestamp_in_utc_backcompat", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.default__current_timestamp_in_utc_backcompat", "macro_sql": "{% macro default__current_timestamp_in_utc_backcompat() %}\n {{ return(adapter.dispatch('current_timestamp_backcompat', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.current_timestamp_backcompat", "macro.dbt_postgres.postgres__current_timestamp_backcompat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.577228, "supported_languages": null}, "macro.dbt.get_create_index_sql": {"name": "get_create_index_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "unique_id": "macro.dbt.get_create_index_sql", "macro_sql": "{% macro get_create_index_sql(relation, index_dict) -%}\n {{ return(adapter.dispatch('get_create_index_sql', 'dbt')(relation, index_dict)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_create_index_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.577735, "supported_languages": null}, "macro.dbt.default__get_create_index_sql": {"name": "default__get_create_index_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "unique_id": "macro.dbt.default__get_create_index_sql", "macro_sql": "{% macro default__get_create_index_sql(relation, index_dict) -%}\n {% do return(None) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.577955, "supported_languages": null}, "macro.dbt.create_indexes": {"name": "create_indexes", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "unique_id": "macro.dbt.create_indexes", "macro_sql": "{% macro create_indexes(relation) -%}\n {{ adapter.dispatch('create_indexes', 'dbt')(relation) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__create_indexes"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.57813, "supported_languages": null}, "macro.dbt.default__create_indexes": {"name": "default__create_indexes", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "unique_id": "macro.dbt.default__create_indexes", "macro_sql": "{% macro default__create_indexes(relation) -%}\n {%- set _indexes = config.get('indexes', default=[]) -%}\n\n {% for _index_dict in _indexes %}\n {% set create_index_sql = get_create_index_sql(relation, _index_dict) %}\n {% if create_index_sql %}\n {% do run_query(create_index_sql) %}\n {% endif %}\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_create_index_sql", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.578567, "supported_languages": null}, "macro.dbt.make_intermediate_relation": {"name": "make_intermediate_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.make_intermediate_relation", "macro_sql": "{% macro make_intermediate_relation(base_relation, suffix='__dbt_tmp') %}\n {{ return(adapter.dispatch('make_intermediate_relation', 'dbt')(base_relation, suffix)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__make_intermediate_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.58254, "supported_languages": null}, "macro.dbt.default__make_intermediate_relation": {"name": "default__make_intermediate_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__make_intermediate_relation", "macro_sql": "{% macro default__make_intermediate_relation(base_relation, suffix) %}\n {{ return(default__make_temp_relation(base_relation, suffix)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__make_temp_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5827441, "supported_languages": null}, "macro.dbt.make_temp_relation": {"name": "make_temp_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.make_temp_relation", "macro_sql": "{% macro make_temp_relation(base_relation, suffix='__dbt_tmp') %}\n {{ return(adapter.dispatch('make_temp_relation', 'dbt')(base_relation, suffix)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__make_temp_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.583002, "supported_languages": null}, "macro.dbt.default__make_temp_relation": {"name": "default__make_temp_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__make_temp_relation", "macro_sql": "{% macro default__make_temp_relation(base_relation, suffix) %}\n {%- set temp_identifier = base_relation.identifier ~ suffix -%}\n {%- set temp_relation = base_relation.incorporate(\n path={\"identifier\": temp_identifier}) -%}\n\n {{ return(temp_relation) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.583334, "supported_languages": null}, "macro.dbt.make_backup_relation": {"name": "make_backup_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.make_backup_relation", "macro_sql": "{% macro make_backup_relation(base_relation, backup_relation_type, suffix='__dbt_backup') %}\n {{ return(adapter.dispatch('make_backup_relation', 'dbt')(base_relation, backup_relation_type, suffix)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__make_backup_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.583612, "supported_languages": null}, "macro.dbt.default__make_backup_relation": {"name": "default__make_backup_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__make_backup_relation", "macro_sql": "{% macro default__make_backup_relation(base_relation, backup_relation_type, suffix) %}\n {%- set backup_identifier = base_relation.identifier ~ suffix -%}\n {%- set backup_relation = base_relation.incorporate(\n path={\"identifier\": backup_identifier},\n type=backup_relation_type\n ) -%}\n {{ return(backup_relation) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.58397, "supported_languages": null}, "macro.dbt.drop_relation": {"name": "drop_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.drop_relation", "macro_sql": "{% macro drop_relation(relation) -%}\n {{ return(adapter.dispatch('drop_relation', 'dbt')(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__drop_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5841742, "supported_languages": null}, "macro.dbt.default__drop_relation": {"name": "default__drop_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__drop_relation", "macro_sql": "{% macro default__drop_relation(relation) -%}\n {% call statement('drop_relation', auto_begin=False) -%}\n drop {{ relation.type }} if exists {{ relation }} cascade\n {%- endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5844102, "supported_languages": null}, "macro.dbt.truncate_relation": {"name": "truncate_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.truncate_relation", "macro_sql": "{% macro truncate_relation(relation) -%}\n {{ return(adapter.dispatch('truncate_relation', 'dbt')(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__truncate_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.584609, "supported_languages": null}, "macro.dbt.default__truncate_relation": {"name": "default__truncate_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__truncate_relation", "macro_sql": "{% macro default__truncate_relation(relation) -%}\n {% call statement('truncate_relation') -%}\n truncate table {{ relation }}\n {%- endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.58479, "supported_languages": null}, "macro.dbt.rename_relation": {"name": "rename_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.rename_relation", "macro_sql": "{% macro rename_relation(from_relation, to_relation) -%}\n {{ return(adapter.dispatch('rename_relation', 'dbt')(from_relation, to_relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__rename_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.585011, "supported_languages": null}, "macro.dbt.default__rename_relation": {"name": "default__rename_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__rename_relation", "macro_sql": "{% macro default__rename_relation(from_relation, to_relation) -%}\n {% set target_name = adapter.quote_as_configured(to_relation.identifier, 'identifier') %}\n {% call statement('rename_relation') -%}\n alter table {{ from_relation }} rename to {{ target_name }}\n {%- endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.585325, "supported_languages": null}, "macro.dbt.get_or_create_relation": {"name": "get_or_create_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.get_or_create_relation", "macro_sql": "{% macro get_or_create_relation(database, schema, identifier, type) -%}\n {{ return(adapter.dispatch('get_or_create_relation', 'dbt')(database, schema, identifier, type)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_or_create_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.585877, "supported_languages": null}, "macro.dbt.default__get_or_create_relation": {"name": "default__get_or_create_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__get_or_create_relation", "macro_sql": "{% macro default__get_or_create_relation(database, schema, identifier, type) %}\n {%- set target_relation = adapter.get_relation(database=database, schema=schema, identifier=identifier) %}\n\n {% if target_relation %}\n {% do return([true, target_relation]) %}\n {% endif %}\n\n {%- set new_relation = api.Relation.create(\n database=database,\n schema=schema,\n identifier=identifier,\n type=type\n ) -%}\n {% do return([false, new_relation]) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5866141, "supported_languages": null}, "macro.dbt.load_cached_relation": {"name": "load_cached_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.load_cached_relation", "macro_sql": "{% macro load_cached_relation(relation) %}\n {% do return(adapter.get_relation(\n database=relation.database,\n schema=relation.schema,\n identifier=relation.identifier\n )) -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.587491, "supported_languages": null}, "macro.dbt.load_relation": {"name": "load_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.load_relation", "macro_sql": "{% macro load_relation(relation) %}\n {{ return(load_cached_relation(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.load_cached_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.587664, "supported_languages": null}, "macro.dbt.drop_relation_if_exists": {"name": "drop_relation_if_exists", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.drop_relation_if_exists", "macro_sql": "{% macro drop_relation_if_exists(relation) %}\n {% if relation is not none %}\n {{ adapter.drop_relation(relation) }}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.588535, "supported_languages": null}, "macro.dbt.collect_freshness": {"name": "collect_freshness", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/freshness.sql", "original_file_path": "macros/adapters/freshness.sql", "unique_id": "macro.dbt.collect_freshness", "macro_sql": "{% macro collect_freshness(source, loaded_at_field, filter) %}\n {{ return(adapter.dispatch('collect_freshness', 'dbt')(source, loaded_at_field, filter))}}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__collect_freshness"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.589063, "supported_languages": null}, "macro.dbt.default__collect_freshness": {"name": "default__collect_freshness", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/freshness.sql", "original_file_path": "macros/adapters/freshness.sql", "unique_id": "macro.dbt.default__collect_freshness", "macro_sql": "{% macro default__collect_freshness(source, loaded_at_field, filter) %}\n {% call statement('collect_freshness', fetch_result=True, auto_begin=False) -%}\n select\n max({{ loaded_at_field }}) as max_loaded_at,\n {{ current_timestamp() }} as snapshotted_at\n from {{ source }}\n {% if filter %}\n where {{ filter }}\n {% endif %}\n {% endcall %}\n {{ return(load_result('collect_freshness')) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt.current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5895271, "supported_languages": null}, "macro.dbt.copy_grants": {"name": "copy_grants", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.copy_grants", "macro_sql": "{% macro copy_grants() %}\n {{ return(adapter.dispatch('copy_grants', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__copy_grants"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.591527, "supported_languages": null}, "macro.dbt.default__copy_grants": {"name": "default__copy_grants", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__copy_grants", "macro_sql": "{% macro default__copy_grants() %}\n {{ return(True) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.591668, "supported_languages": null}, "macro.dbt.support_multiple_grantees_per_dcl_statement": {"name": "support_multiple_grantees_per_dcl_statement", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.support_multiple_grantees_per_dcl_statement", "macro_sql": "{% macro support_multiple_grantees_per_dcl_statement() %}\n {{ return(adapter.dispatch('support_multiple_grantees_per_dcl_statement', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__support_multiple_grantees_per_dcl_statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.591854, "supported_languages": null}, "macro.dbt.default__support_multiple_grantees_per_dcl_statement": {"name": "default__support_multiple_grantees_per_dcl_statement", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__support_multiple_grantees_per_dcl_statement", "macro_sql": "\n\n{%- macro default__support_multiple_grantees_per_dcl_statement() -%}\n {{ return(True) }}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5919812, "supported_languages": null}, "macro.dbt.should_revoke": {"name": "should_revoke", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.should_revoke", "macro_sql": "{% macro should_revoke(existing_relation, full_refresh_mode=True) %}\n\n {% if not existing_relation %}\n {#-- The table doesn't already exist, so no grants to copy over --#}\n {{ return(False) }}\n {% elif full_refresh_mode %}\n {#-- The object is being REPLACED -- whether grants are copied over depends on the value of user config --#}\n {{ return(copy_grants()) }}\n {% else %}\n {#-- The table is being merged/upserted/inserted -- grants will be carried over --#}\n {{ return(True) }}\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.copy_grants"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5923772, "supported_languages": null}, "macro.dbt.get_show_grant_sql": {"name": "get_show_grant_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.get_show_grant_sql", "macro_sql": "{% macro get_show_grant_sql(relation) %}\n {{ return(adapter.dispatch(\"get_show_grant_sql\", \"dbt\")(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_show_grant_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.592583, "supported_languages": null}, "macro.dbt.default__get_show_grant_sql": {"name": "default__get_show_grant_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__get_show_grant_sql", "macro_sql": "{% macro default__get_show_grant_sql(relation) %}\n show grants on {{ relation }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5927, "supported_languages": null}, "macro.dbt.get_grant_sql": {"name": "get_grant_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.get_grant_sql", "macro_sql": "{% macro get_grant_sql(relation, privilege, grantees) %}\n {{ return(adapter.dispatch('get_grant_sql', 'dbt')(relation, privilege, grantees)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_grant_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.592952, "supported_languages": null}, "macro.dbt.default__get_grant_sql": {"name": "default__get_grant_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__get_grant_sql", "macro_sql": "\n\n{%- macro default__get_grant_sql(relation, privilege, grantees) -%}\n grant {{ privilege }} on {{ relation }} to {{ grantees | join(', ') }}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.593163, "supported_languages": null}, "macro.dbt.get_revoke_sql": {"name": "get_revoke_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.get_revoke_sql", "macro_sql": "{% macro get_revoke_sql(relation, privilege, grantees) %}\n {{ return(adapter.dispatch('get_revoke_sql', 'dbt')(relation, privilege, grantees)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_revoke_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.593415, "supported_languages": null}, "macro.dbt.default__get_revoke_sql": {"name": "default__get_revoke_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__get_revoke_sql", "macro_sql": "\n\n{%- macro default__get_revoke_sql(relation, privilege, grantees) -%}\n revoke {{ privilege }} on {{ relation }} from {{ grantees | join(', ') }}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.593621, "supported_languages": null}, "macro.dbt.get_dcl_statement_list": {"name": "get_dcl_statement_list", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.get_dcl_statement_list", "macro_sql": "{% macro get_dcl_statement_list(relation, grant_config, get_dcl_macro) %}\n {{ return(adapter.dispatch('get_dcl_statement_list', 'dbt')(relation, grant_config, get_dcl_macro)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_dcl_statement_list"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5938728, "supported_languages": null}, "macro.dbt.default__get_dcl_statement_list": {"name": "default__get_dcl_statement_list", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__get_dcl_statement_list", "macro_sql": "\n\n{%- macro default__get_dcl_statement_list(relation, grant_config, get_dcl_macro) -%}\n {#\n -- Unpack grant_config into specific privileges and the set of users who need them granted/revoked.\n -- Depending on whether this database supports multiple grantees per statement, pass in the list of\n -- all grantees per privilege, or (if not) template one statement per privilege-grantee pair.\n -- `get_dcl_macro` will be either `get_grant_sql` or `get_revoke_sql`\n #}\n {%- set dcl_statements = [] -%}\n {%- for privilege, grantees in grant_config.items() %}\n {%- if support_multiple_grantees_per_dcl_statement() and grantees -%}\n {%- set dcl = get_dcl_macro(relation, privilege, grantees) -%}\n {%- do dcl_statements.append(dcl) -%}\n {%- else -%}\n {%- for grantee in grantees -%}\n {% set dcl = get_dcl_macro(relation, privilege, [grantee]) %}\n {%- do dcl_statements.append(dcl) -%}\n {% endfor -%}\n {%- endif -%}\n {%- endfor -%}\n {{ return(dcl_statements) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.support_multiple_grantees_per_dcl_statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5947158, "supported_languages": null}, "macro.dbt.call_dcl_statements": {"name": "call_dcl_statements", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.call_dcl_statements", "macro_sql": "{% macro call_dcl_statements(dcl_statement_list) %}\n {{ return(adapter.dispatch(\"call_dcl_statements\", \"dbt\")(dcl_statement_list)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__call_dcl_statements"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.594931, "supported_languages": null}, "macro.dbt.default__call_dcl_statements": {"name": "default__call_dcl_statements", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__call_dcl_statements", "macro_sql": "{% macro default__call_dcl_statements(dcl_statement_list) %}\n {#\n -- By default, supply all grant + revoke statements in a single semicolon-separated block,\n -- so that they're all processed together.\n\n -- Some databases do not support this. Those adapters will need to override this macro\n -- to run each statement individually.\n #}\n {% call statement('grants') %}\n {% for dcl_statement in dcl_statement_list %}\n {{ dcl_statement }};\n {% endfor %}\n {% endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5951989, "supported_languages": null}, "macro.dbt.apply_grants": {"name": "apply_grants", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.apply_grants", "macro_sql": "{% macro apply_grants(relation, grant_config, should_revoke) %}\n {{ return(adapter.dispatch(\"apply_grants\", \"dbt\")(relation, grant_config, should_revoke)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__apply_grants"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5954502, "supported_languages": null}, "macro.dbt.default__apply_grants": {"name": "default__apply_grants", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__apply_grants", "macro_sql": "{% macro default__apply_grants(relation, grant_config, should_revoke=True) %}\n {#-- If grant_config is {} or None, this is a no-op --#}\n {% if grant_config %}\n {% if should_revoke %}\n {#-- We think previous grants may have carried over --#}\n {#-- Show current grants and calculate diffs --#}\n {% set current_grants_table = run_query(get_show_grant_sql(relation)) %}\n {% set current_grants_dict = adapter.standardize_grants_dict(current_grants_table) %}\n {% set needs_granting = diff_of_two_dicts(grant_config, current_grants_dict) %}\n {% set needs_revoking = diff_of_two_dicts(current_grants_dict, grant_config) %}\n {% if not (needs_granting or needs_revoking) %}\n {{ log('On ' ~ relation ~': All grants are in place, no revocation or granting needed.')}}\n {% endif %}\n {% else %}\n {#-- We don't think there's any chance of previous grants having carried over. --#}\n {#-- Jump straight to granting what the user has configured. --#}\n {% set needs_revoking = {} %}\n {% set needs_granting = grant_config %}\n {% endif %}\n {% if needs_granting or needs_revoking %}\n {% set revoke_statement_list = get_dcl_statement_list(relation, needs_revoking, get_revoke_sql) %}\n {% set grant_statement_list = get_dcl_statement_list(relation, needs_granting, get_grant_sql) %}\n {% set dcl_statement_list = revoke_statement_list + grant_statement_list %}\n {% if dcl_statement_list %}\n {{ call_dcl_statements(dcl_statement_list) }}\n {% endif %}\n {% endif %}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query", "macro.dbt.get_show_grant_sql", "macro.dbt.get_dcl_statement_list", "macro.dbt.call_dcl_statements"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.596811, "supported_languages": null}, "macro.dbt.alter_column_comment": {"name": "alter_column_comment", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "unique_id": "macro.dbt.alter_column_comment", "macro_sql": "{% macro alter_column_comment(relation, column_dict) -%}\n {{ return(adapter.dispatch('alter_column_comment', 'dbt')(relation, column_dict)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__alter_column_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.597617, "supported_languages": null}, "macro.dbt.default__alter_column_comment": {"name": "default__alter_column_comment", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "unique_id": "macro.dbt.default__alter_column_comment", "macro_sql": "{% macro default__alter_column_comment(relation, column_dict) -%}\n {{ exceptions.raise_not_implemented(\n 'alter_column_comment macro not implemented for adapter '+adapter.type()) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.597805, "supported_languages": null}, "macro.dbt.alter_relation_comment": {"name": "alter_relation_comment", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "unique_id": "macro.dbt.alter_relation_comment", "macro_sql": "{% macro alter_relation_comment(relation, relation_comment) -%}\n {{ return(adapter.dispatch('alter_relation_comment', 'dbt')(relation, relation_comment)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__alter_relation_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.598024, "supported_languages": null}, "macro.dbt.default__alter_relation_comment": {"name": "default__alter_relation_comment", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "unique_id": "macro.dbt.default__alter_relation_comment", "macro_sql": "{% macro default__alter_relation_comment(relation, relation_comment) -%}\n {{ exceptions.raise_not_implemented(\n 'alter_relation_comment macro not implemented for adapter '+adapter.type()) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.598211, "supported_languages": null}, "macro.dbt.persist_docs": {"name": "persist_docs", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "unique_id": "macro.dbt.persist_docs", "macro_sql": "{% macro persist_docs(relation, model, for_relation=true, for_columns=true) -%}\n {{ return(adapter.dispatch('persist_docs', 'dbt')(relation, model, for_relation, for_columns)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__persist_docs"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.5985122, "supported_languages": null}, "macro.dbt.default__persist_docs": {"name": "default__persist_docs", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "unique_id": "macro.dbt.default__persist_docs", "macro_sql": "{% macro default__persist_docs(relation, model, for_relation, for_columns) -%}\n {% if for_relation and config.persist_relation_docs() and model.description %}\n {% do run_query(alter_relation_comment(relation, model.description)) %}\n {% endif %}\n\n {% if for_columns and config.persist_column_docs() and model.columns %}\n {% do run_query(alter_column_comment(relation, model.columns)) %}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query", "macro.dbt.alter_relation_comment", "macro.dbt.alter_column_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.599045, "supported_languages": null}, "macro.dbt.get_catalog": {"name": "get_catalog", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.get_catalog", "macro_sql": "{% macro get_catalog(information_schema, schemas) -%}\n {{ return(adapter.dispatch('get_catalog', 'dbt')(information_schema, schemas)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_catalog"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.600692, "supported_languages": null}, "macro.dbt.default__get_catalog": {"name": "default__get_catalog", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__get_catalog", "macro_sql": "{% macro default__get_catalog(information_schema, schemas) -%}\n\n {% set typename = adapter.type() %}\n {% set msg -%}\n get_catalog not implemented for {{ typename }}\n {%- endset %}\n\n {{ exceptions.raise_compiler_error(msg) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.600976, "supported_languages": null}, "macro.dbt.information_schema_name": {"name": "information_schema_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.information_schema_name", "macro_sql": "{% macro information_schema_name(database) %}\n {{ return(adapter.dispatch('information_schema_name', 'dbt')(database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__information_schema_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.601174, "supported_languages": null}, "macro.dbt.default__information_schema_name": {"name": "default__information_schema_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__information_schema_name", "macro_sql": "{% macro default__information_schema_name(database) -%}\n {%- if database -%}\n {{ database }}.INFORMATION_SCHEMA\n {%- else -%}\n INFORMATION_SCHEMA\n {%- endif -%}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.601344, "supported_languages": null}, "macro.dbt.list_schemas": {"name": "list_schemas", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.list_schemas", "macro_sql": "{% macro list_schemas(database) -%}\n {{ return(adapter.dispatch('list_schemas', 'dbt')(database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__list_schemas"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.601602, "supported_languages": null}, "macro.dbt.default__list_schemas": {"name": "default__list_schemas", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__list_schemas", "macro_sql": "{% macro default__list_schemas(database) -%}\n {% set sql %}\n select distinct schema_name\n from {{ information_schema_name(database) }}.SCHEMATA\n where catalog_name ilike '{{ database }}'\n {% endset %}\n {{ return(run_query(sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.information_schema_name", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.601897, "supported_languages": null}, "macro.dbt.check_schema_exists": {"name": "check_schema_exists", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.check_schema_exists", "macro_sql": "{% macro check_schema_exists(information_schema, schema) -%}\n {{ return(adapter.dispatch('check_schema_exists', 'dbt')(information_schema, schema)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__check_schema_exists"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6021361, "supported_languages": null}, "macro.dbt.default__check_schema_exists": {"name": "default__check_schema_exists", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__check_schema_exists", "macro_sql": "{% macro default__check_schema_exists(information_schema, schema) -%}\n {% set sql -%}\n select count(*)\n from {{ information_schema.replace(information_schema_view='SCHEMATA') }}\n where catalog_name='{{ information_schema.database }}'\n and schema_name='{{ schema }}'\n {%- endset %}\n {{ return(run_query(sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.replace", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.602485, "supported_languages": null}, "macro.dbt.list_relations_without_caching": {"name": "list_relations_without_caching", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.list_relations_without_caching", "macro_sql": "{% macro list_relations_without_caching(schema_relation) %}\n {{ return(adapter.dispatch('list_relations_without_caching', 'dbt')(schema_relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__list_relations_without_caching"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.602697, "supported_languages": null}, "macro.dbt.default__list_relations_without_caching": {"name": "default__list_relations_without_caching", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__list_relations_without_caching", "macro_sql": "{% macro default__list_relations_without_caching(schema_relation) %}\n {{ exceptions.raise_not_implemented(\n 'list_relations_without_caching macro not implemented for adapter '+adapter.type()) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.602876, "supported_languages": null}, "macro.dbt.get_columns_in_relation": {"name": "get_columns_in_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.get_columns_in_relation", "macro_sql": "{% macro get_columns_in_relation(relation) -%}\n {{ return(adapter.dispatch('get_columns_in_relation', 'dbt')(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_columns_in_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.605401, "supported_languages": null}, "macro.dbt.default__get_columns_in_relation": {"name": "default__get_columns_in_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.default__get_columns_in_relation", "macro_sql": "{% macro default__get_columns_in_relation(relation) -%}\n {{ exceptions.raise_not_implemented(\n 'get_columns_in_relation macro not implemented for adapter '+adapter.type()) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.605699, "supported_languages": null}, "macro.dbt.sql_convert_columns_in_relation": {"name": "sql_convert_columns_in_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.sql_convert_columns_in_relation", "macro_sql": "{% macro sql_convert_columns_in_relation(table) -%}\n {% set columns = [] %}\n {% for row in table %}\n {% do columns.append(api.Column(*row)) %}\n {% endfor %}\n {{ return(columns) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.606056, "supported_languages": null}, "macro.dbt.get_empty_subquery_sql": {"name": "get_empty_subquery_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.get_empty_subquery_sql", "macro_sql": "{% macro get_empty_subquery_sql(select_sql, select_sql_header=none) -%}\n {{ return(adapter.dispatch('get_empty_subquery_sql', 'dbt')(select_sql, select_sql_header)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_empty_subquery_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.606303, "supported_languages": null}, "macro.dbt.default__get_empty_subquery_sql": {"name": "default__get_empty_subquery_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.default__get_empty_subquery_sql", "macro_sql": "{% macro default__get_empty_subquery_sql(select_sql, select_sql_header=none) %}\n {%- if select_sql_header is not none -%}\n {{ select_sql_header }}\n {%- endif -%}\n select * from (\n {{ select_sql }}\n ) as __dbt_sbq\n where false\n limit 0\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.606532, "supported_languages": null}, "macro.dbt.get_empty_schema_sql": {"name": "get_empty_schema_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.get_empty_schema_sql", "macro_sql": "{% macro get_empty_schema_sql(columns) -%}\n {{ return(adapter.dispatch('get_empty_schema_sql', 'dbt')(columns)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_empty_schema_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.606735, "supported_languages": null}, "macro.dbt.default__get_empty_schema_sql": {"name": "default__get_empty_schema_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.default__get_empty_schema_sql", "macro_sql": "{% macro default__get_empty_schema_sql(columns) %}\n {%- set col_err = [] -%}\n select\n {% for i in columns %}\n {%- set col = columns[i] -%}\n {%- if col['data_type'] is not defined -%}\n {{ col_err.append(col['name']) }}\n {%- endif -%}\n {% set col_name = adapter.quote(col['name']) if col.get('quote') else col['name'] %}\n cast(null as {{ col['data_type'] }}) as {{ col_name }}{{ \", \" if not loop.last }}\n {%- endfor -%}\n {%- if (col_err | length) > 0 -%}\n {{ exceptions.column_type_missing(column_names=col_err) }}\n {%- endif -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.607587, "supported_languages": null}, "macro.dbt.get_column_schema_from_query": {"name": "get_column_schema_from_query", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.get_column_schema_from_query", "macro_sql": "{% macro get_column_schema_from_query(select_sql, select_sql_header=none) -%}\n {% set columns = [] %}\n {# -- Using an 'empty subquery' here to get the same schema as the given select_sql statement, without necessitating a data scan.#}\n {% set sql = get_empty_subquery_sql(select_sql, select_sql_header) %}\n {% set column_schema = adapter.get_column_schema_from_query(sql) %}\n {{ return(column_schema) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_empty_subquery_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.607971, "supported_languages": null}, "macro.dbt.get_columns_in_query": {"name": "get_columns_in_query", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.get_columns_in_query", "macro_sql": "{% macro get_columns_in_query(select_sql) -%}\n {{ return(adapter.dispatch('get_columns_in_query', 'dbt')(select_sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_columns_in_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6081789, "supported_languages": null}, "macro.dbt.default__get_columns_in_query": {"name": "default__get_columns_in_query", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.default__get_columns_in_query", "macro_sql": "{% macro default__get_columns_in_query(select_sql) %}\n {% call statement('get_columns_in_query', fetch_result=True, auto_begin=False) -%}\n {{ get_empty_subquery_sql(select_sql) }}\n {% endcall %}\n {{ return(load_result('get_columns_in_query').table.columns | map(attribute='name') | list) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt.get_empty_subquery_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.608567, "supported_languages": null}, "macro.dbt.alter_column_type": {"name": "alter_column_type", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.alter_column_type", "macro_sql": "{% macro alter_column_type(relation, column_name, new_column_type) -%}\n {{ return(adapter.dispatch('alter_column_type', 'dbt')(relation, column_name, new_column_type)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__alter_column_type"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6088252, "supported_languages": null}, "macro.dbt.default__alter_column_type": {"name": "default__alter_column_type", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.default__alter_column_type", "macro_sql": "{% macro default__alter_column_type(relation, column_name, new_column_type) -%}\n {#\n 1. Create a new column (w/ temp name and correct type)\n 2. Copy data over to it\n 3. Drop the existing column (cascade!)\n 4. Rename the new column to existing column\n #}\n {%- set tmp_column = column_name + \"__dbt_alter\" -%}\n\n {% call statement('alter_column_type') %}\n alter table {{ relation }} add column {{ adapter.quote(tmp_column) }} {{ new_column_type }};\n update {{ relation }} set {{ adapter.quote(tmp_column) }} = {{ adapter.quote(column_name) }};\n alter table {{ relation }} drop column {{ adapter.quote(column_name) }} cascade;\n alter table {{ relation }} rename column {{ adapter.quote(tmp_column) }} to {{ adapter.quote(column_name) }}\n {% endcall %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.609493, "supported_languages": null}, "macro.dbt.alter_relation_add_remove_columns": {"name": "alter_relation_add_remove_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.alter_relation_add_remove_columns", "macro_sql": "{% macro alter_relation_add_remove_columns(relation, add_columns = none, remove_columns = none) -%}\n {{ return(adapter.dispatch('alter_relation_add_remove_columns', 'dbt')(relation, add_columns, remove_columns)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__alter_relation_add_remove_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.609777, "supported_languages": null}, "macro.dbt.default__alter_relation_add_remove_columns": {"name": "default__alter_relation_add_remove_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.default__alter_relation_add_remove_columns", "macro_sql": "{% macro default__alter_relation_add_remove_columns(relation, add_columns, remove_columns) %}\n\n {% if add_columns is none %}\n {% set add_columns = [] %}\n {% endif %}\n {% if remove_columns is none %}\n {% set remove_columns = [] %}\n {% endif %}\n\n {% set sql -%}\n\n alter {{ relation.type }} {{ relation }}\n\n {% for column in add_columns %}\n add column {{ column.name }} {{ column.data_type }}{{ ',' if not loop.last }}\n {% endfor %}{{ ',' if add_columns and remove_columns }}\n\n {% for column in remove_columns %}\n drop column {{ column.name }}{{ ',' if not loop.last }}\n {% endfor %}\n\n {%- endset -%}\n\n {% do run_query(sql) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.610641, "supported_languages": null}, "macro.dbt.resolve_model_name": {"name": "resolve_model_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.resolve_model_name", "macro_sql": "{% macro resolve_model_name(input_model_name) %}\n {{ return(adapter.dispatch('resolve_model_name', 'dbt')(input_model_name)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__resolve_model_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.612641, "supported_languages": null}, "macro.dbt.default__resolve_model_name": {"name": "default__resolve_model_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.default__resolve_model_name", "macro_sql": "\n\n{%- macro default__resolve_model_name(input_model_name) -%}\n {{ input_model_name | string | replace('\"', '\\\"') }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.612826, "supported_languages": null}, "macro.dbt.build_ref_function": {"name": "build_ref_function", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.build_ref_function", "macro_sql": "{% macro build_ref_function(model) %}\n\n {%- set ref_dict = {} -%}\n {%- for _ref in model.refs -%}\n {% set _ref_args = [_ref.get('package'), _ref['name']] if _ref.get('package') else [_ref['name'],] %}\n {%- set resolved = ref(*_ref_args, v=_ref.get('version')) -%}\n {%- if _ref.get('version') -%}\n {% do _ref_args.extend([\"v\" ~ _ref['version']]) %}\n {%- endif -%}\n {%- do ref_dict.update({_ref_args | join('.'): resolve_model_name(resolved)}) -%}\n {%- endfor -%}\n\ndef ref(*args, **kwargs):\n refs = {{ ref_dict | tojson }}\n key = '.'.join(args)\n version = kwargs.get(\"v\") or kwargs.get(\"version\")\n if version:\n key += f\".v{version}\"\n dbt_load_df_function = kwargs.get(\"dbt_load_df_function\")\n return dbt_load_df_function(refs[key])\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.resolve_model_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.613726, "supported_languages": null}, "macro.dbt.build_source_function": {"name": "build_source_function", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.build_source_function", "macro_sql": "{% macro build_source_function(model) %}\n\n {%- set source_dict = {} -%}\n {%- for _source in model.sources -%}\n {%- set resolved = source(*_source) -%}\n {%- do source_dict.update({_source | join('.'): resolve_model_name(resolved)}) -%}\n {%- endfor -%}\n\ndef source(*args, dbt_load_df_function):\n sources = {{ source_dict | tojson }}\n key = '.'.join(args)\n return dbt_load_df_function(sources[key])\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.resolve_model_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.614283, "supported_languages": null}, "macro.dbt.build_config_dict": {"name": "build_config_dict", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.build_config_dict", "macro_sql": "{% macro build_config_dict(model) %}\n {%- set config_dict = {} -%}\n {% set config_dbt_used = zip(model.config.config_keys_used, model.config.config_keys_defaults) | list %}\n {%- for key, default in config_dbt_used -%}\n {# weird type testing with enum, would be much easier to write this logic in Python! #}\n {%- if key == \"language\" -%}\n {%- set value = \"python\" -%}\n {%- endif -%}\n {%- set value = model.config.get(key, default) -%}\n {%- do config_dict.update({key: value}) -%}\n {%- endfor -%}\nconfig_dict = {{ config_dict }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6149068, "supported_languages": null}, "macro.dbt.py_script_postfix": {"name": "py_script_postfix", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.py_script_postfix", "macro_sql": "{% macro py_script_postfix(model) %}\n# This part is user provided model code\n# you will need to copy the next section to run the code\n# COMMAND ----------\n# this part is dbt logic for get ref work, do not modify\n\n{{ build_ref_function(model ) }}\n{{ build_source_function(model ) }}\n{{ build_config_dict(model) }}\n\nclass config:\n def __init__(self, *args, **kwargs):\n pass\n\n @staticmethod\n def get(key, default=None):\n return config_dict.get(key, default)\n\nclass this:\n \"\"\"dbt.this() or dbt.this.identifier\"\"\"\n database = \"{{ this.database }}\"\n schema = \"{{ this.schema }}\"\n identifier = \"{{ this.identifier }}\"\n {% set this_relation_name = resolve_model_name(this) %}\n def __repr__(self):\n return '{{ this_relation_name }}'\n\n\nclass dbtObj:\n def __init__(self, load_df_function) -> None:\n self.source = lambda *args: source(*args, dbt_load_df_function=load_df_function)\n self.ref = lambda *args, **kwargs: ref(*args, **kwargs, dbt_load_df_function=load_df_function)\n self.config = config\n self.this = this()\n self.is_incremental = {{ is_incremental() }}\n\n# COMMAND ----------\n{{py_script_comment()}}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.build_ref_function", "macro.dbt.build_source_function", "macro.dbt.build_config_dict", "macro.dbt.resolve_model_name", "macro.dbt.is_incremental", "macro.dbt.py_script_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6154408, "supported_languages": null}, "macro.dbt.py_script_comment": {"name": "py_script_comment", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.py_script_comment", "macro_sql": "{%macro py_script_comment()%}\n{%endmacro%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.615524, "supported_languages": null}, "macro.dbt.test_unique": {"name": "test_unique", "resource_type": "macro", "package_name": "dbt", "path": "tests/generic/builtin.sql", "original_file_path": "tests/generic/builtin.sql", "unique_id": "macro.dbt.test_unique", "macro_sql": "{% test unique(model, column_name) %}\n {% set macro = adapter.dispatch('test_unique', 'dbt') %}\n {{ macro(model, column_name) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt.default__test_unique"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.616101, "supported_languages": null}, "macro.dbt.test_not_null": {"name": "test_not_null", "resource_type": "macro", "package_name": "dbt", "path": "tests/generic/builtin.sql", "original_file_path": "tests/generic/builtin.sql", "unique_id": "macro.dbt.test_not_null", "macro_sql": "{% test not_null(model, column_name) %}\n {% set macro = adapter.dispatch('test_not_null', 'dbt') %}\n {{ macro(model, column_name) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt.default__test_not_null"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.616354, "supported_languages": null}, "macro.dbt.test_accepted_values": {"name": "test_accepted_values", "resource_type": "macro", "package_name": "dbt", "path": "tests/generic/builtin.sql", "original_file_path": "tests/generic/builtin.sql", "unique_id": "macro.dbt.test_accepted_values", "macro_sql": "{% test accepted_values(model, column_name, values, quote=True) %}\n {% set macro = adapter.dispatch('test_accepted_values', 'dbt') %}\n {{ macro(model, column_name, values, quote) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt.default__test_accepted_values"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.616672, "supported_languages": null}, "macro.dbt.test_relationships": {"name": "test_relationships", "resource_type": "macro", "package_name": "dbt", "path": "tests/generic/builtin.sql", "original_file_path": "tests/generic/builtin.sql", "unique_id": "macro.dbt.test_relationships", "macro_sql": "{% test relationships(model, column_name, to, field) %}\n {% set macro = adapter.dispatch('test_relationships', 'dbt') %}\n {{ macro(model, column_name, to, field) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt.default__test_relationships"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6169758, "supported_languages": null}, "macro.dbt_utils.get_url_host": {"name": "get_url_host", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/web/get_url_host.sql", "original_file_path": "macros/web/get_url_host.sql", "unique_id": "macro.dbt_utils.get_url_host", "macro_sql": "{% macro get_url_host(field) -%}\n {{ return(adapter.dispatch('get_url_host', 'dbt_utils')(field)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_url_host"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.617381, "supported_languages": null}, "macro.dbt_utils.default__get_url_host": {"name": "default__get_url_host", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/web/get_url_host.sql", "original_file_path": "macros/web/get_url_host.sql", "unique_id": "macro.dbt_utils.default__get_url_host", "macro_sql": "{% macro default__get_url_host(field) -%}\n\n{%- set parsed =\n dbt.split_part(\n dbt.split_part(\n dbt.replace(\n dbt.replace(\n dbt.replace(field, \"'android-app://'\", \"''\"\n ), \"'http://'\", \"''\"\n ), \"'https://'\", \"''\"\n ), \"'/'\", 1\n ), \"'?'\", 1\n )\n\n-%}\n\n\n {{ dbt.safe_cast(\n parsed,\n dbt.type_string()\n )}}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.split_part", "macro.dbt.replace", "macro.dbt.safe_cast", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.617911, "supported_languages": null}, "macro.dbt_utils.get_url_path": {"name": "get_url_path", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/web/get_url_path.sql", "original_file_path": "macros/web/get_url_path.sql", "unique_id": "macro.dbt_utils.get_url_path", "macro_sql": "{% macro get_url_path(field) -%}\n {{ return(adapter.dispatch('get_url_path', 'dbt_utils')(field)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_url_path"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.618444, "supported_languages": null}, "macro.dbt_utils.default__get_url_path": {"name": "default__get_url_path", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/web/get_url_path.sql", "original_file_path": "macros/web/get_url_path.sql", "unique_id": "macro.dbt_utils.default__get_url_path", "macro_sql": "{% macro default__get_url_path(field) -%}\n\n {%- set stripped_url =\n dbt.replace(\n dbt.replace(field, \"'http://'\", \"''\"), \"'https://'\", \"''\")\n -%}\n\n {%- set first_slash_pos -%}\n coalesce(\n nullif({{ dbt.position(\"'/'\", stripped_url) }}, 0),\n {{ dbt.position(\"'?'\", stripped_url) }} - 1\n )\n {%- endset -%}\n\n {%- set parsed_path =\n dbt.split_part(\n dbt.right(\n stripped_url,\n dbt.length(stripped_url) ~ \"-\" ~ first_slash_pos\n ),\n \"'?'\", 1\n )\n -%}\n\n {{ dbt.safe_cast(\n parsed_path,\n dbt.type_string()\n )}}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.replace", "macro.dbt.position", "macro.dbt.split_part", "macro.dbt.right", "macro.dbt.length", "macro.dbt.safe_cast", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6191628, "supported_languages": null}, "macro.dbt_utils.get_url_parameter": {"name": "get_url_parameter", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/web/get_url_parameter.sql", "original_file_path": "macros/web/get_url_parameter.sql", "unique_id": "macro.dbt_utils.get_url_parameter", "macro_sql": "{% macro get_url_parameter(field, url_parameter) -%}\n {{ return(adapter.dispatch('get_url_parameter', 'dbt_utils')(field, url_parameter)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_url_parameter"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6195111, "supported_languages": null}, "macro.dbt_utils.default__get_url_parameter": {"name": "default__get_url_parameter", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/web/get_url_parameter.sql", "original_file_path": "macros/web/get_url_parameter.sql", "unique_id": "macro.dbt_utils.default__get_url_parameter", "macro_sql": "{% macro default__get_url_parameter(field, url_parameter) -%}\n\n{%- set formatted_url_parameter = \"'\" + url_parameter + \"='\" -%}\n\n{%- set split = dbt.split_part(dbt.split_part(field, formatted_url_parameter, 2), \"'&'\", 1) -%}\n\nnullif({{ split }},'')\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.split_part"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.619862, "supported_languages": null}, "macro.dbt_utils.test_fewer_rows_than": {"name": "test_fewer_rows_than", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/fewer_rows_than.sql", "original_file_path": "macros/generic_tests/fewer_rows_than.sql", "unique_id": "macro.dbt_utils.test_fewer_rows_than", "macro_sql": "{% test fewer_rows_than(model, compare_model, group_by_columns = []) %}\n {{ return(adapter.dispatch('test_fewer_rows_than', 'dbt_utils')(model, compare_model, group_by_columns)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_fewer_rows_than"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.621042, "supported_languages": null}, "macro.dbt_utils.default__test_fewer_rows_than": {"name": "default__test_fewer_rows_than", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/fewer_rows_than.sql", "original_file_path": "macros/generic_tests/fewer_rows_than.sql", "unique_id": "macro.dbt_utils.default__test_fewer_rows_than", "macro_sql": "{% macro default__test_fewer_rows_than(model, compare_model, group_by_columns) %}\n\n{{ config(fail_calc = 'sum(coalesce(row_count_delta, 0))') }}\n\n{% if group_by_columns|length() > 0 %}\n {% set select_gb_cols = group_by_columns|join(' ,') + ', ' %}\n {% set join_gb_cols %}\n {% for c in group_by_columns %}\n and a.{{c}} = b.{{c}}\n {% endfor %}\n {% endset %}\n {% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n{% endif %}\n\n{#-- We must add a fake join key in case additional grouping variables are not provided --#}\n{#-- Redshift does not allow for dynamically created join conditions (e.g. full join on 1 = 1 --#}\n{#-- The same logic is used in equal_rowcount. In case of changes, maintain consistent logic --#}\n{% set group_by_columns = ['id_dbtutils_test_fewer_rows_than'] + group_by_columns %}\n{% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n\n\nwith a as (\n\n select \n {{select_gb_cols}}\n 1 as id_dbtutils_test_fewer_rows_than,\n count(*) as count_our_model \n from {{ model }}\n {{ groupby_gb_cols }}\n\n),\nb as (\n\n select \n {{select_gb_cols}}\n 1 as id_dbtutils_test_fewer_rows_than,\n count(*) as count_comparison_model \n from {{ compare_model }}\n {{ groupby_gb_cols }}\n\n),\ncounts as (\n\n select\n\n {% for c in group_by_columns -%}\n a.{{c}} as {{c}}_a,\n b.{{c}} as {{c}}_b,\n {% endfor %}\n\n count_our_model,\n count_comparison_model\n from a\n full join b on \n a.id_dbtutils_test_fewer_rows_than = b.id_dbtutils_test_fewer_rows_than\n {{ join_gb_cols }}\n\n),\nfinal as (\n\n select *,\n case\n -- fail the test if we have more rows than the reference model and return the row count delta\n when count_our_model > count_comparison_model then (count_our_model - count_comparison_model)\n -- fail the test if they are the same number\n when count_our_model = count_comparison_model then 1\n -- pass the test if the delta is positive (i.e. return the number 0)\n else 0\n end as row_count_delta\n from counts\n\n)\n\nselect * from final\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.622338, "supported_languages": null}, "macro.dbt_utils.test_equal_rowcount": {"name": "test_equal_rowcount", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/equal_rowcount.sql", "original_file_path": "macros/generic_tests/equal_rowcount.sql", "unique_id": "macro.dbt_utils.test_equal_rowcount", "macro_sql": "{% test equal_rowcount(model, compare_model, group_by_columns = []) %}\n {{ return(adapter.dispatch('test_equal_rowcount', 'dbt_utils')(model, compare_model, group_by_columns)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_equal_rowcount"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6233542, "supported_languages": null}, "macro.dbt_utils.default__test_equal_rowcount": {"name": "default__test_equal_rowcount", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/equal_rowcount.sql", "original_file_path": "macros/generic_tests/equal_rowcount.sql", "unique_id": "macro.dbt_utils.default__test_equal_rowcount", "macro_sql": "{% macro default__test_equal_rowcount(model, compare_model, group_by_columns) %}\n\n{#-- Needs to be set at parse time, before we return '' below --#}\n{{ config(fail_calc = 'sum(coalesce(diff_count, 0))') }}\n\n{#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. #}\n{%- if not execute -%}\n {{ return('') }}\n{% endif %}\n\n{% if group_by_columns|length() > 0 %}\n {% set select_gb_cols = group_by_columns|join(', ') + ', ' %}\n {% set join_gb_cols %}\n {% for c in group_by_columns %}\n and a.{{c}} = b.{{c}}\n {% endfor %}\n {% endset %}\n {% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n{% endif %}\n\n{#-- We must add a fake join key in case additional grouping variables are not provided --#}\n{#-- Redshift does not allow for dynamically created join conditions (e.g. full join on 1 = 1 --#}\n{#-- The same logic is used in fewer_rows_than. In case of changes, maintain consistent logic --#}\n{% set group_by_columns = ['id_dbtutils_test_equal_rowcount'] + group_by_columns %}\n{% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n\nwith a as (\n\n select \n {{select_gb_cols}}\n 1 as id_dbtutils_test_equal_rowcount,\n count(*) as count_a \n from {{ model }}\n {{groupby_gb_cols}}\n\n\n),\nb as (\n\n select \n {{select_gb_cols}}\n 1 as id_dbtutils_test_equal_rowcount,\n count(*) as count_b \n from {{ compare_model }}\n {{groupby_gb_cols}}\n\n),\nfinal as (\n\n select\n \n {% for c in group_by_columns -%}\n a.{{c}} as {{c}}_a,\n b.{{c}} as {{c}}_b,\n {% endfor %}\n\n count_a,\n count_b,\n abs(count_a - count_b) as diff_count\n\n from a\n full join b\n on\n a.id_dbtutils_test_equal_rowcount = b.id_dbtutils_test_equal_rowcount\n {{join_gb_cols}}\n\n\n)\n\nselect * from final\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6246789, "supported_languages": null}, "macro.dbt_utils.test_relationships_where": {"name": "test_relationships_where", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/relationships_where.sql", "original_file_path": "macros/generic_tests/relationships_where.sql", "unique_id": "macro.dbt_utils.test_relationships_where", "macro_sql": "{% test relationships_where(model, column_name, to, field, from_condition=\"1=1\", to_condition=\"1=1\") %}\n {{ return(adapter.dispatch('test_relationships_where', 'dbt_utils')(model, column_name, to, field, from_condition, to_condition)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_relationships_where"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.625416, "supported_languages": null}, "macro.dbt_utils.default__test_relationships_where": {"name": "default__test_relationships_where", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/relationships_where.sql", "original_file_path": "macros/generic_tests/relationships_where.sql", "unique_id": "macro.dbt_utils.default__test_relationships_where", "macro_sql": "{% macro default__test_relationships_where(model, column_name, to, field, from_condition=\"1=1\", to_condition=\"1=1\") %}\n\n{# T-SQL has no boolean data type so we use 1=1 which returns TRUE #}\n{# ref https://stackoverflow.com/a/7170753/3842610 #}\n\nwith left_table as (\n\n select\n {{column_name}} as id\n\n from {{model}}\n\n where {{column_name}} is not null\n and {{from_condition}}\n\n),\n\nright_table as (\n\n select\n {{field}} as id\n\n from {{to}}\n\n where {{field}} is not null\n and {{to_condition}}\n\n),\n\nexceptions as (\n\n select\n left_table.id,\n right_table.id as right_id\n\n from left_table\n\n left join right_table\n on left_table.id = right_table.id\n\n where right_table.id is null\n\n)\n\nselect * from exceptions\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.625804, "supported_languages": null}, "macro.dbt_utils.test_recency": {"name": "test_recency", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/recency.sql", "original_file_path": "macros/generic_tests/recency.sql", "unique_id": "macro.dbt_utils.test_recency", "macro_sql": "{% test recency(model, field, datepart, interval, ignore_time_component=False, group_by_columns = []) %}\n {{ return(adapter.dispatch('test_recency', 'dbt_utils')(model, field, datepart, interval, ignore_time_component, group_by_columns)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_recency"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6266181, "supported_languages": null}, "macro.dbt_utils.default__test_recency": {"name": "default__test_recency", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/recency.sql", "original_file_path": "macros/generic_tests/recency.sql", "unique_id": "macro.dbt_utils.default__test_recency", "macro_sql": "{% macro default__test_recency(model, field, datepart, interval, ignore_time_component, group_by_columns) %}\n\n{% set threshold = 'cast(' ~ dbt.dateadd(datepart, interval * -1, dbt.current_timestamp()) ~ ' as ' ~ ('date' if ignore_time_component else dbt.type_timestamp()) ~ ')' %}\n\n{% if group_by_columns|length() > 0 %}\n {% set select_gb_cols = group_by_columns|join(' ,') + ', ' %}\n {% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n{% endif %}\n\n\nwith recency as (\n\n select \n\n {{ select_gb_cols }}\n {% if ignore_time_component %}\n cast(max({{ field }}) as date) as most_recent\n {%- else %}\n max({{ field }}) as most_recent\n {%- endif %}\n\n from {{ model }}\n\n {{ groupby_gb_cols }}\n\n)\n\nselect\n\n {{ select_gb_cols }}\n most_recent,\n {{ threshold }} as threshold\n\nfrom recency\nwhere most_recent < {{ threshold }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.dateadd", "macro.dbt.current_timestamp", "macro.dbt.type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6275709, "supported_languages": null}, "macro.dbt_utils.test_not_constant": {"name": "test_not_constant", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_constant.sql", "original_file_path": "macros/generic_tests/not_constant.sql", "unique_id": "macro.dbt_utils.test_not_constant", "macro_sql": "{% test not_constant(model, column_name, group_by_columns = []) %}\n {{ return(adapter.dispatch('test_not_constant', 'dbt_utils')(model, column_name, group_by_columns)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_not_constant"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.628082, "supported_languages": null}, "macro.dbt_utils.default__test_not_constant": {"name": "default__test_not_constant", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_constant.sql", "original_file_path": "macros/generic_tests/not_constant.sql", "unique_id": "macro.dbt_utils.default__test_not_constant", "macro_sql": "{% macro default__test_not_constant(model, column_name, group_by_columns) %}\n\n{% if group_by_columns|length() > 0 %}\n {% set select_gb_cols = group_by_columns|join(' ,') + ', ' %}\n {% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n{% endif %}\n\n\nselect\n {# In TSQL, subquery aggregate columns need aliases #}\n {# thus: a filler col name, 'filler_column' #}\n {{select_gb_cols}}\n count(distinct {{ column_name }}) as filler_column\n\nfrom {{ model }}\n\n {{groupby_gb_cols}}\n\nhaving count(distinct {{ column_name }}) = 1\n\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.628583, "supported_languages": null}, "macro.dbt_utils.test_accepted_range": {"name": "test_accepted_range", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/accepted_range.sql", "original_file_path": "macros/generic_tests/accepted_range.sql", "unique_id": "macro.dbt_utils.test_accepted_range", "macro_sql": "{% test accepted_range(model, column_name, min_value=none, max_value=none, inclusive=true) %}\n {{ return(adapter.dispatch('test_accepted_range', 'dbt_utils')(model, column_name, min_value, max_value, inclusive)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_accepted_range"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.629251, "supported_languages": null}, "macro.dbt_utils.default__test_accepted_range": {"name": "default__test_accepted_range", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/accepted_range.sql", "original_file_path": "macros/generic_tests/accepted_range.sql", "unique_id": "macro.dbt_utils.default__test_accepted_range", "macro_sql": "{% macro default__test_accepted_range(model, column_name, min_value=none, max_value=none, inclusive=true) %}\n\nwith meet_condition as(\n select *\n from {{ model }}\n),\n\nvalidation_errors as (\n select *\n from meet_condition\n where\n -- never true, defaults to an empty result set. Exists to ensure any combo of the `or` clauses below succeeds\n 1 = 2\n\n {%- if min_value is not none %}\n -- records with a value >= min_value are permitted. The `not` flips this to find records that don't meet the rule.\n or not {{ column_name }} > {{- \"=\" if inclusive }} {{ min_value }}\n {%- endif %}\n\n {%- if max_value is not none %}\n -- records with a value <= max_value are permitted. The `not` flips this to find records that don't meet the rule.\n or not {{ column_name }} < {{- \"=\" if inclusive }} {{ max_value }}\n {%- endif %}\n)\n\nselect *\nfrom validation_errors\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.629778, "supported_languages": null}, "macro.dbt_utils.test_not_accepted_values": {"name": "test_not_accepted_values", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_accepted_values.sql", "original_file_path": "macros/generic_tests/not_accepted_values.sql", "unique_id": "macro.dbt_utils.test_not_accepted_values", "macro_sql": "{% test not_accepted_values(model, column_name, values, quote=True) %}\n {{ return(adapter.dispatch('test_not_accepted_values', 'dbt_utils')(model, column_name, values, quote)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_not_accepted_values"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.63039, "supported_languages": null}, "macro.dbt_utils.default__test_not_accepted_values": {"name": "default__test_not_accepted_values", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_accepted_values.sql", "original_file_path": "macros/generic_tests/not_accepted_values.sql", "unique_id": "macro.dbt_utils.default__test_not_accepted_values", "macro_sql": "{% macro default__test_not_accepted_values(model, column_name, values, quote=True) %}\nwith all_values as (\n\n select distinct\n {{ column_name }} as value_field\n\n from {{ model }}\n\n),\n\nvalidation_errors as (\n\n select\n value_field\n\n from all_values\n where value_field in (\n {% for value in values -%}\n {% if quote -%}\n '{{ value }}'\n {%- else -%}\n {{ value }}\n {%- endif -%}\n {%- if not loop.last -%},{%- endif %}\n {%- endfor %}\n )\n\n)\n\nselect *\nfrom validation_errors\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.630807, "supported_languages": null}, "macro.dbt_utils.test_at_least_one": {"name": "test_at_least_one", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/at_least_one.sql", "original_file_path": "macros/generic_tests/at_least_one.sql", "unique_id": "macro.dbt_utils.test_at_least_one", "macro_sql": "{% test at_least_one(model, column_name, group_by_columns = []) %}\n {{ return(adapter.dispatch('test_at_least_one', 'dbt_utils')(model, column_name, group_by_columns)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_at_least_one"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.631525, "supported_languages": null}, "macro.dbt_utils.default__test_at_least_one": {"name": "default__test_at_least_one", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/at_least_one.sql", "original_file_path": "macros/generic_tests/at_least_one.sql", "unique_id": "macro.dbt_utils.default__test_at_least_one", "macro_sql": "{% macro default__test_at_least_one(model, column_name, group_by_columns) %}\n\n{% set pruned_cols = [column_name] %}\n\n{% if group_by_columns|length() > 0 %}\n\n {% set select_gb_cols = group_by_columns|join(' ,') + ', ' %}\n {% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n {% set pruned_cols = group_by_columns %}\n\n {% if column_name not in pruned_cols %}\n {% do pruned_cols.append(column_name) %}\n {% endif %}\n\n{% endif %}\n\n{% set select_pruned_cols = pruned_cols|join(' ,') %}\n\nselect *\nfrom (\n with pruned_rows as (\n select\n {{ select_pruned_cols }}\n from {{ model }}\n where {{ column_name }} is not null\n limit 1\n )\n select\n {# In TSQL, subquery aggregate columns need aliases #}\n {# thus: a filler col name, 'filler_column' #}\n {{select_gb_cols}}\n count({{ column_name }}) as filler_column\n\n from pruned_rows\n\n {{groupby_gb_cols}}\n\n having count({{ column_name }}) = 0\n\n) validation_errors\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.632413, "supported_languages": null}, "macro.dbt_utils.test_unique_combination_of_columns": {"name": "test_unique_combination_of_columns", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/unique_combination_of_columns.sql", "original_file_path": "macros/generic_tests/unique_combination_of_columns.sql", "unique_id": "macro.dbt_utils.test_unique_combination_of_columns", "macro_sql": "{% test unique_combination_of_columns(model, combination_of_columns, quote_columns=false) %}\n {{ return(adapter.dispatch('test_unique_combination_of_columns', 'dbt_utils')(model, combination_of_columns, quote_columns)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_unique_combination_of_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6331048, "supported_languages": null}, "macro.dbt_utils.default__test_unique_combination_of_columns": {"name": "default__test_unique_combination_of_columns", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/unique_combination_of_columns.sql", "original_file_path": "macros/generic_tests/unique_combination_of_columns.sql", "unique_id": "macro.dbt_utils.default__test_unique_combination_of_columns", "macro_sql": "{% macro default__test_unique_combination_of_columns(model, combination_of_columns, quote_columns=false) %}\n\n{% if not quote_columns %}\n {%- set column_list=combination_of_columns %}\n{% elif quote_columns %}\n {%- set column_list=[] %}\n {% for column in combination_of_columns -%}\n {% set column_list = column_list.append( adapter.quote(column) ) %}\n {%- endfor %}\n{% else %}\n {{ exceptions.raise_compiler_error(\n \"`quote_columns` argument for unique_combination_of_columns test must be one of [True, False] Got: '\" ~ quote ~\"'.'\"\n ) }}\n{% endif %}\n\n{%- set columns_csv=column_list | join(', ') %}\n\n\nwith validation_errors as (\n\n select\n {{ columns_csv }}\n from {{ model }}\n group by {{ columns_csv }}\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6338089, "supported_languages": null}, "macro.dbt_utils.test_cardinality_equality": {"name": "test_cardinality_equality", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/cardinality_equality.sql", "original_file_path": "macros/generic_tests/cardinality_equality.sql", "unique_id": "macro.dbt_utils.test_cardinality_equality", "macro_sql": "{% test cardinality_equality(model, column_name, to, field) %}\n {{ return(adapter.dispatch('test_cardinality_equality', 'dbt_utils')(model, column_name, to, field)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_cardinality_equality"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.634395, "supported_languages": null}, "macro.dbt_utils.default__test_cardinality_equality": {"name": "default__test_cardinality_equality", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/cardinality_equality.sql", "original_file_path": "macros/generic_tests/cardinality_equality.sql", "unique_id": "macro.dbt_utils.default__test_cardinality_equality", "macro_sql": "{% macro default__test_cardinality_equality(model, column_name, to, field) %}\n\n{# T-SQL does not let you use numbers as aliases for columns #}\n{# Thus, no \"GROUP BY 1\" #}\n\nwith table_a as (\nselect\n {{ column_name }},\n count(*) as num_rows\nfrom {{ model }}\ngroup by {{ column_name }}\n),\n\ntable_b as (\nselect\n {{ field }},\n count(*) as num_rows\nfrom {{ to }}\ngroup by {{ field }}\n),\n\nexcept_a as (\n select *\n from table_a\n {{ dbt.except() }}\n select *\n from table_b\n),\n\nexcept_b as (\n select *\n from table_b\n {{ dbt.except() }}\n select *\n from table_a\n),\n\nunioned as (\n select *\n from except_a\n union all\n select *\n from except_b\n)\n\nselect *\nfrom unioned\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.except"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.634778, "supported_languages": null}, "macro.dbt_utils.test_expression_is_true": {"name": "test_expression_is_true", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/expression_is_true.sql", "original_file_path": "macros/generic_tests/expression_is_true.sql", "unique_id": "macro.dbt_utils.test_expression_is_true", "macro_sql": "{% test expression_is_true(model, expression, column_name=None) %}\n {{ return(adapter.dispatch('test_expression_is_true', 'dbt_utils')(model, expression, column_name)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_expression_is_true"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6352189, "supported_languages": null}, "macro.dbt_utils.default__test_expression_is_true": {"name": "default__test_expression_is_true", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/expression_is_true.sql", "original_file_path": "macros/generic_tests/expression_is_true.sql", "unique_id": "macro.dbt_utils.default__test_expression_is_true", "macro_sql": "{% macro default__test_expression_is_true(model, expression, column_name) %}\n\n{% set column_list = '*' if should_store_failures() else \"1\" %}\n\nselect\n {{ column_list }}\nfrom {{ model }}\n{% if column_name is none %}\nwhere not({{ expression }})\n{%- else %}\nwhere not({{ column_name }} {{ expression }})\n{%- endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.should_store_failures"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.635697, "supported_languages": null}, "macro.dbt_utils.test_not_null_proportion": {"name": "test_not_null_proportion", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_null_proportion.sql", "original_file_path": "macros/generic_tests/not_null_proportion.sql", "unique_id": "macro.dbt_utils.test_not_null_proportion", "macro_sql": "{% macro test_not_null_proportion(model, group_by_columns = []) %}\n {{ return(adapter.dispatch('test_not_null_proportion', 'dbt_utils')(model, group_by_columns, **kwargs)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_not_null_proportion"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.636572, "supported_languages": null}, "macro.dbt_utils.default__test_not_null_proportion": {"name": "default__test_not_null_proportion", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_null_proportion.sql", "original_file_path": "macros/generic_tests/not_null_proportion.sql", "unique_id": "macro.dbt_utils.default__test_not_null_proportion", "macro_sql": "{% macro default__test_not_null_proportion(model, group_by_columns) %}\n\n{% set column_name = kwargs.get('column_name', kwargs.get('arg')) %}\n{% set at_least = kwargs.get('at_least', kwargs.get('arg')) %}\n{% set at_most = kwargs.get('at_most', kwargs.get('arg', 1)) %}\n\n{% if group_by_columns|length() > 0 %}\n {% set select_gb_cols = group_by_columns|join(' ,') + ', ' %}\n {% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n{% endif %}\n\nwith validation as (\n select\n {{select_gb_cols}}\n sum(case when {{ column_name }} is null then 0 else 1 end) / cast(count(*) as numeric) as not_null_proportion\n from {{ model }}\n {{groupby_gb_cols}}\n),\nvalidation_errors as (\n select\n {{select_gb_cols}}\n not_null_proportion\n from validation\n where not_null_proportion < {{ at_least }} or not_null_proportion > {{ at_most }}\n)\nselect\n *\nfrom validation_errors\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6375082, "supported_languages": null}, "macro.dbt_utils.test_sequential_values": {"name": "test_sequential_values", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/sequential_values.sql", "original_file_path": "macros/generic_tests/sequential_values.sql", "unique_id": "macro.dbt_utils.test_sequential_values", "macro_sql": "{% test sequential_values(model, column_name, interval=1, datepart=None, group_by_columns = []) %}\n\n {{ return(adapter.dispatch('test_sequential_values', 'dbt_utils')(model, column_name, interval, datepart, group_by_columns)) }}\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_sequential_values"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.63854, "supported_languages": null}, "macro.dbt_utils.default__test_sequential_values": {"name": "default__test_sequential_values", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/sequential_values.sql", "original_file_path": "macros/generic_tests/sequential_values.sql", "unique_id": "macro.dbt_utils.default__test_sequential_values", "macro_sql": "{% macro default__test_sequential_values(model, column_name, interval=1, datepart=None, group_by_columns = []) %}\n\n{% set previous_column_name = \"previous_\" ~ dbt_utils.slugify(column_name) %}\n\n{% if group_by_columns|length() > 0 %}\n {% set select_gb_cols = group_by_columns|join(',') + ', ' %}\n {% set partition_gb_cols = 'partition by ' + group_by_columns|join(',') %}\n{% endif %}\n\nwith windowed as (\n\n select\n {{ select_gb_cols }}\n {{ column_name }},\n lag({{ column_name }}) over (\n {{partition_gb_cols}}\n order by {{ column_name }}\n ) as {{ previous_column_name }}\n from {{ model }}\n),\n\nvalidation_errors as (\n select\n *\n from windowed\n {% if datepart %}\n where not(cast({{ column_name }} as {{ dbt.type_timestamp() }})= cast({{ dbt.dateadd(datepart, interval, previous_column_name) }} as {{ dbt.type_timestamp() }}))\n {% else %}\n where not({{ column_name }} = {{ previous_column_name }} + {{ interval }})\n {% endif %}\n)\n\nselect *\nfrom validation_errors\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.slugify", "macro.dbt.type_timestamp", "macro.dbt.dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.639534, "supported_languages": null}, "macro.dbt_utils.test_equality": {"name": "test_equality", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/equality.sql", "original_file_path": "macros/generic_tests/equality.sql", "unique_id": "macro.dbt_utils.test_equality", "macro_sql": "{% test equality(model, compare_model, compare_columns=None) %}\n {{ return(adapter.dispatch('test_equality', 'dbt_utils')(model, compare_model, compare_columns)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_equality"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.640329, "supported_languages": null}, "macro.dbt_utils.default__test_equality": {"name": "default__test_equality", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/equality.sql", "original_file_path": "macros/generic_tests/equality.sql", "unique_id": "macro.dbt_utils.default__test_equality", "macro_sql": "{% macro default__test_equality(model, compare_model, compare_columns=None) %}\n\n{% set set_diff %}\n count(*) + coalesce(abs(\n sum(case when which_diff = 'a_minus_b' then 1 else 0 end) -\n sum(case when which_diff = 'b_minus_a' then 1 else 0 end)\n ), 0)\n{% endset %}\n\n{#-- Needs to be set at parse time, before we return '' below --#}\n{{ config(fail_calc = set_diff) }}\n\n{#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. #}\n{%- if not execute -%}\n {{ return('') }}\n{% endif %}\n\n-- setup\n{%- do dbt_utils._is_relation(model, 'test_equality') -%}\n\n{#-\nIf the compare_cols arg is provided, we can run this test without querying the\ninformation schema\u00a0\u2014 this allows the model to be an ephemeral model\n-#}\n\n{%- if not compare_columns -%}\n {%- do dbt_utils._is_ephemeral(model, 'test_equality') -%}\n {%- set compare_columns = adapter.get_columns_in_relation(model) | map(attribute='quoted') -%}\n{%- endif -%}\n\n{% set compare_cols_csv = compare_columns | join(', ') %}\n\nwith a as (\n\n select * from {{ model }}\n\n),\n\nb as (\n\n select * from {{ compare_model }}\n\n),\n\na_minus_b as (\n\n select {{compare_cols_csv}} from a\n {{ dbt.except() }}\n select {{compare_cols_csv}} from b\n\n),\n\nb_minus_a as (\n\n select {{compare_cols_csv}} from b\n {{ dbt.except() }}\n select {{compare_cols_csv}} from a\n\n),\n\nunioned as (\n\n select 'a_minus_b' as which_diff, a_minus_b.* from a_minus_b\n union all\n select 'b_minus_a' as which_diff, b_minus_a.* from b_minus_a\n\n)\n\nselect * from unioned\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt.except"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.641313, "supported_languages": null}, "macro.dbt_utils.test_not_empty_string": {"name": "test_not_empty_string", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_empty_string.sql", "original_file_path": "macros/generic_tests/not_empty_string.sql", "unique_id": "macro.dbt_utils.test_not_empty_string", "macro_sql": "{% test not_empty_string(model, column_name, trim_whitespace=true) %}\n\n {{ return(adapter.dispatch('test_not_empty_string', 'dbt_utils')(model, column_name, trim_whitespace)) }}\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_not_empty_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.641953, "supported_languages": null}, "macro.dbt_utils.default__test_not_empty_string": {"name": "default__test_not_empty_string", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_empty_string.sql", "original_file_path": "macros/generic_tests/not_empty_string.sql", "unique_id": "macro.dbt_utils.default__test_not_empty_string", "macro_sql": "{% macro default__test_not_empty_string(model, column_name, trim_whitespace=true) %}\n\n with\n \n all_values as (\n\n select \n\n\n {% if trim_whitespace == true -%}\n\n trim({{ column_name }}) as {{ column_name }}\n\n {%- else -%}\n\n {{ column_name }}\n\n {%- endif %}\n \n from {{ model }}\n\n ),\n\n errors as (\n\n select * from all_values\n where {{ column_name }} = ''\n\n )\n\n select * from errors\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.642325, "supported_languages": null}, "macro.dbt_utils.test_mutually_exclusive_ranges": {"name": "test_mutually_exclusive_ranges", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/mutually_exclusive_ranges.sql", "original_file_path": "macros/generic_tests/mutually_exclusive_ranges.sql", "unique_id": "macro.dbt_utils.test_mutually_exclusive_ranges", "macro_sql": "{% test mutually_exclusive_ranges(model, lower_bound_column, upper_bound_column, partition_by=None, gaps='allowed', zero_length_range_allowed=False) %}\n {{ return(adapter.dispatch('test_mutually_exclusive_ranges', 'dbt_utils')(model, lower_bound_column, upper_bound_column, partition_by, gaps, zero_length_range_allowed)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_mutually_exclusive_ranges"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.646212, "supported_languages": null}, "macro.dbt_utils.default__test_mutually_exclusive_ranges": {"name": "default__test_mutually_exclusive_ranges", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/mutually_exclusive_ranges.sql", "original_file_path": "macros/generic_tests/mutually_exclusive_ranges.sql", "unique_id": "macro.dbt_utils.default__test_mutually_exclusive_ranges", "macro_sql": "{% macro default__test_mutually_exclusive_ranges(model, lower_bound_column, upper_bound_column, partition_by=None, gaps='allowed', zero_length_range_allowed=False) %}\n{% if gaps == 'not_allowed' %}\n {% set allow_gaps_operator='=' %}\n {% set allow_gaps_operator_in_words='equal_to' %}\n{% elif gaps == 'allowed' %}\n {% set allow_gaps_operator='<=' %}\n {% set allow_gaps_operator_in_words='less_than_or_equal_to' %}\n{% elif gaps == 'required' %}\n {% set allow_gaps_operator='<' %}\n {% set allow_gaps_operator_in_words='less_than' %}\n{% else %}\n {{ exceptions.raise_compiler_error(\n \"`gaps` argument for mutually_exclusive_ranges test must be one of ['not_allowed', 'allowed', 'required'] Got: '\" ~ gaps ~\"'.'\"\n ) }}\n{% endif %}\n{% if not zero_length_range_allowed %}\n {% set allow_zero_length_operator='<' %}\n {% set allow_zero_length_operator_in_words='less_than' %}\n{% elif zero_length_range_allowed %}\n {% set allow_zero_length_operator='<=' %}\n {% set allow_zero_length_operator_in_words='less_than_or_equal_to' %}\n{% else %}\n {{ exceptions.raise_compiler_error(\n \"`zero_length_range_allowed` argument for mutually_exclusive_ranges test must be one of [true, false] Got: '\" ~ zero_length_range_allowed ~\"'.'\"\n ) }}\n{% endif %}\n\n{% set partition_clause=\"partition by \" ~ partition_by if partition_by else '' %}\n\nwith window_functions as (\n\n select\n {% if partition_by %}\n {{ partition_by }} as partition_by_col,\n {% endif %}\n {{ lower_bound_column }} as lower_bound,\n {{ upper_bound_column }} as upper_bound,\n\n lead({{ lower_bound_column }}) over (\n {{ partition_clause }}\n order by {{ lower_bound_column }}, {{ upper_bound_column }}\n ) as next_lower_bound,\n\n row_number() over (\n {{ partition_clause }}\n order by {{ lower_bound_column }} desc, {{ upper_bound_column }} desc\n ) = 1 as is_last_record\n\n from {{ model }}\n\n),\n\ncalc as (\n -- We want to return records where one of our assumptions fails, so we'll use\n -- the `not` function with `and` statements so we can write our assumptions more cleanly\n select\n *,\n\n -- For each record: lower_bound should be < upper_bound.\n -- Coalesce it to return an error on the null case (implicit assumption\n -- these columns are not_null)\n coalesce(\n lower_bound {{ allow_zero_length_operator }} upper_bound,\n false\n ) as lower_bound_{{ allow_zero_length_operator_in_words }}_upper_bound,\n\n -- For each record: upper_bound {{ allow_gaps_operator }} the next lower_bound.\n -- Coalesce it to handle null cases for the last record.\n coalesce(\n upper_bound {{ allow_gaps_operator }} next_lower_bound,\n is_last_record,\n false\n ) as upper_bound_{{ allow_gaps_operator_in_words }}_next_lower_bound\n\n from window_functions\n\n),\n\nvalidation_errors as (\n\n select\n *\n from calc\n\n where not(\n -- THE FOLLOWING SHOULD BE TRUE --\n lower_bound_{{ allow_zero_length_operator_in_words }}_upper_bound\n and upper_bound_{{ allow_gaps_operator_in_words }}_next_lower_bound\n )\n)\n\nselect * from validation_errors\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.648013, "supported_languages": null}, "macro.dbt_utils.pretty_log_format": {"name": "pretty_log_format", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/pretty_log_format.sql", "original_file_path": "macros/jinja_helpers/pretty_log_format.sql", "unique_id": "macro.dbt_utils.pretty_log_format", "macro_sql": "{% macro pretty_log_format(message) %}\n {{ return(adapter.dispatch('pretty_log_format', 'dbt_utils')(message)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__pretty_log_format"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.648337, "supported_languages": null}, "macro.dbt_utils.default__pretty_log_format": {"name": "default__pretty_log_format", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/pretty_log_format.sql", "original_file_path": "macros/jinja_helpers/pretty_log_format.sql", "unique_id": "macro.dbt_utils.default__pretty_log_format", "macro_sql": "{% macro default__pretty_log_format(message) %}\n {{ return( dbt_utils.pretty_time() ~ ' + ' ~ message) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.pretty_time"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.64853, "supported_languages": null}, "macro.dbt_utils._is_relation": {"name": "_is_relation", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/_is_relation.sql", "original_file_path": "macros/jinja_helpers/_is_relation.sql", "unique_id": "macro.dbt_utils._is_relation", "macro_sql": "{% macro _is_relation(obj, macro) %}\n {%- if not (obj is mapping and obj.get('metadata', {}).get('type', '').endswith('Relation')) -%}\n {%- do exceptions.raise_compiler_error(\"Macro \" ~ macro ~ \" expected a Relation but received the value: \" ~ obj) -%}\n {%- endif -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.649028, "supported_languages": null}, "macro.dbt_utils.pretty_time": {"name": "pretty_time", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/pretty_time.sql", "original_file_path": "macros/jinja_helpers/pretty_time.sql", "unique_id": "macro.dbt_utils.pretty_time", "macro_sql": "{% macro pretty_time(format='%H:%M:%S') %}\n {{ return(adapter.dispatch('pretty_time', 'dbt_utils')(format)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__pretty_time"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.649339, "supported_languages": null}, "macro.dbt_utils.default__pretty_time": {"name": "default__pretty_time", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/pretty_time.sql", "original_file_path": "macros/jinja_helpers/pretty_time.sql", "unique_id": "macro.dbt_utils.default__pretty_time", "macro_sql": "{% macro default__pretty_time(format='%H:%M:%S') %}\n {{ return(modules.datetime.datetime.now().strftime(format)) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.649566, "supported_languages": null}, "macro.dbt_utils.log_info": {"name": "log_info", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/log_info.sql", "original_file_path": "macros/jinja_helpers/log_info.sql", "unique_id": "macro.dbt_utils.log_info", "macro_sql": "{% macro log_info(message) %}\n {{ return(adapter.dispatch('log_info', 'dbt_utils')(message)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__log_info"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.649848, "supported_languages": null}, "macro.dbt_utils.default__log_info": {"name": "default__log_info", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/log_info.sql", "original_file_path": "macros/jinja_helpers/log_info.sql", "unique_id": "macro.dbt_utils.default__log_info", "macro_sql": "{% macro default__log_info(message) %}\n {{ log(dbt_utils.pretty_log_format(message), info=True) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.pretty_log_format"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.650039, "supported_languages": null}, "macro.dbt_utils.slugify": {"name": "slugify", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/slugify.sql", "original_file_path": "macros/jinja_helpers/slugify.sql", "unique_id": "macro.dbt_utils.slugify", "macro_sql": "{% macro slugify(string) %}\n\n{#- Lower case the string -#}\n{% set string = string | lower %}\n{#- Replace spaces and dashes with underscores -#}\n{% set string = modules.re.sub('[ -]+', '_', string) %}\n{#- Only take letters, numbers, and underscores -#}\n{% set string = modules.re.sub('[^a-z0-9_]+', '', string) %}\n{#- Prepends \"_\" if string begins with a number -#}\n{% set string = modules.re.sub('^[0-9]', '_' + string[0], string) %}\n\n{{ return(string) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.650733, "supported_languages": null}, "macro.dbt_utils._is_ephemeral": {"name": "_is_ephemeral", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/_is_ephemeral.sql", "original_file_path": "macros/jinja_helpers/_is_ephemeral.sql", "unique_id": "macro.dbt_utils._is_ephemeral", "macro_sql": "{% macro _is_ephemeral(obj, macro) %}\n {%- if obj.is_cte -%}\n {% set ephemeral_prefix = api.Relation.add_ephemeral_prefix('') %}\n {% if obj.name.startswith(ephemeral_prefix) %}\n {% set model_name = obj.name[(ephemeral_prefix|length):] %}\n {% else %}\n {% set model_name = obj.name %}\n {%- endif -%}\n {% set error_message %}\nThe `{{ macro }}` macro cannot be used with ephemeral models, as it relies on the information schema.\n\n`{{ model_name }}` is an ephemeral model. Consider making it a view or table instead.\n {% endset %}\n {%- do exceptions.raise_compiler_error(error_message) -%}\n {%- endif -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.651659, "supported_languages": null}, "macro.dbt_utils.get_intervals_between": {"name": "get_intervals_between", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/date_spine.sql", "original_file_path": "macros/sql/date_spine.sql", "unique_id": "macro.dbt_utils.get_intervals_between", "macro_sql": "{% macro get_intervals_between(start_date, end_date, datepart) -%}\n {{ return(adapter.dispatch('get_intervals_between', 'dbt_utils')(start_date, end_date, datepart)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_intervals_between"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.652438, "supported_languages": null}, "macro.dbt_utils.default__get_intervals_between": {"name": "default__get_intervals_between", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/date_spine.sql", "original_file_path": "macros/sql/date_spine.sql", "unique_id": "macro.dbt_utils.default__get_intervals_between", "macro_sql": "{% macro default__get_intervals_between(start_date, end_date, datepart) -%}\n {%- call statement('get_intervals_between', fetch_result=True) %}\n\n select {{ dbt.datediff(start_date, end_date, datepart) }}\n\n {%- endcall -%}\n\n {%- set value_list = load_result('get_intervals_between') -%}\n\n {%- if value_list and value_list['data'] -%}\n {%- set values = value_list['data'] | map(attribute=0) | list %}\n {{ return(values[0]) }}\n {%- else -%}\n {{ return(1) }}\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt.datediff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.653096, "supported_languages": null}, "macro.dbt_utils.date_spine": {"name": "date_spine", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/date_spine.sql", "original_file_path": "macros/sql/date_spine.sql", "unique_id": "macro.dbt_utils.date_spine", "macro_sql": "{% macro date_spine(datepart, start_date, end_date) %}\n {{ return(adapter.dispatch('date_spine', 'dbt_utils')(datepart, start_date, end_date)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__date_spine"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.653356, "supported_languages": null}, "macro.dbt_utils.default__date_spine": {"name": "default__date_spine", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/date_spine.sql", "original_file_path": "macros/sql/date_spine.sql", "unique_id": "macro.dbt_utils.default__date_spine", "macro_sql": "{% macro default__date_spine(datepart, start_date, end_date) %}\n\n\n{# call as follows:\n\ndate_spine(\n \"day\",\n \"to_date('01/01/2016', 'mm/dd/yyyy')\",\n \"dbt.dateadd(week, 1, current_date)\"\n) #}\n\n\nwith rawdata as (\n\n {{dbt_utils.generate_series(\n dbt_utils.get_intervals_between(start_date, end_date, datepart)\n )}}\n\n),\n\nall_periods as (\n\n select (\n {{\n dbt.dateadd(\n datepart,\n \"row_number() over (order by 1) - 1\",\n start_date\n )\n }}\n ) as date_{{datepart}}\n from rawdata\n\n),\n\nfiltered as (\n\n select *\n from all_periods\n where date_{{datepart}} <= {{ end_date }}\n\n)\n\nselect * from filtered\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.generate_series", "macro.dbt_utils.get_intervals_between", "macro.dbt.dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.65376, "supported_languages": null}, "macro.dbt_utils.safe_subtract": {"name": "safe_subtract", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/safe_subtract.sql", "original_file_path": "macros/sql/safe_subtract.sql", "unique_id": "macro.dbt_utils.safe_subtract", "macro_sql": "{%- macro safe_subtract(field_list) -%}\n {{ return(adapter.dispatch('safe_subtract', 'dbt_utils')(field_list)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__safe_subtract"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.654188, "supported_languages": null}, "macro.dbt_utils.default__safe_subtract": {"name": "default__safe_subtract", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/safe_subtract.sql", "original_file_path": "macros/sql/safe_subtract.sql", "unique_id": "macro.dbt_utils.default__safe_subtract", "macro_sql": "\n\n{%- macro default__safe_subtract(field_list) -%}\n\n{%- if field_list is not iterable or field_list is string or field_list is mapping -%}\n\n{%- set error_message = '\nWarning: the `safe_subtract` macro takes a single list argument instead of \\\nstring arguments. The {}.{} model triggered this warning. \\\n'.format(model.package_name, model.name) -%}\n\n{%- do exceptions.raise_compiler_error(error_message) -%}\n\n{%- endif -%}\n\n{% set fields = [] %}\n\n{%- for field in field_list -%}\n\n {% do fields.append(\"coalesce(\" ~ field ~ \", 0)\") %}\n\n{%- endfor -%}\n\n{{ fields|join(' -\\n ') }}\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.654787, "supported_languages": null}, "macro.dbt_utils.nullcheck_table": {"name": "nullcheck_table", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/nullcheck_table.sql", "original_file_path": "macros/sql/nullcheck_table.sql", "unique_id": "macro.dbt_utils.nullcheck_table", "macro_sql": "{% macro nullcheck_table(relation) %}\n {{ return(adapter.dispatch('nullcheck_table', 'dbt_utils')(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__nullcheck_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.655138, "supported_languages": null}, "macro.dbt_utils.default__nullcheck_table": {"name": "default__nullcheck_table", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/nullcheck_table.sql", "original_file_path": "macros/sql/nullcheck_table.sql", "unique_id": "macro.dbt_utils.default__nullcheck_table", "macro_sql": "{% macro default__nullcheck_table(relation) %}\n\n {%- do dbt_utils._is_relation(relation, 'nullcheck_table') -%}\n {%- do dbt_utils._is_ephemeral(relation, 'nullcheck_table') -%}\n {% set cols = adapter.get_columns_in_relation(relation) %}\n\n select {{ dbt_utils.nullcheck(cols) }}\n from {{relation}}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt_utils.nullcheck"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.655529, "supported_languages": null}, "macro.dbt_utils.get_relations_by_pattern": {"name": "get_relations_by_pattern", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_relations_by_pattern.sql", "original_file_path": "macros/sql/get_relations_by_pattern.sql", "unique_id": "macro.dbt_utils.get_relations_by_pattern", "macro_sql": "{% macro get_relations_by_pattern(schema_pattern, table_pattern, exclude='', database=target.database) %}\n {{ return(adapter.dispatch('get_relations_by_pattern', 'dbt_utils')(schema_pattern, table_pattern, exclude, database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_relations_by_pattern"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6562939, "supported_languages": null}, "macro.dbt_utils.default__get_relations_by_pattern": {"name": "default__get_relations_by_pattern", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_relations_by_pattern.sql", "original_file_path": "macros/sql/get_relations_by_pattern.sql", "unique_id": "macro.dbt_utils.default__get_relations_by_pattern", "macro_sql": "{% macro default__get_relations_by_pattern(schema_pattern, table_pattern, exclude='', database=target.database) %}\n\n {%- call statement('get_tables', fetch_result=True) %}\n\n {{ dbt_utils.get_tables_by_pattern_sql(schema_pattern, table_pattern, exclude, database) }}\n\n {%- endcall -%}\n\n {%- set table_list = load_result('get_tables') -%}\n\n {%- if table_list and table_list['table'] -%}\n {%- set tbl_relations = [] -%}\n {%- for row in table_list['table'] -%}\n {%- set tbl_relation = api.Relation.create(\n database=database,\n schema=row.table_schema,\n identifier=row.table_name,\n type=row.table_type\n ) -%}\n {%- do tbl_relations.append(tbl_relation) -%}\n {%- endfor -%}\n\n {{ return(tbl_relations) }}\n {%- else -%}\n {{ return([]) }}\n {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt_utils.get_tables_by_pattern_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.657413, "supported_languages": null}, "macro.dbt_utils.get_powers_of_two": {"name": "get_powers_of_two", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/generate_series.sql", "original_file_path": "macros/sql/generate_series.sql", "unique_id": "macro.dbt_utils.get_powers_of_two", "macro_sql": "{% macro get_powers_of_two(upper_bound) %}\n {{ return(adapter.dispatch('get_powers_of_two', 'dbt_utils')(upper_bound)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_powers_of_two"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6583822, "supported_languages": null}, "macro.dbt_utils.default__get_powers_of_two": {"name": "default__get_powers_of_two", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/generate_series.sql", "original_file_path": "macros/sql/generate_series.sql", "unique_id": "macro.dbt_utils.default__get_powers_of_two", "macro_sql": "{% macro default__get_powers_of_two(upper_bound) %}\n\n {% if upper_bound <= 0 %}\n {{ exceptions.raise_compiler_error(\"upper bound must be positive\") }}\n {% endif %}\n\n {% for _ in range(1, 100) %}\n {% if upper_bound <= 2 ** loop.index %}{{ return(loop.index) }}{% endif %}\n {% endfor %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.658858, "supported_languages": null}, "macro.dbt_utils.generate_series": {"name": "generate_series", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/generate_series.sql", "original_file_path": "macros/sql/generate_series.sql", "unique_id": "macro.dbt_utils.generate_series", "macro_sql": "{% macro generate_series(upper_bound) %}\n {{ return(adapter.dispatch('generate_series', 'dbt_utils')(upper_bound)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__generate_series"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.659075, "supported_languages": null}, "macro.dbt_utils.default__generate_series": {"name": "default__generate_series", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/generate_series.sql", "original_file_path": "macros/sql/generate_series.sql", "unique_id": "macro.dbt_utils.default__generate_series", "macro_sql": "{% macro default__generate_series(upper_bound) %}\n\n {% set n = dbt_utils.get_powers_of_two(upper_bound) %}\n\n with p as (\n select 0 as generated_number union all select 1\n ), unioned as (\n\n select\n\n {% for i in range(n) %}\n p{{i}}.generated_number * power(2, {{i}})\n {% if not loop.last %} + {% endif %}\n {% endfor %}\n + 1\n as generated_number\n\n from\n\n {% for i in range(n) %}\n p as p{{i}}\n {% if not loop.last %} cross join {% endif %}\n {% endfor %}\n\n )\n\n select *\n from unioned\n where generated_number <= {{upper_bound}}\n order by generated_number\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.get_powers_of_two"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.659644, "supported_languages": null}, "macro.dbt_utils.get_relations_by_prefix": {"name": "get_relations_by_prefix", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_relations_by_prefix.sql", "original_file_path": "macros/sql/get_relations_by_prefix.sql", "unique_id": "macro.dbt_utils.get_relations_by_prefix", "macro_sql": "{% macro get_relations_by_prefix(schema, prefix, exclude='', database=target.database) %}\n {{ return(adapter.dispatch('get_relations_by_prefix', 'dbt_utils')(schema, prefix, exclude, database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_relations_by_prefix"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.660426, "supported_languages": null}, "macro.dbt_utils.default__get_relations_by_prefix": {"name": "default__get_relations_by_prefix", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_relations_by_prefix.sql", "original_file_path": "macros/sql/get_relations_by_prefix.sql", "unique_id": "macro.dbt_utils.default__get_relations_by_prefix", "macro_sql": "{% macro default__get_relations_by_prefix(schema, prefix, exclude='', database=target.database) %}\n\n {%- call statement('get_tables', fetch_result=True) %}\n\n {{ dbt_utils.get_tables_by_prefix_sql(schema, prefix, exclude, database) }}\n\n {%- endcall -%}\n\n {%- set table_list = load_result('get_tables') -%}\n\n {%- if table_list and table_list['table'] -%}\n {%- set tbl_relations = [] -%}\n {%- for row in table_list['table'] -%}\n {%- set tbl_relation = api.Relation.create(\n database=database,\n schema=row.table_schema,\n identifier=row.table_name,\n type=row.table_type\n ) -%}\n {%- do tbl_relations.append(tbl_relation) -%}\n {%- endfor -%}\n\n {{ return(tbl_relations) }}\n {%- else -%}\n {{ return([]) }}\n {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt_utils.get_tables_by_prefix_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.661363, "supported_languages": null}, "macro.dbt_utils.get_tables_by_prefix_sql": {"name": "get_tables_by_prefix_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_tables_by_prefix_sql.sql", "original_file_path": "macros/sql/get_tables_by_prefix_sql.sql", "unique_id": "macro.dbt_utils.get_tables_by_prefix_sql", "macro_sql": "{% macro get_tables_by_prefix_sql(schema, prefix, exclude='', database=target.database) %}\n {{ return(adapter.dispatch('get_tables_by_prefix_sql', 'dbt_utils')(schema, prefix, exclude, database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_tables_by_prefix_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.66182, "supported_languages": null}, "macro.dbt_utils.default__get_tables_by_prefix_sql": {"name": "default__get_tables_by_prefix_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_tables_by_prefix_sql.sql", "original_file_path": "macros/sql/get_tables_by_prefix_sql.sql", "unique_id": "macro.dbt_utils.default__get_tables_by_prefix_sql", "macro_sql": "{% macro default__get_tables_by_prefix_sql(schema, prefix, exclude='', database=target.database) %}\n\n {{ dbt_utils.get_tables_by_pattern_sql(\n schema_pattern = schema,\n table_pattern = prefix ~ '%',\n exclude = exclude,\n database = database\n ) }}\n \n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.get_tables_by_pattern_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.66214, "supported_languages": null}, "macro.dbt_utils.star": {"name": "star", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/star.sql", "original_file_path": "macros/sql/star.sql", "unique_id": "macro.dbt_utils.star", "macro_sql": "{% macro star(from, relation_alias=False, except=[], prefix='', suffix='', quote_identifiers=True) -%}\r\n {{ return(adapter.dispatch('star', 'dbt_utils')(from, relation_alias, except, prefix, suffix, quote_identifiers)) }}\r\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__star"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6636002, "supported_languages": null}, "macro.dbt_utils.default__star": {"name": "default__star", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/star.sql", "original_file_path": "macros/sql/star.sql", "unique_id": "macro.dbt_utils.default__star", "macro_sql": "{% macro default__star(from, relation_alias=False, except=[], prefix='', suffix='', quote_identifiers=True) -%}\r\n {%- do dbt_utils._is_relation(from, 'star') -%}\r\n {%- do dbt_utils._is_ephemeral(from, 'star') -%}\r\n\r\n {#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. #}\r\n {%- if not execute -%}\r\n {% do return('*') %}\r\n {%- endif -%}\r\n\r\n {% set cols = dbt_utils.get_filtered_columns_in_relation(from, except) %}\r\n\r\n {%- if cols|length <= 0 -%}\r\n {% if flags.WHICH == 'compile' %}\r\n {% set response %}\r\n*\r\n/* No columns were returned. Maybe the relation doesn't exist yet \r\nor all columns were excluded. This star is only output during \r\ndbt compile, and exists to keep SQLFluff happy. */\r\n {% endset %}\r\n {% do return(response) %}\r\n {% else %}\r\n {% do return(\"/* no columns returned from star() macro */\") %}\r\n {% endif %}\r\n {%- else -%}\r\n {%- for col in cols %}\r\n {%- if relation_alias %}{{ relation_alias }}.{% else %}{%- endif -%}\r\n {%- if quote_identifiers -%}\r\n {{ adapter.quote(col)|trim }} {%- if prefix!='' or suffix!='' %} as {{ adapter.quote(prefix ~ col ~ suffix)|trim }} {%- endif -%}\r\n {%- else -%}\r\n {{ col|trim }} {%- if prefix!='' or suffix!='' %} as {{ (prefix ~ col ~ suffix)|trim }} {%- endif -%}\r\n {% endif %}\r\n {%- if not loop.last %},{{ '\\n ' }}{%- endif -%}\r\n {%- endfor -%}\r\n {% endif %}\r\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt_utils.get_filtered_columns_in_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6652591, "supported_languages": null}, "macro.dbt_utils.unpivot": {"name": "unpivot", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/unpivot.sql", "original_file_path": "macros/sql/unpivot.sql", "unique_id": "macro.dbt_utils.unpivot", "macro_sql": "{% macro unpivot(relation=none, cast_to='varchar', exclude=none, remove=none, field_name='field_name', value_name='value') -%}\n {{ return(adapter.dispatch('unpivot', 'dbt_utils')(relation, cast_to, exclude, remove, field_name, value_name)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__unpivot"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6669629, "supported_languages": null}, "macro.dbt_utils.default__unpivot": {"name": "default__unpivot", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/unpivot.sql", "original_file_path": "macros/sql/unpivot.sql", "unique_id": "macro.dbt_utils.default__unpivot", "macro_sql": "{% macro default__unpivot(relation=none, cast_to='varchar', exclude=none, remove=none, field_name='field_name', value_name='value') -%}\n\n {% if not relation %}\n {{ exceptions.raise_compiler_error(\"Error: argument `relation` is required for `unpivot` macro.\") }}\n {% endif %}\n\n {%- set exclude = exclude if exclude is not none else [] %}\n {%- set remove = remove if remove is not none else [] %}\n\n {%- set include_cols = [] %}\n\n {%- set table_columns = {} %}\n\n {%- do table_columns.update({relation: []}) %}\n\n {%- do dbt_utils._is_relation(relation, 'unpivot') -%}\n {%- do dbt_utils._is_ephemeral(relation, 'unpivot') -%}\n {%- set cols = adapter.get_columns_in_relation(relation) %}\n\n {%- for col in cols -%}\n {%- if col.column.lower() not in remove|map('lower') and col.column.lower() not in exclude|map('lower') -%}\n {% do include_cols.append(col) %}\n {%- endif %}\n {%- endfor %}\n\n\n {%- for col in include_cols -%}\n select\n {%- for exclude_col in exclude %}\n {{ exclude_col }},\n {%- endfor %}\n\n cast('{{ col.column }}' as {{ dbt.type_string() }}) as {{ field_name }},\n cast( {% if col.data_type == 'boolean' %}\n {{ dbt.cast_bool_to_text(col.column) }}\n {% else %}\n {{ col.column }}\n {% endif %}\n as {{ cast_to }}) as {{ value_name }}\n\n from {{ relation }}\n\n {% if not loop.last -%}\n union all\n {% endif -%}\n {%- endfor -%}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt.type_string", "macro.dbt.cast_bool_to_text"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.668926, "supported_languages": null}, "macro.dbt_utils.safe_divide": {"name": "safe_divide", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/safe_divide.sql", "original_file_path": "macros/sql/safe_divide.sql", "unique_id": "macro.dbt_utils.safe_divide", "macro_sql": "{% macro safe_divide(numerator, denominator) -%}\n {{ return(adapter.dispatch('safe_divide', 'dbt_utils')(numerator, denominator)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__safe_divide"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6693099, "supported_languages": null}, "macro.dbt_utils.default__safe_divide": {"name": "default__safe_divide", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/safe_divide.sql", "original_file_path": "macros/sql/safe_divide.sql", "unique_id": "macro.dbt_utils.default__safe_divide", "macro_sql": "{% macro default__safe_divide(numerator, denominator) %}\n ( {{ numerator }} ) / nullif( ( {{ denominator }} ), 0)\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6694698, "supported_languages": null}, "macro.dbt_utils.union_relations": {"name": "union_relations", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/union.sql", "original_file_path": "macros/sql/union.sql", "unique_id": "macro.dbt_utils.union_relations", "macro_sql": "{%- macro union_relations(relations, column_override=none, include=[], exclude=[], source_column_name='_dbt_source_relation', where=none) -%}\n {{ return(adapter.dispatch('union_relations', 'dbt_utils')(relations, column_override, include, exclude, source_column_name, where)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__union_relations"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.673308, "supported_languages": null}, "macro.dbt_utils.default__union_relations": {"name": "default__union_relations", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/union.sql", "original_file_path": "macros/sql/union.sql", "unique_id": "macro.dbt_utils.default__union_relations", "macro_sql": "\n\n{%- macro default__union_relations(relations, column_override=none, include=[], exclude=[], source_column_name='_dbt_source_relation', where=none) -%}\n\n {%- if exclude and include -%}\n {{ exceptions.raise_compiler_error(\"Both an exclude and include list were provided to the `union` macro. Only one is allowed\") }}\n {%- endif -%}\n\n {#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. -#}\n {%- if not execute %}\n {{ return('') }}\n {% endif -%}\n\n {%- set column_override = column_override if column_override is not none else {} -%}\n\n {%- set relation_columns = {} -%}\n {%- set column_superset = {} -%}\n {%- set all_excludes = [] -%}\n {%- set all_includes = [] -%}\n\n {%- if exclude -%}\n {%- for exc in exclude -%}\n {%- do all_excludes.append(exc | lower) -%}\n {%- endfor -%}\n {%- endif -%}\n\n {%- if include -%}\n {%- for inc in include -%}\n {%- do all_includes.append(inc | lower) -%}\n {%- endfor -%}\n {%- endif -%}\n\n {%- for relation in relations -%}\n\n {%- do relation_columns.update({relation: []}) -%}\n\n {%- do dbt_utils._is_relation(relation, 'union_relations') -%}\n {%- do dbt_utils._is_ephemeral(relation, 'union_relations') -%}\n {%- set cols = adapter.get_columns_in_relation(relation) -%}\n {%- for col in cols -%}\n\n {#- If an exclude list was provided and the column is in the list, do nothing -#}\n {%- if exclude and col.column | lower in all_excludes -%}\n\n {#- If an include list was provided and the column is not in the list, do nothing -#}\n {%- elif include and col.column | lower not in all_includes -%}\n\n {#- Otherwise add the column to the column superset -#}\n {%- else -%}\n\n {#- update the list of columns in this relation -#}\n {%- do relation_columns[relation].append(col.column) -%}\n\n {%- if col.column in column_superset -%}\n\n {%- set stored = column_superset[col.column] -%}\n {%- if col.is_string() and stored.is_string() and col.string_size() > stored.string_size() -%}\n\n {%- do column_superset.update({col.column: col}) -%}\n\n {%- endif %}\n\n {%- else -%}\n\n {%- do column_superset.update({col.column: col}) -%}\n\n {%- endif -%}\n\n {%- endif -%}\n\n {%- endfor -%}\n {%- endfor -%}\n\n {%- set ordered_column_names = column_superset.keys() -%}\n {%- set dbt_command = flags.WHICH -%}\n\n\n {% if dbt_command in ['run', 'build'] %}\n {% if (include | length > 0 or exclude | length > 0) and not column_superset.keys() %}\n {%- set relations_string -%}\n {%- for relation in relations -%}\n {{ relation.name }}\n {%- if not loop.last %}, {% endif -%}\n {%- endfor -%}\n {%- endset -%}\n\n {%- set error_message -%}\n There were no columns found to union for relations {{ relations_string }}\n {%- endset -%}\n\n {{ exceptions.raise_compiler_error(error_message) }}\n {%- endif -%}\n {%- endif -%}\n\n {%- for relation in relations %}\n\n (\n select\n\n {%- if source_column_name is not none %}\n cast({{ dbt.string_literal(relation) }} as {{ dbt.type_string() }}) as {{ source_column_name }},\n {%- endif %}\n\n {% for col_name in ordered_column_names -%}\n\n {%- set col = column_superset[col_name] %}\n {%- set col_type = column_override.get(col.column, col.data_type) %}\n {%- set col_name = adapter.quote(col_name) if col_name in relation_columns[relation] else 'null' %}\n cast({{ col_name }} as {{ col_type }}) as {{ col.quoted }} {% if not loop.last %},{% endif -%}\n\n {%- endfor %}\n\n from {{ relation }}\n\n {% if where -%}\n where {{ where }}\n {%- endif %}\n )\n\n {% if not loop.last -%}\n union all\n {% endif -%}\n\n {%- endfor -%}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt.string_literal", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.677355, "supported_languages": null}, "macro.dbt_utils.group_by": {"name": "group_by", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/groupby.sql", "original_file_path": "macros/sql/groupby.sql", "unique_id": "macro.dbt_utils.group_by", "macro_sql": "{%- macro group_by(n) -%}\n {{ return(adapter.dispatch('group_by', 'dbt_utils')(n)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__group_by"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.677749, "supported_languages": null}, "macro.dbt_utils.default__group_by": {"name": "default__group_by", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/groupby.sql", "original_file_path": "macros/sql/groupby.sql", "unique_id": "macro.dbt_utils.default__group_by", "macro_sql": "\n\n{%- macro default__group_by(n) -%}\n\n group by {% for i in range(1, n + 1) -%}\n {{ i }}{{ ',' if not loop.last }} \n {%- endfor -%}\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.678032, "supported_languages": null}, "macro.dbt_utils.deduplicate": {"name": "deduplicate", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "unique_id": "macro.dbt_utils.deduplicate", "macro_sql": "{%- macro deduplicate(relation, partition_by, order_by) -%}\n {{ return(adapter.dispatch('deduplicate', 'dbt_utils')(relation, partition_by, order_by)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.postgres__deduplicate"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6788428, "supported_languages": null}, "macro.dbt_utils.default__deduplicate": {"name": "default__deduplicate", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "unique_id": "macro.dbt_utils.default__deduplicate", "macro_sql": "\n\n{%- macro default__deduplicate(relation, partition_by, order_by) -%}\n\n with row_numbered as (\n select\n _inner.*,\n row_number() over (\n partition by {{ partition_by }}\n order by {{ order_by }}\n ) as rn\n from {{ relation }} as _inner\n )\n\n select\n distinct data.*\n from {{ relation }} as data\n {#\n -- Not all DBs will support natural joins but the ones that do include:\n -- Oracle, MySQL, SQLite, Redshift, Teradata, Materialize, Databricks\n -- Apache Spark, SingleStore, Vertica\n -- Those that do not appear to support natural joins include:\n -- SQLServer, Trino, Presto, Rockset, Athena\n #}\n natural join row_numbered\n where row_numbered.rn = 1\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.679086, "supported_languages": null}, "macro.dbt_utils.redshift__deduplicate": {"name": "redshift__deduplicate", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "unique_id": "macro.dbt_utils.redshift__deduplicate", "macro_sql": "{% macro redshift__deduplicate(relation, partition_by, order_by) -%}\n\n {{ return(dbt_utils.default__deduplicate(relation, partition_by, order_by=order_by)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__deduplicate"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6793652, "supported_languages": null}, "macro.dbt_utils.postgres__deduplicate": {"name": "postgres__deduplicate", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "unique_id": "macro.dbt_utils.postgres__deduplicate", "macro_sql": "\n{%- macro postgres__deduplicate(relation, partition_by, order_by) -%}\n\n select\n distinct on ({{ partition_by }}) *\n from {{ relation }}\n order by {{ partition_by }}{{ ',' ~ order_by }}\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.679598, "supported_languages": null}, "macro.dbt_utils.snowflake__deduplicate": {"name": "snowflake__deduplicate", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "unique_id": "macro.dbt_utils.snowflake__deduplicate", "macro_sql": "\n{%- macro snowflake__deduplicate(relation, partition_by, order_by) -%}\n\n select *\n from {{ relation }}\n qualify\n row_number() over (\n partition by {{ partition_by }}\n order by {{ order_by }}\n ) = 1\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.679803, "supported_languages": null}, "macro.dbt_utils.bigquery__deduplicate": {"name": "bigquery__deduplicate", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "unique_id": "macro.dbt_utils.bigquery__deduplicate", "macro_sql": "\n{%- macro bigquery__deduplicate(relation, partition_by, order_by) -%}\n\n select unique.*\n from (\n select\n array_agg (\n original\n order by {{ order_by }}\n limit 1\n )[offset(0)] unique\n from {{ relation }} original\n group by {{ partition_by }}\n )\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.680001, "supported_languages": null}, "macro.dbt_utils.surrogate_key": {"name": "surrogate_key", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/surrogate_key.sql", "original_file_path": "macros/sql/surrogate_key.sql", "unique_id": "macro.dbt_utils.surrogate_key", "macro_sql": "{%- macro surrogate_key(field_list) -%}\n {% set frustrating_jinja_feature = varargs %}\n {{ return(adapter.dispatch('surrogate_key', 'dbt_utils')(field_list, *varargs)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__surrogate_key"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.680448, "supported_languages": null}, "macro.dbt_utils.default__surrogate_key": {"name": "default__surrogate_key", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/surrogate_key.sql", "original_file_path": "macros/sql/surrogate_key.sql", "unique_id": "macro.dbt_utils.default__surrogate_key", "macro_sql": "\n\n{%- macro default__surrogate_key(field_list) -%}\n\n{%- set error_message = '\nWarning: `dbt_utils.surrogate_key` has been replaced by \\\n`dbt_utils.generate_surrogate_key`. The new macro treats null values \\\ndifferently to empty strings. To restore the behaviour of the original \\\nmacro, add a global variable in dbt_project.yml called \\\n`surrogate_key_treat_nulls_as_empty_strings` to your \\\ndbt_project.yml file with a value of True. \\\nThe {}.{} model triggered this warning. \\\n'.format(model.package_name, model.name) -%}\n\n{%- do exceptions.raise_compiler_error(error_message) -%}\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6807208, "supported_languages": null}, "macro.dbt_utils.safe_add": {"name": "safe_add", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/safe_add.sql", "original_file_path": "macros/sql/safe_add.sql", "unique_id": "macro.dbt_utils.safe_add", "macro_sql": "{%- macro safe_add(field_list) -%}\n {{ return(adapter.dispatch('safe_add', 'dbt_utils')(field_list)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__safe_add"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.681151, "supported_languages": null}, "macro.dbt_utils.default__safe_add": {"name": "default__safe_add", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/safe_add.sql", "original_file_path": "macros/sql/safe_add.sql", "unique_id": "macro.dbt_utils.default__safe_add", "macro_sql": "\n\n{%- macro default__safe_add(field_list) -%}\n\n{%- if field_list is not iterable or field_list is string or field_list is mapping -%}\n\n{%- set error_message = '\nWarning: the `safe_add` macro now takes a single list argument instead of \\\nstring arguments. The {}.{} model triggered this warning. \\\n'.format(model.package_name, model.name) -%}\n\n{%- do exceptions.warn(error_message) -%}\n\n{%- endif -%}\n\n{% set fields = [] %}\n\n{%- for field in field_list -%}\n\n {% do fields.append(\"coalesce(\" ~ field ~ \", 0)\") %}\n\n{%- endfor -%}\n\n{{ fields|join(' +\\n ') }}\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.68176, "supported_languages": null}, "macro.dbt_utils.nullcheck": {"name": "nullcheck", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/nullcheck.sql", "original_file_path": "macros/sql/nullcheck.sql", "unique_id": "macro.dbt_utils.nullcheck", "macro_sql": "{% macro nullcheck(cols) %}\n {{ return(adapter.dispatch('nullcheck', 'dbt_utils')(cols)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__nullcheck"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.682146, "supported_languages": null}, "macro.dbt_utils.default__nullcheck": {"name": "default__nullcheck", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/nullcheck.sql", "original_file_path": "macros/sql/nullcheck.sql", "unique_id": "macro.dbt_utils.default__nullcheck", "macro_sql": "{% macro default__nullcheck(cols) %}\n{%- for col in cols %}\n\n {% if col.is_string() -%}\n\n nullif({{col.name}},'') as {{col.name}}\n\n {%- else -%}\n\n {{col.name}}\n\n {%- endif -%}\n\n{%- if not loop.last -%} , {%- endif -%}\n\n{%- endfor -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6825159, "supported_languages": null}, "macro.dbt_utils.get_tables_by_pattern_sql": {"name": "get_tables_by_pattern_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_tables_by_pattern_sql.sql", "original_file_path": "macros/sql/get_tables_by_pattern_sql.sql", "unique_id": "macro.dbt_utils.get_tables_by_pattern_sql", "macro_sql": "{% macro get_tables_by_pattern_sql(schema_pattern, table_pattern, exclude='', database=target.database) %}\n {{ return(adapter.dispatch('get_tables_by_pattern_sql', 'dbt_utils')\n (schema_pattern, table_pattern, exclude, database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_tables_by_pattern_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.684501, "supported_languages": null}, "macro.dbt_utils.default__get_tables_by_pattern_sql": {"name": "default__get_tables_by_pattern_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_tables_by_pattern_sql.sql", "original_file_path": "macros/sql/get_tables_by_pattern_sql.sql", "unique_id": "macro.dbt_utils.default__get_tables_by_pattern_sql", "macro_sql": "{% macro default__get_tables_by_pattern_sql(schema_pattern, table_pattern, exclude='', database=target.database) %}\n\n select distinct\n table_schema as {{ adapter.quote('table_schema') }},\n table_name as {{ adapter.quote('table_name') }},\n {{ dbt_utils.get_table_types_sql() }}\n from {{ database }}.information_schema.tables\n where table_schema ilike '{{ schema_pattern }}'\n and table_name ilike '{{ table_pattern }}'\n and table_name not ilike '{{ exclude }}'\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.get_table_types_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6849122, "supported_languages": null}, "macro.dbt_utils.bigquery__get_tables_by_pattern_sql": {"name": "bigquery__get_tables_by_pattern_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_tables_by_pattern_sql.sql", "original_file_path": "macros/sql/get_tables_by_pattern_sql.sql", "unique_id": "macro.dbt_utils.bigquery__get_tables_by_pattern_sql", "macro_sql": "{% macro bigquery__get_tables_by_pattern_sql(schema_pattern, table_pattern, exclude='', database=target.database) %}\n\n {% if '%' in schema_pattern %}\n {% set schemata=dbt_utils._bigquery__get_matching_schemata(schema_pattern, database) %}\n {% else %}\n {% set schemata=[schema_pattern] %}\n {% endif %}\n\n {% set sql %}\n {% for schema in schemata %}\n select distinct\n table_schema,\n table_name,\n {{ dbt_utils.get_table_types_sql() }}\n\n from {{ adapter.quote(database) }}.{{ schema }}.INFORMATION_SCHEMA.TABLES\n where lower(table_name) like lower ('{{ table_pattern }}')\n and lower(table_name) not like lower ('{{ exclude }}')\n\n {% if not loop.last %} union all {% endif %}\n\n {% endfor %}\n {% endset %}\n\n {{ return(sql) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._bigquery__get_matching_schemata", "macro.dbt_utils.get_table_types_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.685805, "supported_languages": null}, "macro.dbt_utils._bigquery__get_matching_schemata": {"name": "_bigquery__get_matching_schemata", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_tables_by_pattern_sql.sql", "original_file_path": "macros/sql/get_tables_by_pattern_sql.sql", "unique_id": "macro.dbt_utils._bigquery__get_matching_schemata", "macro_sql": "{% macro _bigquery__get_matching_schemata(schema_pattern, database) %}\n {% if execute %}\n\n {% set sql %}\n select schema_name from {{ adapter.quote(database) }}.INFORMATION_SCHEMA.SCHEMATA\n where lower(schema_name) like lower('{{ schema_pattern }}')\n {% endset %}\n\n {% set results=run_query(sql) %}\n\n {% set schemata=results.columns['schema_name'].values() %}\n\n {{ return(schemata) }}\n\n {% else %}\n\n {{ return([]) }}\n\n {% endif %}\n\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.686372, "supported_languages": null}, "macro.dbt_utils.get_column_values": {"name": "get_column_values", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_column_values.sql", "original_file_path": "macros/sql/get_column_values.sql", "unique_id": "macro.dbt_utils.get_column_values", "macro_sql": "{% macro get_column_values(table, column, order_by='count(*) desc', max_records=none, default=none, where=none) -%}\n {{ return(adapter.dispatch('get_column_values', 'dbt_utils')(table, column, order_by, max_records, default, where)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_column_values"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.687659, "supported_languages": null}, "macro.dbt_utils.default__get_column_values": {"name": "default__get_column_values", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_column_values.sql", "original_file_path": "macros/sql/get_column_values.sql", "unique_id": "macro.dbt_utils.default__get_column_values", "macro_sql": "{% macro default__get_column_values(table, column, order_by='count(*) desc', max_records=none, default=none, where=none) -%}\n {#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. #}\n {%- if not execute -%}\n {% set default = [] if not default %}\n {{ return(default) }}\n {% endif %}\n\n {%- do dbt_utils._is_ephemeral(table, 'get_column_values') -%}\n\n {# Not all relations are tables. Renaming for internal clarity without breaking functionality for anyone using named arguments #}\n {# TODO: Change the method signature in a future 0.x.0 release #}\n {%- set target_relation = table -%}\n\n {# adapter.load_relation is a convenience wrapper to avoid building a Relation when we already have one #}\n {% set relation_exists = (load_relation(target_relation)) is not none %}\n\n {%- call statement('get_column_values', fetch_result=true) %}\n\n {%- if not relation_exists and default is none -%}\n\n {{ exceptions.raise_compiler_error(\"In get_column_values(): relation \" ~ target_relation ~ \" does not exist and no default value was provided.\") }}\n\n {%- elif not relation_exists and default is not none -%}\n\n {{ log(\"Relation \" ~ target_relation ~ \" does not exist. Returning the default value: \" ~ default) }}\n\n {{ return(default) }}\n\n {%- else -%}\n\n\n select\n {{ column }} as value\n\n from {{ target_relation }}\n\n {% if where is not none %}\n where {{ where }}\n {% endif %}\n\n group by {{ column }}\n order by {{ order_by }}\n\n {% if max_records is not none %}\n limit {{ max_records }}\n {% endif %}\n\n {% endif %}\n\n {%- endcall -%}\n\n {%- set value_list = load_result('get_column_values') -%}\n\n {%- if value_list and value_list['data'] -%}\n {%- set values = value_list['data'] | map(attribute=0) | list %}\n {{ return(values) }}\n {%- else -%}\n {{ return(default) }}\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._is_ephemeral", "macro.dbt.load_relation", "macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6893241, "supported_languages": null}, "macro.dbt_utils.pivot": {"name": "pivot", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/pivot.sql", "original_file_path": "macros/sql/pivot.sql", "unique_id": "macro.dbt_utils.pivot", "macro_sql": "{% macro pivot(column,\n values,\n alias=True,\n agg='sum',\n cmp='=',\n prefix='',\n suffix='',\n then_value=1,\n else_value=0,\n quote_identifiers=True,\n distinct=False) %}\n {{ return(adapter.dispatch('pivot', 'dbt_utils')(column, values, alias, agg, cmp, prefix, suffix, then_value, else_value, quote_identifiers, distinct)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__pivot"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.690506, "supported_languages": null}, "macro.dbt_utils.default__pivot": {"name": "default__pivot", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/pivot.sql", "original_file_path": "macros/sql/pivot.sql", "unique_id": "macro.dbt_utils.default__pivot", "macro_sql": "{% macro default__pivot(column,\n values,\n alias=True,\n agg='sum',\n cmp='=',\n prefix='',\n suffix='',\n then_value=1,\n else_value=0,\n quote_identifiers=True,\n distinct=False) %}\n {% for value in values %}\n {{ agg }}(\n {% if distinct %} distinct {% endif %}\n case\n when {{ column }} {{ cmp }} '{{ dbt.escape_single_quotes(value) }}'\n then {{ then_value }}\n else {{ else_value }}\n end\n )\n {% if alias %}\n {% if quote_identifiers %}\n as {{ adapter.quote(prefix ~ value ~ suffix) }}\n {% else %}\n as {{ dbt_utils.slugify(prefix ~ value ~ suffix) }}\n {% endif %}\n {% endif %}\n {% if not loop.last %},{% endif %}\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.escape_single_quotes", "macro.dbt_utils.slugify"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.691435, "supported_languages": null}, "macro.dbt_utils.get_filtered_columns_in_relation": {"name": "get_filtered_columns_in_relation", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_filtered_columns_in_relation.sql", "original_file_path": "macros/sql/get_filtered_columns_in_relation.sql", "unique_id": "macro.dbt_utils.get_filtered_columns_in_relation", "macro_sql": "{% macro get_filtered_columns_in_relation(from, except=[]) -%}\n {{ return(adapter.dispatch('get_filtered_columns_in_relation', 'dbt_utils')(from, except)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_filtered_columns_in_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.691963, "supported_languages": null}, "macro.dbt_utils.default__get_filtered_columns_in_relation": {"name": "default__get_filtered_columns_in_relation", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_filtered_columns_in_relation.sql", "original_file_path": "macros/sql/get_filtered_columns_in_relation.sql", "unique_id": "macro.dbt_utils.default__get_filtered_columns_in_relation", "macro_sql": "{% macro default__get_filtered_columns_in_relation(from, except=[]) -%}\n {%- do dbt_utils._is_relation(from, 'get_filtered_columns_in_relation') -%}\n {%- do dbt_utils._is_ephemeral(from, 'get_filtered_columns_in_relation') -%}\n\n {# -- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. #}\n {%- if not execute -%}\n {{ return('') }}\n {% endif %}\n\n {%- set include_cols = [] %}\n {%- set cols = adapter.get_columns_in_relation(from) -%}\n {%- set except = except | map(\"lower\") | list %}\n {%- for col in cols -%}\n {%- if col.column|lower not in except -%}\n {% do include_cols.append(col.column) %}\n {%- endif %}\n {%- endfor %}\n\n {{ return(include_cols) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.692849, "supported_languages": null}, "macro.dbt_utils.width_bucket": {"name": "width_bucket", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/width_bucket.sql", "original_file_path": "macros/sql/width_bucket.sql", "unique_id": "macro.dbt_utils.width_bucket", "macro_sql": "{% macro width_bucket(expr, min_value, max_value, num_buckets) %}\n {{ return(adapter.dispatch('width_bucket', 'dbt_utils') (expr, min_value, max_value, num_buckets)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__width_bucket"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6937358, "supported_languages": null}, "macro.dbt_utils.default__width_bucket": {"name": "default__width_bucket", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/width_bucket.sql", "original_file_path": "macros/sql/width_bucket.sql", "unique_id": "macro.dbt_utils.default__width_bucket", "macro_sql": "{% macro default__width_bucket(expr, min_value, max_value, num_buckets) -%}\n\n {% set bin_size -%}\n (( {{ max_value }} - {{ min_value }} ) / {{ num_buckets }} )\n {%- endset %}\n (\n -- to break ties when the amount is eaxtly at the bucket egde\n case\n when\n mod(\n {{ dbt.safe_cast(expr, dbt.type_numeric() ) }},\n {{ dbt.safe_cast(bin_size, dbt.type_numeric() ) }}\n ) = 0\n then 1\n else 0\n end\n ) +\n -- Anything over max_value goes the N+1 bucket\n least(\n ceil(\n ({{ expr }} - {{ min_value }})/{{ bin_size }}\n ),\n {{ num_buckets }} + 1\n )\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.safe_cast", "macro.dbt.type_numeric"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.694256, "supported_languages": null}, "macro.dbt_utils.snowflake__width_bucket": {"name": "snowflake__width_bucket", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/width_bucket.sql", "original_file_path": "macros/sql/width_bucket.sql", "unique_id": "macro.dbt_utils.snowflake__width_bucket", "macro_sql": "{% macro snowflake__width_bucket(expr, min_value, max_value, num_buckets) %}\n width_bucket({{ expr }}, {{ min_value }}, {{ max_value }}, {{ num_buckets }} )\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.694471, "supported_languages": null}, "macro.dbt_utils.get_query_results_as_dict": {"name": "get_query_results_as_dict", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_query_results_as_dict.sql", "original_file_path": "macros/sql/get_query_results_as_dict.sql", "unique_id": "macro.dbt_utils.get_query_results_as_dict", "macro_sql": "{% macro get_query_results_as_dict(query) %}\n {{ return(adapter.dispatch('get_query_results_as_dict', 'dbt_utils')(query)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_query_results_as_dict"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.694897, "supported_languages": null}, "macro.dbt_utils.default__get_query_results_as_dict": {"name": "default__get_query_results_as_dict", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_query_results_as_dict.sql", "original_file_path": "macros/sql/get_query_results_as_dict.sql", "unique_id": "macro.dbt_utils.default__get_query_results_as_dict", "macro_sql": "{% macro default__get_query_results_as_dict(query) %}\n\n{# This macro returns a dictionary of the form {column_name: (tuple_of_results)} #}\n\n {%- call statement('get_query_results', fetch_result=True,auto_begin=false) -%}\n\n {{ query }}\n\n {%- endcall -%}\n\n {% set sql_results={} %}\n\n {%- if execute -%}\n {% set sql_results_table = load_result('get_query_results').table.columns %}\n {% for column_name, column in sql_results_table.items() %}\n {% do sql_results.update({column_name: column.values()}) %}\n {% endfor %}\n {%- endif -%}\n\n {{ return(sql_results) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.69556, "supported_languages": null}, "macro.dbt_utils.generate_surrogate_key": {"name": "generate_surrogate_key", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/generate_surrogate_key.sql", "original_file_path": "macros/sql/generate_surrogate_key.sql", "unique_id": "macro.dbt_utils.generate_surrogate_key", "macro_sql": "{%- macro generate_surrogate_key(field_list) -%}\n {{ return(adapter.dispatch('generate_surrogate_key', 'dbt_utils')(field_list)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__generate_surrogate_key"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.696081, "supported_languages": null}, "macro.dbt_utils.default__generate_surrogate_key": {"name": "default__generate_surrogate_key", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/generate_surrogate_key.sql", "original_file_path": "macros/sql/generate_surrogate_key.sql", "unique_id": "macro.dbt_utils.default__generate_surrogate_key", "macro_sql": "\n\n{%- macro default__generate_surrogate_key(field_list) -%}\n\n{%- if var('surrogate_key_treat_nulls_as_empty_strings', False) -%}\n {%- set default_null_value = \"\" -%}\n{%- else -%}\n {%- set default_null_value = '_dbt_utils_surrogate_key_null_' -%}\n{%- endif -%}\n\n{%- set fields = [] -%}\n\n{%- for field in field_list -%}\n\n {%- do fields.append(\n \"coalesce(cast(\" ~ field ~ \" as \" ~ dbt.type_string() ~ \"), '\" ~ default_null_value ~\"')\"\n ) -%}\n\n {%- if not loop.last %}\n {%- do fields.append(\"'-'\") -%}\n {%- endif -%}\n\n{%- endfor -%}\n\n{{ dbt.hash(dbt.concat(fields)) }}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt.type_string", "macro.dbt.hash", "macro.dbt.concat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.696775, "supported_languages": null}, "macro.dbt_utils.get_table_types_sql": {"name": "get_table_types_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_table_types_sql.sql", "original_file_path": "macros/sql/get_table_types_sql.sql", "unique_id": "macro.dbt_utils.get_table_types_sql", "macro_sql": "{%- macro get_table_types_sql() -%}\n {{ return(adapter.dispatch('get_table_types_sql', 'dbt_utils')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_utils.postgres__get_table_types_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6973739, "supported_languages": null}, "macro.dbt_utils.default__get_table_types_sql": {"name": "default__get_table_types_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_table_types_sql.sql", "original_file_path": "macros/sql/get_table_types_sql.sql", "unique_id": "macro.dbt_utils.default__get_table_types_sql", "macro_sql": "{% macro default__get_table_types_sql() %}\n case table_type\n when 'BASE TABLE' then 'table'\n when 'EXTERNAL TABLE' then 'external'\n when 'MATERIALIZED VIEW' then 'materializedview'\n else lower(table_type)\n end as {{ adapter.quote('table_type') }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.6975338, "supported_languages": null}, "macro.dbt_utils.postgres__get_table_types_sql": {"name": "postgres__get_table_types_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_table_types_sql.sql", "original_file_path": "macros/sql/get_table_types_sql.sql", "unique_id": "macro.dbt_utils.postgres__get_table_types_sql", "macro_sql": "{% macro postgres__get_table_types_sql() %}\n case table_type\n when 'BASE TABLE' then 'table'\n when 'FOREIGN' then 'external'\n when 'MATERIALIZED VIEW' then 'materializedview'\n else lower(table_type)\n end as {{ adapter.quote('table_type') }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.697689, "supported_languages": null}, "macro.dbt_utils.databricks__get_table_types_sql": {"name": "databricks__get_table_types_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_table_types_sql.sql", "original_file_path": "macros/sql/get_table_types_sql.sql", "unique_id": "macro.dbt_utils.databricks__get_table_types_sql", "macro_sql": "{% macro databricks__get_table_types_sql() %}\n case table_type\n when 'MANAGED' then 'table'\n when 'BASE TABLE' then 'table'\n when 'MATERIALIZED VIEW' then 'materializedview'\n else lower(table_type)\n end as {{ adapter.quote('table_type') }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.697845, "supported_languages": null}, "macro.dbt_utils.get_single_value": {"name": "get_single_value", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_single_value.sql", "original_file_path": "macros/sql/get_single_value.sql", "unique_id": "macro.dbt_utils.get_single_value", "macro_sql": "{% macro get_single_value(query, default=none) %}\n {{ return(adapter.dispatch('get_single_value', 'dbt_utils')(query, default)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_single_value"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.698431, "supported_languages": null}, "macro.dbt_utils.default__get_single_value": {"name": "default__get_single_value", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_single_value.sql", "original_file_path": "macros/sql/get_single_value.sql", "unique_id": "macro.dbt_utils.default__get_single_value", "macro_sql": "{% macro default__get_single_value(query, default) %}\n\n{# This macro returns the (0, 0) record in a query, i.e. the first row of the first column #}\n\n {%- call statement('get_query_result', fetch_result=True, auto_begin=false) -%}\n\n {{ query }}\n\n {%- endcall -%}\n\n {%- if execute -%}\n\n {% set r = load_result('get_query_result').table.columns[0].values() %}\n {% if r | length == 0 %}\n {% do print('Query `' ~ query ~ '` returned no rows. Using the default value: ' ~ default) %}\n {% set sql_result = default %}\n {% else %}\n {% set sql_result = r[0] %}\n {% endif %}\n \n {%- else -%}\n \n {% set sql_result = default %}\n \n {%- endif -%}\n\n {% do return(sql_result) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.699331, "supported_languages": null}, "macro.dbt_utils.degrees_to_radians": {"name": "degrees_to_radians", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/haversine_distance.sql", "original_file_path": "macros/sql/haversine_distance.sql", "unique_id": "macro.dbt_utils.degrees_to_radians", "macro_sql": "{% macro degrees_to_radians(degrees) -%}\n acos(-1) * {{degrees}} / 180\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.700554, "supported_languages": null}, "macro.dbt_utils.haversine_distance": {"name": "haversine_distance", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/haversine_distance.sql", "original_file_path": "macros/sql/haversine_distance.sql", "unique_id": "macro.dbt_utils.haversine_distance", "macro_sql": "{% macro haversine_distance(lat1, lon1, lat2, lon2, unit='mi') -%}\n {{ return(adapter.dispatch('haversine_distance', 'dbt_utils')(lat1,lon1,lat2,lon2,unit)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__haversine_distance"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.700865, "supported_languages": null}, "macro.dbt_utils.default__haversine_distance": {"name": "default__haversine_distance", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/haversine_distance.sql", "original_file_path": "macros/sql/haversine_distance.sql", "unique_id": "macro.dbt_utils.default__haversine_distance", "macro_sql": "{% macro default__haversine_distance(lat1, lon1, lat2, lon2, unit='mi') -%}\n{%- if unit == 'mi' %}\n {% set conversion_rate = 1 %}\n{% elif unit == 'km' %}\n {% set conversion_rate = 1.60934 %}\n{% else %}\n {{ exceptions.raise_compiler_error(\"unit input must be one of 'mi' or 'km'. Got \" ~ unit) }}\n{% endif %}\n\n 2 * 3961 * asin(sqrt(power((sin(radians(({{ lat2 }} - {{ lat1 }}) / 2))), 2) +\n cos(radians({{lat1}})) * cos(radians({{lat2}})) *\n power((sin(radians(({{ lon2 }} - {{ lon1 }}) / 2))), 2))) * {{ conversion_rate }}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.701483, "supported_languages": null}, "macro.dbt_utils.bigquery__haversine_distance": {"name": "bigquery__haversine_distance", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/haversine_distance.sql", "original_file_path": "macros/sql/haversine_distance.sql", "unique_id": "macro.dbt_utils.bigquery__haversine_distance", "macro_sql": "{% macro bigquery__haversine_distance(lat1, lon1, lat2, lon2, unit='mi') -%}\n{% set radians_lat1 = dbt_utils.degrees_to_radians(lat1) %}\n{% set radians_lat2 = dbt_utils.degrees_to_radians(lat2) %}\n{% set radians_lon1 = dbt_utils.degrees_to_radians(lon1) %}\n{% set radians_lon2 = dbt_utils.degrees_to_radians(lon2) %}\n{%- if unit == 'mi' %}\n {% set conversion_rate = 1 %}\n{% elif unit == 'km' %}\n {% set conversion_rate = 1.60934 %}\n{% else %}\n {{ exceptions.raise_compiler_error(\"unit input must be one of 'mi' or 'km'. Got \" ~ unit) }}\n{% endif %}\n 2 * 3961 * asin(sqrt(power(sin(({{ radians_lat2 }} - {{ radians_lat1 }}) / 2), 2) +\n cos({{ radians_lat1 }}) * cos({{ radians_lat2 }}) *\n power(sin(({{ radians_lon2 }} - {{ radians_lon1 }}) / 2), 2))) * {{ conversion_rate }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.degrees_to_radians"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.702515, "supported_languages": null}, "macro.iterable_source.get_campaign_label_history_columns": {"name": "get_campaign_label_history_columns", "resource_type": "macro", "package_name": "iterable_source", "path": "macros/get_campaign_label_history_columns.sql", "original_file_path": "macros/get_campaign_label_history_columns.sql", "unique_id": "macro.iterable_source.get_campaign_label_history_columns", "macro_sql": "{% macro get_campaign_label_history_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"campaign_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"label\", \"datatype\": dbt.type_string()},\n {\"name\": \"updated_at\", \"datatype\": dbt.type_timestamp()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_int", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.7032561, "supported_languages": null}, "macro.iterable_source.get_campaign_suppression_list_history_columns": {"name": "get_campaign_suppression_list_history_columns", "resource_type": "macro", "package_name": "iterable_source", "path": "macros/get_campaign_suppression_list_history_columns.sql", "original_file_path": "macros/get_campaign_suppression_list_history_columns.sql", "unique_id": "macro.iterable_source.get_campaign_suppression_list_history_columns", "macro_sql": "{% macro get_campaign_suppression_list_history_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"campaign_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"suppressed_list_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"updated_at\", \"datatype\": dbt.type_timestamp()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_int"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.704031, "supported_languages": null}, "macro.iterable_source.get_user_unsubscribed_message_type_history_columns": {"name": "get_user_unsubscribed_message_type_history_columns", "resource_type": "macro", "package_name": "iterable_source", "path": "macros/get_user_unsubscribed_message_type_history_columns.sql", "original_file_path": "macros/get_user_unsubscribed_message_type_history_columns.sql", "unique_id": "macro.iterable_source.get_user_unsubscribed_message_type_history_columns", "macro_sql": "{% macro get_user_unsubscribed_message_type_history_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"email\", \"datatype\": dbt.type_string()},\n {\"name\": \"message_type_id\", \"datatype\": dbt.type_numeric()},\n {\"name\": \"updated_at\", \"datatype\": dbt.type_timestamp()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string", "macro.dbt.type_numeric"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.70478, "supported_languages": null}, "macro.iterable_source.get_message_type_columns": {"name": "get_message_type_columns", "resource_type": "macro", "package_name": "iterable_source", "path": "macros/get_message_type_columns.sql", "original_file_path": "macros/get_message_type_columns.sql", "unique_id": "macro.iterable_source.get_message_type_columns", "macro_sql": "{% macro get_message_type_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"channel_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"id\", \"datatype\": dbt.type_int()},\n {\"name\": \"name\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_int", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.7055318, "supported_languages": null}, "macro.iterable_source.get_list_columns": {"name": "get_list_columns", "resource_type": "macro", "package_name": "iterable_source", "path": "macros/get_list_columns.sql", "original_file_path": "macros/get_list_columns.sql", "unique_id": "macro.iterable_source.get_list_columns", "macro_sql": "{% macro get_list_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"created_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"id\", \"datatype\": dbt.type_int()},\n {\"name\": \"list_type\", \"datatype\": dbt.type_string()},\n {\"name\": \"name\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_int", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.7063859, "supported_languages": null}, "macro.iterable_source.get_channel_columns": {"name": "get_channel_columns", "resource_type": "macro", "package_name": "iterable_source", "path": "macros/get_channel_columns.sql", "original_file_path": "macros/get_channel_columns.sql", "unique_id": "macro.iterable_source.get_channel_columns", "macro_sql": "{% macro get_channel_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"channel_type\", \"datatype\": dbt.type_string()},\n {\"name\": \"id\", \"datatype\": dbt.type_int()},\n {\"name\": \"message_medium\", \"datatype\": dbt.type_string()},\n {\"name\": \"name\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string", "macro.dbt.type_int"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.707226, "supported_languages": null}, "macro.iterable_source.get_user_unsubscribed_channel_history_columns": {"name": "get_user_unsubscribed_channel_history_columns", "resource_type": "macro", "package_name": "iterable_source", "path": "macros/get_user_unsubscribed_channel_history_columns.sql", "original_file_path": "macros/get_user_unsubscribed_channel_history_columns.sql", "unique_id": "macro.iterable_source.get_user_unsubscribed_channel_history_columns", "macro_sql": "{% macro get_user_unsubscribed_channel_history_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"channel_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"email\", \"datatype\": dbt.type_string()},\n {\"name\": \"updated_at\", \"datatype\": dbt.type_timestamp()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_int", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.707881, "supported_languages": null}, "macro.iterable_source.get_campaign_history_columns": {"name": "get_campaign_history_columns", "resource_type": "macro", "package_name": "iterable_source", "path": "macros/get_campaign_history_columns.sql", "original_file_path": "macros/get_campaign_history_columns.sql", "unique_id": "macro.iterable_source.get_campaign_history_columns", "macro_sql": "{% macro get_campaign_history_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"campaign_state\", \"datatype\": dbt.type_string()},\n {\"name\": \"created_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"created_by_user_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"ended_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"id\", \"datatype\": dbt.type_numeric()},\n {\"name\": \"name\", \"datatype\": dbt.type_string()},\n {\"name\": \"recurring_campaign_id\", \"datatype\": dbt.type_numeric()},\n {\"name\": \"send_size\", \"datatype\": dbt.type_numeric()},\n {\"name\": \"start_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"template_id\", \"datatype\": dbt.type_numeric()},\n {\"name\": \"type\", \"datatype\": dbt.type_string()},\n {\"name\": \"updated_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"workflow_id\", \"datatype\": dbt.type_numeric()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string", "macro.dbt.type_numeric"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.70962, "supported_languages": null}, "macro.iterable_source.get_event_extension_columns": {"name": "get_event_extension_columns", "resource_type": "macro", "package_name": "iterable_source", "path": "macros/get_event_extension_columns.sql", "original_file_path": "macros/get_event_extension_columns.sql", "unique_id": "macro.iterable_source.get_event_extension_columns", "macro_sql": "{% macro get_event_extension_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"app_already_running\", \"datatype\": \"boolean\"},\n {\"name\": \"badge\", \"datatype\": dbt.type_string()},\n {\"name\": \"canonical_url_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"content_available\", \"datatype\": \"boolean\"},\n {\"name\": \"content_id\", \"datatype\": dbt.type_numeric()},\n {\"name\": \"deeplink_android\", \"datatype\": dbt.type_string()},\n {\"name\": \"deeplink_ios\", \"datatype\": dbt.type_string()},\n {\"name\": \"device\", \"datatype\": dbt.type_string()},\n {\"name\": \"email_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"email_subject\", \"datatype\": dbt.type_string()},\n {\"name\": \"experiment_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"from_phone_number_id\", \"datatype\": dbt.type_numeric()},\n {\"name\": \"from_smssender_id\", \"datatype\": dbt.type_numeric()},\n {\"name\": \"image_url\", \"datatype\": dbt.type_string()},\n {\"name\": \"is_ghost_push\", \"datatype\": \"boolean\"},\n {\"name\": \"link_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"link_url\", \"datatype\": dbt.type_string()},\n {\"name\": \"locale\", \"datatype\": dbt.type_string()},\n {\"name\": \"payload\", \"datatype\": dbt.type_string()},\n {\"name\": \"platform_endpoint\", \"datatype\": dbt.type_string()},\n {\"name\": \"push_message\", \"datatype\": dbt.type_string()},\n {\"name\": \"region\", \"datatype\": dbt.type_string()},\n {\"name\": \"sms_message\", \"datatype\": dbt.type_string()},\n {\"name\": \"sms_provider_response_code\", \"datatype\": dbt.type_numeric()},\n {\"name\": \"sms_provider_response_message\", \"datatype\": dbt.type_string()},\n {\"name\": \"sms_provider_response_more_info\", \"datatype\": dbt.type_string()},\n {\"name\": \"sms_provider_response_status\", \"datatype\": dbt.type_numeric()},\n {\"name\": \"sound\", \"datatype\": dbt.type_string()},\n {\"name\": \"to_phone_number\", \"datatype\": dbt.type_string()},\n {\"name\": \"url\", \"datatype\": dbt.type_string()},\n {\"name\": \"workflow_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"workflow_name\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_string", "macro.dbt.type_timestamp", "macro.dbt.type_numeric"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.7141252, "supported_languages": null}, "macro.iterable_source.get_campaign_list_history_columns": {"name": "get_campaign_list_history_columns", "resource_type": "macro", "package_name": "iterable_source", "path": "macros/get_campaign_list_history_columns.sql", "original_file_path": "macros/get_campaign_list_history_columns.sql", "unique_id": "macro.iterable_source.get_campaign_list_history_columns", "macro_sql": "{% macro get_campaign_list_history_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"campaign_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"list_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"updated_at\", \"datatype\": dbt.type_timestamp()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_int"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.714825, "supported_languages": null}, "macro.iterable_source.get_event_columns": {"name": "get_event_columns", "resource_type": "macro", "package_name": "iterable_source", "path": "macros/get_event_columns.sql", "original_file_path": "macros/get_event_columns.sql", "unique_id": "macro.iterable_source.get_event_columns", "macro_sql": "{% macro get_event_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"campaign_id\", \"datatype\": dbt.type_numeric()},\n {\"name\": \"content_id\", \"datatype\": dbt.type_numeric()},\n {\"name\": \"created_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"email\", \"datatype\": dbt.type_string()},\n {\"name\": \"event_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"message_bus_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"message_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"message_type_id\", \"datatype\": dbt.type_numeric()},\n {\"name\": \"recipient_state\", \"datatype\": dbt.type_string()},\n {\"name\": \"status\", \"datatype\": dbt.type_string()},\n {\"name\": \"unsub_source\", \"datatype\": dbt.type_string()},\n {\"name\": \"user_agent\", \"datatype\": dbt.type_string()},\n {\"name\": \"user_agent_device\", \"datatype\": dbt.type_string()},\n {\"name\": \"transactional_data\", \"datatype\": dbt.type_string()},\n {\"name\": \"additional_properties\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_string", "macro.dbt.type_timestamp", "macro.dbt.type_numeric"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.716904, "supported_languages": null}, "macro.iterable_source.get_template_history_columns": {"name": "get_template_history_columns", "resource_type": "macro", "package_name": "iterable_source", "path": "macros/get_template_history_columns.sql", "original_file_path": "macros/get_template_history_columns.sql", "unique_id": "macro.iterable_source.get_template_history_columns", "macro_sql": "{% macro get_template_history_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"client_template_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"created_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"creator_user_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"id\", \"datatype\": dbt.type_int()},\n {\"name\": \"message_type_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"name\", \"datatype\": dbt.type_string()},\n {\"name\": \"template_type\", \"datatype\": dbt.type_string()},\n {\"name\": \"updated_at\", \"datatype\": dbt.type_timestamp()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string", "macro.dbt.type_int"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.7180989, "supported_languages": null}, "macro.iterable_source.get_user_history_columns": {"name": "get_user_history_columns", "resource_type": "macro", "package_name": "iterable_source", "path": "macros/get_user_history_columns.sql", "original_file_path": "macros/get_user_history_columns.sql", "unique_id": "macro.iterable_source.get_user_history_columns", "macro_sql": "{% macro get_user_history_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"email\", \"datatype\": dbt.type_string()},\n {\"name\": \"email_list_ids\", \"datatype\": dbt.type_string()},\n {\"name\": \"first_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"last_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"phone_number\", \"datatype\": dbt.type_string()},\n {\"name\": \"signup_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"signup_source\", \"datatype\": dbt.type_string()},\n {\"name\": \"updated_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"user_id\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.719386, "supported_languages": null}, "macro.iterable_source.get_user_device_history_columns": {"name": "get_user_device_history_columns", "resource_type": "macro", "package_name": "iterable_source", "path": "macros/get_user_device_history_columns.sql", "original_file_path": "macros/get_user_device_history_columns.sql", "unique_id": "macro.iterable_source.get_user_device_history_columns", "macro_sql": "{% macro get_user_device_history_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"application_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"email\", \"datatype\": dbt.type_string()},\n {\"name\": \"endpoint_enabled\", \"datatype\": \"boolean\"},\n {\"name\": \"index\", \"datatype\": dbt.type_numeric()},\n {\"name\": \"platform\", \"datatype\": dbt.type_string()},\n {\"name\": \"platform_endpoint\", \"datatype\": dbt.type_string()},\n {\"name\": \"updated_at\", \"datatype\": dbt.type_timestamp()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string", "macro.dbt.type_numeric"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.7204359, "supported_languages": null}, "macro.fivetran_utils.enabled_vars": {"name": "enabled_vars", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/enabled_vars.sql", "original_file_path": "macros/enabled_vars.sql", "unique_id": "macro.fivetran_utils.enabled_vars", "macro_sql": "{% macro enabled_vars(vars) %}\n\n{% for v in vars %}\n \n {% if var(v, True) == False %}\n {{ return(False) }}\n {% endif %}\n\n{% endfor %}\n\n{{ return(True) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.7208772, "supported_languages": null}, "macro.fivetran_utils.percentile": {"name": "percentile", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "unique_id": "macro.fivetran_utils.percentile", "macro_sql": "{% macro percentile(percentile_field, partition_field, percent) -%}\n\n{{ adapter.dispatch('percentile', 'fivetran_utils') (percentile_field, partition_field, percent) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.postgres__percentile"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.721926, "supported_languages": null}, "macro.fivetran_utils.default__percentile": {"name": "default__percentile", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "unique_id": "macro.fivetran_utils.default__percentile", "macro_sql": "{% macro default__percentile(percentile_field, partition_field, percent) %}\n\n percentile_cont( \n {{ percent }} )\n within group ( order by {{ percentile_field }} )\n over ( partition by {{ partition_field }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.722118, "supported_languages": null}, "macro.fivetran_utils.redshift__percentile": {"name": "redshift__percentile", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "unique_id": "macro.fivetran_utils.redshift__percentile", "macro_sql": "{% macro redshift__percentile(percentile_field, partition_field, percent) %}\n\n percentile_cont( \n {{ percent }} )\n within group ( order by {{ percentile_field }} )\n over ( partition by {{ partition_field }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.722302, "supported_languages": null}, "macro.fivetran_utils.bigquery__percentile": {"name": "bigquery__percentile", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "unique_id": "macro.fivetran_utils.bigquery__percentile", "macro_sql": "{% macro bigquery__percentile(percentile_field, partition_field, percent) %}\n\n percentile_cont( \n {{ percentile_field }}, \n {{ percent }}) \n over (partition by {{ partition_field }} \n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.722487, "supported_languages": null}, "macro.fivetran_utils.postgres__percentile": {"name": "postgres__percentile", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "unique_id": "macro.fivetran_utils.postgres__percentile", "macro_sql": "{% macro postgres__percentile(percentile_field, partition_field, percent) %}\n\n percentile_cont( \n {{ percent }} )\n within group ( order by {{ percentile_field }} )\n /* have to group by partition field */\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.7227688, "supported_languages": null}, "macro.fivetran_utils.spark__percentile": {"name": "spark__percentile", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "unique_id": "macro.fivetran_utils.spark__percentile", "macro_sql": "{% macro spark__percentile(percentile_field, partition_field, percent) %}\n\n percentile( \n {{ percentile_field }}, \n {{ percent }}) \n over (partition by {{ partition_field }} \n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.72301, "supported_languages": null}, "macro.fivetran_utils.pivot_json_extract": {"name": "pivot_json_extract", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/pivot_json_extract.sql", "original_file_path": "macros/pivot_json_extract.sql", "unique_id": "macro.fivetran_utils.pivot_json_extract", "macro_sql": "{% macro pivot_json_extract(string, list_of_properties) %}\n\n{%- for property in list_of_properties -%}\n{%- if property is mapping -%}\nreplace( {{ fivetran_utils.json_extract(string, property.name) }}, '\"', '') as {{ property.alias if property.alias else property.name | replace(' ', '_') | replace('.', '_') | lower }}\n\n{%- else -%}\nreplace( {{ fivetran_utils.json_extract(string, property) }}, '\"', '') as {{ property | replace(' ', '_') | lower }}\n\n{%- endif -%}\n{%- if not loop.last -%},{%- endif %}\n{% endfor -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.json_extract"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.7239401, "supported_languages": null}, "macro.fivetran_utils.persist_pass_through_columns": {"name": "persist_pass_through_columns", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/persist_pass_through_columns.sql", "original_file_path": "macros/persist_pass_through_columns.sql", "unique_id": "macro.fivetran_utils.persist_pass_through_columns", "macro_sql": "{% macro persist_pass_through_columns(pass_through_variable, identifier=none, transform='') %}\n\n{% if var(pass_through_variable, none) %}\n {% for field in var(pass_through_variable) %}\n , {{ transform ~ '(' ~ (identifier ~ '.' if identifier else '') ~ (field.alias if field.alias else field.name) ~ ')' }} as {{ field.alias if field.alias else field.name }}\n {% endfor %}\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.7247748, "supported_languages": null}, "macro.fivetran_utils.json_parse": {"name": "json_parse", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "unique_id": "macro.fivetran_utils.json_parse", "macro_sql": "{% macro json_parse(string, string_path) -%}\n\n{{ adapter.dispatch('json_parse', 'fivetran_utils') (string, string_path) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.postgres__json_parse"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.726058, "supported_languages": null}, "macro.fivetran_utils.default__json_parse": {"name": "default__json_parse", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "unique_id": "macro.fivetran_utils.default__json_parse", "macro_sql": "{% macro default__json_parse(string, string_path) %}\n\n json_extract_path_text({{string}}, {%- for s in string_path -%}'{{ s }}'{%- if not loop.last -%},{%- endif -%}{%- endfor -%} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.726347, "supported_languages": null}, "macro.fivetran_utils.redshift__json_parse": {"name": "redshift__json_parse", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "unique_id": "macro.fivetran_utils.redshift__json_parse", "macro_sql": "{% macro redshift__json_parse(string, string_path) %}\n\n json_extract_path_text({{string}}, {%- for s in string_path -%}'{{ s }}'{%- if not loop.last -%},{%- endif -%}{%- endfor -%} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.726618, "supported_languages": null}, "macro.fivetran_utils.bigquery__json_parse": {"name": "bigquery__json_parse", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "unique_id": "macro.fivetran_utils.bigquery__json_parse", "macro_sql": "{% macro bigquery__json_parse(string, string_path) %}\n\n \n json_extract_scalar({{string}}, '$.{%- for s in string_path -%}{{ s }}{%- if not loop.last -%}.{%- endif -%}{%- endfor -%} ')\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.7269719, "supported_languages": null}, "macro.fivetran_utils.postgres__json_parse": {"name": "postgres__json_parse", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "unique_id": "macro.fivetran_utils.postgres__json_parse", "macro_sql": "{% macro postgres__json_parse(string, string_path) %}\n\n {{string}}::json #>> '{ {%- for s in string_path -%}{{ s }}{%- if not loop.last -%},{%- endif -%}{%- endfor -%} }'\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.7272372, "supported_languages": null}, "macro.fivetran_utils.snowflake__json_parse": {"name": "snowflake__json_parse", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "unique_id": "macro.fivetran_utils.snowflake__json_parse", "macro_sql": "{% macro snowflake__json_parse(string, string_path) %}\n\n parse_json( {{string}} ) {%- for s in string_path -%}{% if s is number %}[{{ s }}]{% else %}['{{ s }}']{% endif %}{%- endfor -%}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.727526, "supported_languages": null}, "macro.fivetran_utils.spark__json_parse": {"name": "spark__json_parse", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "unique_id": "macro.fivetran_utils.spark__json_parse", "macro_sql": "{% macro spark__json_parse(string, string_path) %}\n\n {{string}} : {%- for s in string_path -%}{% if s is number %}[{{ s }}]{% else %}['{{ s }}']{% endif %}{%- endfor -%}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.727814, "supported_languages": null}, "macro.fivetran_utils.max_bool": {"name": "max_bool", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/max_bool.sql", "original_file_path": "macros/max_bool.sql", "unique_id": "macro.fivetran_utils.max_bool", "macro_sql": "{% macro max_bool(boolean_field) -%}\n\n{{ adapter.dispatch('max_bool', 'fivetran_utils') (boolean_field) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__max_bool"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.728169, "supported_languages": null}, "macro.fivetran_utils.default__max_bool": {"name": "default__max_bool", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/max_bool.sql", "original_file_path": "macros/max_bool.sql", "unique_id": "macro.fivetran_utils.default__max_bool", "macro_sql": "{% macro default__max_bool(boolean_field) %}\n\n bool_or( {{ boolean_field }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.7282822, "supported_languages": null}, "macro.fivetran_utils.snowflake__max_bool": {"name": "snowflake__max_bool", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/max_bool.sql", "original_file_path": "macros/max_bool.sql", "unique_id": "macro.fivetran_utils.snowflake__max_bool", "macro_sql": "{% macro snowflake__max_bool(boolean_field) %}\n\n max( {{ boolean_field }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.728396, "supported_languages": null}, "macro.fivetran_utils.bigquery__max_bool": {"name": "bigquery__max_bool", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/max_bool.sql", "original_file_path": "macros/max_bool.sql", "unique_id": "macro.fivetran_utils.bigquery__max_bool", "macro_sql": "{% macro bigquery__max_bool(boolean_field) %}\n\n max( {{ boolean_field }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.7285068, "supported_languages": null}, "macro.fivetran_utils.calculated_fields": {"name": "calculated_fields", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/calculated_fields.sql", "original_file_path": "macros/calculated_fields.sql", "unique_id": "macro.fivetran_utils.calculated_fields", "macro_sql": "{% macro calculated_fields(variable) -%}\n\n{% if var(variable, none) %}\n {% for field in var(variable) %}\n , {{ field.transform_sql }} as {{ field.name }} \n {% endfor %}\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.728905, "supported_languages": null}, "macro.fivetran_utils.drop_schemas_automation": {"name": "drop_schemas_automation", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/drop_schemas_automation.sql", "original_file_path": "macros/drop_schemas_automation.sql", "unique_id": "macro.fivetran_utils.drop_schemas_automation", "macro_sql": "{% macro drop_schemas_automation(drop_target_schema=true) %}\n {{ return(adapter.dispatch('drop_schemas_automation', 'fivetran_utils')(drop_target_schema)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__drop_schemas_automation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.729655, "supported_languages": null}, "macro.fivetran_utils.default__drop_schemas_automation": {"name": "default__drop_schemas_automation", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/drop_schemas_automation.sql", "original_file_path": "macros/drop_schemas_automation.sql", "unique_id": "macro.fivetran_utils.default__drop_schemas_automation", "macro_sql": "{% macro default__drop_schemas_automation(drop_target_schema=true) %}\n\n{% set fetch_list_sql %}\n {% if target.type not in ('databricks', 'spark') %}\n select schema_name\n from \n {{ wrap_in_quotes(target.database) }}.INFORMATION_SCHEMA.SCHEMATA\n where lower(schema_name) like '{{ target.schema | lower }}{%- if not drop_target_schema -%}_{%- endif -%}%'\n {% else %}\n SHOW SCHEMAS LIKE '{{ target.schema }}{%- if not drop_target_schema -%}_{%- endif -%}*'\n {% endif %}\n{% endset %}\n\n{% set results = run_query(fetch_list_sql) %}\n\n{% if execute %}\n {% set results_list = results.columns[0].values() %}\n{% else %}\n {% set results_list = [] %}\n{% endif %}\n\n{% for schema_to_drop in results_list %}\n {% do adapter.drop_schema(api.Relation.create(database=target.database, schema=schema_to_drop)) %}\n {{ print('Schema ' ~ schema_to_drop ~ ' successfully dropped from the ' ~ target.database ~ ' database.\\n')}}\n{% endfor %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.wrap_in_quotes", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.730783, "supported_languages": null}, "macro.fivetran_utils.seed_data_helper": {"name": "seed_data_helper", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/seed_data_helper.sql", "original_file_path": "macros/seed_data_helper.sql", "unique_id": "macro.fivetran_utils.seed_data_helper", "macro_sql": "{% macro seed_data_helper(seed_name, warehouses) %}\n\n{% if target.type in warehouses %}\n {% for w in warehouses %}\n {% if target.type == w %}\n {{ return(ref(seed_name ~ \"_\" ~ w ~ \"\")) }}\n {% endif %}\n {% endfor %}\n{% else %}\n{{ return(ref(seed_name)) }}\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.731442, "supported_languages": null}, "macro.fivetran_utils.fill_pass_through_columns": {"name": "fill_pass_through_columns", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/fill_pass_through_columns.sql", "original_file_path": "macros/fill_pass_through_columns.sql", "unique_id": "macro.fivetran_utils.fill_pass_through_columns", "macro_sql": "{% macro fill_pass_through_columns(pass_through_variable) %}\n\n{% if var(pass_through_variable) %}\n {% for field in var(pass_through_variable) %}\n {% if field is mapping %}\n {% if field.transform_sql %}\n , {{ field.transform_sql }} as {{ field.alias if field.alias else field.name }}\n {% else %}\n , {{ field.alias if field.alias else field.name }}\n {% endif %}\n {% else %}\n , {{ field }}\n {% endif %}\n {% endfor %}\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.732316, "supported_languages": null}, "macro.fivetran_utils.string_agg": {"name": "string_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/string_agg.sql", "original_file_path": "macros/string_agg.sql", "unique_id": "macro.fivetran_utils.string_agg", "macro_sql": "{% macro string_agg(field_to_agg, delimiter) -%}\n\n{{ adapter.dispatch('string_agg', 'fivetran_utils') (field_to_agg, delimiter) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__string_agg"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.732983, "supported_languages": null}, "macro.fivetran_utils.default__string_agg": {"name": "default__string_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/string_agg.sql", "original_file_path": "macros/string_agg.sql", "unique_id": "macro.fivetran_utils.default__string_agg", "macro_sql": "{% macro default__string_agg(field_to_agg, delimiter) %}\n string_agg({{ field_to_agg }}, {{ delimiter }})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.7331462, "supported_languages": null}, "macro.fivetran_utils.snowflake__string_agg": {"name": "snowflake__string_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/string_agg.sql", "original_file_path": "macros/string_agg.sql", "unique_id": "macro.fivetran_utils.snowflake__string_agg", "macro_sql": "{% macro snowflake__string_agg(field_to_agg, delimiter) %}\n listagg({{ field_to_agg }}, {{ delimiter }})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.733293, "supported_languages": null}, "macro.fivetran_utils.redshift__string_agg": {"name": "redshift__string_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/string_agg.sql", "original_file_path": "macros/string_agg.sql", "unique_id": "macro.fivetran_utils.redshift__string_agg", "macro_sql": "{% macro redshift__string_agg(field_to_agg, delimiter) %}\n listagg({{ field_to_agg }}, {{ delimiter }})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.7334342, "supported_languages": null}, "macro.fivetran_utils.spark__string_agg": {"name": "spark__string_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/string_agg.sql", "original_file_path": "macros/string_agg.sql", "unique_id": "macro.fivetran_utils.spark__string_agg", "macro_sql": "{% macro spark__string_agg(field_to_agg, delimiter) %}\n -- collect set will remove duplicates\n replace(replace(replace(cast( collect_set({{ field_to_agg }}) as string), '[', ''), ']', ''), ', ', {{ delimiter }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.733584, "supported_languages": null}, "macro.fivetran_utils.timestamp_diff": {"name": "timestamp_diff", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_diff.sql", "original_file_path": "macros/timestamp_diff.sql", "unique_id": "macro.fivetran_utils.timestamp_diff", "macro_sql": "{% macro timestamp_diff(first_date, second_date, datepart) %}\n {{ adapter.dispatch('timestamp_diff', 'fivetran_utils')(first_date, second_date, datepart) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.postgres__timestamp_diff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.736947, "supported_languages": null}, "macro.fivetran_utils.default__timestamp_diff": {"name": "default__timestamp_diff", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_diff.sql", "original_file_path": "macros/timestamp_diff.sql", "unique_id": "macro.fivetran_utils.default__timestamp_diff", "macro_sql": "{% macro default__timestamp_diff(first_date, second_date, datepart) %}\n\n datediff(\n {{ datepart }},\n {{ first_date }},\n {{ second_date }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.73723, "supported_languages": null}, "macro.fivetran_utils.redshift__timestamp_diff": {"name": "redshift__timestamp_diff", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_diff.sql", "original_file_path": "macros/timestamp_diff.sql", "unique_id": "macro.fivetran_utils.redshift__timestamp_diff", "macro_sql": "{% macro redshift__timestamp_diff(first_date, second_date, datepart) %}\n\n datediff(\n {{ datepart }},\n {{ first_date }},\n {{ second_date }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.737441, "supported_languages": null}, "macro.fivetran_utils.bigquery__timestamp_diff": {"name": "bigquery__timestamp_diff", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_diff.sql", "original_file_path": "macros/timestamp_diff.sql", "unique_id": "macro.fivetran_utils.bigquery__timestamp_diff", "macro_sql": "{% macro bigquery__timestamp_diff(first_date, second_date, datepart) %}\n\n timestamp_diff(\n {{second_date}},\n {{first_date}},\n {{datepart}}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.7377222, "supported_languages": null}, "macro.fivetran_utils.postgres__timestamp_diff": {"name": "postgres__timestamp_diff", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_diff.sql", "original_file_path": "macros/timestamp_diff.sql", "unique_id": "macro.fivetran_utils.postgres__timestamp_diff", "macro_sql": "{% macro postgres__timestamp_diff(first_date, second_date, datepart) %}\n\n {% if datepart == 'year' %}\n (date_part('year', ({{second_date}})::date) - date_part('year', ({{first_date}})::date))\n {% elif datepart == 'quarter' %}\n ({{ dbt.datediff(first_date, second_date, 'year') }} * 4 + date_part('quarter', ({{second_date}})::date) - date_part('quarter', ({{first_date}})::date))\n {% elif datepart == 'month' %}\n ({{ dbt.datediff(first_date, second_date, 'year') }} * 12 + date_part('month', ({{second_date}})::date) - date_part('month', ({{first_date}})::date))\n {% elif datepart == 'day' %}\n (({{second_date}})::date - ({{first_date}})::date)\n {% elif datepart == 'week' %}\n ({{ dbt.datediff(first_date, second_date, 'day') }} / 7 + case\n when date_part('dow', ({{first_date}})::timestamp) <= date_part('dow', ({{second_date}})::timestamp) then\n case when {{first_date}} <= {{second_date}} then 0 else -1 end\n else\n case when {{first_date}} <= {{second_date}} then 1 else 0 end\n end)\n {% elif datepart == 'hour' %}\n ({{ dbt.datediff(first_date, second_date, 'day') }} * 24 + date_part('hour', ({{second_date}})::timestamp) - date_part('hour', ({{first_date}})::timestamp))\n {% elif datepart == 'minute' %}\n ({{ dbt.datediff(first_date, second_date, 'hour') }} * 60 + date_part('minute', ({{second_date}})::timestamp) - date_part('minute', ({{first_date}})::timestamp))\n {% elif datepart == 'second' %}\n ({{ dbt.datediff(first_date, second_date, 'minute') }} * 60 + floor(date_part('second', ({{second_date}})::timestamp)) - floor(date_part('second', ({{first_date}})::timestamp)))\n {% elif datepart == 'millisecond' %}\n ({{ dbt.datediff(first_date, second_date, 'minute') }} * 60000 + floor(date_part('millisecond', ({{second_date}})::timestamp)) - floor(date_part('millisecond', ({{first_date}})::timestamp)))\n {% elif datepart == 'microsecond' %}\n ({{ dbt.datediff(first_date, second_date, 'minute') }} * 60000000 + floor(date_part('microsecond', ({{second_date}})::timestamp)) - floor(date_part('microsecond', ({{first_date}})::timestamp)))\n {% else %}\n {{ exceptions.raise_compiler_error(\"Unsupported datepart for macro datediff in postgres: {!r}\".format(datepart)) }}\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.datediff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.7396128, "supported_languages": null}, "macro.fivetran_utils.try_cast": {"name": "try_cast", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "unique_id": "macro.fivetran_utils.try_cast", "macro_sql": "{% macro try_cast(field, type) %}\n {{ adapter.dispatch('try_cast', 'fivetran_utils') (field, type) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.postgres__try_cast"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.740544, "supported_languages": null}, "macro.fivetran_utils.default__safe_cast": {"name": "default__safe_cast", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "unique_id": "macro.fivetran_utils.default__safe_cast", "macro_sql": "{% macro default__safe_cast(field, type) %}\n {# most databases don't support this function yet\n so we just need to use cast #}\n cast({{field}} as {{type}})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.740698, "supported_languages": null}, "macro.fivetran_utils.redshift__try_cast": {"name": "redshift__try_cast", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "unique_id": "macro.fivetran_utils.redshift__try_cast", "macro_sql": "{% macro redshift__try_cast(field, type) %}\n{%- if type == 'numeric' -%}\n\n case\n when trim({{field}}) ~ '^(0|[1-9][0-9]*)$' then trim({{field}})\n else null\n end::{{type}}\n\n{% else %}\n {{ exceptions.raise_compiler_error(\n \"non-numeric datatypes are not currently supported\") }}\n\n{% endif %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.740997, "supported_languages": null}, "macro.fivetran_utils.postgres__try_cast": {"name": "postgres__try_cast", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "unique_id": "macro.fivetran_utils.postgres__try_cast", "macro_sql": "{% macro postgres__try_cast(field, type) %}\n{%- if type == 'numeric' -%}\n\n case\n when replace(cast({{field}} as varchar),cast(' ' as varchar),cast('' as varchar)) ~ '^(0|[1-9][0-9]*)$' \n then replace(cast({{field}} as varchar),cast(' ' as varchar),cast('' as varchar))\n else null\n end::{{type}}\n\n{% else %}\n {{ exceptions.raise_compiler_error(\n \"non-numeric datatypes are not currently supported\") }}\n\n{% endif %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.741306, "supported_languages": null}, "macro.fivetran_utils.snowflake__try_cast": {"name": "snowflake__try_cast", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "unique_id": "macro.fivetran_utils.snowflake__try_cast", "macro_sql": "{% macro snowflake__try_cast(field, type) %}\n try_cast(cast({{field}} as varchar) as {{type}})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.741448, "supported_languages": null}, "macro.fivetran_utils.bigquery__try_cast": {"name": "bigquery__try_cast", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "unique_id": "macro.fivetran_utils.bigquery__try_cast", "macro_sql": "{% macro bigquery__try_cast(field, type) %}\n safe_cast({{field}} as {{type}})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.7415822, "supported_languages": null}, "macro.fivetran_utils.spark__try_cast": {"name": "spark__try_cast", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "unique_id": "macro.fivetran_utils.spark__try_cast", "macro_sql": "{% macro spark__try_cast(field, type) %}\n try_cast({{field}} as {{type}})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.741716, "supported_languages": null}, "macro.fivetran_utils.source_relation": {"name": "source_relation", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/source_relation.sql", "original_file_path": "macros/source_relation.sql", "unique_id": "macro.fivetran_utils.source_relation", "macro_sql": "{% macro source_relation(union_schema_variable='union_schemas', union_database_variable='union_databases') -%}\n\n{{ adapter.dispatch('source_relation', 'fivetran_utils') (union_schema_variable, union_database_variable) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__source_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.742228, "supported_languages": null}, "macro.fivetran_utils.default__source_relation": {"name": "default__source_relation", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/source_relation.sql", "original_file_path": "macros/source_relation.sql", "unique_id": "macro.fivetran_utils.default__source_relation", "macro_sql": "{% macro default__source_relation(union_schema_variable, union_database_variable) %}\n\n{% if var(union_schema_variable, none) %}\n, case\n {% for schema in var(union_schema_variable) %}\n when lower(replace(replace(_dbt_source_relation,'\"',''),'`','')) like '%.{{ schema|lower }}.%' then '{{ schema|lower }}'\n {% endfor %}\n end as source_relation\n{% elif var(union_database_variable, none) %}\n, case\n {% for database in var(union_database_variable) %}\n when lower(replace(replace(_dbt_source_relation,'\"',''),'`','')) like '%{{ database|lower }}.%' then '{{ database|lower }}'\n {% endfor %}\n end as source_relation\n{% else %}\n, cast('' as {{ dbt.type_string() }}) as source_relation\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.743006, "supported_languages": null}, "macro.fivetran_utils.first_value": {"name": "first_value", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/first_value.sql", "original_file_path": "macros/first_value.sql", "unique_id": "macro.fivetran_utils.first_value", "macro_sql": "{% macro first_value(first_value_field, partition_field, order_by_field, order=\"asc\") -%}\n\n{{ adapter.dispatch('first_value', 'fivetran_utils') (first_value_field, partition_field, order_by_field, order) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__first_value"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.743635, "supported_languages": null}, "macro.fivetran_utils.default__first_value": {"name": "default__first_value", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/first_value.sql", "original_file_path": "macros/first_value.sql", "unique_id": "macro.fivetran_utils.default__first_value", "macro_sql": "{% macro default__first_value(first_value_field, partition_field, order_by_field, order=\"asc\") %}\n\n first_value( {{ first_value_field }} ignore nulls ) over (partition by {{ partition_field }} order by {{ order_by_field }} {{ order }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.743876, "supported_languages": null}, "macro.fivetran_utils.redshift__first_value": {"name": "redshift__first_value", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/first_value.sql", "original_file_path": "macros/first_value.sql", "unique_id": "macro.fivetran_utils.redshift__first_value", "macro_sql": "{% macro redshift__first_value(first_value_field, partition_field, order_by_field, order=\"asc\") %}\n\n first_value( {{ first_value_field }} ignore nulls ) over (partition by {{ partition_field }} order by {{ order_by_field }} {{ order }} , {{ partition_field }} rows unbounded preceding )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.744128, "supported_languages": null}, "macro.fivetran_utils.add_dbt_source_relation": {"name": "add_dbt_source_relation", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/add_dbt_source_relation.sql", "original_file_path": "macros/add_dbt_source_relation.sql", "unique_id": "macro.fivetran_utils.add_dbt_source_relation", "macro_sql": "{% macro add_dbt_source_relation() %}\n\n{% if var('union_schemas', none) or var('union_databases', none) %}\n, _dbt_source_relation\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.744423, "supported_languages": null}, "macro.fivetran_utils.add_pass_through_columns": {"name": "add_pass_through_columns", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/add_pass_through_columns.sql", "original_file_path": "macros/add_pass_through_columns.sql", "unique_id": "macro.fivetran_utils.add_pass_through_columns", "macro_sql": "{% macro add_pass_through_columns(base_columns, pass_through_var) %}\n\n {% if pass_through_var %}\n\n {% for column in pass_through_var %}\n\n {% if column is mapping %}\n\n {% if column.alias %}\n\n {% do base_columns.append({ \"name\": column.name, \"alias\": column.alias, \"datatype\": column.datatype if column.datatype else dbt.type_string()}) %}\n\n {% else %}\n\n {% do base_columns.append({ \"name\": column.name, \"datatype\": column.datatype if column.datatype else dbt.type_string()}) %}\n \n {% endif %}\n\n {% else %}\n\n {% do base_columns.append({ \"name\": column, \"datatype\": dbt.type_string()}) %}\n\n {% endif %}\n\n {% endfor %}\n\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.745666, "supported_languages": null}, "macro.fivetran_utils.union_relations": {"name": "union_relations", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/union_relations.sql", "original_file_path": "macros/union_relations.sql", "unique_id": "macro.fivetran_utils.union_relations", "macro_sql": "{%- macro union_relations(relations, aliases=none, column_override=none, include=[], exclude=[], source_column_name=none) -%}\n\n {%- if exclude and include -%}\n {{ exceptions.raise_compiler_error(\"Both an exclude and include list were provided to the `union` macro. Only one is allowed\") }}\n {%- endif -%}\n\n {#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. -#}\n {%- if not execute %}\n {{ return('') }}\n {% endif -%}\n\n {%- set column_override = column_override if column_override is not none else {} -%}\n {%- set source_column_name = source_column_name if source_column_name is not none else '_dbt_source_relation' -%}\n\n {%- set relation_columns = {} -%}\n {%- set column_superset = {} -%}\n\n {%- for relation in relations -%}\n\n {%- do relation_columns.update({relation: []}) -%}\n\n {%- do dbt_utils._is_relation(relation, 'union_relations') -%}\n {%- set cols = adapter.get_columns_in_relation(relation) -%}\n {%- for col in cols -%}\n\n {#- If an exclude list was provided and the column is in the list, do nothing -#}\n {%- if exclude and col.column in exclude -%}\n\n {#- If an include list was provided and the column is not in the list, do nothing -#}\n {%- elif include and col.column not in include -%}\n\n {#- Otherwise add the column to the column superset -#}\n {%- else -%}\n\n {#- update the list of columns in this relation -#}\n {%- do relation_columns[relation].append(col.column) -%}\n\n {%- if col.column in column_superset -%}\n\n {%- set stored = column_superset[col.column] -%}\n {%- if col.is_string() and stored.is_string() and col.string_size() > stored.string_size() -%}\n\n {%- do column_superset.update({col.column: col}) -%}\n\n {%- endif %}\n\n {%- else -%}\n\n {%- do column_superset.update({col.column: col}) -%}\n\n {%- endif -%}\n\n {%- endif -%}\n\n {%- endfor -%}\n {%- endfor -%}\n\n {%- set ordered_column_names = column_superset.keys() -%}\n\n {%- for relation in relations %}\n\n (\n select\n\n cast({{ dbt.string_literal(relation) }} as {{ dbt.type_string() }}) as {{ source_column_name }},\n {% for col_name in ordered_column_names -%}\n\n {%- set col = column_superset[col_name] %}\n {%- set col_type = column_override.get(col.column, col.data_type) %}\n {%- set col_name = adapter.quote(col_name) if col_name in relation_columns[relation] else 'null' %}\n cast({{ col_name }} as {{ col_type }}) as {{ col.quoted }} {% if not loop.last %},{% endif -%}\n\n {%- endfor %}\n\n from {{ aliases[loop.index0] if aliases else relation }}\n )\n\n {% if not loop.last -%}\n union all\n {% endif -%}\n\n {%- endfor -%}\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt.string_literal", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.750158, "supported_languages": null}, "macro.fivetran_utils.union_tables": {"name": "union_tables", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/union_relations.sql", "original_file_path": "macros/union_relations.sql", "unique_id": "macro.fivetran_utils.union_tables", "macro_sql": "{%- macro union_tables(tables, column_override=none, include=[], exclude=[], source_column_name='_dbt_source_table') -%}\n\n {%- do exceptions.warn(\"Warning: the `union_tables` macro is no longer supported and will be deprecated in a future release of dbt-utils. Use the `union_relations` macro instead\") -%}\n\n {{ return(dbt_utils.union_relations(tables, column_override, include, exclude, source_column_name)) }}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_utils.union_relations"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.7506611, "supported_languages": null}, "macro.fivetran_utils.snowflake_seed_data": {"name": "snowflake_seed_data", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/snowflake_seed_data.sql", "original_file_path": "macros/snowflake_seed_data.sql", "unique_id": "macro.fivetran_utils.snowflake_seed_data", "macro_sql": "{% macro snowflake_seed_data(seed_name) %}\n\n{% if target.type == 'snowflake' %}\n{{ return(ref(seed_name ~ '_snowflake')) }}\n{% else %}\n{{ return(ref(seed_name)) }}\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.751145, "supported_languages": null}, "macro.fivetran_utils.fill_staging_columns": {"name": "fill_staging_columns", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/fill_staging_columns.sql", "original_file_path": "macros/fill_staging_columns.sql", "unique_id": "macro.fivetran_utils.fill_staging_columns", "macro_sql": "{% macro fill_staging_columns(source_columns, staging_columns) -%}\n\n{%- set source_column_names = source_columns|map(attribute='name')|map('lower')|list -%}\n\n{%- for column in staging_columns %}\n {% if column.name|lower in source_column_names -%}\n {{ fivetran_utils.quote_column(column) }} as \n {%- if 'alias' in column %} {{ column.alias }} {% else %} {{ fivetran_utils.quote_column(column) }} {%- endif -%}\n {%- else -%}\n cast(null as {{ column.datatype }})\n {%- if 'alias' in column %} as {{ column.alias }} {% else %} as {{ fivetran_utils.quote_column(column) }} {% endif -%}\n {%- endif -%}\n {%- if not loop.last -%} , {% endif -%}\n{% endfor %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.quote_column"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.752963, "supported_languages": null}, "macro.fivetran_utils.quote_column": {"name": "quote_column", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/fill_staging_columns.sql", "original_file_path": "macros/fill_staging_columns.sql", "unique_id": "macro.fivetran_utils.quote_column", "macro_sql": "{% macro quote_column(column) %}\n {% if 'quote' in column %}\n {% if column.quote %}\n {% if target.type in ('bigquery', 'spark', 'databricks') %}\n `{{ column.name }}`\n {% elif target.type == 'snowflake' %}\n \"{{ column.name | upper }}\"\n {% else %}\n \"{{ column.name }}\"\n {% endif %}\n {% else %}\n {{ column.name }}\n {% endif %}\n {% else %}\n {{ column.name }}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.753591, "supported_languages": null}, "macro.fivetran_utils.json_extract": {"name": "json_extract", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "unique_id": "macro.fivetran_utils.json_extract", "macro_sql": "{% macro json_extract(string, string_path) -%}\n\n{{ adapter.dispatch('json_extract', 'fivetran_utils') (string, string_path) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.postgres__json_extract"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.7542248, "supported_languages": null}, "macro.fivetran_utils.default__json_extract": {"name": "default__json_extract", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "unique_id": "macro.fivetran_utils.default__json_extract", "macro_sql": "{% macro default__json_extract(string, string_path) %}\n\n json_extract_path_text({{string}}, {{ \"'\" ~ string_path ~ \"'\" }} )\n \n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.754404, "supported_languages": null}, "macro.fivetran_utils.snowflake__json_extract": {"name": "snowflake__json_extract", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "unique_id": "macro.fivetran_utils.snowflake__json_extract", "macro_sql": "{% macro snowflake__json_extract(string, string_path) %}\n\n json_extract_path_text(try_parse_json( {{string}} ), {{ \"'\" ~ string_path ~ \"'\" }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.754576, "supported_languages": null}, "macro.fivetran_utils.redshift__json_extract": {"name": "redshift__json_extract", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "unique_id": "macro.fivetran_utils.redshift__json_extract", "macro_sql": "{% macro redshift__json_extract(string, string_path) %}\n\n case when is_valid_json( {{string}} ) then json_extract_path_text({{string}}, {{ \"'\" ~ string_path ~ \"'\" }} ) else null end\n \n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.754764, "supported_languages": null}, "macro.fivetran_utils.bigquery__json_extract": {"name": "bigquery__json_extract", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "unique_id": "macro.fivetran_utils.bigquery__json_extract", "macro_sql": "{% macro bigquery__json_extract(string, string_path) %}\n\n json_extract_scalar({{string}}, {{ \"'$.\" ~ string_path ~ \"'\" }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.754931, "supported_languages": null}, "macro.fivetran_utils.postgres__json_extract": {"name": "postgres__json_extract", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "unique_id": "macro.fivetran_utils.postgres__json_extract", "macro_sql": "{% macro postgres__json_extract(string, string_path) %}\n\n {{string}}::json->>{{\"'\" ~ string_path ~ \"'\" }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.755092, "supported_languages": null}, "macro.fivetran_utils.collect_freshness": {"name": "collect_freshness", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/collect_freshness.sql", "original_file_path": "macros/collect_freshness.sql", "unique_id": "macro.fivetran_utils.collect_freshness", "macro_sql": "{% macro collect_freshness(source, loaded_at_field, filter) %}\n {{ return(adapter.dispatch('collect_freshness')(source, loaded_at_field, filter))}}\n{% endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__collect_freshness"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.755879, "supported_languages": null}, "macro.fivetran_utils.default__collect_freshness": {"name": "default__collect_freshness", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/collect_freshness.sql", "original_file_path": "macros/collect_freshness.sql", "unique_id": "macro.fivetran_utils.default__collect_freshness", "macro_sql": "{% macro default__collect_freshness(source, loaded_at_field, filter) %}\n {% call statement('collect_freshness', fetch_result=True, auto_begin=False) -%}\n\n {%- set enabled_array = [] -%}\n {% for node in graph.sources.values() %}\n {% if node.identifier == source.identifier %}\n {% if (node.meta['is_enabled'] | default(true)) %}\n {%- do enabled_array.append(1) -%}\n {% endif %}\n {% endif %}\n {% endfor %}\n {% set is_enabled = (enabled_array != []) %}\n\n select\n {% if is_enabled %}\n max({{ loaded_at_field }})\n {% else %} \n {{ current_timestamp() }} {% endif %} as max_loaded_at,\n {{ current_timestamp() }} as snapshotted_at\n\n {% if is_enabled %}\n from {{ source }}\n {% if filter %}\n where {{ filter }}\n {% endif %}\n {% endif %}\n\n {% endcall %}\n {{ return(load_result('collect_freshness').table) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt.current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.756969, "supported_languages": null}, "macro.fivetran_utils.timestamp_add": {"name": "timestamp_add", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "unique_id": "macro.fivetran_utils.timestamp_add", "macro_sql": "{% macro timestamp_add(datepart, interval, from_timestamp) -%}\n\n{{ adapter.dispatch('timestamp_add', 'fivetran_utils') (datepart, interval, from_timestamp) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.postgres__timestamp_add"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.75776, "supported_languages": null}, "macro.fivetran_utils.default__timestamp_add": {"name": "default__timestamp_add", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "unique_id": "macro.fivetran_utils.default__timestamp_add", "macro_sql": "{% macro default__timestamp_add(datepart, interval, from_timestamp) %}\n\n timestampadd(\n {{ datepart }},\n {{ interval }},\n {{ from_timestamp }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.757938, "supported_languages": null}, "macro.fivetran_utils.bigquery__timestamp_add": {"name": "bigquery__timestamp_add", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "unique_id": "macro.fivetran_utils.bigquery__timestamp_add", "macro_sql": "{% macro bigquery__timestamp_add(datepart, interval, from_timestamp) %}\n\n timestamp_add({{ from_timestamp }}, interval {{ interval }} {{ datepart }})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.758108, "supported_languages": null}, "macro.fivetran_utils.redshift__timestamp_add": {"name": "redshift__timestamp_add", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "unique_id": "macro.fivetran_utils.redshift__timestamp_add", "macro_sql": "{% macro redshift__timestamp_add(datepart, interval, from_timestamp) %}\n\n dateadd(\n {{ datepart }},\n {{ interval }},\n {{ from_timestamp }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.758282, "supported_languages": null}, "macro.fivetran_utils.postgres__timestamp_add": {"name": "postgres__timestamp_add", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "unique_id": "macro.fivetran_utils.postgres__timestamp_add", "macro_sql": "{% macro postgres__timestamp_add(datepart, interval, from_timestamp) %}\n\n {{ from_timestamp }} + ((interval '1 {{ datepart }}') * ({{ interval }}))\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.758454, "supported_languages": null}, "macro.fivetran_utils.spark__timestamp_add": {"name": "spark__timestamp_add", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "unique_id": "macro.fivetran_utils.spark__timestamp_add", "macro_sql": "{% macro spark__timestamp_add(datepart, interval, from_timestamp) %}\n\n {{ dbt.dateadd(datepart, interval, from_timestamp) }}\n \n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.758639, "supported_languages": null}, "macro.fivetran_utils.ceiling": {"name": "ceiling", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/ceiling.sql", "original_file_path": "macros/ceiling.sql", "unique_id": "macro.fivetran_utils.ceiling", "macro_sql": "{% macro ceiling(num) -%}\n\n{{ adapter.dispatch('ceiling', 'fivetran_utils') (num) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__ceiling"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.7589061, "supported_languages": null}, "macro.fivetran_utils.default__ceiling": {"name": "default__ceiling", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/ceiling.sql", "original_file_path": "macros/ceiling.sql", "unique_id": "macro.fivetran_utils.default__ceiling", "macro_sql": "{% macro default__ceiling(num) %}\n ceiling({{ num }})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.7590148, "supported_languages": null}, "macro.fivetran_utils.snowflake__ceiling": {"name": "snowflake__ceiling", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/ceiling.sql", "original_file_path": "macros/ceiling.sql", "unique_id": "macro.fivetran_utils.snowflake__ceiling", "macro_sql": "{% macro snowflake__ceiling(num) %}\n ceil({{ num }})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.7592041, "supported_languages": null}, "macro.fivetran_utils.remove_prefix_from_columns": {"name": "remove_prefix_from_columns", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/remove_prefix_from_columns.sql", "original_file_path": "macros/remove_prefix_from_columns.sql", "unique_id": "macro.fivetran_utils.remove_prefix_from_columns", "macro_sql": "{% macro remove_prefix_from_columns(columns, prefix='', exclude=[]) %}\n\n {%- for col in columns if col.name not in exclude -%}\n {%- if col.name[:prefix|length]|lower == prefix -%}\n {{ col.name }} as {{ col.name[prefix|length:] }}\n {%- else -%}\n {{ col.name }}\n {%- endif -%}\n {%- if not loop.last -%},{%- endif %}\n {% endfor -%}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.7598898, "supported_languages": null}, "macro.fivetran_utils.union_data": {"name": "union_data", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/union_data.sql", "original_file_path": "macros/union_data.sql", "unique_id": "macro.fivetran_utils.union_data", "macro_sql": "{%- macro union_data(table_identifier, database_variable, schema_variable, default_database, default_schema, default_variable, union_schema_variable='union_schemas', union_database_variable='union_databases') -%}\n\n{{ adapter.dispatch('union_data', 'fivetran_utils') (\n table_identifier, \n database_variable, \n schema_variable, \n default_database, \n default_schema, \n default_variable,\n union_schema_variable,\n union_database_variable\n ) }}\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.fivetran_utils.default__union_data"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.763933, "supported_languages": null}, "macro.fivetran_utils.default__union_data": {"name": "default__union_data", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/union_data.sql", "original_file_path": "macros/union_data.sql", "unique_id": "macro.fivetran_utils.default__union_data", "macro_sql": "{%- macro default__union_data(\n table_identifier, \n database_variable, \n schema_variable, \n default_database, \n default_schema, \n default_variable,\n union_schema_variable,\n union_database_variable\n ) -%}\n\n{%- if var(union_schema_variable, none) -%}\n\n {%- set relations = [] -%}\n \n {%- if var(union_schema_variable) is string -%}\n {%- set trimmed = var(union_schema_variable)|trim('[')|trim(']') -%}\n {%- set schemas = trimmed.split(',')|map('trim',\" \")|map('trim','\"')|map('trim',\"'\") -%}\n {%- else -%}\n {%- set schemas = var(union_schema_variable) -%}\n {%- endif -%}\n\n {%- for schema in var(union_schema_variable) -%}\n {%- set relation=adapter.get_relation(\n database=source(schema, table_identifier).database if var('has_defined_sources', false) else var(database_variable, default_database),\n schema=source(schema, table_identifier).schema if var('has_defined_sources', false) else schema,\n identifier=source(schema, table_identifier).identifier if var('has_defined_sources', false) else table_identifier\n ) -%}\n \n {%- set relation_exists=relation is not none -%}\n\n {%- if relation_exists -%}\n {%- do relations.append(relation) -%}\n {%- endif -%}\n\n {%- endfor -%}\n \n {%- if relations != [] -%}\n {{ dbt_utils.union_relations(relations) }}\n {%- else -%}\n {% if execute and not var('fivetran__remove_empty_table_warnings', false) -%}\n {{ exceptions.warn(\"\\n\\nPlease be aware: The \" ~ table_identifier|upper ~ \" table was not found in your \" ~ default_schema|upper ~ \" schema(s). The Fivetran dbt package will create a completely empty \" ~ table_identifier|upper ~ \" staging model as to not break downstream transformations. To turn off these warnings, set the `fivetran__remove_empty_table_warnings` variable to TRUE (see https://github.com/fivetran/dbt_fivetran_utils/tree/releases/v0.4.latest#union_data-source for details).\\n\") }}\n {% endif -%}\n select \n cast(null as {{ dbt.type_string() }}) as _dbt_source_relation\n limit 0\n {%- endif -%}\n\n{%- elif var(union_database_variable, none) -%}\n\n {%- set relations = [] -%}\n\n {%- for database in var(union_database_variable) -%}\n {%- set relation=adapter.get_relation(\n database=source(schema, table_identifier).database if var('has_defined_sources', false) else database,\n schema=source(schema, table_identifier).schema if var('has_defined_sources', false) else var(schema_variable, default_schema),\n identifier=source(schema, table_identifier).identifier if var('has_defined_sources', false) else table_identifier\n ) -%}\n\n {%- set relation_exists=relation is not none -%}\n\n {%- if relation_exists -%}\n {%- do relations.append(relation) -%}\n {%- endif -%}\n\n {%- endfor -%}\n\n {%- if relations != [] -%}\n {{ dbt_utils.union_relations(relations) }}\n {%- else -%}\n {% if execute and not var('fivetran__remove_empty_table_warnings', false) -%}\n {{ exceptions.warn(\"\\n\\nPlease be aware: The \" ~ table_identifier|upper ~ \" table was not found in your \" ~ default_schema|upper ~ \" schema(s). The Fivetran dbt package will create a completely empty \" ~ table_identifier|upper ~ \" staging model as to not break downstream transformations. To turn off these warnings, set the `fivetran__remove_empty_table_warnings` variable to TRUE (see https://github.com/fivetran/dbt_fivetran_utils/tree/releases/v0.4.latest#union_data-source for details).\\n\") }}\n {% endif -%}\n select \n cast(null as {{ dbt.type_string() }}) as _dbt_source_relation\n limit 0\n {%- endif -%}\n\n{%- else -%}\n {% set exception_schemas = {\"linkedin_company_pages\": \"linkedin_pages\", \"instagram_business_pages\": \"instagram_business\"} %}\n {% set relation = namespace(value=\"\") %}\n {% if default_schema in exception_schemas.keys() %}\n {% for corrected_schema_name in exception_schemas.items() %} \n {% if default_schema in corrected_schema_name %}\n {# In order for this macro to effectively work within upstream integration tests (mainly used by the Fivetran dbt package maintainers), this identifier variable selection is required to use the macro with different identifier names. #}\n {% set identifier_var = corrected_schema_name[1] + \"_\" + table_identifier + \"_identifier\" %}\n {%- set relation.value=adapter.get_relation(\n database=source(corrected_schema_name[1], table_identifier).database,\n schema=source(corrected_schema_name[1], table_identifier).schema,\n identifier=var(identifier_var, table_identifier)\n ) -%}\n {% endif %}\n {% endfor %}\n {% else %}\n {# In order for this macro to effectively work within upstream integration tests (mainly used by the Fivetran dbt package maintainers), this identifier variable selection is required to use the macro with different identifier names. #}\n {% set identifier_var = default_schema + \"_\" + table_identifier + \"_identifier\" %}\n {# Unfortunately the Twitter Organic identifiers were misspelled. As such, we will need to account for this in the model. This will be adjusted in the Twitter Organic package, but to ensure backwards compatibility, this needs to be included. #}\n {% if var(identifier_var, none) is none %} \n {% set identifier_var = default_schema + \"_\" + table_identifier + \"_identifer\" %}\n {% endif %}\n {%- set relation.value=adapter.get_relation(\n database=source(default_schema, table_identifier).database,\n schema=source(default_schema, table_identifier).schema,\n identifier=var(identifier_var, table_identifier)\n ) -%}\n {% endif %}\n{%- set table_exists=relation.value is not none -%}\n\n{%- if table_exists -%}\n select * \n from {{ relation.value }}\n{%- else -%}\n {% if execute and not var('fivetran__remove_empty_table_warnings', false) -%}\n {{ exceptions.warn(\"\\n\\nPlease be aware: The \" ~ table_identifier|upper ~ \" table was not found in your \" ~ default_schema|upper ~ \" schema(s). The Fivetran dbt package will create a completely empty \" ~ table_identifier|upper ~ \" staging model as to not break downstream transformations. To turn off these warnings, set the `fivetran__remove_empty_table_warnings` variable to TRUE (see https://github.com/fivetran/dbt_fivetran_utils/tree/releases/v0.4.latest#union_data-source for details).\\n\") }}\n {% endif -%}\n select \n cast(null as {{ dbt.type_string() }}) as _dbt_source_relation\n limit 0\n{%- endif -%}\n{%- endif -%}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_utils.union_relations", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.769106, "supported_languages": null}, "macro.fivetran_utils.dummy_coalesce_value": {"name": "dummy_coalesce_value", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/dummy_coalesce_value.sql", "original_file_path": "macros/dummy_coalesce_value.sql", "unique_id": "macro.fivetran_utils.dummy_coalesce_value", "macro_sql": "{% macro dummy_coalesce_value(column) %}\n\n{% set coalesce_value = {\n 'STRING': \"'DUMMY_STRING'\",\n 'BOOLEAN': 'null',\n 'INT': 999999999,\n 'FLOAT': 999999999.99,\n 'TIMESTAMP': 'cast(\"2099-12-31\" as timestamp)',\n 'DATE': 'cast(\"2099-12-31\" as date)',\n} %}\n\n{% if column.is_float() %}\n{{ return(coalesce_value['FLOAT']) }}\n\n{% elif column.is_numeric() %}\n{{ return(coalesce_value['INT']) }}\n\n{% elif column.is_string() %}\n{{ return(coalesce_value['STRING']) }}\n\n{% elif column.data_type|lower == 'boolean' %}\n{{ return(coalesce_value['BOOLEAN']) }}\n\n{% elif 'timestamp' in column.data_type|lower %}\n{{ return(coalesce_value['TIMESTAMP']) }}\n\n{% elif 'date' in column.data_type|lower %}\n{{ return(coalesce_value['DATE']) }}\n\n{% elif 'int' in column.data_type|lower %}\n{{ return(coalesce_value['INT']) }}\n\n{% endif %}\n\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.770765, "supported_languages": null}, "macro.fivetran_utils.wrap_in_quotes": {"name": "wrap_in_quotes", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/wrap_in_quotes.sql", "original_file_path": "macros/wrap_in_quotes.sql", "unique_id": "macro.fivetran_utils.wrap_in_quotes", "macro_sql": "{%- macro wrap_in_quotes(object_to_quote) -%}\n\n{{ return(adapter.dispatch('wrap_in_quotes', 'fivetran_utils')(object_to_quote)) }}\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.fivetran_utils.postgres__wrap_in_quotes"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.771167, "supported_languages": null}, "macro.fivetran_utils.default__wrap_in_quotes": {"name": "default__wrap_in_quotes", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/wrap_in_quotes.sql", "original_file_path": "macros/wrap_in_quotes.sql", "unique_id": "macro.fivetran_utils.default__wrap_in_quotes", "macro_sql": "{%- macro default__wrap_in_quotes(object_to_quote) -%}\n{# bigquery, spark, databricks #}\n `{{ object_to_quote }}`\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.771295, "supported_languages": null}, "macro.fivetran_utils.snowflake__wrap_in_quotes": {"name": "snowflake__wrap_in_quotes", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/wrap_in_quotes.sql", "original_file_path": "macros/wrap_in_quotes.sql", "unique_id": "macro.fivetran_utils.snowflake__wrap_in_quotes", "macro_sql": "{%- macro snowflake__wrap_in_quotes(object_to_quote) -%}\n \"{{ object_to_quote | upper }}\"\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.7714229, "supported_languages": null}, "macro.fivetran_utils.redshift__wrap_in_quotes": {"name": "redshift__wrap_in_quotes", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/wrap_in_quotes.sql", "original_file_path": "macros/wrap_in_quotes.sql", "unique_id": "macro.fivetran_utils.redshift__wrap_in_quotes", "macro_sql": "{%- macro redshift__wrap_in_quotes(object_to_quote) -%}\n \"{{ object_to_quote }}\"\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.7715359, "supported_languages": null}, "macro.fivetran_utils.postgres__wrap_in_quotes": {"name": "postgres__wrap_in_quotes", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/wrap_in_quotes.sql", "original_file_path": "macros/wrap_in_quotes.sql", "unique_id": "macro.fivetran_utils.postgres__wrap_in_quotes", "macro_sql": "{%- macro postgres__wrap_in_quotes(object_to_quote) -%}\n \"{{ object_to_quote }}\"\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.771647, "supported_languages": null}, "macro.fivetran_utils.array_agg": {"name": "array_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/array_agg.sql", "original_file_path": "macros/array_agg.sql", "unique_id": "macro.fivetran_utils.array_agg", "macro_sql": "{% macro array_agg(field_to_agg) -%}\n\n{{ adapter.dispatch('array_agg', 'fivetran_utils') (field_to_agg) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__array_agg"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.771934, "supported_languages": null}, "macro.fivetran_utils.default__array_agg": {"name": "default__array_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/array_agg.sql", "original_file_path": "macros/array_agg.sql", "unique_id": "macro.fivetran_utils.default__array_agg", "macro_sql": "{% macro default__array_agg(field_to_agg) %}\n array_agg({{ field_to_agg }})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.772047, "supported_languages": null}, "macro.fivetran_utils.redshift__array_agg": {"name": "redshift__array_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/array_agg.sql", "original_file_path": "macros/array_agg.sql", "unique_id": "macro.fivetran_utils.redshift__array_agg", "macro_sql": "{% macro redshift__array_agg(field_to_agg) %}\n listagg({{ field_to_agg }}, ',')\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.7721548, "supported_languages": null}, "macro.fivetran_utils.empty_variable_warning": {"name": "empty_variable_warning", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/empty_variable_warning.sql", "original_file_path": "macros/empty_variable_warning.sql", "unique_id": "macro.fivetran_utils.empty_variable_warning", "macro_sql": "{% macro empty_variable_warning(variable, downstream_model) %}\n\n{% if not var(variable) %}\n{{ log(\n \"\"\"\n Warning: You have passed an empty list to the \"\"\" ~ variable ~ \"\"\".\n As a result, you won't see the history of any columns in the \"\"\" ~ downstream_model ~ \"\"\" model.\n \"\"\",\n info=True\n) }}\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.772605, "supported_languages": null}, "macro.fivetran_utils.enabled_vars_one_true": {"name": "enabled_vars_one_true", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/enabled_vars_one_true.sql", "original_file_path": "macros/enabled_vars_one_true.sql", "unique_id": "macro.fivetran_utils.enabled_vars_one_true", "macro_sql": "{% macro enabled_vars_one_true(vars) %}\n\n{% for v in vars %}\n \n {% if var(v, False) == True %}\n {{ return(True) }}\n {% endif %}\n\n{% endfor %}\n\n{{ return(False) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1688673389.773056, "supported_languages": null}}, "docs": {"doc.dbt.__overview__": {"name": "__overview__", "resource_type": "doc", "package_name": "dbt", "path": "overview.md", "original_file_path": "docs/overview.md", "unique_id": "doc.dbt.__overview__", "block_contents": "### Welcome!\n\nWelcome to the auto-generated documentation for your dbt project!\n\n### Navigation\n\nYou can use the `Project` and `Database` navigation tabs on the left side of the window to explore the models\nin your project.\n\n#### Project Tab\nThe `Project` tab mirrors the directory structure of your dbt project. In this tab, you can see all of the\nmodels defined in your dbt project, as well as models imported from dbt packages.\n\n#### Database Tab\nThe `Database` tab also exposes your models, but in a format that looks more like a database explorer. This view\nshows relations (tables and views) grouped into database schemas. Note that ephemeral models are _not_ shown\nin this interface, as they do not exist in the database.\n\n### Graph Exploration\nYou can click the blue icon on the bottom-right corner of the page to view the lineage graph of your models.\n\nOn model pages, you'll see the immediate parents and children of the model you're exploring. By clicking the `Expand`\nbutton at the top-right of this lineage pane, you'll be able to see all of the models that are used to build,\nor are built from, the model you're exploring.\n\nOnce expanded, you'll be able to use the `--select` and `--exclude` model selection syntax to filter the\nmodels in the graph. For more information on model selection, check out the [dbt docs](https://docs.getdbt.com/docs/model-selection-syntax).\n\nNote that you can also right-click on models to interactively filter and explore the graph.\n\n---\n\n### More information\n\n- [What is dbt](https://docs.getdbt.com/docs/introduction)?\n- Read the [dbt viewpoint](https://docs.getdbt.com/docs/viewpoint)\n- [Installation](https://docs.getdbt.com/docs/installation)\n- Join the [dbt Community](https://www.getdbt.com/community/) for questions and discussion"}}, "exposures": {}, "metrics": {}, "groups": {}, "selectors": {}, "disabled": {"model.iterable.int_iterable__latest_user_device": [{"database": "postgres", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__latest_user_device", "resource_type": "model", "package_name": "iterable", "path": "intermediate/int_iterable__latest_user_device.sql", "original_file_path": "models/intermediate/int_iterable__latest_user_device.sql", "unique_id": "model.iterable.int_iterable__latest_user_device", "fqn": ["iterable", "intermediate", "int_iterable__latest_user_device"], "alias": "int_iterable__latest_user_device", "checksum": {"name": "sha256", "checksum": "f93cbbaf935c4c8cb9e478262ca819ba7b070f17b09023761c726d9865e1931e"}, "config": {"enabled": false, "alias": null, "schema": "int_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table that filters out historical versions of user device records, and returns only the most recent version.", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable://models/intermediate/int_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "int_iterable", "enabled": false}, "created_at": 1688673390.592088, "config_call_dict": {"enabled": false}, "relation_name": "\"postgres\".\"iterable_integration_tests_03_int_iterable\".\"int_iterable__latest_user_device\"", "raw_code": "{{ config(enabled=var('iterable__using_user_device_history', false)) }}\n\nwith user_device_history as (\n select *\n from {{ var('user_device_history') }}\n\n), order_user_devices as (\n select\n *,\n rank() over(partition by email order by updated_at desc) as latest_device_batch_index\n from user_device_history\n\n), latest_user_device as (\n\n select *\n from order_user_devices\n where latest_device_batch_index = 1\n\n), count_devices as (\n\n select\n email,\n count(distinct platform_endpoint) as count_devices\n \n from latest_user_device\n\n group by 1\n)\n\nselect *\nfrom count_devices", "language": "sql", "refs": [{"name": "stg_iterable__user_device_history", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": [], "nodes": []}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}], "model.iterable.int_iterable__custom_events": [{"database": "postgres", "schema": "iterable_integration_tests_03_int_iterable", "name": "int_iterable__custom_events", "resource_type": "model", "package_name": "iterable", "path": "intermediate/int_iterable__custom_events.sql", "original_file_path": "models/intermediate/int_iterable__custom_events.sql", "unique_id": "model.iterable.int_iterable__custom_events", "fqn": ["iterable", "intermediate", "int_iterable__custom_events"], "alias": "int_iterable__custom_events", "checksum": {"name": "sha256", "checksum": "51fef39a4b02b343265cd2bf6b93d93492871f2cd1a00da8ad6b9d5e1adaf570"}, "config": {"enabled": false, "alias": null, "schema": "int_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "incremental", "incremental_strategy": "merge", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": "event_id", "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "file_format": "delta", "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "incremental", "schema": "int_iterable", "unique_key": "event_id", "incremental_strategy": "merge", "file_format": "delta", "enabled": false}, "created_at": 1688673390.215714, "config_call_dict": {"materialized": "incremental", "unique_key": "event_id", "incremental_strategy": "merge", "file_format": "delta", "enabled": false}, "relation_name": "\"postgres\".\"iterable_integration_tests_03_int_iterable\".\"int_iterable__custom_events\"", "raw_code": "{{\n config(\n materialized='incremental',\n unique_key='event_id',\n incremental_strategy = 'merge',\n file_format = 'delta',\n enabled=false\n )\n}}\n\n-- leave this alone for now....setting enabled to false\nwith events as (\n\n select *\n from {{ var('event') }}\n\n where lower(event_name) = 'customevent'\n {% if is_incremental() %}\n and updated_at > ( select max(updated_at) from {{ this }} )\n {% endif %}\n\n), custom_events as (\n\n select \n events.*\n {# {{ dbt.split_part(string_text='additional_properties', delimiter_text=' : \"{', part_number=1) }} #}\n\n {% if target.type == 'snowflake' %}\n ,\n additional_properties.key as custom_event_name,\n additional_properties.value as custom_event_metadata\n {% endif %}\n from events\n\n \n {% if target.type == 'snowflake' %}\n cross join \n table(flatten(additional_properties)) as additional_properties\n where additional_properties.key != '_id'\n {% endif %}\n)\n\nselect *\nfrom custom_events", "language": "sql", "refs": [{"name": "stg_iterable__event", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.is_incremental"], "nodes": []}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}], "model.iterable_source.stg_iterable__user_device_history": [{"database": "postgres", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__user_device_history", "resource_type": "model", "package_name": "iterable_source", "path": "stg_iterable__user_device_history.sql", "original_file_path": "models/stg_iterable__user_device_history.sql", "unique_id": "model.iterable_source.stg_iterable__user_device_history", "fqn": ["iterable_source", "stg_iterable__user_device_history"], "alias": "stg_iterable__user_device_history", "checksum": {"name": "sha256", "checksum": "02ab247676a14c9041dff269329ca253fc81ebecb89b47afd1d567784e6c3a74"}, "config": {"enabled": false, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "Table capturing the history of devices associated with in-app and push notifications to a user.", "columns": {"application_name": {"name": "application_name", "description": "The Iterable push integration to associate with the device token. Usually matches the package name (or bundle ID) of the relevant mobile app. \n", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email": {"name": "email", "description": "User email associated with the device.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "index": {"name": "index", "description": "Index representing the order in which devices were added to a user.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "platform": {"name": "platform", "description": "The device platform. Can be APNS, APNS_SANDBOX or GCM", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "platform_endpoint": {"name": "platform_endpoint", "description": "The platform's endpoint.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_endpoint_enabled": {"name": "is_endpoint_enabled", "description": "Boolean that is true if the user has not disabled Push notifications and their endpoint remains enabled.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Timestamp of when this device was updated last.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "iterable_source://models/stg_iterable.yml", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "stg_iterable", "enabled": false}, "created_at": 1688673390.6262279, "config_call_dict": {"enabled": false}, "relation_name": "\"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__user_device_history\"", "raw_code": "{{ config(enabled=var('iterable__using_user_device_history', false)) }}\n\n-- todo: may want to make this ephemeral or do the window functions to select the final batch of devices here\nwith base as (\n\n select * \n from {{ ref('stg_iterable__user_device_history_tmp') }}\n\n),\n\nfields as (\n select\n /*\n The below macro is used to generate the correct SQL for package staging models. It takes a list of columns \n that are expected/needed (staging_columns from dbt_iterable_source/models/tmp/) and compares it with columns \n in the source (source_columns from dbt_iterable_source/macros/).\n For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).\n */\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_iterable__user_device_history_tmp')),\n staging_columns=get_user_device_history_columns()\n )\n }}\n \n from base\n),\n\nfinal as (\n \n select\n application_name,\n email,\n index,\n platform,\n platform_endpoint,\n endpoint_enabled as is_endpoint_enabled,\n updated_at,\n _fivetran_synced\n\n from fields\n)\n\nselect * from final", "language": "sql", "refs": [{"name": "stg_iterable__user_device_history_tmp", "package": null, "version": null}, {"name": "stg_iterable__user_device_history_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.iterable_source.get_user_device_history_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": []}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}], "model.iterable_source.stg_iterable__user_device_history_tmp": [{"database": "postgres", "schema": "iterable_integration_tests_03_stg_iterable", "name": "stg_iterable__user_device_history_tmp", "resource_type": "model", "package_name": "iterable_source", "path": "tmp/stg_iterable__user_device_history_tmp.sql", "original_file_path": "models/tmp/stg_iterable__user_device_history_tmp.sql", "unique_id": "model.iterable_source.stg_iterable__user_device_history_tmp", "fqn": ["iterable_source", "tmp", "stg_iterable__user_device_history_tmp"], "alias": "stg_iterable__user_device_history_tmp", "checksum": {"name": "sha256", "checksum": "45d7fa5c44a93c6150d38bd85e37b98dc96d02b0b89ff9c7aae59b4efba18a2c"}, "config": {"enabled": false, "alias": null, "schema": "stg_iterable", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false}, "post-hook": [], "pre-hook": []}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "stg_iterable", "enabled": false}, "created_at": 1688673390.4329758, "config_call_dict": {"enabled": false}, "relation_name": "\"postgres\".\"iterable_integration_tests_03_stg_iterable\".\"stg_iterable__user_device_history_tmp\"", "raw_code": "{{ config(enabled=var('iterable__using_user_device_history', false)) }}\n\nselect * \nfrom {{ var('user_device_history') }}", "language": "sql", "refs": [], "sources": [["iterable", "user_device_history"]], "metrics": [], "depends_on": {"macros": [], "nodes": []}, "compiled_path": null, "contract": {"enforced": false, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null}]}, "parent_map": {"seed.iterable_integration_tests.user_unsubscribed_message_type_history_data": [], "seed.iterable_integration_tests.user_history_data": [], "seed.iterable_integration_tests.campaign_suppression_list_history_data": [], "seed.iterable_integration_tests.campaign_list_history_data": [], "seed.iterable_integration_tests.template_history_data": [], "seed.iterable_integration_tests.event_extension_data": [], "seed.iterable_integration_tests.channel_data": [], "seed.iterable_integration_tests.user_unsubscribed_channel_history_data": [], "seed.iterable_integration_tests.user_device_history_data": [], "seed.iterable_integration_tests.campaign_label_history_data": [], "seed.iterable_integration_tests.campaign_history_data": [], "seed.iterable_integration_tests.message_type_data": [], "seed.iterable_integration_tests.campaign_metrics_data": [], "seed.iterable_integration_tests.list_data": [], "seed.iterable_integration_tests.event_data": [], "model.iterable.iterable__events": ["model.iterable.int_iterable__latest_template", "model.iterable.int_iterable__latest_user", "model.iterable.int_iterable__message_type_channel", "model.iterable.int_iterable__recurring_campaigns", "model.iterable_source.stg_iterable__event", "model.iterable_source.stg_iterable__event_extension", "model.iterable_source.stg_iterable__event_extension"], "model.iterable.iterable__campaigns": ["model.iterable.int_iterable__campaign_event_metrics", "model.iterable.int_iterable__campaign_event_metrics", "model.iterable.int_iterable__campaign_labels", "model.iterable.int_iterable__campaign_lists", "model.iterable.int_iterable__latest_template", "model.iterable.int_iterable__recurring_campaigns"], "model.iterable.iterable__user_unsubscriptions": ["model.iterable.int_iterable__message_type_channel", "model.iterable_source.stg_iterable__user_unsub_message_type_history", "model.iterable_source.stg_iterable__user_unsubscribed_channel_history"], "model.iterable.iterable__users": ["model.iterable.int_iterable__list_user_unnest", "model.iterable.int_iterable__user_event_metrics", "model.iterable.int_iterable__user_event_metrics"], "model.iterable.iterable__user_campaign": ["model.iterable.iterable__events"], "model.iterable.iterable__list_user_history": ["model.iterable.int_iterable__list_user_unnest", "model.iterable_source.stg_iterable__list"], "model.iterable.int_iterable__list_user_unnest": ["model.iterable.int_iterable__list_user_history"], "model.iterable.int_iterable__latest_campaign": ["model.iterable_source.stg_iterable__campaign_history"], "model.iterable.int_iterable__campaign_event_metrics": ["model.iterable.iterable__user_campaign", "model.iterable.iterable__user_campaign"], "model.iterable.int_iterable__campaign_lists": ["model.iterable_source.stg_iterable__campaign_list_history", "model.iterable_source.stg_iterable__campaign_suppression_list_history"], "model.iterable.int_iterable__latest_user": ["model.iterable_source.stg_iterable__user_history"], "model.iterable.int_iterable__campaign_labels": ["model.iterable_source.stg_iterable__campaign_label_history"], "model.iterable.int_iterable__message_type_channel": ["model.iterable_source.stg_iterable__channel", "model.iterable_source.stg_iterable__message_type"], "model.iterable.int_iterable__latest_template": ["model.iterable.int_iterable__message_type_channel", "model.iterable_source.stg_iterable__template_history"], "model.iterable.int_iterable__user_event_metrics": ["model.iterable.iterable__user_campaign", "model.iterable.iterable__user_campaign"], "model.iterable.int_iterable__list_user_history": ["model.iterable_source.stg_iterable__user_history"], "model.iterable.int_iterable__recurring_campaigns": ["model.iterable.int_iterable__latest_campaign"], "model.iterable_source.stg_iterable__user_unsub_message_type_history": ["model.iterable_source.stg_iterable__user_unsub_message_type_history_tmp", "model.iterable_source.stg_iterable__user_unsub_message_type_history_tmp"], "model.iterable_source.stg_iterable__event_extension": ["model.iterable_source.stg_iterable__event_extension_tmp", "model.iterable_source.stg_iterable__event_extension_tmp"], "model.iterable_source.stg_iterable__list": ["model.iterable_source.stg_iterable__list_tmp", "model.iterable_source.stg_iterable__list_tmp"], "model.iterable_source.stg_iterable__campaign_suppression_list_history": ["model.iterable_source.stg_iterable__campaign_suppression_list_history_tmp", "model.iterable_source.stg_iterable__campaign_suppression_list_history_tmp"], "model.iterable_source.stg_iterable__campaign_list_history": ["model.iterable_source.stg_iterable__campaign_list_history_tmp", "model.iterable_source.stg_iterable__campaign_list_history_tmp"], "model.iterable_source.stg_iterable__user_history": ["model.iterable_source.stg_iterable__user_history_tmp", "model.iterable_source.stg_iterable__user_history_tmp"], "model.iterable_source.stg_iterable__campaign_label_history": ["model.iterable_source.stg_iterable__campaign_label_history_tmp", "model.iterable_source.stg_iterable__campaign_label_history_tmp"], "model.iterable_source.stg_iterable__event": ["model.iterable_source.stg_iterable__event_tmp", "model.iterable_source.stg_iterable__event_tmp"], "model.iterable_source.stg_iterable__user_unsubscribed_channel_history": ["model.iterable_source.stg_iterable__user_unsubscribed_channel_history_tmp", "model.iterable_source.stg_iterable__user_unsubscribed_channel_history_tmp"], "model.iterable_source.stg_iterable__template_history": ["model.iterable_source.stg_iterable__template_history_tmp", "model.iterable_source.stg_iterable__template_history_tmp"], "model.iterable_source.stg_iterable__channel": ["model.iterable_source.stg_iterable__channel_tmp", "model.iterable_source.stg_iterable__channel_tmp"], "model.iterable_source.stg_iterable__campaign_history": ["model.iterable_source.stg_iterable__campaign_history_tmp", "model.iterable_source.stg_iterable__campaign_history_tmp"], "model.iterable_source.stg_iterable__message_type": ["model.iterable_source.stg_iterable__message_type_tmp", "model.iterable_source.stg_iterable__message_type_tmp"], "model.iterable_source.stg_iterable__campaign_history_tmp": ["source.iterable_source.iterable.campaign_history"], "model.iterable_source.stg_iterable__list_tmp": ["source.iterable_source.iterable.list"], "model.iterable_source.stg_iterable__campaign_suppression_list_history_tmp": ["source.iterable_source.iterable.campaign_suppression_list_history"], "model.iterable_source.stg_iterable__template_history_tmp": ["source.iterable_source.iterable.template_history"], "model.iterable_source.stg_iterable__campaign_list_history_tmp": ["source.iterable_source.iterable.campaign_list_history"], "model.iterable_source.stg_iterable__channel_tmp": ["source.iterable_source.iterable.channel"], "model.iterable_source.stg_iterable__event_tmp": ["source.iterable_source.iterable.event"], "model.iterable_source.stg_iterable__user_unsubscribed_channel_history_tmp": ["source.iterable_source.iterable.user_unsubscribed_channel_history"], "model.iterable_source.stg_iterable__user_unsub_message_type_history_tmp": ["source.iterable_source.iterable.user_unsubscribed_message_type_history"], "model.iterable_source.stg_iterable__event_extension_tmp": ["source.iterable_source.iterable.event_extension"], "model.iterable_source.stg_iterable__campaign_label_history_tmp": ["source.iterable_source.iterable.campaign_label_history"], "model.iterable_source.stg_iterable__user_history_tmp": ["source.iterable_source.iterable.user_history"], "model.iterable_source.stg_iterable__message_type_tmp": ["source.iterable_source.iterable.message_type"], "test.iterable.not_null_iterable__campaigns_campaign_id.03c9448919": ["model.iterable.iterable__campaigns"], "test.iterable.dbt_utils_unique_combination_of_columns_iterable__campaigns_campaign_id__experiment_id.be21d4243f": ["model.iterable.iterable__campaigns"], "test.iterable.unique_iterable__events_event_id.93e30d3c2c": ["model.iterable.iterable__events"], "test.iterable.not_null_iterable__events_event_id.ed1d28a650": ["model.iterable.iterable__events"], "test.iterable.dbt_utils_unique_combination_of_columns_iterable__list_user_history_user_email__list_id__user_updated_at.3d3daf3864": ["model.iterable.iterable__list_user_history"], "test.iterable.not_null_iterable__user_campaign_user_email.e040b968fa": ["model.iterable.iterable__user_campaign"], "test.iterable.dbt_utils_unique_combination_of_columns_iterable__user_campaign_user_email__campaign_id__experiment_id.e8e117b7aa": ["model.iterable.iterable__user_campaign"], "test.iterable.dbt_utils_unique_combination_of_columns_iterable__user_unsubscriptions_email__message_type_id__is_unsubscribed_channel_wide.08cf764cb7": ["model.iterable.iterable__user_unsubscriptions"], "test.iterable.unique_iterable__users_email.5917fa5069": ["model.iterable.iterable__users"], "test.iterable.not_null_iterable__users_email.ffe9c8a4c4": ["model.iterable.iterable__users"], "test.iterable_source.not_null_stg_iterable__campaign_history_campaign_id.b7c36e4525": ["model.iterable_source.stg_iterable__campaign_history"], "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__campaign_history_campaign_id__updated_at.81e1a1b9b5": ["model.iterable_source.stg_iterable__campaign_history"], "test.iterable_source.not_null_stg_iterable__campaign_label_history_campaign_id.1918cef89a": ["model.iterable_source.stg_iterable__campaign_label_history"], "test.iterable_source.not_null_stg_iterable__campaign_list_history_campaign_id.208f9bf9ed": ["model.iterable_source.stg_iterable__campaign_list_history"], "test.iterable_source.not_null_stg_iterable__campaign_suppression_list_history_campaign_id.3921289710": ["model.iterable_source.stg_iterable__campaign_suppression_list_history"], "test.iterable_source.unique_stg_iterable__channel_channel_id.fc1eec7fbc": ["model.iterable_source.stg_iterable__channel"], "test.iterable_source.not_null_stg_iterable__channel_channel_id.182ceb9636": ["model.iterable_source.stg_iterable__channel"], "test.iterable_source.unique_stg_iterable__event_event_id.ddb8510fc1": ["model.iterable_source.stg_iterable__event"], "test.iterable_source.not_null_stg_iterable__event_event_id.370cd4bc9d": ["model.iterable_source.stg_iterable__event"], "test.iterable_source.unique_stg_iterable__event_extension_event_id.4553cb5979": ["model.iterable_source.stg_iterable__event_extension"], "test.iterable_source.not_null_stg_iterable__event_extension_event_id.144dedcd30": ["model.iterable_source.stg_iterable__event_extension"], "test.iterable_source.unique_stg_iterable__list_list_id.1e73c3def7": ["model.iterable_source.stg_iterable__list"], "test.iterable_source.not_null_stg_iterable__list_list_id.47029d839a": ["model.iterable_source.stg_iterable__list"], "test.iterable_source.unique_stg_iterable__message_type_message_type_id.0f75f83a34": ["model.iterable_source.stg_iterable__message_type"], "test.iterable_source.not_null_stg_iterable__message_type_message_type_id.75eaa6fa62": ["model.iterable_source.stg_iterable__message_type"], "test.iterable_source.not_null_stg_iterable__template_history_template_id.14b24a1dfe": ["model.iterable_source.stg_iterable__template_history"], "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__template_history_template_id__updated_at.e0b90faa8d": ["model.iterable_source.stg_iterable__template_history"], "test.iterable_source.not_null_stg_iterable__user_history_email.14ff93a17c": ["model.iterable_source.stg_iterable__user_history"], "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__user_history_email__updated_at.cb12f59c15": ["model.iterable_source.stg_iterable__user_history"], "test.iterable_source.not_null_stg_iterable__user_unsubscribed_channel_history_channel_id.b4667878b9": ["model.iterable_source.stg_iterable__user_unsubscribed_channel_history"], "test.iterable_source.not_null_stg_iterable__user_unsub_message_type_history_message_type_id.948c8b7127": ["model.iterable_source.stg_iterable__user_unsub_message_type_history"], "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__user_device_history_email__updated_at__index.9c0dac7320": [], "source.iterable_source.iterable.campaign_history": [], "source.iterable_source.iterable.campaign_label_history": [], "source.iterable_source.iterable.campaign_list_history": [], "source.iterable_source.iterable.campaign_suppression_list_history": [], "source.iterable_source.iterable.channel": [], "source.iterable_source.iterable.event": [], "source.iterable_source.iterable.event_extension": [], "source.iterable_source.iterable.list": [], "source.iterable_source.iterable.message_type": [], "source.iterable_source.iterable.template_history": [], "source.iterable_source.iterable.user_history": [], "source.iterable_source.iterable.user_device_history": [], "source.iterable_source.iterable.user_unsubscribed_channel_history": [], "source.iterable_source.iterable.user_unsubscribed_message_type_history": []}, "child_map": {"seed.iterable_integration_tests.user_unsubscribed_message_type_history_data": [], "seed.iterable_integration_tests.user_history_data": [], "seed.iterable_integration_tests.campaign_suppression_list_history_data": [], "seed.iterable_integration_tests.campaign_list_history_data": [], "seed.iterable_integration_tests.template_history_data": [], "seed.iterable_integration_tests.event_extension_data": [], "seed.iterable_integration_tests.channel_data": [], "seed.iterable_integration_tests.user_unsubscribed_channel_history_data": [], "seed.iterable_integration_tests.user_device_history_data": [], "seed.iterable_integration_tests.campaign_label_history_data": [], "seed.iterable_integration_tests.campaign_history_data": [], "seed.iterable_integration_tests.message_type_data": [], "seed.iterable_integration_tests.campaign_metrics_data": [], "seed.iterable_integration_tests.list_data": [], "seed.iterable_integration_tests.event_data": [], "model.iterable.iterable__events": ["model.iterable.iterable__user_campaign", "test.iterable.not_null_iterable__events_event_id.ed1d28a650", "test.iterable.unique_iterable__events_event_id.93e30d3c2c"], "model.iterable.iterable__campaigns": ["test.iterable.dbt_utils_unique_combination_of_columns_iterable__campaigns_campaign_id__experiment_id.be21d4243f", "test.iterable.not_null_iterable__campaigns_campaign_id.03c9448919"], "model.iterable.iterable__user_unsubscriptions": ["test.iterable.dbt_utils_unique_combination_of_columns_iterable__user_unsubscriptions_email__message_type_id__is_unsubscribed_channel_wide.08cf764cb7"], "model.iterable.iterable__users": ["test.iterable.not_null_iterable__users_email.ffe9c8a4c4", "test.iterable.unique_iterable__users_email.5917fa5069"], "model.iterable.iterable__user_campaign": ["model.iterable.int_iterable__campaign_event_metrics", "model.iterable.int_iterable__campaign_event_metrics", "model.iterable.int_iterable__user_event_metrics", "model.iterable.int_iterable__user_event_metrics", "test.iterable.dbt_utils_unique_combination_of_columns_iterable__user_campaign_user_email__campaign_id__experiment_id.e8e117b7aa", "test.iterable.not_null_iterable__user_campaign_user_email.e040b968fa"], "model.iterable.iterable__list_user_history": ["test.iterable.dbt_utils_unique_combination_of_columns_iterable__list_user_history_user_email__list_id__user_updated_at.3d3daf3864"], "model.iterable.int_iterable__list_user_unnest": ["model.iterable.iterable__list_user_history", "model.iterable.iterable__users"], "model.iterable.int_iterable__latest_campaign": ["model.iterable.int_iterable__recurring_campaigns"], "model.iterable.int_iterable__campaign_event_metrics": ["model.iterable.iterable__campaigns", "model.iterable.iterable__campaigns"], "model.iterable.int_iterable__campaign_lists": ["model.iterable.iterable__campaigns"], "model.iterable.int_iterable__latest_user": ["model.iterable.iterable__events"], "model.iterable.int_iterable__campaign_labels": ["model.iterable.iterable__campaigns"], "model.iterable.int_iterable__message_type_channel": ["model.iterable.int_iterable__latest_template", "model.iterable.iterable__events", "model.iterable.iterable__user_unsubscriptions"], "model.iterable.int_iterable__latest_template": ["model.iterable.iterable__campaigns", "model.iterable.iterable__events"], "model.iterable.int_iterable__user_event_metrics": ["model.iterable.iterable__users", "model.iterable.iterable__users"], "model.iterable.int_iterable__list_user_history": ["model.iterable.int_iterable__list_user_unnest"], "model.iterable.int_iterable__recurring_campaigns": ["model.iterable.iterable__campaigns", "model.iterable.iterable__events"], "model.iterable_source.stg_iterable__user_unsub_message_type_history": ["model.iterable.iterable__user_unsubscriptions", "test.iterable_source.not_null_stg_iterable__user_unsub_message_type_history_message_type_id.948c8b7127"], "model.iterable_source.stg_iterable__event_extension": ["model.iterable.iterable__events", "model.iterable.iterable__events", "test.iterable_source.not_null_stg_iterable__event_extension_event_id.144dedcd30", "test.iterable_source.unique_stg_iterable__event_extension_event_id.4553cb5979"], "model.iterable_source.stg_iterable__list": ["model.iterable.iterable__list_user_history", "test.iterable_source.not_null_stg_iterable__list_list_id.47029d839a", "test.iterable_source.unique_stg_iterable__list_list_id.1e73c3def7"], "model.iterable_source.stg_iterable__campaign_suppression_list_history": ["model.iterable.int_iterable__campaign_lists", "test.iterable_source.not_null_stg_iterable__campaign_suppression_list_history_campaign_id.3921289710"], "model.iterable_source.stg_iterable__campaign_list_history": ["model.iterable.int_iterable__campaign_lists", "test.iterable_source.not_null_stg_iterable__campaign_list_history_campaign_id.208f9bf9ed"], "model.iterable_source.stg_iterable__user_history": ["model.iterable.int_iterable__latest_user", "model.iterable.int_iterable__list_user_history", "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__user_history_email__updated_at.cb12f59c15", "test.iterable_source.not_null_stg_iterable__user_history_email.14ff93a17c"], "model.iterable_source.stg_iterable__campaign_label_history": ["model.iterable.int_iterable__campaign_labels", "test.iterable_source.not_null_stg_iterable__campaign_label_history_campaign_id.1918cef89a"], "model.iterable_source.stg_iterable__event": ["model.iterable.iterable__events", "test.iterable_source.not_null_stg_iterable__event_event_id.370cd4bc9d", "test.iterable_source.unique_stg_iterable__event_event_id.ddb8510fc1"], "model.iterable_source.stg_iterable__user_unsubscribed_channel_history": ["model.iterable.iterable__user_unsubscriptions", "test.iterable_source.not_null_stg_iterable__user_unsubscribed_channel_history_channel_id.b4667878b9"], "model.iterable_source.stg_iterable__template_history": ["model.iterable.int_iterable__latest_template", "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__template_history_template_id__updated_at.e0b90faa8d", "test.iterable_source.not_null_stg_iterable__template_history_template_id.14b24a1dfe"], "model.iterable_source.stg_iterable__channel": ["model.iterable.int_iterable__message_type_channel", "test.iterable_source.not_null_stg_iterable__channel_channel_id.182ceb9636", "test.iterable_source.unique_stg_iterable__channel_channel_id.fc1eec7fbc"], "model.iterable_source.stg_iterable__campaign_history": ["model.iterable.int_iterable__latest_campaign", "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__campaign_history_campaign_id__updated_at.81e1a1b9b5", "test.iterable_source.not_null_stg_iterable__campaign_history_campaign_id.b7c36e4525"], "model.iterable_source.stg_iterable__message_type": ["model.iterable.int_iterable__message_type_channel", "test.iterable_source.not_null_stg_iterable__message_type_message_type_id.75eaa6fa62", "test.iterable_source.unique_stg_iterable__message_type_message_type_id.0f75f83a34"], "model.iterable_source.stg_iterable__campaign_history_tmp": ["model.iterable_source.stg_iterable__campaign_history", "model.iterable_source.stg_iterable__campaign_history"], "model.iterable_source.stg_iterable__list_tmp": ["model.iterable_source.stg_iterable__list", "model.iterable_source.stg_iterable__list"], "model.iterable_source.stg_iterable__campaign_suppression_list_history_tmp": ["model.iterable_source.stg_iterable__campaign_suppression_list_history", "model.iterable_source.stg_iterable__campaign_suppression_list_history"], "model.iterable_source.stg_iterable__template_history_tmp": ["model.iterable_source.stg_iterable__template_history", "model.iterable_source.stg_iterable__template_history"], "model.iterable_source.stg_iterable__campaign_list_history_tmp": ["model.iterable_source.stg_iterable__campaign_list_history", "model.iterable_source.stg_iterable__campaign_list_history"], "model.iterable_source.stg_iterable__channel_tmp": ["model.iterable_source.stg_iterable__channel", "model.iterable_source.stg_iterable__channel"], "model.iterable_source.stg_iterable__event_tmp": ["model.iterable_source.stg_iterable__event", "model.iterable_source.stg_iterable__event"], "model.iterable_source.stg_iterable__user_unsubscribed_channel_history_tmp": ["model.iterable_source.stg_iterable__user_unsubscribed_channel_history", "model.iterable_source.stg_iterable__user_unsubscribed_channel_history"], "model.iterable_source.stg_iterable__user_unsub_message_type_history_tmp": ["model.iterable_source.stg_iterable__user_unsub_message_type_history", "model.iterable_source.stg_iterable__user_unsub_message_type_history"], "model.iterable_source.stg_iterable__event_extension_tmp": ["model.iterable_source.stg_iterable__event_extension", "model.iterable_source.stg_iterable__event_extension"], "model.iterable_source.stg_iterable__campaign_label_history_tmp": ["model.iterable_source.stg_iterable__campaign_label_history", "model.iterable_source.stg_iterable__campaign_label_history"], "model.iterable_source.stg_iterable__user_history_tmp": ["model.iterable_source.stg_iterable__user_history", "model.iterable_source.stg_iterable__user_history"], "model.iterable_source.stg_iterable__message_type_tmp": ["model.iterable_source.stg_iterable__message_type", "model.iterable_source.stg_iterable__message_type"], "test.iterable.not_null_iterable__campaigns_campaign_id.03c9448919": [], "test.iterable.dbt_utils_unique_combination_of_columns_iterable__campaigns_campaign_id__experiment_id.be21d4243f": [], "test.iterable.unique_iterable__events_event_id.93e30d3c2c": [], "test.iterable.not_null_iterable__events_event_id.ed1d28a650": [], "test.iterable.dbt_utils_unique_combination_of_columns_iterable__list_user_history_user_email__list_id__user_updated_at.3d3daf3864": [], "test.iterable.not_null_iterable__user_campaign_user_email.e040b968fa": [], "test.iterable.dbt_utils_unique_combination_of_columns_iterable__user_campaign_user_email__campaign_id__experiment_id.e8e117b7aa": [], "test.iterable.dbt_utils_unique_combination_of_columns_iterable__user_unsubscriptions_email__message_type_id__is_unsubscribed_channel_wide.08cf764cb7": [], "test.iterable.unique_iterable__users_email.5917fa5069": [], "test.iterable.not_null_iterable__users_email.ffe9c8a4c4": [], "test.iterable_source.not_null_stg_iterable__campaign_history_campaign_id.b7c36e4525": [], "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__campaign_history_campaign_id__updated_at.81e1a1b9b5": [], "test.iterable_source.not_null_stg_iterable__campaign_label_history_campaign_id.1918cef89a": [], "test.iterable_source.not_null_stg_iterable__campaign_list_history_campaign_id.208f9bf9ed": [], "test.iterable_source.not_null_stg_iterable__campaign_suppression_list_history_campaign_id.3921289710": [], "test.iterable_source.unique_stg_iterable__channel_channel_id.fc1eec7fbc": [], "test.iterable_source.not_null_stg_iterable__channel_channel_id.182ceb9636": [], "test.iterable_source.unique_stg_iterable__event_event_id.ddb8510fc1": [], "test.iterable_source.not_null_stg_iterable__event_event_id.370cd4bc9d": [], "test.iterable_source.unique_stg_iterable__event_extension_event_id.4553cb5979": [], "test.iterable_source.not_null_stg_iterable__event_extension_event_id.144dedcd30": [], "test.iterable_source.unique_stg_iterable__list_list_id.1e73c3def7": [], "test.iterable_source.not_null_stg_iterable__list_list_id.47029d839a": [], "test.iterable_source.unique_stg_iterable__message_type_message_type_id.0f75f83a34": [], "test.iterable_source.not_null_stg_iterable__message_type_message_type_id.75eaa6fa62": [], "test.iterable_source.not_null_stg_iterable__template_history_template_id.14b24a1dfe": [], "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__template_history_template_id__updated_at.e0b90faa8d": [], "test.iterable_source.not_null_stg_iterable__user_history_email.14ff93a17c": [], "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__user_history_email__updated_at.cb12f59c15": [], "test.iterable_source.not_null_stg_iterable__user_unsubscribed_channel_history_channel_id.b4667878b9": [], "test.iterable_source.not_null_stg_iterable__user_unsub_message_type_history_message_type_id.948c8b7127": [], "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__user_device_history_email__updated_at__index.9c0dac7320": [], "source.iterable_source.iterable.campaign_history": ["model.iterable_source.stg_iterable__campaign_history_tmp"], "source.iterable_source.iterable.campaign_label_history": ["model.iterable_source.stg_iterable__campaign_label_history_tmp"], "source.iterable_source.iterable.campaign_list_history": ["model.iterable_source.stg_iterable__campaign_list_history_tmp"], "source.iterable_source.iterable.campaign_suppression_list_history": ["model.iterable_source.stg_iterable__campaign_suppression_list_history_tmp"], "source.iterable_source.iterable.channel": ["model.iterable_source.stg_iterable__channel_tmp"], "source.iterable_source.iterable.event": ["model.iterable_source.stg_iterable__event_tmp"], "source.iterable_source.iterable.event_extension": ["model.iterable_source.stg_iterable__event_extension_tmp"], "source.iterable_source.iterable.list": ["model.iterable_source.stg_iterable__list_tmp"], "source.iterable_source.iterable.message_type": ["model.iterable_source.stg_iterable__message_type_tmp"], "source.iterable_source.iterable.template_history": ["model.iterable_source.stg_iterable__template_history_tmp"], "source.iterable_source.iterable.user_history": ["model.iterable_source.stg_iterable__user_history_tmp"], "source.iterable_source.iterable.user_device_history": [], "source.iterable_source.iterable.user_unsubscribed_channel_history": ["model.iterable_source.stg_iterable__user_unsubscribed_channel_history_tmp"], "source.iterable_source.iterable.user_unsubscribed_message_type_history": ["model.iterable_source.stg_iterable__user_unsub_message_type_history_tmp"]}, "group_map": {}} \ No newline at end of file diff --git a/docs/run_results.json b/docs/run_results.json index 1f7ea40..f26453a 100644 --- a/docs/run_results.json +++ b/docs/run_results.json @@ -1 +1 @@ -{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/run-results/v4.json", "dbt_version": "1.5.2", "generated_at": "2023-06-23T21:44:08.961624Z", "invocation_id": "4e8e06ae-9ce5-422f-a6a3-7210fa1ca7ef", "env": {}}, "results": [{"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.695578Z", "completed_at": "2023-06-23T21:44:03.723938Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:03.731682Z", "completed_at": "2023-06-23T21:44:03.731691Z"}], "thread_id": "Thread-1", "execution_time": 0.048692941665649414, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__campaign_history_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.702331Z", "completed_at": "2023-06-23T21:44:03.727968Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:03.732151Z", "completed_at": "2023-06-23T21:44:03.732155Z"}], "thread_id": "Thread-2", "execution_time": 0.047033071517944336, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__campaign_label_history_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.709080Z", "completed_at": "2023-06-23T21:44:03.728617Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:03.732411Z", "completed_at": "2023-06-23T21:44:03.732415Z"}], "thread_id": "Thread-3", "execution_time": 0.04590892791748047, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__campaign_list_history_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.714443Z", "completed_at": "2023-06-23T21:44:03.728951Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:03.732665Z", "completed_at": "2023-06-23T21:44:03.732669Z"}], "thread_id": "Thread-5", "execution_time": 0.04405379295349121, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__channel_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.717755Z", "completed_at": "2023-06-23T21:44:03.729227Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:03.733097Z", "completed_at": "2023-06-23T21:44:03.733100Z"}], "thread_id": "Thread-6", "execution_time": 0.04391598701477051, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__event_extension_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.711461Z", "completed_at": "2023-06-23T21:44:03.729521Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:03.733324Z", "completed_at": "2023-06-23T21:44:03.733328Z"}], "thread_id": "Thread-4", "execution_time": 0.04613900184631348, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__campaign_suppression_list_history_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.720849Z", "completed_at": "2023-06-23T21:44:03.730036Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:03.734128Z", "completed_at": "2023-06-23T21:44:03.734131Z"}], "thread_id": "Thread-7", "execution_time": 0.043888092041015625, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__event_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.724252Z", "completed_at": "2023-06-23T21:44:03.731006Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:03.735996Z", "completed_at": "2023-06-23T21:44:03.736000Z"}], "thread_id": "Thread-8", "execution_time": 0.0445401668548584, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__list_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.756409Z", "completed_at": "2023-06-23T21:44:03.757381Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:03.763025Z", "completed_at": "2023-06-23T21:44:03.763029Z"}], "thread_id": "Thread-4", "execution_time": 0.022565126419067383, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.iterable_integration_tests.campaign_history_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.757654Z", "completed_at": "2023-06-23T21:44:03.758592Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:03.763222Z", "completed_at": "2023-06-23T21:44:03.763225Z"}], "thread_id": "Thread-7", "execution_time": 0.02249598503112793, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.iterable_integration_tests.campaign_label_history_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.759149Z", "completed_at": "2023-06-23T21:44:03.760286Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:03.763416Z", "completed_at": "2023-06-23T21:44:03.763419Z"}], "thread_id": "Thread-8", "execution_time": 0.022083044052124023, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.iterable_integration_tests.campaign_list_history_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.746930Z", "completed_at": "2023-06-23T21:44:03.760615Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:03.763772Z", "completed_at": "2023-06-23T21:44:03.763775Z"}], "thread_id": "Thread-2", "execution_time": 0.025709867477416992, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__template_history_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.751295Z", "completed_at": "2023-06-23T21:44:03.760862Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:03.763966Z", "completed_at": "2023-06-23T21:44:03.763968Z"}], "thread_id": "Thread-5", "execution_time": 0.025450944900512695, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__user_unsub_message_type_history_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.744222Z", "completed_at": "2023-06-23T21:44:03.761139Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:03.764166Z", "completed_at": "2023-06-23T21:44:03.764168Z"}], "thread_id": "Thread-1", "execution_time": 0.02721691131591797, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__message_type_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.749176Z", "completed_at": "2023-06-23T21:44:03.761361Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:03.764363Z", "completed_at": "2023-06-23T21:44:03.764365Z"}], "thread_id": "Thread-3", "execution_time": 0.026623010635375977, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__user_history_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.753799Z", "completed_at": "2023-06-23T21:44:03.762146Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:03.765885Z", "completed_at": "2023-06-23T21:44:03.765888Z"}], "thread_id": "Thread-6", "execution_time": 0.026777029037475586, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__user_unsubscribed_channel_history_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.773715Z", "completed_at": "2023-06-23T21:44:03.775004Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:03.785187Z", "completed_at": "2023-06-23T21:44:03.785192Z"}], "thread_id": "Thread-4", "execution_time": 0.01702117919921875, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.iterable_integration_tests.campaign_metrics_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.775237Z", "completed_at": "2023-06-23T21:44:03.776196Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:03.785380Z", "completed_at": "2023-06-23T21:44:03.785383Z"}], "thread_id": "Thread-7", "execution_time": 0.017160892486572266, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.iterable_integration_tests.campaign_suppression_list_history_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.776418Z", "completed_at": "2023-06-23T21:44:03.778097Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:03.785572Z", "completed_at": "2023-06-23T21:44:03.785574Z"}], "thread_id": "Thread-8", "execution_time": 0.017267942428588867, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.iterable_integration_tests.channel_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.778478Z", "completed_at": "2023-06-23T21:44:03.779394Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:03.785913Z", "completed_at": "2023-06-23T21:44:03.785915Z"}], "thread_id": "Thread-2", "execution_time": 0.01732492446899414, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.iterable_integration_tests.event_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.779593Z", "completed_at": "2023-06-23T21:44:03.780506Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:03.786098Z", "completed_at": "2023-06-23T21:44:03.786100Z"}], "thread_id": "Thread-5", "execution_time": 0.017405033111572266, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.iterable_integration_tests.event_extension_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.780708Z", "completed_at": "2023-06-23T21:44:03.781616Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:03.786290Z", "completed_at": "2023-06-23T21:44:03.786292Z"}], "thread_id": "Thread-1", "execution_time": 0.017505168914794922, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.iterable_integration_tests.list_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.781819Z", "completed_at": "2023-06-23T21:44:03.782717Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:03.786472Z", "completed_at": "2023-06-23T21:44:03.786475Z"}], "thread_id": "Thread-3", "execution_time": 0.017590999603271484, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.iterable_integration_tests.message_type_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.783400Z", "completed_at": "2023-06-23T21:44:03.784369Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:03.787973Z", "completed_at": "2023-06-23T21:44:03.787976Z"}], "thread_id": "Thread-6", "execution_time": 0.0177459716796875, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.iterable_integration_tests.template_history_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.795217Z", "completed_at": "2023-06-23T21:44:03.796983Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:03.819263Z", "completed_at": "2023-06-23T21:44:03.819270Z"}], "thread_id": "Thread-4", "execution_time": 0.029214143753051758, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.iterable_integration_tests.user_device_history_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.797215Z", "completed_at": "2023-06-23T21:44:03.798136Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:03.819474Z", "completed_at": "2023-06-23T21:44:03.819477Z"}], "thread_id": "Thread-7", "execution_time": 0.029331207275390625, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.iterable_integration_tests.user_history_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.798346Z", "completed_at": "2023-06-23T21:44:03.799252Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:03.819665Z", "completed_at": "2023-06-23T21:44:03.819668Z"}], "thread_id": "Thread-8", "execution_time": 0.029446840286254883, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.iterable_integration_tests.user_unsubscribed_channel_history_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.799616Z", "completed_at": "2023-06-23T21:44:03.800520Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:03.819977Z", "completed_at": "2023-06-23T21:44:03.819980Z"}], "thread_id": "Thread-2", "execution_time": 0.02954697608947754, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.iterable_integration_tests.user_unsubscribed_message_type_history_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.800727Z", "completed_at": "2023-06-23T21:44:04.582005Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:04.582793Z", "completed_at": "2023-06-23T21:44:04.582801Z"}], "thread_id": "Thread-5", "execution_time": 0.9648149013519287, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__campaign_history"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.806043Z", "completed_at": "2023-06-23T21:44:04.589685Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:04.595104Z", "completed_at": "2023-06-23T21:44:04.595110Z"}], "thread_id": "Thread-1", "execution_time": 0.9656000137329102, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__campaign_label_history"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.844755Z", "completed_at": "2023-06-23T21:44:04.596113Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:04.597565Z", "completed_at": "2023-06-23T21:44:04.597568Z"}], "thread_id": "Thread-7", "execution_time": 0.9397628307342529, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__campaign_suppression_list_history"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.814836Z", "completed_at": "2023-06-23T21:44:04.595374Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:04.597159Z", "completed_at": "2023-06-23T21:44:04.597164Z"}], "thread_id": "Thread-6", "execution_time": 0.9810469150543213, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__channel"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.840566Z", "completed_at": "2023-06-23T21:44:04.622532Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:04.622948Z", "completed_at": "2023-06-23T21:44:04.622954Z"}], "thread_id": "Thread-4", "execution_time": 0.9453632831573486, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__event_extension"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.848489Z", "completed_at": "2023-06-23T21:44:04.656138Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:04.656549Z", "completed_at": "2023-06-23T21:44:04.656554Z"}], "thread_id": "Thread-8", "execution_time": 0.9958710670471191, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__event"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.852613Z", "completed_at": "2023-06-23T21:44:04.666228Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:04.666630Z", "completed_at": "2023-06-23T21:44:04.666635Z"}], "thread_id": "Thread-2", "execution_time": 0.9928929805755615, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__list"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:03.810732Z", "completed_at": "2023-06-23T21:44:04.667496Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:04.667867Z", "completed_at": "2023-06-23T21:44:04.667870Z"}], "thread_id": "Thread-3", "execution_time": 1.042830228805542, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__campaign_list_history"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:04.869092Z", "completed_at": "2023-06-23T21:44:04.892854Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:04.893289Z", "completed_at": "2023-06-23T21:44:04.893296Z"}], "thread_id": "Thread-8", "execution_time": 0.03404808044433594, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.int_iterable__latest_campaign"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:04.871688Z", "completed_at": "2023-06-23T21:44:04.899548Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:04.899992Z", "completed_at": "2023-06-23T21:44:04.899997Z"}], "thread_id": "Thread-2", "execution_time": 0.040315866470336914, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__campaign_history_campaign_id__updated_at.81e1a1b9b5"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:04.880311Z", "completed_at": "2023-06-23T21:44:04.904108Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:04.904527Z", "completed_at": "2023-06-23T21:44:04.904532Z"}], "thread_id": "Thread-3", "execution_time": 0.04401588439941406, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.not_null_stg_iterable__campaign_history_campaign_id.b7c36e4525"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:04.894648Z", "completed_at": "2023-06-23T21:44:04.912138Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:04.913003Z", "completed_at": "2023-06-23T21:44:04.913009Z"}], "thread_id": "Thread-8", "execution_time": 0.019768238067626953, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.int_iterable__campaign_labels"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:04.901338Z", "completed_at": "2023-06-23T21:44:04.912390Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:04.913249Z", "completed_at": "2023-06-23T21:44:04.913253Z"}], "thread_id": "Thread-2", "execution_time": 0.013529062271118164, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.not_null_stg_iterable__campaign_label_history_campaign_id.1918cef89a"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:04.905846Z", "completed_at": "2023-06-23T21:44:04.913553Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:04.915285Z", "completed_at": "2023-06-23T21:44:04.915288Z"}], "thread_id": "Thread-3", "execution_time": 0.010937213897705078, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.not_null_stg_iterable__campaign_suppression_list_history_campaign_id.3921289710"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:04.917151Z", "completed_at": "2023-06-23T21:44:04.927780Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:04.928176Z", "completed_at": "2023-06-23T21:44:04.928181Z"}], "thread_id": "Thread-8", "execution_time": 0.013055086135864258, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.not_null_stg_iterable__channel_channel_id.182ceb9636"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:04.919954Z", "completed_at": "2023-06-23T21:44:04.932044Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:04.932522Z", "completed_at": "2023-06-23T21:44:04.932526Z"}], "thread_id": "Thread-2", "execution_time": 0.01712179183959961, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.unique_stg_iterable__channel_channel_id.fc1eec7fbc"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:04.929452Z", "completed_at": "2023-06-23T21:44:04.933367Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:04.934688Z", "completed_at": "2023-06-23T21:44:04.934692Z"}], "thread_id": "Thread-8", "execution_time": 0.008932828903198242, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.unique_stg_iterable__event_extension_event_id.4553cb5979"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:04.924361Z", "completed_at": "2023-06-23T21:44:04.933590Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:04.934892Z", "completed_at": "2023-06-23T21:44:04.934894Z"}], "thread_id": "Thread-3", "execution_time": 0.014626741409301758, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.not_null_stg_iterable__event_extension_event_id.144dedcd30"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:04.935089Z", "completed_at": "2023-06-23T21:44:04.939476Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:04.943089Z", "completed_at": "2023-06-23T21:44:04.943094Z"}], "thread_id": "Thread-2", "execution_time": 0.012299060821533203, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.not_null_stg_iterable__event_event_id.370cd4bc9d"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:04.943301Z", "completed_at": "2023-06-23T21:44:04.953116Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:04.954158Z", "completed_at": "2023-06-23T21:44:04.954162Z"}], "thread_id": "Thread-3", "execution_time": 0.015289783477783203, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.not_null_stg_iterable__list_list_id.47029d839a"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:04.940496Z", "completed_at": "2023-06-23T21:44:04.953382Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:04.954373Z", "completed_at": "2023-06-23T21:44:04.954376Z"}], "thread_id": "Thread-8", "execution_time": 0.01627969741821289, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.unique_stg_iterable__event_event_id.ddb8510fc1"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:04.947170Z", "completed_at": "2023-06-23T21:44:04.953956Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:04.955658Z", "completed_at": "2023-06-23T21:44:04.955661Z"}], "thread_id": "Thread-2", "execution_time": 0.009911060333251953, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.unique_stg_iterable__list_list_id.1e73c3def7"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:04.962422Z", "completed_at": "2023-06-23T21:44:04.967111Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:04.967503Z", "completed_at": "2023-06-23T21:44:04.967507Z"}], "thread_id": "Thread-8", "execution_time": 0.010785818099975586, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.not_null_stg_iterable__campaign_list_history_campaign_id.208f9bf9ed"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:04.959242Z", "completed_at": "2023-06-23T21:44:04.971432Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:04.975120Z", "completed_at": "2023-06-23T21:44:04.975124Z"}], "thread_id": "Thread-3", "execution_time": 0.018775224685668945, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.int_iterable__campaign_lists"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:04.965247Z", "completed_at": "2023-06-23T21:44:04.975831Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:04.976238Z", "completed_at": "2023-06-23T21:44:04.976241Z"}], "thread_id": "Thread-2", "execution_time": 0.01860523223876953, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.int_iterable__recurring_campaigns"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:04.761826Z", "completed_at": "2023-06-23T21:44:05.477638Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:05.480663Z", "completed_at": "2023-06-23T21:44:05.480678Z"}], "thread_id": "Thread-5", "execution_time": 0.8834550380706787, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__template_history"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:04.768279Z", "completed_at": "2023-06-23T21:44:05.481779Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:05.483203Z", "completed_at": "2023-06-23T21:44:05.483211Z"}], "thread_id": "Thread-1", "execution_time": 0.8928751945495605, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__user_unsub_message_type_history"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:05.646833Z", "completed_at": "2023-06-23T21:44:05.664107Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:05.664922Z", "completed_at": "2023-06-23T21:44:05.664927Z"}], "thread_id": "Thread-8", "execution_time": 0.020788908004760742, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__template_history_template_id__updated_at.e0b90faa8d"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:05.654901Z", "completed_at": "2023-06-23T21:44:05.664655Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:05.666233Z", "completed_at": "2023-06-23T21:44:05.666237Z"}], "thread_id": "Thread-3", "execution_time": 0.02130722999572754, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.not_null_stg_iterable__template_history_template_id.14b24a1dfe"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:05.660079Z", "completed_at": "2023-06-23T21:44:05.665408Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:05.667329Z", "completed_at": "2023-06-23T21:44:05.667334Z"}], "thread_id": "Thread-5", "execution_time": 0.008540868759155273, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.not_null_stg_iterable__user_unsub_message_type_history_message_type_id.948c8b7127"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:04.832035Z", "completed_at": "2023-06-23T21:44:05.599437Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:05.608230Z", "completed_at": "2023-06-23T21:44:05.608238Z"}], "thread_id": "Thread-4", "execution_time": 0.9902441501617432, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__user_unsubscribed_channel_history"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:04.793295Z", "completed_at": "2023-06-23T21:44:05.600703Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:05.608593Z", "completed_at": "2023-06-23T21:44:05.608598Z"}], "thread_id": "Thread-6", "execution_time": 1.0069928169250488, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__user_history"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:04.789318Z", "completed_at": "2023-06-23T21:44:05.610435Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:05.611647Z", "completed_at": "2023-06-23T21:44:05.611653Z"}], "thread_id": "Thread-7", "execution_time": 1.0089802742004395, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__message_type"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:05.776866Z", "completed_at": "2023-06-23T21:44:05.791241Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:05.807266Z", "completed_at": "2023-06-23T21:44:05.807274Z"}], "thread_id": "Thread-1", "execution_time": 0.03937411308288574, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.not_null_stg_iterable__user_unsubscribed_channel_history_channel_id.b4667878b9"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:05.795218Z", "completed_at": "2023-06-23T21:44:05.808848Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:05.831289Z", "completed_at": "2023-06-23T21:44:05.831294Z"}], "thread_id": "Thread-8", "execution_time": 0.04363107681274414, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.int_iterable__latest_user"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:05.800912Z", "completed_at": "2023-06-23T21:44:05.815191Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:05.831809Z", "completed_at": "2023-06-23T21:44:05.831813Z"}], "thread_id": "Thread-3", "execution_time": 0.04360699653625488, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.int_iterable__list_user_history"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:05.809157Z", "completed_at": "2023-06-23T21:44:05.830452Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:05.834136Z", "completed_at": "2023-06-23T21:44:05.834139Z"}], "thread_id": "Thread-5", "execution_time": 0.04206705093383789, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__user_history_email__updated_at.cb12f59c15"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:05.815483Z", "completed_at": "2023-06-23T21:44:05.830777Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:05.834592Z", "completed_at": "2023-06-23T21:44:05.834596Z"}], "thread_id": "Thread-4", "execution_time": 0.04205918312072754, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.not_null_stg_iterable__user_history_email.14ff93a17c"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:05.822996Z", "completed_at": "2023-06-23T21:44:05.831054Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:05.834829Z", "completed_at": "2023-06-23T21:44:05.834832Z"}], "thread_id": "Thread-6", "execution_time": 0.036791086196899414, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.not_null_stg_iterable__message_type_message_type_id.75eaa6fa62"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:05.819302Z", "completed_at": "2023-06-23T21:44:05.831530Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:05.835124Z", "completed_at": "2023-06-23T21:44:05.835127Z"}], "thread_id": "Thread-2", "execution_time": 0.03785991668701172, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.int_iterable__message_type_channel"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:05.826289Z", "completed_at": "2023-06-23T21:44:05.832229Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:05.836207Z", "completed_at": "2023-06-23T21:44:05.836211Z"}], "thread_id": "Thread-7", "execution_time": 0.03366208076477051, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.unique_stg_iterable__message_type_message_type_id.0f75f83a34"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:05.839528Z", "completed_at": "2023-06-23T21:44:05.862868Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:05.863332Z", "completed_at": "2023-06-23T21:44:05.863336Z"}], "thread_id": "Thread-1", "execution_time": 0.02575993537902832, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.int_iterable__list_user_unnest"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:05.856680Z", "completed_at": "2023-06-23T21:44:05.864077Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:05.865058Z", "completed_at": "2023-06-23T21:44:05.865062Z"}], "thread_id": "Thread-3", "execution_time": 0.010330915451049805, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.int_iterable__latest_template"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:05.859015Z", "completed_at": "2023-06-23T21:44:05.864332Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:05.865594Z", "completed_at": "2023-06-23T21:44:05.865597Z"}], "thread_id": "Thread-8", "execution_time": 0.010610103607177734, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.iterable__user_unsubscriptions"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:05.866891Z", "completed_at": "2023-06-23T21:44:05.870682Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:05.893291Z", "completed_at": "2023-06-23T21:44:05.893296Z"}], "thread_id": "Thread-4", "execution_time": 0.028638124465942383, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.iterable__list_user_history"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:05.889774Z", "completed_at": "2023-06-23T21:44:05.897970Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:05.898840Z", "completed_at": "2023-06-23T21:44:05.898844Z"}], "thread_id": "Thread-7", "execution_time": 0.029417037963867188, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable.dbt_utils_unique_combination_of_columns_iterable__user_unsubscriptions_email__message_type_id__is_unsubscribed_channel_wide.08cf764cb7"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:05.900161Z", "completed_at": "2023-06-23T21:44:05.904018Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:05.904405Z", "completed_at": "2023-06-23T21:44:05.904409Z"}], "thread_id": "Thread-6", "execution_time": 0.005724191665649414, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable.dbt_utils_unique_combination_of_columns_iterable__list_user_history_user_email__list_id__user_updated_at.3d3daf3864"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:05.871054Z", "completed_at": "2023-06-23T21:44:06.559626Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:06.561609Z", "completed_at": "2023-06-23T21:44:06.561634Z"}], "thread_id": "Thread-2", "execution_time": 0.8496780395507812, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.iterable__events"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:06.731275Z", "completed_at": "2023-06-23T21:44:06.763869Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:06.765852Z", "completed_at": "2023-06-23T21:44:06.765862Z"}], "thread_id": "Thread-5", "execution_time": 0.04159712791442871, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.iterable__user_campaign"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:06.749495Z", "completed_at": "2023-06-23T21:44:06.764286Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:06.766209Z", "completed_at": "2023-06-23T21:44:06.766214Z"}], "thread_id": "Thread-8", "execution_time": 0.0402219295501709, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable.not_null_iterable__events_event_id.ed1d28a650"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:06.758374Z", "completed_at": "2023-06-23T21:44:06.764647Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:06.766566Z", "completed_at": "2023-06-23T21:44:06.766571Z"}], "thread_id": "Thread-1", "execution_time": 0.03924298286437988, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable.unique_iterable__events_event_id.93e30d3c2c"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:06.791681Z", "completed_at": "2023-06-23T21:44:06.796176Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:06.805237Z", "completed_at": "2023-06-23T21:44:06.805243Z"}], "thread_id": "Thread-6", "execution_time": 0.03362584114074707, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable.not_null_iterable__user_campaign_user_email.e040b968fa"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:06.786540Z", "completed_at": "2023-06-23T21:44:06.796493Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:06.805472Z", "completed_at": "2023-06-23T21:44:06.805476Z"}], "thread_id": "Thread-7", "execution_time": 0.03459882736206055, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable.dbt_utils_unique_combination_of_columns_iterable__user_campaign_user_email__campaign_id__experiment_id.e8e117b7aa"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:06.780651Z", "completed_at": "2023-06-23T21:44:07.607342Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:07.609225Z", "completed_at": "2023-06-23T21:44:07.609232Z"}], "thread_id": "Thread-1", "execution_time": 1.0089528560638428, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.int_iterable__user_event_metrics"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:06.773774Z", "completed_at": "2023-06-23T21:44:07.606756Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:07.608729Z", "completed_at": "2023-06-23T21:44:07.608745Z"}], "thread_id": "Thread-3", "execution_time": 1.0148859024047852, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.int_iterable__campaign_event_metrics"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:07.817064Z", "completed_at": "2023-06-23T21:44:08.739175Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:08.741152Z", "completed_at": "2023-06-23T21:44:08.741175Z"}], "thread_id": "Thread-5", "execution_time": 1.1086931228637695, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.iterable__users"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:07.795447Z", "completed_at": "2023-06-23T21:44:08.739740Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:08.741694Z", "completed_at": "2023-06-23T21:44:08.741701Z"}], "thread_id": "Thread-4", "execution_time": 1.1159131526947021, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.iterable__campaigns"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:08.916220Z", "completed_at": "2023-06-23T21:44:08.944443Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:08.952920Z", "completed_at": "2023-06-23T21:44:08.952934Z"}], "thread_id": "Thread-2", "execution_time": 0.043058156967163086, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable.dbt_utils_unique_combination_of_columns_iterable__campaigns_campaign_id__experiment_id.be21d4243f"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:08.932307Z", "completed_at": "2023-06-23T21:44:08.952467Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:08.955278Z", "completed_at": "2023-06-23T21:44:08.955283Z"}], "thread_id": "Thread-6", "execution_time": 0.04228997230529785, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable.not_null_iterable__campaigns_campaign_id.03c9448919"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:08.945525Z", "completed_at": "2023-06-23T21:44:08.953698Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:08.957043Z", "completed_at": "2023-06-23T21:44:08.957049Z"}], "thread_id": "Thread-1", "execution_time": 0.027054786682128906, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable.unique_iterable__users_email.5917fa5069"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-06-23T21:44:08.939149Z", "completed_at": "2023-06-23T21:44:08.954060Z"}, {"name": "execute", "started_at": "2023-06-23T21:44:08.957375Z", "completed_at": "2023-06-23T21:44:08.957380Z"}], "thread_id": "Thread-7", "execution_time": 0.029006242752075195, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable.not_null_iterable__users_email.ffe9c8a4c4"}], "elapsed_time": 7.54033899307251, "args": {"populate_cache": true, "write_json": true, "exclude": [], "use_colors": true, "macro_debugging": false, "indirect_selection": "eager", "defer": false, "log_level": "info", "log_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests/logs", "profiles_dir": "/Users/catherinefritz/.dbt", "quiet": false, "send_anonymous_usage_stats": true, "printer_width": 80, "warn_error_options": {"include": [], "exclude": []}, "introspect": true, "partial_parse": true, "static_parser": true, "strict_mode": false, "compile": true, "use_colors_file": true, "cache_selected_only": false, "favor_state": false, "log_format_file": "debug", "enable_legacy_logger": false, "log_level_file": "debug", "select": [], "project_dir": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "which": "generate", "print": true, "vars": {}, "log_format": "default", "version_check": true}} \ No newline at end of file +{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/run-results/v4.json", "dbt_version": "1.5.2", "generated_at": "2023-07-06T19:56:58.771693Z", "invocation_id": "66964340-d877-4856-8b35-70c76ccfd3d8", "env": {}}, "results": [{"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.835082Z", "completed_at": "2023-07-06T19:56:54.848534Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:54.859614Z", "completed_at": "2023-07-06T19:56:54.859623Z"}], "thread_id": "Thread-1", "execution_time": 0.03153181076049805, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__campaign_history_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.838230Z", "completed_at": "2023-07-06T19:56:54.853982Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:54.860317Z", "completed_at": "2023-07-06T19:56:54.860322Z"}], "thread_id": "Thread-2", "execution_time": 0.031469106674194336, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__campaign_label_history_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.841220Z", "completed_at": "2023-07-06T19:56:54.856771Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:54.860603Z", "completed_at": "2023-07-06T19:56:54.860613Z"}], "thread_id": "Thread-3", "execution_time": 0.031151294708251953, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__campaign_list_history_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.843748Z", "completed_at": "2023-07-06T19:56:54.857129Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:54.860911Z", "completed_at": "2023-07-06T19:56:54.860915Z"}], "thread_id": "Thread-4", "execution_time": 0.030949115753173828, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__campaign_suppression_list_history_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.846421Z", "completed_at": "2023-07-06T19:56:54.857649Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:54.862176Z", "completed_at": "2023-07-06T19:56:54.862184Z"}], "thread_id": "Thread-5", "execution_time": 0.03205513954162598, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__channel_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.851786Z", "completed_at": "2023-07-06T19:56:54.859051Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:54.864354Z", "completed_at": "2023-07-06T19:56:54.864358Z"}], "thread_id": "Thread-7", "execution_time": 0.033685922622680664, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__event_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.848896Z", "completed_at": "2023-07-06T19:56:54.859304Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:54.864597Z", "completed_at": "2023-07-06T19:56:54.864600Z"}], "thread_id": "Thread-6", "execution_time": 0.034623146057128906, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__event_extension_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.854264Z", "completed_at": "2023-07-06T19:56:54.860079Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:54.865911Z", "completed_at": "2023-07-06T19:56:54.865915Z"}], "thread_id": "Thread-8", "execution_time": 0.03588509559631348, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__list_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.874971Z", "completed_at": "2023-07-06T19:56:54.888827Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:54.896083Z", "completed_at": "2023-07-06T19:56:54.896090Z"}], "thread_id": "Thread-1", "execution_time": 0.029479026794433594, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__message_type_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.880066Z", "completed_at": "2023-07-06T19:56:54.889346Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:54.896329Z", "completed_at": "2023-07-06T19:56:54.896333Z"}], "thread_id": "Thread-3", "execution_time": 0.027498960494995117, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__user_history_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.889676Z", "completed_at": "2023-07-06T19:56:54.890662Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:54.896816Z", "completed_at": "2023-07-06T19:56:54.896820Z"}], "thread_id": "Thread-7", "execution_time": 0.0257418155670166, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.iterable_integration_tests.campaign_history_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.878008Z", "completed_at": "2023-07-06T19:56:54.890926Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:54.897062Z", "completed_at": "2023-07-06T19:56:54.897066Z"}], "thread_id": "Thread-2", "execution_time": 0.02939295768737793, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__template_history_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.891282Z", "completed_at": "2023-07-06T19:56:54.892245Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:54.897490Z", "completed_at": "2023-07-06T19:56:54.897495Z"}], "thread_id": "Thread-6", "execution_time": 0.026545047760009766, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.iterable_integration_tests.campaign_label_history_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.892718Z", "completed_at": "2023-07-06T19:56:54.893612Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:54.897730Z", "completed_at": "2023-07-06T19:56:54.897733Z"}], "thread_id": "Thread-8", "execution_time": 0.023964881896972656, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.iterable_integration_tests.campaign_list_history_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.882197Z", "completed_at": "2023-07-06T19:56:54.894465Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:54.899416Z", "completed_at": "2023-07-06T19:56:54.899423Z"}], "thread_id": "Thread-4", "execution_time": 0.031000137329101562, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__user_unsub_message_type_history_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.886007Z", "completed_at": "2023-07-06T19:56:54.895245Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:54.900772Z", "completed_at": "2023-07-06T19:56:54.900777Z"}], "thread_id": "Thread-5", "execution_time": 0.03110504150390625, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__user_unsubscribed_channel_history_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.910046Z", "completed_at": "2023-07-06T19:56:54.911201Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:54.922073Z", "completed_at": "2023-07-06T19:56:54.922080Z"}], "thread_id": "Thread-1", "execution_time": 0.019055843353271484, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.iterable_integration_tests.campaign_metrics_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.911478Z", "completed_at": "2023-07-06T19:56:54.912352Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:54.922297Z", "completed_at": "2023-07-06T19:56:54.922300Z"}], "thread_id": "Thread-3", "execution_time": 0.019083023071289062, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.iterable_integration_tests.campaign_suppression_list_history_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.912791Z", "completed_at": "2023-07-06T19:56:54.914410Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:54.922733Z", "completed_at": "2023-07-06T19:56:54.922739Z"}], "thread_id": "Thread-7", "execution_time": 0.019176006317138672, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.iterable_integration_tests.channel_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.914703Z", "completed_at": "2023-07-06T19:56:54.915681Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:54.923018Z", "completed_at": "2023-07-06T19:56:54.923025Z"}], "thread_id": "Thread-2", "execution_time": 0.019309043884277344, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.iterable_integration_tests.event_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.916142Z", "completed_at": "2023-07-06T19:56:54.916989Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:54.923490Z", "completed_at": "2023-07-06T19:56:54.923494Z"}], "thread_id": "Thread-6", "execution_time": 0.019473791122436523, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.iterable_integration_tests.event_extension_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.917227Z", "completed_at": "2023-07-06T19:56:54.918078Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:54.923697Z", "completed_at": "2023-07-06T19:56:54.923700Z"}], "thread_id": "Thread-8", "execution_time": 0.019563913345336914, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.iterable_integration_tests.list_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.918823Z", "completed_at": "2023-07-06T19:56:54.919814Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:54.924880Z", "completed_at": "2023-07-06T19:56:54.924887Z"}], "thread_id": "Thread-4", "execution_time": 0.01986408233642578, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.iterable_integration_tests.message_type_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.920498Z", "completed_at": "2023-07-06T19:56:54.921453Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:54.926292Z", "completed_at": "2023-07-06T19:56:54.926298Z"}], "thread_id": "Thread-5", "execution_time": 0.02008986473083496, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.iterable_integration_tests.template_history_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.936646Z", "completed_at": "2023-07-06T19:56:54.937846Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:54.981882Z", "completed_at": "2023-07-06T19:56:54.981889Z"}], "thread_id": "Thread-1", "execution_time": 0.05350303649902344, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.iterable_integration_tests.user_device_history_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.938143Z", "completed_at": "2023-07-06T19:56:54.939893Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:54.982107Z", "completed_at": "2023-07-06T19:56:54.982110Z"}], "thread_id": "Thread-3", "execution_time": 0.05348992347717285, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.iterable_integration_tests.user_history_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.940343Z", "completed_at": "2023-07-06T19:56:54.941187Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:54.982529Z", "completed_at": "2023-07-06T19:56:54.982532Z"}], "thread_id": "Thread-7", "execution_time": 0.053444862365722656, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.iterable_integration_tests.user_unsubscribed_channel_history_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.941414Z", "completed_at": "2023-07-06T19:56:54.942203Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:54.982731Z", "completed_at": "2023-07-06T19:56:54.982734Z"}], "thread_id": "Thread-2", "execution_time": 0.053465843200683594, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.iterable_integration_tests.user_unsubscribed_message_type_history_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.942598Z", "completed_at": "2023-07-06T19:56:55.745961Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:55.778203Z", "completed_at": "2023-07-06T19:56:55.778212Z"}], "thread_id": "Thread-6", "execution_time": 0.9013850688934326, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__campaign_history"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.992651Z", "completed_at": "2023-07-06T19:56:55.779696Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:55.783138Z", "completed_at": "2023-07-06T19:56:55.783144Z"}], "thread_id": "Thread-3", "execution_time": 0.854036808013916, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__event"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.948791Z", "completed_at": "2023-07-06T19:56:55.746621Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:55.778967Z", "completed_at": "2023-07-06T19:56:55.778973Z"}], "thread_id": "Thread-8", "execution_time": 0.9144279956817627, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__campaign_label_history"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:55.000764Z", "completed_at": "2023-07-06T19:56:55.772315Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:55.781069Z", "completed_at": "2023-07-06T19:56:55.781075Z"}], "thread_id": "Thread-2", "execution_time": 0.860774040222168, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__list"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.953585Z", "completed_at": "2023-07-06T19:56:55.753511Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:55.780510Z", "completed_at": "2023-07-06T19:56:55.780516Z"}], "thread_id": "Thread-4", "execution_time": 0.9143428802490234, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__campaign_list_history"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.977898Z", "completed_at": "2023-07-06T19:56:55.753246Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:55.779948Z", "completed_at": "2023-07-06T19:56:55.779956Z"}], "thread_id": "Thread-5", "execution_time": 0.9136850833892822, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__campaign_suppression_list_history"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.997015Z", "completed_at": "2023-07-06T19:56:55.780256Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:55.783452Z", "completed_at": "2023-07-06T19:56:55.783458Z"}], "thread_id": "Thread-7", "execution_time": 0.8629169464111328, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__event_extension"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:54.988831Z", "completed_at": "2023-07-06T19:56:55.752881Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:55.779319Z", "completed_at": "2023-07-06T19:56:55.779327Z"}], "thread_id": "Thread-1", "execution_time": 0.8640172481536865, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__channel"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:55.867859Z", "completed_at": "2023-07-06T19:56:55.885929Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:55.887461Z", "completed_at": "2023-07-06T19:56:55.887469Z"}], "thread_id": "Thread-5", "execution_time": 0.03420710563659668, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.int_iterable__latest_campaign"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:55.870098Z", "completed_at": "2023-07-06T19:56:55.886286Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:55.887677Z", "completed_at": "2023-07-06T19:56:55.887680Z"}], "thread_id": "Thread-7", "execution_time": 0.03410696983337402, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__campaign_history_campaign_id__updated_at.81e1a1b9b5"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:55.878811Z", "completed_at": "2023-07-06T19:56:55.886590Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:55.887892Z", "completed_at": "2023-07-06T19:56:55.887894Z"}], "thread_id": "Thread-1", "execution_time": 0.03421497344970703, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.not_null_stg_iterable__campaign_history_campaign_id.b7c36e4525"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:55.891834Z", "completed_at": "2023-07-06T19:56:55.903077Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:55.903514Z", "completed_at": "2023-07-06T19:56:55.903520Z"}], "thread_id": "Thread-5", "execution_time": 0.013615846633911133, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.not_null_stg_iterable__event_event_id.370cd4bc9d"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:55.898742Z", "completed_at": "2023-07-06T19:56:55.907496Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:55.908428Z", "completed_at": "2023-07-06T19:56:55.908433Z"}], "thread_id": "Thread-1", "execution_time": 0.018249034881591797, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.int_iterable__campaign_labels"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:55.894807Z", "completed_at": "2023-07-06T19:56:55.907780Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:55.908656Z", "completed_at": "2023-07-06T19:56:55.908659Z"}], "thread_id": "Thread-7", "execution_time": 0.018999814987182617, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.unique_stg_iterable__event_event_id.ddb8510fc1"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:55.904827Z", "completed_at": "2023-07-06T19:56:55.908859Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:55.910540Z", "completed_at": "2023-07-06T19:56:55.910544Z"}], "thread_id": "Thread-5", "execution_time": 0.0071527957916259766, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.not_null_stg_iterable__campaign_label_history_campaign_id.1918cef89a"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:55.912331Z", "completed_at": "2023-07-06T19:56:55.922130Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:55.922599Z", "completed_at": "2023-07-06T19:56:55.922606Z"}], "thread_id": "Thread-1", "execution_time": 0.012252092361450195, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.not_null_stg_iterable__campaign_list_history_campaign_id.208f9bf9ed"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:55.915037Z", "completed_at": "2023-07-06T19:56:55.923282Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:55.924736Z", "completed_at": "2023-07-06T19:56:55.924742Z"}], "thread_id": "Thread-7", "execution_time": 0.014408111572265625, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.not_null_stg_iterable__list_list_id.47029d839a"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:55.919319Z", "completed_at": "2023-07-06T19:56:55.924020Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:55.925744Z", "completed_at": "2023-07-06T19:56:55.925747Z"}], "thread_id": "Thread-5", "execution_time": 0.011386871337890625, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.unique_stg_iterable__list_list_id.1e73c3def7"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:55.925973Z", "completed_at": "2023-07-06T19:56:55.934543Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:55.938294Z", "completed_at": "2023-07-06T19:56:55.938306Z"}], "thread_id": "Thread-1", "execution_time": 0.014887332916259766, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.int_iterable__campaign_lists"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:55.931553Z", "completed_at": "2023-07-06T19:56:55.938648Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:55.940267Z", "completed_at": "2023-07-06T19:56:55.940270Z"}], "thread_id": "Thread-7", "execution_time": 0.010820150375366211, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.not_null_stg_iterable__campaign_suppression_list_history_campaign_id.3921289710"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:55.935539Z", "completed_at": "2023-07-06T19:56:55.940039Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:55.941622Z", "completed_at": "2023-07-06T19:56:55.941626Z"}], "thread_id": "Thread-5", "execution_time": 0.013765096664428711, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.not_null_stg_iterable__event_extension_event_id.144dedcd30"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:55.942066Z", "completed_at": "2023-07-06T19:56:55.950006Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:55.953208Z", "completed_at": "2023-07-06T19:56:55.953215Z"}], "thread_id": "Thread-1", "execution_time": 0.013178825378417969, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.unique_stg_iterable__event_extension_event_id.4553cb5979"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:55.946344Z", "completed_at": "2023-07-06T19:56:55.954231Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:55.955588Z", "completed_at": "2023-07-06T19:56:55.955593Z"}], "thread_id": "Thread-7", "execution_time": 0.012912988662719727, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.not_null_stg_iterable__channel_channel_id.182ceb9636"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:55.950260Z", "completed_at": "2023-07-06T19:56:55.954441Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:55.955804Z", "completed_at": "2023-07-06T19:56:55.955808Z"}], "thread_id": "Thread-5", "execution_time": 0.0126190185546875, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.unique_stg_iterable__channel_channel_id.fc1eec7fbc"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:55.956005Z", "completed_at": "2023-07-06T19:56:55.959215Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:55.959626Z", "completed_at": "2023-07-06T19:56:55.959630Z"}], "thread_id": "Thread-1", "execution_time": 0.0053288936614990234, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.int_iterable__recurring_campaigns"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:55.842414Z", "completed_at": "2023-07-06T19:56:56.447456Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:56.447900Z", "completed_at": "2023-07-06T19:56:56.447907Z"}], "thread_id": "Thread-3", "execution_time": 0.6590490341186523, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__user_history"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:55.834965Z", "completed_at": "2023-07-06T19:56:56.462238Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:56.462753Z", "completed_at": "2023-07-06T19:56:56.462759Z"}], "thread_id": "Thread-6", "execution_time": 0.6888659000396729, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__message_type"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:56.503677Z", "completed_at": "2023-07-06T19:56:56.522459Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:56.524875Z", "completed_at": "2023-07-06T19:56:56.524880Z"}], "thread_id": "Thread-7", "execution_time": 0.024425983428955078, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.int_iterable__latest_user"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:56.506325Z", "completed_at": "2023-07-06T19:56:56.522795Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:56.525285Z", "completed_at": "2023-07-06T19:56:56.525288Z"}], "thread_id": "Thread-5", "execution_time": 0.024682044982910156, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.int_iterable__list_user_history"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:56.508753Z", "completed_at": "2023-07-06T19:56:56.524032Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:56.527267Z", "completed_at": "2023-07-06T19:56:56.527271Z"}], "thread_id": "Thread-1", "execution_time": 0.025829076766967773, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__user_history_email__updated_at.cb12f59c15"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:56.513567Z", "completed_at": "2023-07-06T19:56:56.524575Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:56.527700Z", "completed_at": "2023-07-06T19:56:56.527703Z"}], "thread_id": "Thread-3", "execution_time": 0.026569843292236328, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.not_null_stg_iterable__user_history_email.14ff93a17c"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:56.530565Z", "completed_at": "2023-07-06T19:56:56.537871Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:56.553775Z", "completed_at": "2023-07-06T19:56:56.553789Z"}], "thread_id": "Thread-6", "execution_time": 0.027825117111206055, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.int_iterable__message_type_channel"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:55.860081Z", "completed_at": "2023-07-06T19:56:56.492941Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:56.494477Z", "completed_at": "2023-07-06T19:56:56.494483Z"}], "thread_id": "Thread-2", "execution_time": 0.7062630653381348, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__user_unsub_message_type_history"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:55.864497Z", "completed_at": "2023-07-06T19:56:56.493248Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:56.494716Z", "completed_at": "2023-07-06T19:56:56.494719Z"}], "thread_id": "Thread-4", "execution_time": 0.7063202857971191, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__user_unsubscribed_channel_history"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:56.535029Z", "completed_at": "2023-07-06T19:56:56.558999Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:56.560651Z", "completed_at": "2023-07-06T19:56:56.560656Z"}], "thread_id": "Thread-7", "execution_time": 0.03176283836364746, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.not_null_stg_iterable__message_type_message_type_id.75eaa6fa62"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:56.538105Z", "completed_at": "2023-07-06T19:56:56.558739Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:56.562675Z", "completed_at": "2023-07-06T19:56:56.562680Z"}], "thread_id": "Thread-5", "execution_time": 0.03081488609313965, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.unique_stg_iterable__message_type_message_type_id.0f75f83a34"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:56.541190Z", "completed_at": "2023-07-06T19:56:56.561548Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:56.564685Z", "completed_at": "2023-07-06T19:56:56.564689Z"}], "thread_id": "Thread-1", "execution_time": 0.03380584716796875, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.int_iterable__list_user_unnest"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:56.565271Z", "completed_at": "2023-07-06T19:56:56.576484Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:56.578176Z", "completed_at": "2023-07-06T19:56:56.578184Z"}], "thread_id": "Thread-3", "execution_time": 0.018942832946777344, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.not_null_stg_iterable__user_unsub_message_type_history_message_type_id.948c8b7127"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:56.568721Z", "completed_at": "2023-07-06T19:56:56.577854Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:56.582506Z", "completed_at": "2023-07-06T19:56:56.582511Z"}], "thread_id": "Thread-2", "execution_time": 0.020072221755981445, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.not_null_stg_iterable__user_unsubscribed_channel_history_channel_id.b4667878b9"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:56.571484Z", "completed_at": "2023-07-06T19:56:56.578507Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:56.583029Z", "completed_at": "2023-07-06T19:56:56.583035Z"}], "thread_id": "Thread-4", "execution_time": 0.020348787307739258, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.iterable__user_unsubscriptions"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:56.578807Z", "completed_at": "2023-07-06T19:56:56.584576Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:56.585907Z", "completed_at": "2023-07-06T19:56:56.585914Z"}], "thread_id": "Thread-6", "execution_time": 0.009846925735473633, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.iterable__list_user_history"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:55.855828Z", "completed_at": "2023-07-06T19:56:56.524269Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:56.527483Z", "completed_at": "2023-07-06T19:56:56.527487Z"}], "thread_id": "Thread-8", "execution_time": 0.7465882301330566, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable_source.stg_iterable__template_history"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:56.587055Z", "completed_at": "2023-07-06T19:56:56.598314Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:56.599793Z", "completed_at": "2023-07-06T19:56:56.599799Z"}], "thread_id": "Thread-5", "execution_time": 0.015857219696044922, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable.dbt_utils_unique_combination_of_columns_iterable__user_unsubscriptions_email__message_type_id__is_unsubscribed_channel_wide.08cf764cb7"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:56.593047Z", "completed_at": "2023-07-06T19:56:56.599499Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:56.602151Z", "completed_at": "2023-07-06T19:56:56.602158Z"}], "thread_id": "Thread-7", "execution_time": 0.011140823364257812, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable.dbt_utils_unique_combination_of_columns_iterable__list_user_history_user_email__list_id__user_updated_at.3d3daf3864"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:56.604391Z", "completed_at": "2023-07-06T19:56:56.614178Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:56.615786Z", "completed_at": "2023-07-06T19:56:56.615793Z"}], "thread_id": "Thread-2", "execution_time": 0.015191078186035156, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.dbt_utils_unique_combination_of_columns_stg_iterable__template_history_template_id__updated_at.e0b90faa8d"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:56.608238Z", "completed_at": "2023-07-06T19:56:56.614507Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:56.616050Z", "completed_at": "2023-07-06T19:56:56.616058Z"}], "thread_id": "Thread-4", "execution_time": 0.01494598388671875, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable_source.not_null_stg_iterable__template_history_template_id.14b24a1dfe"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:56.611212Z", "completed_at": "2023-07-06T19:56:56.614771Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:56.616450Z", "completed_at": "2023-07-06T19:56:56.616453Z"}], "thread_id": "Thread-1", "execution_time": 0.015024900436401367, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.int_iterable__latest_template"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:56.619556Z", "completed_at": "2023-07-06T19:56:57.223771Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:57.224207Z", "completed_at": "2023-07-06T19:56:57.224214Z"}], "thread_id": "Thread-3", "execution_time": 0.6698110103607178, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.iterable__events"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:57.293430Z", "completed_at": "2023-07-06T19:56:57.329244Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:57.330526Z", "completed_at": "2023-07-06T19:56:57.330534Z"}], "thread_id": "Thread-6", "execution_time": 0.039759159088134766, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.iterable__user_campaign"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:57.326722Z", "completed_at": "2023-07-06T19:56:57.329578Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:57.330994Z", "completed_at": "2023-07-06T19:56:57.330998Z"}], "thread_id": "Thread-7", "execution_time": 0.03924131393432617, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable.unique_iterable__events_event_id.93e30d3c2c"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:57.324322Z", "completed_at": "2023-07-06T19:56:57.330027Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:57.331753Z", "completed_at": "2023-07-06T19:56:57.331757Z"}], "thread_id": "Thread-5", "execution_time": 0.0404200553894043, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable.not_null_iterable__events_event_id.ed1d28a650"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:57.345353Z", "completed_at": "2023-07-06T19:56:57.352209Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:57.352761Z", "completed_at": "2023-07-06T19:56:57.352767Z"}], "thread_id": "Thread-1", "execution_time": 0.018641948699951172, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable.dbt_utils_unique_combination_of_columns_iterable__user_campaign_user_email__campaign_id__experiment_id.e8e117b7aa"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:57.348601Z", "completed_at": "2023-07-06T19:56:57.353544Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:57.353945Z", "completed_at": "2023-07-06T19:56:57.353949Z"}], "thread_id": "Thread-8", "execution_time": 0.019480228424072266, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable.not_null_iterable__user_campaign_user_email.e040b968fa"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:57.340869Z", "completed_at": "2023-07-06T19:56:57.961989Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:57.962564Z", "completed_at": "2023-07-06T19:56:57.962571Z"}], "thread_id": "Thread-7", "execution_time": 0.6924142837524414, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.int_iterable__user_event_metrics"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:57.336209Z", "completed_at": "2023-07-06T19:56:57.970551Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:57.970981Z", "completed_at": "2023-07-06T19:56:57.970986Z"}], "thread_id": "Thread-4", "execution_time": 0.7017979621887207, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.int_iterable__campaign_event_metrics"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:58.036855Z", "completed_at": "2023-07-06T19:56:58.680760Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:58.682013Z", "completed_at": "2023-07-06T19:56:58.682017Z"}], "thread_id": "Thread-5", "execution_time": 0.7116942405700684, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.iterable__campaigns"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:58.753846Z", "completed_at": "2023-07-06T19:56:58.757145Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:58.757713Z", "completed_at": "2023-07-06T19:56:58.757718Z"}], "thread_id": "Thread-8", "execution_time": 0.008988380432128906, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable.not_null_iterable__campaigns_campaign_id.03c9448919"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:58.029318Z", "completed_at": "2023-07-06T19:56:58.680392Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:58.681717Z", "completed_at": "2023-07-06T19:56:58.681728Z"}], "thread_id": "Thread-2", "execution_time": 0.7303967475891113, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.iterable.iterable__users"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:58.750199Z", "completed_at": "2023-07-06T19:56:58.757971Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:58.759904Z", "completed_at": "2023-07-06T19:56:58.759910Z"}], "thread_id": "Thread-1", "execution_time": 0.011288642883300781, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable.dbt_utils_unique_combination_of_columns_iterable__campaigns_campaign_id__experiment_id.be21d4243f"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:58.762397Z", "completed_at": "2023-07-06T19:56:58.767915Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:58.768348Z", "completed_at": "2023-07-06T19:56:58.768353Z"}], "thread_id": "Thread-6", "execution_time": 0.007615804672241211, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable.not_null_iterable__users_email.ffe9c8a4c4"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2023-07-06T19:56:58.765064Z", "completed_at": "2023-07-06T19:56:58.768561Z"}, {"name": "execute", "started_at": "2023-07-06T19:56:58.769417Z", "completed_at": "2023-07-06T19:56:58.769421Z"}], "thread_id": "Thread-4", "execution_time": 0.008102893829345703, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.iterable.unique_iterable__users_email.5917fa5069"}], "elapsed_time": 5.8327391147613525, "args": {"partial_parse": true, "use_colors_file": true, "select": [], "warn_error_options": {"include": [], "exclude": []}, "which": "generate", "project_dir": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests", "log_level_file": "debug", "introspect": true, "log_format_file": "debug", "use_colors": true, "write_json": true, "compile": true, "static_parser": true, "strict_mode": false, "macro_debugging": false, "favor_state": false, "populate_cache": true, "enable_legacy_logger": false, "exclude": [], "print": true, "vars": {}, "log_level": "info", "send_anonymous_usage_stats": true, "cache_selected_only": false, "indirect_selection": "eager", "log_format": "default", "quiet": false, "printer_width": 80, "profiles_dir": "/Users/catherinefritz/.dbt", "defer": false, "version_check": true, "log_path": "/Users/catherinefritz/Documents/dbt_packages/iterable/dbt_iterable/integration_tests/logs"}} \ No newline at end of file From 109243f8c7b83fc772ea20d7648192bfbd2e3ce5 Mon Sep 17 00:00:00 2001 From: fivetran-catfritz <111930712+fivetran-catfritz@users.noreply.github.com> Date: Thu, 6 Jul 2023 14:59:53 -0500 Subject: [PATCH 4/6] update model --- models/intermediate/int_iterable__list_user_unnest.sql | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/models/intermediate/int_iterable__list_user_unnest.sql b/models/intermediate/int_iterable__list_user_unnest.sql index d50a4bc..21ce3d2 100644 --- a/models/intermediate/int_iterable__list_user_unnest.sql +++ b/models/intermediate/int_iterable__list_user_unnest.sql @@ -83,15 +83,18 @@ with user_history as ( {% if target.type == 'snowflake' %} cross join - table(flatten(input => parse_json(case when email_list_ids = '[]' then '["is_null"]' {# to not remove empty array-rows #} + table(flatten(input => parse_json( + case when email_list_ids = '[]' then '["is_null"]' {# to not remove empty array-rows #} else email_list_ids end))) as email_list_id {% elif target.type == 'bigquery' %} cross join - unnest(JSON_EXTRACT_STRING_ARRAY(case when email_list_ids = '[]' then '["is_null"]' {# to not remove empty array-rows #} + unnest(JSON_EXTRACT_STRING_ARRAY( + case when email_list_ids = '[]' then '["is_null"]' {# to not remove empty array-rows #} else email_list_ids end)) as email_list_id {% elif target.type in ('spark','databricks') %} cross join - lateral explode_outer(from_json(case when email_list_ids = '[]' then '["is_null"]' {# to not remove empty array-rows #} + lateral explode_outer(from_json( + case when email_list_ids = '[]' then '["is_null"]' {# to not remove empty array-rows #} else email_list_ids end, 'array')) as email_list_id {% else %} {# target is postgres #} cross join From ff1e1e6928f056441c6706092aed6574b8383741 Mon Sep 17 00:00:00 2001 From: fivetran-catfritz <111930712+fivetran-catfritz@users.noreply.github.com> Date: Thu, 6 Jul 2023 18:55:31 -0500 Subject: [PATCH 5/6] update version --- CHANGELOG.md | 4 +++- README.md | 2 +- dbt_project.yml | 2 +- integration_tests/dbt_project.yml | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c585529..8310c9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,9 @@ -# dbt_iterable v0.8.1 +# dbt_iterable v0.9.0 [PR #33](https://github.com/fivetran/dbt_iterable/pull/33) includes the following update: ## 🐛 Bugfix - Updated intermediate model `int_iterable__list_user_unnest` to make sure empty array-rows are not removed for all warehouses. + - **Bigquery and Snowflake users**: this affects downstream models `iterable__users` and `iterable__list_user_history`. We recommend using `dbt run --full-refresh` the next time you run your project. + # dbt_iterable v0.8.0 [PR #30](https://github.com/fivetran/dbt_iterable/pull/30) includes the following updates: ## 🚨 Breaking Changes 🚨 (recommend `--full-refresh`) diff --git a/README.md b/README.md index 3355f7c..e9811a5 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ Include the following Iterable package version in your `packages.yml` file. ```yaml packages: - package: fivetran/iterable - version: [">=0.8.0", "<0.9.0"] + version: [">=0.9.0", "<0.10.0"] ``` ## Step 3: Define database and schema variables By default, this package runs using your destination and the `iterable` schema of your [target database](https://docs.getdbt.com/docs/running-a-dbt-project/using-the-command-line-interface/configure-your-profile). If this is not where your Iterable data is located (for example, if your Iterable schema is named `iterable_fivetran`), add the following configuration to your root `dbt_project.yml` file: diff --git a/dbt_project.yml b/dbt_project.yml index 0a2916d..7672c98 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -1,5 +1,5 @@ name: 'iterable' -version: '0.8.1' +version: '0.9.0' config-version: 2 require-dbt-version: [">=1.3.0", "<2.0.0"] models: diff --git a/integration_tests/dbt_project.yml b/integration_tests/dbt_project.yml index 406e180..9fda823 100644 --- a/integration_tests/dbt_project.yml +++ b/integration_tests/dbt_project.yml @@ -1,6 +1,6 @@ config-version: 2 name: 'iterable_integration_tests' -version: '0.8.1' +version: '0.9.0' profile: 'integration_tests' vars: iterable_source: From 53d450a27724227219b1568934b796115713df82 Mon Sep 17 00:00:00 2001 From: fivetran-catfritz <111930712+fivetran-catfritz@users.noreply.github.com> Date: Fri, 7 Jul 2023 14:17:25 -0500 Subject: [PATCH 6/6] update changelog --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8310c9a..1f2e1c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ # dbt_iterable v0.9.0 [PR #33](https://github.com/fivetran/dbt_iterable/pull/33) includes the following update: -## 🐛 Bugfix +## 🚨 Breaking Changes 🚨 (recommend `--full-refresh` for Bigquery and Snowflake users) - Updated intermediate model `int_iterable__list_user_unnest` to make sure empty array-rows are not removed for all warehouses. - - **Bigquery and Snowflake users**: this affects downstream models `iterable__users` and `iterable__list_user_history`. We recommend using `dbt run --full-refresh` the next time you run your project. +- **Bigquery and Snowflake users**: this affects downstream models `iterable__users` and `iterable__list_user_history`. We recommend using `dbt run --full-refresh` the next time you run your project. # dbt_iterable v0.8.0 [PR #30](https://github.com/fivetran/dbt_iterable/pull/30) includes the following updates: