diff --git a/.buildkite/hooks/pre-command b/.buildkite/hooks/pre-command new file mode 100644 index 0000000..04c85c0 --- /dev/null +++ b/.buildkite/hooks/pre-command @@ -0,0 +1,24 @@ +#!/bin/bash + +set -e + +# Export secrets for Docker containers. +# Restrict exposing secrets only to the steps that need them +export GCLOUD_SERVICE_KEY=$(gcloud secrets versions access latest --secret="GCLOUD_SERVICE_KEY" --project="dbt-package-testing-363917") +export CI_POSTGRES_DBT_HOST=$(gcloud secrets versions access latest --secret="CI_POSTGRES_DBT_HOST" --project="dbt-package-testing-363917") +export CI_POSTGRES_DBT_USER=$(gcloud secrets versions access latest --secret="CI_POSTGRES_DBT_USER" --project="dbt-package-testing-363917") +export CI_POSTGRES_DBT_PASS=$(gcloud secrets versions access latest --secret="CI_POSTGRES_DBT_PASS" --project="dbt-package-testing-363917") +export CI_POSTGRES_DBT_DBNAME=$(gcloud secrets versions access latest --secret="CI_POSTGRES_DBT_DBNAME" --project="dbt-package-testing-363917") +export CI_REDSHIFT_DBT_DBNAME=$(gcloud secrets versions access latest --secret="CI_REDSHIFT_DBT_DBNAME" --project="dbt-package-testing-363917") +export CI_REDSHIFT_DBT_HOST=$(gcloud secrets versions access latest --secret="CI_REDSHIFT_DBT_HOST" --project="dbt-package-testing-363917") +export CI_REDSHIFT_DBT_PASS=$(gcloud secrets versions access latest --secret="CI_REDSHIFT_DBT_PASS" --project="dbt-package-testing-363917") +export CI_REDSHIFT_DBT_USER=$(gcloud secrets versions access latest --secret="CI_REDSHIFT_DBT_USER" --project="dbt-package-testing-363917") +export CI_SNOWFLAKE_DBT_ACCOUNT=$(gcloud secrets versions access latest --secret="CI_SNOWFLAKE_DBT_ACCOUNT" --project="dbt-package-testing-363917") +export CI_SNOWFLAKE_DBT_DATABASE=$(gcloud secrets versions access latest --secret="CI_SNOWFLAKE_DBT_DATABASE" --project="dbt-package-testing-363917") +export CI_SNOWFLAKE_DBT_PASS=$(gcloud secrets versions access latest --secret="CI_SNOWFLAKE_DBT_PASS" --project="dbt-package-testing-363917") +export CI_SNOWFLAKE_DBT_ROLE=$(gcloud secrets versions access latest --secret="CI_SNOWFLAKE_DBT_ROLE" --project="dbt-package-testing-363917") +export CI_SNOWFLAKE_DBT_USER=$(gcloud secrets versions access latest --secret="CI_SNOWFLAKE_DBT_USER" --project="dbt-package-testing-363917") +export CI_SNOWFLAKE_DBT_WAREHOUSE=$(gcloud secrets versions access latest --secret="CI_SNOWFLAKE_DBT_WAREHOUSE" --project="dbt-package-testing-363917") +export CI_DATABRICKS_DBT_HOST=$(gcloud secrets versions access latest --secret="CI_DATABRICKS_DBT_HOST" --project="dbt-package-testing-363917") +export CI_DATABRICKS_DBT_HTTP_PATH=$(gcloud secrets versions access latest --secret="CI_DATABRICKS_DBT_HTTP_PATH" --project="dbt-package-testing-363917") +export CI_DATABRICKS_DBT_TOKEN=$(gcloud secrets versions access latest --secret="CI_DATABRICKS_DBT_TOKEN" --project="dbt-package-testing-363917") \ No newline at end of file diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml new file mode 100644 index 0000000..4c799f0 --- /dev/null +++ b/.buildkite/pipeline.yml @@ -0,0 +1,73 @@ +steps: + - label: ":postgres: Run Tests - Postgres" + key: "run-dbt-postgres" + plugins: + - docker#v3.13.0: + image: "python:3.8" + shell: [ "/bin/bash", "-e", "-c" ] + environment: + - "BASH_ENV=/tmp/.bashrc" + - "CI_POSTGRES_DBT_DBNAME" + - "CI_POSTGRES_DBT_HOST" + - "CI_POSTGRES_DBT_PASS" + - "CI_POSTGRES_DBT_USER" + commands: | + bash .buildkite/scripts/run_models.sh postgres + + - label: ":snowflake-db: Run Tests - Snowflake" + key: "run_dbt_snowflake" + plugins: + - docker#v3.13.0: + image: "python:3.8" + shell: [ "/bin/bash", "-e", "-c" ] + environment: + - "BASH_ENV=/tmp/.bashrc" + - "CI_SNOWFLAKE_DBT_ACCOUNT" + - "CI_SNOWFLAKE_DBT_DATABASE" + - "CI_SNOWFLAKE_DBT_PASS" + - "CI_SNOWFLAKE_DBT_ROLE" + - "CI_SNOWFLAKE_DBT_USER" + - "CI_SNOWFLAKE_DBT_WAREHOUSE" + commands: | + bash .buildkite/scripts/run_models.sh snowflake + + - label: ":gcloud: Run Tests - BigQuery" + key: "run_dbt_bigquery" + plugins: + - docker#v3.13.0: + image: "python:3.8" + shell: [ "/bin/bash", "-e", "-c" ] + environment: + - "BASH_ENV=/tmp/.bashrc" + - "GCLOUD_SERVICE_KEY" + commands: | + bash .buildkite/scripts/run_models.sh bigquery + + - label: ":amazon-redshift: Run Tests - Redshift" + key: "run_dbt_redshift" + plugins: + - docker#v3.13.0: + image: "python:3.8" + shell: [ "/bin/bash", "-e", "-c" ] + environment: + - "BASH_ENV=/tmp/.bashrc" + - "CI_REDSHIFT_DBT_DBNAME" + - "CI_REDSHIFT_DBT_HOST" + - "CI_REDSHIFT_DBT_PASS" + - "CI_REDSHIFT_DBT_USER" + commands: | + bash .buildkite/scripts/run_models.sh redshift + + - label: ":bricks: Run Tests - Databricks" + key: "run_dbt_databricks" + plugins: + - docker#v3.13.0: + image: "python:3.8" + shell: [ "/bin/bash", "-e", "-c" ] + environment: + - "BASH_ENV=/tmp/.bashrc" + - "CI_DATABRICKS_DBT_HOST" + - "CI_DATABRICKS_DBT_HTTP_PATH" + - "CI_DATABRICKS_DBT_TOKEN" + commands: | + bash .buildkite/scripts/run_models.sh databricks \ No newline at end of file diff --git a/.buildkite/scripts/run_models.sh b/.buildkite/scripts/run_models.sh new file mode 100644 index 0000000..bd56218 --- /dev/null +++ b/.buildkite/scripts/run_models.sh @@ -0,0 +1,25 @@ +#!/bin/bash + +set -euo pipefail + +apt-get update +apt-get install libsasl2-dev + +python3 -m venv venv +. venv/bin/activate +pip install --upgrade pip setuptools +pip install -r integration_tests/requirements.txt +mkdir -p ~/.dbt +cp integration_tests/ci/sample.profiles.yml ~/.dbt/profiles.yml + +db=$1 +echo `pwd` +cd integration_tests +dbt deps +dbt seed --target "$db" --full-refresh +dbt run --target "$db" --full-refresh +dbt test --target "$db" +## UPDATE FOR VARS HERE, IF NO VARS, PLEASE REMOVE +dbt run --vars '{marketo__enable_campaigns: true, marketo__enable_programs: true, marketo__activity_delete_lead_enabled: false}' --target "$db" --full-refresh +dbt test --target "$db" +### END VARS CHUNK, REMOVE IF NOT USING \ No newline at end of file diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 28f1118..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,87 +0,0 @@ -version: 2 - -jobs: - build: - docker: - - image: circleci/python:3.7.9-stretch - - steps: - - checkout - - - run: - run: setup_creds - command: | - echo $GCLOUD_SERVICE_KEY | base64 --decode --ignore-garbage > ${HOME}/gcloud-service-key.json - - run: - name: "Setup dbt" - command: | - sudo apt install libsasl2-dev - python3 -m venv venv - . venv/bin/activate - pip install --upgrade pip setuptools - pip install -r integration_tests/requirements.txt - mkdir -p ~/.dbt - cp integration_tests/ci/sample.profiles.yml ~/.dbt/profiles.yml - - run: - name: "Run Tests - Postgres" - command: | - . venv/bin/activate - echo `pwd` - cd integration_tests - dbt deps - dbt seed --target postgres --full-refresh - dbt run --target postgres --full-refresh - dbt test --target postgres - dbt run --vars '{marketo__enable_campaigns: true, marketo__enable_programs: true, marketo__activity_delete_lead_enabled: false}' --target postgres - dbt test --target postgres - - run: - name: "Run Tests - Spark" - command: | - . venv/bin/activate - echo `pwd` - cd integration_tests - dbt deps - dbt seed --target spark --full-refresh - dbt run --target spark --full-refresh - dbt test --target spark - dbt run --vars '{marketo__enable_campaigns: true, marketo__enable_programs: true, marketo__activity_delete_lead_enabled: false}' --target spark - dbt test --target spark - - run: - name: "Run Tests - Snowflake" - command: | - . venv/bin/activate - echo `pwd` - cd integration_tests - dbt deps - dbt seed --target snowflake --full-refresh - dbt run --target snowflake --full-refresh - dbt test --target snowflake - dbt run --vars '{marketo__enable_campaigns: true, marketo__enable_programs: true, marketo__activity_delete_lead_enabled: false}' --target snowflake - dbt test --target snowflake - - run: - name: "Run Tests - BigQuery" - environment: - GCLOUD_SERVICE_KEY_PATH: "/home/circleci/gcloud-service-key.json" - - command: | - . venv/bin/activate - echo `pwd` - cd integration_tests - dbt deps - dbt seed --target bigquery --full-refresh - dbt run --target bigquery --full-refresh - dbt test --target bigquery - dbt run --vars '{marketo__enable_campaigns: true, marketo__enable_programs: true, marketo__activity_delete_lead_enabled: false}' --target bigquery - dbt test --target bigquery - - run: - name: "Run Tests - Redshift" - command: | - . venv/bin/activate - echo `pwd` - cd integration_tests - dbt deps - dbt seed --target redshift --full-refresh - dbt run --target redshift --full-refresh - dbt test --target redshift - dbt run --vars '{marketo__enable_campaigns: true, marketo__enable_programs: true, marketo__activity_delete_lead_enabled: false}' --target redshift - dbt test --target redshift \ No newline at end of file diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 35f658d..50ee0df 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,4 +1,3 @@ -Pull Request **Are you a current Fivetran customer?** @@ -29,9 +28,9 @@ Pull Request **How did you test the PR changes?** - + -- [ ] CircleCi +- [ ] Buildkite - [ ] Local (please provide additional testing details below) **Select which warehouse(s) were used to test the PR** diff --git a/CHANGELOG.md b/CHANGELOG.md index eeab120..079e916 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,43 @@ +# dbt_marketo_source v0.9.0 + +## 🚨 Breaking Changes 🚨: +[PR #30](https://github.com/fivetran/dbt_marketo_source/pull/30) includes the following breaking changes: +- Dispatch update for dbt-utils to dbt-core cross-db macros migration. Specifically `{{ dbt_utils. }}` have been updated to `{{ dbt. }}` for the below macros: + - `any_value` + - `bool_or` + - `cast_bool_to_text` + - `concat` + - `date_trunc` + - `dateadd` + - `datediff` + - `escape_single_quotes` + - `except` + - `hash` + - `intersect` + - `last_day` + - `length` + - `listagg` + - `position` + - `replace` + - `right` + - `safe_cast` + - `split_part` + - `string_literal` + - `type_bigint` + - `type_float` + - `type_int` + - `type_numeric` + - `type_string` + - `type_timestamp` + - `array_append` + - `array_concat` + - `array_construct` +- For `current_timestamp` and `current_timestamp_in_utc` macros, the dispatch AND the macro names have been updated to the below, respectively: + - `dbt.current_timestamp_backcompat` + - `dbt.current_timestamp_in_utc_backcompat` +- `dbt_utils.surrogate_key` has also been updated to `dbt_utils.generate_surrogate_key`. Since the method for creating surrogate keys differ, we suggest all users do a `full-refresh` for the most accurate data. For more information, please refer to dbt-utils [release notes](https://github.com/dbt-labs/dbt-utils/releases) for this update. +- `packages.yml` has been updated to reflect new default `fivetran/fivetran_utils` version, previously `[">=0.3.0", "<0.4.0"]` now `[">=0.4.0", "<0.5.0"]`. + # dbt_marketo_source v0.8.0 PR [#28](https://github.com/fivetran/dbt_marketo_source/pull/28) incorporates the following updates: ## 🚨 Breaking Changes 🚨 diff --git a/README.md b/README.md index 7947d3f..3068d76 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ href="https://github.com/fivetran/dbt_marketo_source/blob/main/LICENSE"> - + @@ -44,7 +44,7 @@ Include the following Marketo package version in your `packages.yml` file. ```yml packages: - package: fivetran/marketo_source - version: [">=0.8.0", "<0.9.0"] + version: [">=0.9.0", "<0.10.0"] ``` ## Step 3: Define database and schema variables @@ -106,10 +106,10 @@ This dbt package is dependent on the following dbt packages. Please be aware tha ```yml packages: - package: fivetran/fivetran_utils - version: [">=0.3.0", "<0.4.0"] + version: [">=0.4.0", "<0.5.0"] - package: dbt-labs/dbt_utils - version: [">=0.8.0", "<0.9.0"] + version: [">=1.0.0", "<2.0.0"] - package: dbt-labs/spark_utils version: [">=0.3.0", "<0.4.0"] diff --git a/dbt_project.yml b/dbt_project.yml index 2c14798..7bccbbe 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -1,15 +1,13 @@ name: 'marketo_source' -version: '0.8.0' +version: '0.9.0' config-version: 2 -require-dbt-version: [">=1.0.0", "<2.0.0"] - +require-dbt-version: [">=1.3.0", "<2.0.0"] models: marketo_source: +materialized: table +schema: marketo_source tmp: +materialized: view - vars: marketo_source: lead: "{{ source('marketo','lead') }}" @@ -25,4 +23,4 @@ vars: activity_unsubscribe_email: "{{ source('marketo','activity_unsubscribe_email') }}" activity_send_email: "{{ source('marketo','activity_send_email') }}" activity_delete_lead: "{{ source('marketo','activity_delete_lead') }}" - activity_merge_leads: "{{ source('marketo','activity_merge_leads') }}" \ No newline at end of file + activity_merge_leads: "{{ source('marketo','activity_merge_leads') }}" diff --git a/docs/catalog.json b/docs/catalog.json index 93250b8..c6674e4 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.2.0", "generated_at": "2022-10-10T19:54:04.720908Z", "invocation_id": "ac505354-f0c8-488c-a952-87195fbb1845", "env": {}}, "nodes": {"seed.marketo_source_integration_tests.marketo_activity_merge_leads_data": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests", "name": "marketo_activity_merge_leads_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "STRING", "index": 2, "name": "_fivetran_synced", "comment": null}, "activity_date": {"type": "STRING", "index": 3, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "INT64", "index": 4, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 5, "name": "campaign_id", "comment": null}, "lead_id": {"type": "INT64", "index": 6, "name": "lead_id", "comment": null}, "master_updated": {"type": "BOOL", "index": 7, "name": "master_updated", "comment": null}, "merge_ids": {"type": "STRING", "index": 8, "name": "merge_ids", "comment": null}, "merge_source": {"type": "STRING", "index": 9, "name": "merge_source", "comment": null}, "merged_in_sales": {"type": "BOOL", "index": 10, "name": "merged_in_sales", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 11, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 12, "name": "primary_attribute_value_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 13397.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.marketo_source_integration_tests.marketo_activity_merge_leads_data"}, "seed.marketo_source_integration_tests.marketo_activity_open_email_data": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests", "name": "marketo_activity_open_email_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"activity_date": {"type": "STRING", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "INT64", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "INT64", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "INT64", "index": 5, "name": "choice_number", "comment": null}, "device": {"type": "STRING", "index": 6, "name": "device", "comment": null}, "email_template_id": {"type": "INT64", "index": 7, "name": "email_template_id", "comment": null}, "id": {"type": "INT64", "index": 8, "name": "id", "comment": null}, "is_mobile_device": {"type": "BOOL", "index": 9, "name": "is_mobile_device", "comment": null}, "lead_id": {"type": "INT64", "index": 10, "name": "lead_id", "comment": null}, "platform": {"type": "STRING", "index": 11, "name": "platform", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 12, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 13, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "INT64", "index": 14, "name": "step_id", "comment": null}, "user_agent": {"type": "STRING", "index": 15, "name": "user_agent", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 25196.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.marketo_source_integration_tests.marketo_activity_open_email_data"}, "seed.marketo_source_integration_tests.marketo_campaign_data": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests", "name": "marketo_campaign_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"active": {"type": "BOOL", "index": 1, "name": "active", "comment": null}, "created_at": {"type": "STRING", "index": 2, "name": "created_at", "comment": null}, "description": {"type": "STRING", "index": 3, "name": "description", "comment": null}, "id": {"type": "INT64", "index": 4, "name": "id", "comment": null}, "name": {"type": "STRING", "index": 5, "name": "name", "comment": null}, "program_id": {"type": "INT64", "index": 6, "name": "program_id", "comment": null}, "program_name": {"type": "STRING", "index": 7, "name": "program_name", "comment": null}, "type": {"type": "STRING", "index": 8, "name": "type", "comment": null}, "updated_at": {"type": "STRING", "index": 9, "name": "updated_at", "comment": null}, "workspace_name": {"type": "STRING", "index": 10, "name": "workspace_name", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 16036.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.marketo_source_integration_tests.marketo_campaign_data"}, "seed.marketo_source_integration_tests.marketo_activity_click_email_data": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests", "name": "marketo_activity_click_email_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"activity_date": {"type": "STRING", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "INT64", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "INT64", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "INT64", "index": 5, "name": "choice_number", "comment": null}, "device": {"type": "STRING", "index": 6, "name": "device", "comment": null}, "email_template_id": {"type": "INT64", "index": 7, "name": "email_template_id", "comment": null}, "id": {"type": "INT64", "index": 8, "name": "id", "comment": null}, "is_mobile_device": {"type": "BOOL", "index": 9, "name": "is_mobile_device", "comment": null}, "lead_id": {"type": "INT64", "index": 10, "name": "lead_id", "comment": null}, "link": {"type": "STRING", "index": 11, "name": "link", "comment": null}, "platform": {"type": "STRING", "index": 12, "name": "platform", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 13, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 14, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "INT64", "index": 15, "name": "step_id", "comment": null}, "user_agent": {"type": "STRING", "index": 16, "name": "user_agent", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 31660.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.marketo_source_integration_tests.marketo_activity_click_email_data"}, "seed.marketo_source_integration_tests.marketo_lead_describe_data": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests", "name": "marketo_lead_describe_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"data_type": {"type": "STRING", "index": 1, "name": "data_type", "comment": null}, "display_name": {"type": "STRING", "index": 2, "name": "display_name", "comment": null}, "id": {"type": "INT64", "index": 3, "name": "id", "comment": null}, "length": {"type": "INT64", "index": 4, "name": "length", "comment": null}, "restname": {"type": "STRING", "index": 5, "name": "restname", "comment": null}, "restread_only": {"type": "BOOL", "index": 6, "name": "restread_only", "comment": null}, "soapname": {"type": "STRING", "index": 7, "name": "soapname", "comment": null}, "soapread_only": {"type": "BOOL", "index": 8, "name": "soapread_only", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 6651.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.marketo_source_integration_tests.marketo_lead_describe_data"}, "seed.marketo_source_integration_tests.marketo_activity_change_data_value_data": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests", "name": "marketo_activity_change_data_value_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"activity_date": {"type": "STRING", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "INT64", "index": 2, "name": "activity_type_id", "comment": null}, "api_method_name": {"type": "INT64", "index": 3, "name": "api_method_name", "comment": null}, "campaign_id": {"type": "INT64", "index": 4, "name": "campaign_id", "comment": null}, "id": {"type": "INT64", "index": 5, "name": "id", "comment": null}, "lead_id": {"type": "INT64", "index": 6, "name": "lead_id", "comment": null}, "modifying_user": {"type": "INT64", "index": 7, "name": "modifying_user", "comment": null}, "new_value": {"type": "STRING", "index": 8, "name": "new_value", "comment": null}, "old_value": {"type": "STRING", "index": 9, "name": "old_value", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 10, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 11, "name": "primary_attribute_value_id", "comment": null}, "reason": {"type": "STRING", "index": 12, "name": "reason", "comment": null}, "request_id": {"type": "INT64", "index": 13, "name": "request_id", "comment": null}, "source": {"type": "STRING", "index": 14, "name": "source", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 16556.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.marketo_source_integration_tests.marketo_activity_change_data_value_data"}, "seed.marketo_source_integration_tests.marketo_activity_unsubscribe_email_data": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests", "name": "marketo_activity_unsubscribe_email_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"activity_date": {"type": "STRING", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "INT64", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "INT64", "index": 4, "name": "campaign_run_id", "comment": null}, "client_ip_address": {"type": "STRING", "index": 5, "name": "client_ip_address", "comment": null}, "email_template_id": {"type": "INT64", "index": 6, "name": "email_template_id", "comment": null}, "form_fields": {"type": "STRING", "index": 7, "name": "form_fields", "comment": null}, "id": {"type": "INT64", "index": 8, "name": "id", "comment": null}, "lead_id": {"type": "INT64", "index": 9, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 10, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 11, "name": "primary_attribute_value_id", "comment": null}, "query_parameters": {"type": "STRING", "index": 12, "name": "query_parameters", "comment": null}, "referrer_url": {"type": "STRING", "index": 13, "name": "referrer_url", "comment": null}, "user_agent": {"type": "STRING", "index": 14, "name": "user_agent", "comment": null}, "webform_id": {"type": "INT64", "index": 15, "name": "webform_id", "comment": null}, "webpage_id": {"type": "INT64", "index": 16, "name": "webpage_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 67477.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.marketo_source_integration_tests.marketo_activity_unsubscribe_email_data"}, "seed.marketo_source_integration_tests.marketo_activity_email_delivered_data": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests", "name": "marketo_activity_email_delivered_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"activity_date": {"type": "STRING", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "INT64", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "INT64", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "INT64", "index": 5, "name": "choice_number", "comment": null}, "email_template_id": {"type": "INT64", "index": 6, "name": "email_template_id", "comment": null}, "id": {"type": "INT64", "index": 7, "name": "id", "comment": null}, "lead_id": {"type": "INT64", "index": 8, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 9, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 10, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "INT64", "index": 11, "name": "step_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 13100.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.marketo_source_integration_tests.marketo_activity_email_delivered_data"}, "seed.marketo_source_integration_tests.marketo_email_template_history_data": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests", "name": "marketo_email_template_history_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"created_at": {"type": "STRING", "index": 1, "name": "created_at", "comment": null}, "description": {"type": "STRING", "index": 2, "name": "description", "comment": null}, "folder_folder_name": {"type": "STRING", "index": 3, "name": "folder_folder_name", "comment": null}, "folder_id": {"type": "INT64", "index": 4, "name": "folder_id", "comment": null}, "folder_type": {"type": "STRING", "index": 5, "name": "folder_type", "comment": null}, "folder_value": {"type": "INT64", "index": 6, "name": "folder_value", "comment": null}, "from_email": {"type": "STRING", "index": 7, "name": "from_email", "comment": null}, "from_name": {"type": "STRING", "index": 8, "name": "from_name", "comment": null}, "id": {"type": "INT64", "index": 9, "name": "id", "comment": null}, "name": {"type": "STRING", "index": 10, "name": "name", "comment": null}, "operational": {"type": "BOOL", "index": 11, "name": "operational", "comment": null}, "program_id": {"type": "INT64", "index": 12, "name": "program_id", "comment": null}, "publish_to_msi": {"type": "BOOL", "index": 13, "name": "publish_to_msi", "comment": null}, "reply_email": {"type": "STRING", "index": 14, "name": "reply_email", "comment": null}, "status": {"type": "STRING", "index": 15, "name": "status", "comment": null}, "subject": {"type": "STRING", "index": 16, "name": "subject", "comment": null}, "template": {"type": "INT64", "index": 17, "name": "template", "comment": null}, "text_only": {"type": "BOOL", "index": 18, "name": "text_only", "comment": null}, "updated_at": {"type": "STRING", "index": 19, "name": "updated_at", "comment": null}, "url": {"type": "STRING", "index": 20, "name": "url", "comment": null}, "version": {"type": "INT64", "index": 21, "name": "version", "comment": null}, "web_view": {"type": "BOOL", "index": 22, "name": "web_view", "comment": null}, "workspace": {"type": "STRING", "index": 23, "name": "workspace", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 34691.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.marketo_source_integration_tests.marketo_email_template_history_data"}, "seed.marketo_source_integration_tests.marketo_activity_email_bounced_data": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests", "name": "marketo_activity_email_bounced_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"activity_date": {"type": "STRING", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "INT64", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "INT64", "index": 4, "name": "campaign_run_id", "comment": null}, "category": {"type": "INT64", "index": 5, "name": "category", "comment": null}, "choice_number": {"type": "INT64", "index": 6, "name": "choice_number", "comment": null}, "details": {"type": "STRING", "index": 7, "name": "details", "comment": null}, "email": {"type": "STRING", "index": 8, "name": "email", "comment": null}, "email_template_id": {"type": "INT64", "index": 9, "name": "email_template_id", "comment": null}, "id": {"type": "INT64", "index": 10, "name": "id", "comment": null}, "lead_id": {"type": "INT64", "index": 11, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 12, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 13, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "INT64", "index": 14, "name": "step_id", "comment": null}, "subcategory": {"type": "INT64", "index": 15, "name": "subcategory", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 29624.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.marketo_source_integration_tests.marketo_activity_email_bounced_data"}, "seed.marketo_source_integration_tests.marketo_lead_data": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests", "name": "marketo_lead_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "created_at": {"type": "STRING", "index": 2, "name": "created_at", "comment": null}, "updated_at": {"type": "STRING", "index": 3, "name": "updated_at", "comment": null}, "website": {"type": "STRING", "index": 4, "name": "website", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 8200.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.marketo_source_integration_tests.marketo_lead_data"}, "seed.marketo_source_integration_tests.marketo_activity_delete_lead_data": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests", "name": "marketo_activity_delete_lead_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "STRING", "index": 2, "name": "_fivetran_synced", "comment": null}, "activity_date": {"type": "STRING", "index": 3, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "INT64", "index": 4, "name": "activity_type_id", "comment": null}, "campaign": {"type": "STRING", "index": 5, "name": "campaign", "comment": null}, "campaign_id": {"type": "INT64", "index": 6, "name": "campaign_id", "comment": null}, "lead_id": {"type": "INT64", "index": 7, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 8, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 9, "name": "primary_attribute_value_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 4650.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 31.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.marketo_source_integration_tests.marketo_activity_delete_lead_data"}, "seed.marketo_source_integration_tests.marketo_activity_send_email_data": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests", "name": "marketo_activity_send_email_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"activity_date": {"type": "STRING", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "INT64", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "INT64", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "INT64", "index": 5, "name": "choice_number", "comment": null}, "email_template_id": {"type": "INT64", "index": 6, "name": "email_template_id", "comment": null}, "id": {"type": "INT64", "index": 7, "name": "id", "comment": null}, "lead_id": {"type": "INT64", "index": 8, "name": "lead_id", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 9, "name": "primary_attribute_value_id", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 10, "name": "primary_attribute_value", "comment": null}, "step_id": {"type": "INT64", "index": 11, "name": "step_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 13100.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.marketo_source_integration_tests.marketo_activity_send_email_data"}, "seed.marketo_source_integration_tests.marketo_program_data": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests", "name": "marketo_program_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "channel": {"type": "STRING", "index": 2, "name": "channel", "comment": null}, "created_at": {"type": "STRING", "index": 3, "name": "created_at", "comment": null}, "description": {"type": "INT64", "index": 4, "name": "description", "comment": null}, "end_date": {"type": "INT64", "index": 5, "name": "end_date", "comment": null}, "name": {"type": "STRING", "index": 6, "name": "name", "comment": null}, "sfdc_id": {"type": "STRING", "index": 7, "name": "sfdc_id", "comment": null}, "sfdc_name": {"type": "STRING", "index": 8, "name": "sfdc_name", "comment": null}, "start_date": {"type": "INT64", "index": 9, "name": "start_date", "comment": null}, "status": {"type": "STRING", "index": 10, "name": "status", "comment": null}, "type": {"type": "STRING", "index": 11, "name": "type", "comment": null}, "updated_at": {"type": "STRING", "index": 12, "name": "updated_at", "comment": null}, "url": {"type": "STRING", "index": 13, "name": "url", "comment": null}, "workspace": {"type": "STRING", "index": 14, "name": "workspace", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 16836.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.marketo_source_integration_tests.marketo_program_data"}, "model.marketo_source.stg_marketo__lead_describe": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests_marketo_source", "name": "stg_marketo__lead_describe", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"data_type": {"type": "STRING", "index": 1, "name": "data_type", "comment": null}, "display_name": {"type": "STRING", "index": 2, "name": "display_name", "comment": null}, "lead_describe_id": {"type": "INT64", "index": 3, "name": "lead_describe_id", "comment": null}, "field_max_length": {"type": "INT64", "index": 4, "name": "field_max_length", "comment": null}, "rest_name": {"type": "STRING", "index": 5, "name": "rest_name", "comment": null}, "is_rest_readonly": {"type": "BOOL", "index": 6, "name": "is_rest_readonly", "comment": null}, "soap_name": {"type": "STRING", "index": 7, "name": "soap_name", "comment": null}, "is_soap_readonly": {"type": "BOOL", "index": 8, "name": "is_soap_readonly", "comment": null}, "rest_name_xf": {"type": "STRING", "index": 9, "name": "rest_name_xf", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 8263.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.marketo_source.stg_marketo__lead_describe"}, "model.marketo_source.stg_marketo__activity_change_data_value": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests_marketo_source", "name": "stg_marketo__activity_change_data_value", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"activity_timestamp": {"type": "TIMESTAMP", "index": 1, "name": "activity_timestamp", "comment": null}, "activity_type_id": {"type": "INT64", "index": 2, "name": "activity_type_id", "comment": null}, "api_method_name": {"type": "INT64", "index": 3, "name": "api_method_name", "comment": null}, "campaign_id": {"type": "INT64", "index": 4, "name": "campaign_id", "comment": null}, "activity_id": {"type": "INT64", "index": 5, "name": "activity_id", "comment": null}, "lead_id": {"type": "INT64", "index": 6, "name": "lead_id", "comment": null}, "modifying_user_id": {"type": "INT64", "index": 7, "name": "modifying_user_id", "comment": null}, "new_value": {"type": "STRING", "index": 8, "name": "new_value", "comment": null}, "old_value": {"type": "STRING", "index": 9, "name": "old_value", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 10, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 11, "name": "primary_attribute_value_id", "comment": null}, "change_reason": {"type": "STRING", "index": 12, "name": "change_reason", "comment": null}, "request_id": {"type": "INT64", "index": 13, "name": "request_id", "comment": null}, "change_source": {"type": "STRING", "index": 14, "name": "change_source", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 14856.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.marketo_source.stg_marketo__activity_change_data_value"}, "model.marketo_source.stg_marketo__activity_email_delivered_tmp": {"metadata": {"type": "view", "schema": "marketo_source_integration_tests_marketo_source", "name": "stg_marketo__activity_email_delivered_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"activity_date": {"type": "STRING", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "INT64", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "INT64", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "INT64", "index": 5, "name": "choice_number", "comment": null}, "email_template_id": {"type": "INT64", "index": 6, "name": "email_template_id", "comment": null}, "id": {"type": "INT64", "index": 7, "name": "id", "comment": null}, "lead_id": {"type": "INT64", "index": 8, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 9, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 10, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "INT64", "index": 11, "name": "step_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.marketo_source.stg_marketo__activity_email_delivered_tmp"}, "model.marketo_source.stg_marketo__activity_click_email": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests_marketo_source", "name": "stg_marketo__activity_click_email", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"activity_timestamp": {"type": "TIMESTAMP", "index": 1, "name": "activity_timestamp", "comment": null}, "activity_type_id": {"type": "INT64", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "INT64", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "INT64", "index": 5, "name": "choice_number", "comment": null}, "click_device": {"type": "STRING", "index": 6, "name": "click_device", "comment": null}, "email_template_id": {"type": "INT64", "index": 7, "name": "email_template_id", "comment": null}, "activity_id": {"type": "INT64", "index": 8, "name": "activity_id", "comment": null}, "is_mobile_device": {"type": "BOOL", "index": 9, "name": "is_mobile_device", "comment": null}, "lead_id": {"type": "INT64", "index": 10, "name": "lead_id", "comment": null}, "click_link_url": {"type": "STRING", "index": 11, "name": "click_link_url", "comment": null}, "user_platform": {"type": "STRING", "index": 12, "name": "user_platform", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 13, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 14, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "INT64", "index": 15, "name": "step_id", "comment": null}, "user_agent": {"type": "STRING", "index": 16, "name": "user_agent", "comment": null}, "email_send_id": {"type": "STRING", "index": 17, "name": "email_send_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 33360.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.marketo_source.stg_marketo__activity_click_email"}, "model.marketo_source.stg_marketo__lead_tmp": {"metadata": {"type": "view", "schema": "marketo_source_integration_tests_marketo_source", "name": "stg_marketo__lead_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "created_at": {"type": "STRING", "index": 2, "name": "created_at", "comment": null}, "updated_at": {"type": "STRING", "index": 3, "name": "updated_at", "comment": null}, "website": {"type": "STRING", "index": 4, "name": "website", "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.marketo_source.stg_marketo__lead_tmp"}, "model.marketo_source.stg_marketo__lead_describe_tmp": {"metadata": {"type": "view", "schema": "marketo_source_integration_tests_marketo_source", "name": "stg_marketo__lead_describe_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"data_type": {"type": "STRING", "index": 1, "name": "data_type", "comment": null}, "display_name": {"type": "STRING", "index": 2, "name": "display_name", "comment": null}, "id": {"type": "INT64", "index": 3, "name": "id", "comment": null}, "length": {"type": "INT64", "index": 4, "name": "length", "comment": null}, "restname": {"type": "STRING", "index": 5, "name": "restname", "comment": null}, "restread_only": {"type": "BOOL", "index": 6, "name": "restread_only", "comment": null}, "soapname": {"type": "STRING", "index": 7, "name": "soapname", "comment": null}, "soapread_only": {"type": "BOOL", "index": 8, "name": "soapread_only", "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.marketo_source.stg_marketo__lead_describe_tmp"}, "model.marketo_source.stg_marketo__activity_unsubscribe_email_tmp": {"metadata": {"type": "view", "schema": "marketo_source_integration_tests_marketo_source", "name": "stg_marketo__activity_unsubscribe_email_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"activity_date": {"type": "STRING", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "INT64", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "INT64", "index": 4, "name": "campaign_run_id", "comment": null}, "client_ip_address": {"type": "STRING", "index": 5, "name": "client_ip_address", "comment": null}, "email_template_id": {"type": "INT64", "index": 6, "name": "email_template_id", "comment": null}, "form_fields": {"type": "STRING", "index": 7, "name": "form_fields", "comment": null}, "id": {"type": "INT64", "index": 8, "name": "id", "comment": null}, "lead_id": {"type": "INT64", "index": 9, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 10, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 11, "name": "primary_attribute_value_id", "comment": null}, "query_parameters": {"type": "STRING", "index": 12, "name": "query_parameters", "comment": null}, "referrer_url": {"type": "STRING", "index": 13, "name": "referrer_url", "comment": null}, "user_agent": {"type": "STRING", "index": 14, "name": "user_agent", "comment": null}, "webform_id": {"type": "INT64", "index": 15, "name": "webform_id", "comment": null}, "webpage_id": {"type": "INT64", "index": 16, "name": "webpage_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.marketo_source.stg_marketo__activity_unsubscribe_email_tmp"}, "model.marketo_source.stg_marketo__activity_email_bounced": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests_marketo_source", "name": "stg_marketo__activity_email_bounced", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"activity_timestamp": {"type": "TIMESTAMP", "index": 1, "name": "activity_timestamp", "comment": null}, "activity_type_id": {"type": "INT64", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "INT64", "index": 4, "name": "campaign_run_id", "comment": null}, "bounce_category": {"type": "INT64", "index": 5, "name": "bounce_category", "comment": null}, "choice_number": {"type": "INT64", "index": 6, "name": "choice_number", "comment": null}, "details": {"type": "STRING", "index": 7, "name": "details", "comment": null}, "email_address": {"type": "STRING", "index": 8, "name": "email_address", "comment": null}, "email_template_id": {"type": "INT64", "index": 9, "name": "email_template_id", "comment": null}, "activity_id": {"type": "INT64", "index": 10, "name": "activity_id", "comment": null}, "lead_id": {"type": "INT64", "index": 11, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 12, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 13, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "INT64", "index": 14, "name": "step_id", "comment": null}, "bounce_subcategory": {"type": "INT64", "index": 15, "name": "bounce_subcategory", "comment": null}, "email_send_id": {"type": "STRING", "index": 16, "name": "email_send_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 31324.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.marketo_source.stg_marketo__activity_email_bounced"}, "model.marketo_source.stg_marketo__activity_change_data_value_tmp": {"metadata": {"type": "view", "schema": "marketo_source_integration_tests_marketo_source", "name": "stg_marketo__activity_change_data_value_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"activity_date": {"type": "STRING", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "INT64", "index": 2, "name": "activity_type_id", "comment": null}, "api_method_name": {"type": "INT64", "index": 3, "name": "api_method_name", "comment": null}, "campaign_id": {"type": "INT64", "index": 4, "name": "campaign_id", "comment": null}, "id": {"type": "INT64", "index": 5, "name": "id", "comment": null}, "lead_id": {"type": "INT64", "index": 6, "name": "lead_id", "comment": null}, "modifying_user": {"type": "INT64", "index": 7, "name": "modifying_user", "comment": null}, "new_value": {"type": "STRING", "index": 8, "name": "new_value", "comment": null}, "old_value": {"type": "STRING", "index": 9, "name": "old_value", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 10, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 11, "name": "primary_attribute_value_id", "comment": null}, "reason": {"type": "STRING", "index": 12, "name": "reason", "comment": null}, "request_id": {"type": "INT64", "index": 13, "name": "request_id", "comment": null}, "source": {"type": "STRING", "index": 14, "name": "source", "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.marketo_source.stg_marketo__activity_change_data_value_tmp"}, "model.marketo_source.stg_marketo__activity_click_email_tmp": {"metadata": {"type": "view", "schema": "marketo_source_integration_tests_marketo_source", "name": "stg_marketo__activity_click_email_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"activity_date": {"type": "STRING", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "INT64", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "INT64", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "INT64", "index": 5, "name": "choice_number", "comment": null}, "device": {"type": "STRING", "index": 6, "name": "device", "comment": null}, "email_template_id": {"type": "INT64", "index": 7, "name": "email_template_id", "comment": null}, "id": {"type": "INT64", "index": 8, "name": "id", "comment": null}, "is_mobile_device": {"type": "BOOL", "index": 9, "name": "is_mobile_device", "comment": null}, "lead_id": {"type": "INT64", "index": 10, "name": "lead_id", "comment": null}, "link": {"type": "STRING", "index": 11, "name": "link", "comment": null}, "platform": {"type": "STRING", "index": 12, "name": "platform", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 13, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 14, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "INT64", "index": 15, "name": "step_id", "comment": null}, "user_agent": {"type": "STRING", "index": 16, "name": "user_agent", "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.marketo_source.stg_marketo__activity_click_email_tmp"}, "model.marketo_source.stg_marketo__activity_unsubscribe_email": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests_marketo_source", "name": "stg_marketo__activity_unsubscribe_email", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"activity_timestamp": {"type": "TIMESTAMP", "index": 1, "name": "activity_timestamp", "comment": null}, "activity_type_id": {"type": "INT64", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "INT64", "index": 4, "name": "campaign_run_id", "comment": null}, "client_ip_address": {"type": "STRING", "index": 5, "name": "client_ip_address", "comment": null}, "email_template_id": {"type": "INT64", "index": 6, "name": "email_template_id", "comment": null}, "form_fields": {"type": "STRING", "index": 7, "name": "form_fields", "comment": null}, "activity_id": {"type": "INT64", "index": 8, "name": "activity_id", "comment": null}, "lead_id": {"type": "INT64", "index": 9, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 10, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 11, "name": "primary_attribute_value_id", "comment": null}, "query_parameters": {"type": "STRING", "index": 12, "name": "query_parameters", "comment": null}, "referrer_url": {"type": "STRING", "index": 13, "name": "referrer_url", "comment": null}, "user_agent": {"type": "STRING", "index": 14, "name": "user_agent", "comment": null}, "webform_id": {"type": "INT64", "index": 15, "name": "webform_id", "comment": null}, "webpage_id": {"type": "INT64", "index": 16, "name": "webpage_id", "comment": null}, "email_send_id": {"type": "STRING", "index": 17, "name": "email_send_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 69177.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.marketo_source.stg_marketo__activity_unsubscribe_email"}, "model.marketo_source.stg_marketo__activity_delete_lead": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests_marketo_source", "name": "stg_marketo__activity_delete_lead", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"activity_id": {"type": "INT64", "index": 1, "name": "activity_id", "comment": null}, "_fivetran_synced": {"type": "STRING", "index": 2, "name": "_fivetran_synced", "comment": null}, "activity_timestamp": {"type": "TIMESTAMP", "index": 3, "name": "activity_timestamp", "comment": null}, "activity_type_id": {"type": "INT64", "index": 4, "name": "activity_type_id", "comment": null}, "campaign_name": {"type": "STRING", "index": 5, "name": "campaign_name", "comment": null}, "campaign_id": {"type": "INT64", "index": 6, "name": "campaign_id", "comment": null}, "lead_id": {"type": "INT64", "index": 7, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 8, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 9, "name": "primary_attribute_value_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 4123.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 31.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.marketo_source.stg_marketo__activity_delete_lead"}, "model.marketo_source.stg_marketo__activity_delete_lead_tmp": {"metadata": {"type": "view", "schema": "marketo_source_integration_tests_marketo_source", "name": "stg_marketo__activity_delete_lead_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "STRING", "index": 2, "name": "_fivetran_synced", "comment": null}, "activity_date": {"type": "STRING", "index": 3, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "INT64", "index": 4, "name": "activity_type_id", "comment": null}, "campaign": {"type": "STRING", "index": 5, "name": "campaign", "comment": null}, "campaign_id": {"type": "INT64", "index": 6, "name": "campaign_id", "comment": null}, "lead_id": {"type": "INT64", "index": 7, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 8, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 9, "name": "primary_attribute_value_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.marketo_source.stg_marketo__activity_delete_lead_tmp"}, "model.marketo_source.stg_marketo__activity_merge_leads_tmp": {"metadata": {"type": "view", "schema": "marketo_source_integration_tests_marketo_source", "name": "stg_marketo__activity_merge_leads_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "STRING", "index": 2, "name": "_fivetran_synced", "comment": null}, "activity_date": {"type": "STRING", "index": 3, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "INT64", "index": 4, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 5, "name": "campaign_id", "comment": null}, "lead_id": {"type": "INT64", "index": 6, "name": "lead_id", "comment": null}, "master_updated": {"type": "BOOL", "index": 7, "name": "master_updated", "comment": null}, "merge_ids": {"type": "STRING", "index": 8, "name": "merge_ids", "comment": null}, "merge_source": {"type": "STRING", "index": 9, "name": "merge_source", "comment": null}, "merged_in_sales": {"type": "BOOL", "index": 10, "name": "merged_in_sales", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 11, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 12, "name": "primary_attribute_value_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.marketo_source.stg_marketo__activity_merge_leads_tmp"}, "model.marketo_source.stg_marketo__activity_merge_leads": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests_marketo_source", "name": "stg_marketo__activity_merge_leads", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"activity_id": {"type": "INT64", "index": 1, "name": "activity_id", "comment": null}, "_fivetran_synced": {"type": "STRING", "index": 2, "name": "_fivetran_synced", "comment": null}, "activity_timestamp": {"type": "TIMESTAMP", "index": 3, "name": "activity_timestamp", "comment": null}, "activity_type_id": {"type": "INT64", "index": 4, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 5, "name": "campaign_id", "comment": null}, "lead_id": {"type": "INT64", "index": 6, "name": "lead_id", "comment": null}, "master_updated": {"type": "BOOL", "index": 7, "name": "master_updated", "comment": null}, "merged_lead_id": {"type": "STRING", "index": 8, "name": "merged_lead_id", "comment": null}, "merge_source": {"type": "STRING", "index": 9, "name": "merge_source", "comment": null}, "merged_in_sales": {"type": "BOOL", "index": 10, "name": "merged_in_sales", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 11, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 12, "name": "primary_attribute_value_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 11499.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.marketo_source.stg_marketo__activity_merge_leads"}, "model.marketo_source.stg_marketo__email_template_history_tmp": {"metadata": {"type": "view", "schema": "marketo_source_integration_tests_marketo_source", "name": "stg_marketo__email_template_history_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"created_at": {"type": "STRING", "index": 1, "name": "created_at", "comment": null}, "description": {"type": "STRING", "index": 2, "name": "description", "comment": null}, "folder_folder_name": {"type": "STRING", "index": 3, "name": "folder_folder_name", "comment": null}, "folder_id": {"type": "INT64", "index": 4, "name": "folder_id", "comment": null}, "folder_type": {"type": "STRING", "index": 5, "name": "folder_type", "comment": null}, "folder_value": {"type": "INT64", "index": 6, "name": "folder_value", "comment": null}, "from_email": {"type": "STRING", "index": 7, "name": "from_email", "comment": null}, "from_name": {"type": "STRING", "index": 8, "name": "from_name", "comment": null}, "id": {"type": "INT64", "index": 9, "name": "id", "comment": null}, "name": {"type": "STRING", "index": 10, "name": "name", "comment": null}, "operational": {"type": "BOOL", "index": 11, "name": "operational", "comment": null}, "program_id": {"type": "INT64", "index": 12, "name": "program_id", "comment": null}, "publish_to_msi": {"type": "BOOL", "index": 13, "name": "publish_to_msi", "comment": null}, "reply_email": {"type": "STRING", "index": 14, "name": "reply_email", "comment": null}, "status": {"type": "STRING", "index": 15, "name": "status", "comment": null}, "subject": {"type": "STRING", "index": 16, "name": "subject", "comment": null}, "template": {"type": "INT64", "index": 17, "name": "template", "comment": null}, "text_only": {"type": "BOOL", "index": 18, "name": "text_only", "comment": null}, "updated_at": {"type": "STRING", "index": 19, "name": "updated_at", "comment": null}, "url": {"type": "STRING", "index": 20, "name": "url", "comment": null}, "version": {"type": "INT64", "index": 21, "name": "version", "comment": null}, "web_view": {"type": "BOOL", "index": 22, "name": "web_view", "comment": null}, "workspace": {"type": "STRING", "index": 23, "name": "workspace", "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.marketo_source.stg_marketo__email_template_history_tmp"}, "model.marketo_source.stg_marketo__lead": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests_marketo_source", "name": "stg_marketo__lead", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"lead_id": {"type": "INT64", "index": 1, "name": "lead_id", "comment": null}, "created_timestamp": {"type": "STRING", "index": 2, "name": "created_timestamp", "comment": null}, "updated_timestamp": {"type": "STRING", "index": 3, "name": "updated_timestamp", "comment": null}, "website": {"type": "STRING", "index": 4, "name": "website", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 8200.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.marketo_source.stg_marketo__lead"}, "model.marketo_source.stg_marketo__activity_open_email_tmp": {"metadata": {"type": "view", "schema": "marketo_source_integration_tests_marketo_source", "name": "stg_marketo__activity_open_email_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"activity_date": {"type": "STRING", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "INT64", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "INT64", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "INT64", "index": 5, "name": "choice_number", "comment": null}, "device": {"type": "STRING", "index": 6, "name": "device", "comment": null}, "email_template_id": {"type": "INT64", "index": 7, "name": "email_template_id", "comment": null}, "id": {"type": "INT64", "index": 8, "name": "id", "comment": null}, "is_mobile_device": {"type": "BOOL", "index": 9, "name": "is_mobile_device", "comment": null}, "lead_id": {"type": "INT64", "index": 10, "name": "lead_id", "comment": null}, "platform": {"type": "STRING", "index": 11, "name": "platform", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 12, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 13, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "INT64", "index": 14, "name": "step_id", "comment": null}, "user_agent": {"type": "STRING", "index": 15, "name": "user_agent", "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.marketo_source.stg_marketo__activity_open_email_tmp"}, "model.marketo_source.stg_marketo__email_template_history": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests_marketo_source", "name": "stg_marketo__email_template_history", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"created_timestamp": {"type": "STRING", "index": 1, "name": "created_timestamp", "comment": null}, "description": {"type": "STRING", "index": 2, "name": "description", "comment": null}, "folder_name": {"type": "STRING", "index": 3, "name": "folder_name", "comment": null}, "folder_id": {"type": "INT64", "index": 4, "name": "folder_id", "comment": null}, "folder_type": {"type": "STRING", "index": 5, "name": "folder_type", "comment": null}, "folder_value": {"type": "INT64", "index": 6, "name": "folder_value", "comment": null}, "from_email": {"type": "STRING", "index": 7, "name": "from_email", "comment": null}, "from_name": {"type": "STRING", "index": 8, "name": "from_name", "comment": null}, "email_template_id": {"type": "INT64", "index": 9, "name": "email_template_id", "comment": null}, "email_template_name": {"type": "STRING", "index": 10, "name": "email_template_name", "comment": null}, "is_operational": {"type": "BOOL", "index": 11, "name": "is_operational", "comment": null}, "program_id": {"type": "INT64", "index": 12, "name": "program_id", "comment": null}, "publish_to_msi": {"type": "BOOL", "index": 13, "name": "publish_to_msi", "comment": null}, "reply_email": {"type": "STRING", "index": 14, "name": "reply_email", "comment": null}, "email_template_status": {"type": "STRING", "index": 15, "name": "email_template_status", "comment": null}, "email_subject": {"type": "STRING", "index": 16, "name": "email_subject", "comment": null}, "parent_template_id": {"type": "INT64", "index": 17, "name": "parent_template_id", "comment": null}, "is_text_only": {"type": "BOOL", "index": 18, "name": "is_text_only", "comment": null}, "updated_timestamp": {"type": "STRING", "index": 19, "name": "updated_timestamp", "comment": null}, "email_template_url": {"type": "STRING", "index": 20, "name": "email_template_url", "comment": null}, "version_type": {"type": "INT64", "index": 21, "name": "version_type", "comment": null}, "has_web_view_enabled": {"type": "BOOL", "index": 22, "name": "has_web_view_enabled", "comment": null}, "workspace_name": {"type": "STRING", "index": 23, "name": "workspace_name", "comment": null}, "inferred_version": {"type": "INT64", "index": 24, "name": "inferred_version", "comment": null}, "total_count_of_versions": {"type": "INT64", "index": 25, "name": "total_count_of_versions", "comment": null}, "valid_from": {"type": "STRING", "index": 26, "name": "valid_from", "comment": null}, "valid_to": {"type": "STRING", "index": 27, "name": "valid_to", "comment": null}, "is_most_recent_version": {"type": "BOOL", "index": 28, "name": "is_most_recent_version", "comment": null}, "email_template_history_id": {"type": "STRING", "index": 29, "name": "email_template_history_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 42816.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.marketo_source.stg_marketo__email_template_history"}, "model.marketo_source.stg_marketo__activity_email_bounced_tmp": {"metadata": {"type": "view", "schema": "marketo_source_integration_tests_marketo_source", "name": "stg_marketo__activity_email_bounced_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"activity_date": {"type": "STRING", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "INT64", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "INT64", "index": 4, "name": "campaign_run_id", "comment": null}, "category": {"type": "INT64", "index": 5, "name": "category", "comment": null}, "choice_number": {"type": "INT64", "index": 6, "name": "choice_number", "comment": null}, "details": {"type": "STRING", "index": 7, "name": "details", "comment": null}, "email": {"type": "STRING", "index": 8, "name": "email", "comment": null}, "email_template_id": {"type": "INT64", "index": 9, "name": "email_template_id", "comment": null}, "id": {"type": "INT64", "index": 10, "name": "id", "comment": null}, "lead_id": {"type": "INT64", "index": 11, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 12, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 13, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "INT64", "index": 14, "name": "step_id", "comment": null}, "subcategory": {"type": "INT64", "index": 15, "name": "subcategory", "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.marketo_source.stg_marketo__activity_email_bounced_tmp"}, "model.marketo_source.stg_marketo__activity_email_delivered": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests_marketo_source", "name": "stg_marketo__activity_email_delivered", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"activity_timestamp": {"type": "TIMESTAMP", "index": 1, "name": "activity_timestamp", "comment": null}, "activity_type_id": {"type": "INT64", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "INT64", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "INT64", "index": 5, "name": "choice_number", "comment": null}, "email_template_id": {"type": "INT64", "index": 6, "name": "email_template_id", "comment": null}, "activity_id": {"type": "INT64", "index": 7, "name": "activity_id", "comment": null}, "lead_id": {"type": "INT64", "index": 8, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 9, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 10, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "INT64", "index": 11, "name": "step_id", "comment": null}, "email_send_id": {"type": "STRING", "index": 12, "name": "email_send_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 14800.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.marketo_source.stg_marketo__activity_email_delivered"}, "model.marketo_source.stg_marketo__activity_send_email_tmp": {"metadata": {"type": "view", "schema": "marketo_source_integration_tests_marketo_source", "name": "stg_marketo__activity_send_email_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"activity_date": {"type": "STRING", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "INT64", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "INT64", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "INT64", "index": 5, "name": "choice_number", "comment": null}, "email_template_id": {"type": "INT64", "index": 6, "name": "email_template_id", "comment": null}, "id": {"type": "INT64", "index": 7, "name": "id", "comment": null}, "lead_id": {"type": "INT64", "index": 8, "name": "lead_id", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 9, "name": "primary_attribute_value_id", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 10, "name": "primary_attribute_value", "comment": null}, "step_id": {"type": "INT64", "index": 11, "name": "step_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.marketo_source.stg_marketo__activity_send_email_tmp"}, "model.marketo_source.stg_marketo__activity_open_email": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests_marketo_source", "name": "stg_marketo__activity_open_email", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"activity_timestamp": {"type": "TIMESTAMP", "index": 1, "name": "activity_timestamp", "comment": null}, "activity_type_id": {"type": "INT64", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "INT64", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "INT64", "index": 5, "name": "choice_number", "comment": null}, "device": {"type": "STRING", "index": 6, "name": "device", "comment": null}, "email_template_id": {"type": "INT64", "index": 7, "name": "email_template_id", "comment": null}, "activity_id": {"type": "INT64", "index": 8, "name": "activity_id", "comment": null}, "is_mobile_device": {"type": "BOOL", "index": 9, "name": "is_mobile_device", "comment": null}, "lead_id": {"type": "INT64", "index": 10, "name": "lead_id", "comment": null}, "platform": {"type": "STRING", "index": 11, "name": "platform", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 12, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 13, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "INT64", "index": 14, "name": "step_id", "comment": null}, "user_agent": {"type": "STRING", "index": 15, "name": "user_agent", "comment": null}, "email_send_id": {"type": "STRING", "index": 16, "name": "email_send_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 26896.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.marketo_source.stg_marketo__activity_open_email"}, "model.marketo_source.stg_marketo__activity_send_email": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests_marketo_source", "name": "stg_marketo__activity_send_email", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"activity_timestamp": {"type": "TIMESTAMP", "index": 1, "name": "activity_timestamp", "comment": null}, "activity_type_id": {"type": "INT64", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "INT64", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "INT64", "index": 5, "name": "choice_number", "comment": null}, "email_template_id": {"type": "INT64", "index": 6, "name": "email_template_id", "comment": null}, "activity_id": {"type": "INT64", "index": 7, "name": "activity_id", "comment": null}, "lead_id": {"type": "INT64", "index": 8, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 9, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 10, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "INT64", "index": 11, "name": "step_id", "comment": null}, "email_send_id": {"type": "STRING", "index": 12, "name": "email_send_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 14800.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.marketo_source.stg_marketo__activity_send_email"}}, "sources": {"source.marketo_source.marketo.activity_merge_leads": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests", "name": "marketo_activity_merge_leads_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "STRING", "index": 2, "name": "_fivetran_synced", "comment": null}, "activity_date": {"type": "STRING", "index": 3, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "INT64", "index": 4, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 5, "name": "campaign_id", "comment": null}, "lead_id": {"type": "INT64", "index": 6, "name": "lead_id", "comment": null}, "master_updated": {"type": "BOOL", "index": 7, "name": "master_updated", "comment": null}, "merge_ids": {"type": "STRING", "index": 8, "name": "merge_ids", "comment": null}, "merge_source": {"type": "STRING", "index": 9, "name": "merge_source", "comment": null}, "merged_in_sales": {"type": "BOOL", "index": 10, "name": "merged_in_sales", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 11, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 12, "name": "primary_attribute_value_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 13397.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.marketo_source.marketo.activity_merge_leads"}, "source.marketo_source.marketo.activity_open_email": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests", "name": "marketo_activity_open_email_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"activity_date": {"type": "STRING", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "INT64", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "INT64", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "INT64", "index": 5, "name": "choice_number", "comment": null}, "device": {"type": "STRING", "index": 6, "name": "device", "comment": null}, "email_template_id": {"type": "INT64", "index": 7, "name": "email_template_id", "comment": null}, "id": {"type": "INT64", "index": 8, "name": "id", "comment": null}, "is_mobile_device": {"type": "BOOL", "index": 9, "name": "is_mobile_device", "comment": null}, "lead_id": {"type": "INT64", "index": 10, "name": "lead_id", "comment": null}, "platform": {"type": "STRING", "index": 11, "name": "platform", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 12, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 13, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "INT64", "index": 14, "name": "step_id", "comment": null}, "user_agent": {"type": "STRING", "index": 15, "name": "user_agent", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 25196.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.marketo_source.marketo.activity_open_email"}, "source.marketo_source.marketo.campaign": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests", "name": "marketo_campaign_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"active": {"type": "BOOL", "index": 1, "name": "active", "comment": null}, "created_at": {"type": "STRING", "index": 2, "name": "created_at", "comment": null}, "description": {"type": "STRING", "index": 3, "name": "description", "comment": null}, "id": {"type": "INT64", "index": 4, "name": "id", "comment": null}, "name": {"type": "STRING", "index": 5, "name": "name", "comment": null}, "program_id": {"type": "INT64", "index": 6, "name": "program_id", "comment": null}, "program_name": {"type": "STRING", "index": 7, "name": "program_name", "comment": null}, "type": {"type": "STRING", "index": 8, "name": "type", "comment": null}, "updated_at": {"type": "STRING", "index": 9, "name": "updated_at", "comment": null}, "workspace_name": {"type": "STRING", "index": 10, "name": "workspace_name", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 16036.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.marketo_source.marketo.campaign"}, "source.marketo_source.marketo.activity_click_email": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests", "name": "marketo_activity_click_email_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"activity_date": {"type": "STRING", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "INT64", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "INT64", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "INT64", "index": 5, "name": "choice_number", "comment": null}, "device": {"type": "STRING", "index": 6, "name": "device", "comment": null}, "email_template_id": {"type": "INT64", "index": 7, "name": "email_template_id", "comment": null}, "id": {"type": "INT64", "index": 8, "name": "id", "comment": null}, "is_mobile_device": {"type": "BOOL", "index": 9, "name": "is_mobile_device", "comment": null}, "lead_id": {"type": "INT64", "index": 10, "name": "lead_id", "comment": null}, "link": {"type": "STRING", "index": 11, "name": "link", "comment": null}, "platform": {"type": "STRING", "index": 12, "name": "platform", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 13, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 14, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "INT64", "index": 15, "name": "step_id", "comment": null}, "user_agent": {"type": "STRING", "index": 16, "name": "user_agent", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 31660.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.marketo_source.marketo.activity_click_email"}, "source.marketo_source.marketo.lead_describe": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests", "name": "marketo_lead_describe_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"data_type": {"type": "STRING", "index": 1, "name": "data_type", "comment": null}, "display_name": {"type": "STRING", "index": 2, "name": "display_name", "comment": null}, "id": {"type": "INT64", "index": 3, "name": "id", "comment": null}, "length": {"type": "INT64", "index": 4, "name": "length", "comment": null}, "restname": {"type": "STRING", "index": 5, "name": "restname", "comment": null}, "restread_only": {"type": "BOOL", "index": 6, "name": "restread_only", "comment": null}, "soapname": {"type": "STRING", "index": 7, "name": "soapname", "comment": null}, "soapread_only": {"type": "BOOL", "index": 8, "name": "soapread_only", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 6651.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.marketo_source.marketo.lead_describe"}, "source.marketo_source.marketo.activity_change_data_value": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests", "name": "marketo_activity_change_data_value_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"activity_date": {"type": "STRING", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "INT64", "index": 2, "name": "activity_type_id", "comment": null}, "api_method_name": {"type": "INT64", "index": 3, "name": "api_method_name", "comment": null}, "campaign_id": {"type": "INT64", "index": 4, "name": "campaign_id", "comment": null}, "id": {"type": "INT64", "index": 5, "name": "id", "comment": null}, "lead_id": {"type": "INT64", "index": 6, "name": "lead_id", "comment": null}, "modifying_user": {"type": "INT64", "index": 7, "name": "modifying_user", "comment": null}, "new_value": {"type": "STRING", "index": 8, "name": "new_value", "comment": null}, "old_value": {"type": "STRING", "index": 9, "name": "old_value", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 10, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 11, "name": "primary_attribute_value_id", "comment": null}, "reason": {"type": "STRING", "index": 12, "name": "reason", "comment": null}, "request_id": {"type": "INT64", "index": 13, "name": "request_id", "comment": null}, "source": {"type": "STRING", "index": 14, "name": "source", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 16556.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.marketo_source.marketo.activity_change_data_value"}, "source.marketo_source.marketo.activity_unsubscribe_email": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests", "name": "marketo_activity_unsubscribe_email_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"activity_date": {"type": "STRING", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "INT64", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "INT64", "index": 4, "name": "campaign_run_id", "comment": null}, "client_ip_address": {"type": "STRING", "index": 5, "name": "client_ip_address", "comment": null}, "email_template_id": {"type": "INT64", "index": 6, "name": "email_template_id", "comment": null}, "form_fields": {"type": "STRING", "index": 7, "name": "form_fields", "comment": null}, "id": {"type": "INT64", "index": 8, "name": "id", "comment": null}, "lead_id": {"type": "INT64", "index": 9, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 10, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 11, "name": "primary_attribute_value_id", "comment": null}, "query_parameters": {"type": "STRING", "index": 12, "name": "query_parameters", "comment": null}, "referrer_url": {"type": "STRING", "index": 13, "name": "referrer_url", "comment": null}, "user_agent": {"type": "STRING", "index": 14, "name": "user_agent", "comment": null}, "webform_id": {"type": "INT64", "index": 15, "name": "webform_id", "comment": null}, "webpage_id": {"type": "INT64", "index": 16, "name": "webpage_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 67477.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.marketo_source.marketo.activity_unsubscribe_email"}, "source.marketo_source.marketo.activity_email_delivered": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests", "name": "marketo_activity_email_delivered_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"activity_date": {"type": "STRING", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "INT64", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "INT64", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "INT64", "index": 5, "name": "choice_number", "comment": null}, "email_template_id": {"type": "INT64", "index": 6, "name": "email_template_id", "comment": null}, "id": {"type": "INT64", "index": 7, "name": "id", "comment": null}, "lead_id": {"type": "INT64", "index": 8, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 9, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 10, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "INT64", "index": 11, "name": "step_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 13100.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.marketo_source.marketo.activity_email_delivered"}, "source.marketo_source.marketo.email_template_history": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests", "name": "marketo_email_template_history_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"created_at": {"type": "STRING", "index": 1, "name": "created_at", "comment": null}, "description": {"type": "STRING", "index": 2, "name": "description", "comment": null}, "folder_folder_name": {"type": "STRING", "index": 3, "name": "folder_folder_name", "comment": null}, "folder_id": {"type": "INT64", "index": 4, "name": "folder_id", "comment": null}, "folder_type": {"type": "STRING", "index": 5, "name": "folder_type", "comment": null}, "folder_value": {"type": "INT64", "index": 6, "name": "folder_value", "comment": null}, "from_email": {"type": "STRING", "index": 7, "name": "from_email", "comment": null}, "from_name": {"type": "STRING", "index": 8, "name": "from_name", "comment": null}, "id": {"type": "INT64", "index": 9, "name": "id", "comment": null}, "name": {"type": "STRING", "index": 10, "name": "name", "comment": null}, "operational": {"type": "BOOL", "index": 11, "name": "operational", "comment": null}, "program_id": {"type": "INT64", "index": 12, "name": "program_id", "comment": null}, "publish_to_msi": {"type": "BOOL", "index": 13, "name": "publish_to_msi", "comment": null}, "reply_email": {"type": "STRING", "index": 14, "name": "reply_email", "comment": null}, "status": {"type": "STRING", "index": 15, "name": "status", "comment": null}, "subject": {"type": "STRING", "index": 16, "name": "subject", "comment": null}, "template": {"type": "INT64", "index": 17, "name": "template", "comment": null}, "text_only": {"type": "BOOL", "index": 18, "name": "text_only", "comment": null}, "updated_at": {"type": "STRING", "index": 19, "name": "updated_at", "comment": null}, "url": {"type": "STRING", "index": 20, "name": "url", "comment": null}, "version": {"type": "INT64", "index": 21, "name": "version", "comment": null}, "web_view": {"type": "BOOL", "index": 22, "name": "web_view", "comment": null}, "workspace": {"type": "STRING", "index": 23, "name": "workspace", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 34691.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.marketo_source.marketo.email_template_history"}, "source.marketo_source.marketo.activity_email_bounced": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests", "name": "marketo_activity_email_bounced_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"activity_date": {"type": "STRING", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "INT64", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "INT64", "index": 4, "name": "campaign_run_id", "comment": null}, "category": {"type": "INT64", "index": 5, "name": "category", "comment": null}, "choice_number": {"type": "INT64", "index": 6, "name": "choice_number", "comment": null}, "details": {"type": "STRING", "index": 7, "name": "details", "comment": null}, "email": {"type": "STRING", "index": 8, "name": "email", "comment": null}, "email_template_id": {"type": "INT64", "index": 9, "name": "email_template_id", "comment": null}, "id": {"type": "INT64", "index": 10, "name": "id", "comment": null}, "lead_id": {"type": "INT64", "index": 11, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 12, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 13, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "INT64", "index": 14, "name": "step_id", "comment": null}, "subcategory": {"type": "INT64", "index": 15, "name": "subcategory", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 29624.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.marketo_source.marketo.activity_email_bounced"}, "source.marketo_source.marketo.lead": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests", "name": "marketo_lead_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "created_at": {"type": "STRING", "index": 2, "name": "created_at", "comment": null}, "updated_at": {"type": "STRING", "index": 3, "name": "updated_at", "comment": null}, "website": {"type": "STRING", "index": 4, "name": "website", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 8200.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.marketo_source.marketo.lead"}, "source.marketo_source.marketo.activity_delete_lead": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests", "name": "marketo_activity_delete_lead_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "STRING", "index": 2, "name": "_fivetran_synced", "comment": null}, "activity_date": {"type": "STRING", "index": 3, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "INT64", "index": 4, "name": "activity_type_id", "comment": null}, "campaign": {"type": "STRING", "index": 5, "name": "campaign", "comment": null}, "campaign_id": {"type": "INT64", "index": 6, "name": "campaign_id", "comment": null}, "lead_id": {"type": "INT64", "index": 7, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 8, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 9, "name": "primary_attribute_value_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 4650.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 31.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.marketo_source.marketo.activity_delete_lead"}, "source.marketo_source.marketo.activity_send_email": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests", "name": "marketo_activity_send_email_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"activity_date": {"type": "STRING", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "INT64", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "INT64", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "INT64", "index": 5, "name": "choice_number", "comment": null}, "email_template_id": {"type": "INT64", "index": 6, "name": "email_template_id", "comment": null}, "id": {"type": "INT64", "index": 7, "name": "id", "comment": null}, "lead_id": {"type": "INT64", "index": 8, "name": "lead_id", "comment": null}, "primary_attribute_value_id": {"type": "INT64", "index": 9, "name": "primary_attribute_value_id", "comment": null}, "primary_attribute_value": {"type": "STRING", "index": 10, "name": "primary_attribute_value", "comment": null}, "step_id": {"type": "INT64", "index": 11, "name": "step_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 13100.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.marketo_source.marketo.activity_send_email"}, "source.marketo_source.marketo.program": {"metadata": {"type": "table", "schema": "marketo_source_integration_tests", "name": "marketo_program_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "channel": {"type": "STRING", "index": 2, "name": "channel", "comment": null}, "created_at": {"type": "STRING", "index": 3, "name": "created_at", "comment": null}, "description": {"type": "INT64", "index": 4, "name": "description", "comment": null}, "end_date": {"type": "INT64", "index": 5, "name": "end_date", "comment": null}, "name": {"type": "STRING", "index": 6, "name": "name", "comment": null}, "sfdc_id": {"type": "STRING", "index": 7, "name": "sfdc_id", "comment": null}, "sfdc_name": {"type": "STRING", "index": 8, "name": "sfdc_name", "comment": null}, "start_date": {"type": "INT64", "index": 9, "name": "start_date", "comment": null}, "status": {"type": "STRING", "index": 10, "name": "status", "comment": null}, "type": {"type": "STRING", "index": 11, "name": "type", "comment": null}, "updated_at": {"type": "STRING", "index": 12, "name": "updated_at", "comment": null}, "url": {"type": "STRING", "index": 13, "name": "url", "comment": null}, "workspace": {"type": "STRING", "index": 14, "name": "workspace", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 16836.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.marketo_source.marketo.program"}}, "errors": null} \ No newline at end of file +{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/catalog/v1.json", "dbt_version": "1.3.0", "generated_at": "2022-12-16T16:51:17.597239Z", "invocation_id": "bd047963-2765-4b7c-8326-eefcf562f4a1", "env": {}}, "nodes": {"seed.marketo_source_integration_tests.marketo_activity_change_data_value_data": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7", "name": "marketo_activity_change_data_value_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"activity_date": {"type": "text", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "integer", "index": 2, "name": "activity_type_id", "comment": null}, "api_method_name": {"type": "integer", "index": 3, "name": "api_method_name", "comment": null}, "campaign_id": {"type": "integer", "index": 4, "name": "campaign_id", "comment": null}, "id": {"type": "integer", "index": 5, "name": "id", "comment": null}, "lead_id": {"type": "integer", "index": 6, "name": "lead_id", "comment": null}, "modifying_user": {"type": "integer", "index": 7, "name": "modifying_user", "comment": null}, "new_value": {"type": "text", "index": 8, "name": "new_value", "comment": null}, "old_value": {"type": "text", "index": 9, "name": "old_value", "comment": null}, "primary_attribute_value": {"type": "text", "index": 10, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 11, "name": "primary_attribute_value_id", "comment": null}, "reason": {"type": "text", "index": 12, "name": "reason", "comment": null}, "request_id": {"type": "integer", "index": 13, "name": "request_id", "comment": null}, "source": {"type": "text", "index": 14, "name": "source", "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.marketo_source_integration_tests.marketo_activity_change_data_value_data"}, "seed.marketo_source_integration_tests.marketo_activity_click_email_data": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7", "name": "marketo_activity_click_email_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"activity_date": {"type": "text", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "integer", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "integer", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "integer", "index": 5, "name": "choice_number", "comment": null}, "device": {"type": "text", "index": 6, "name": "device", "comment": null}, "email_template_id": {"type": "integer", "index": 7, "name": "email_template_id", "comment": null}, "id": {"type": "integer", "index": 8, "name": "id", "comment": null}, "is_mobile_device": {"type": "boolean", "index": 9, "name": "is_mobile_device", "comment": null}, "lead_id": {"type": "integer", "index": 10, "name": "lead_id", "comment": null}, "link": {"type": "text", "index": 11, "name": "link", "comment": null}, "platform": {"type": "text", "index": 12, "name": "platform", "comment": null}, "primary_attribute_value": {"type": "text", "index": 13, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 14, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "integer", "index": 15, "name": "step_id", "comment": null}, "user_agent": {"type": "text", "index": 16, "name": "user_agent", "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.marketo_source_integration_tests.marketo_activity_click_email_data"}, "seed.marketo_source_integration_tests.marketo_activity_delete_lead_data": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7", "name": "marketo_activity_delete_lead_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "activity_date": {"type": "text", "index": 3, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "integer", "index": 4, "name": "activity_type_id", "comment": null}, "campaign": {"type": "text", "index": 5, "name": "campaign", "comment": null}, "campaign_id": {"type": "integer", "index": 6, "name": "campaign_id", "comment": null}, "lead_id": {"type": "integer", "index": 7, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "text", "index": 8, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 9, "name": "primary_attribute_value_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.marketo_source_integration_tests.marketo_activity_delete_lead_data"}, "seed.marketo_source_integration_tests.marketo_activity_email_bounced_data": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7", "name": "marketo_activity_email_bounced_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"activity_date": {"type": "text", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "integer", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "integer", "index": 4, "name": "campaign_run_id", "comment": null}, "category": {"type": "integer", "index": 5, "name": "category", "comment": null}, "choice_number": {"type": "integer", "index": 6, "name": "choice_number", "comment": null}, "details": {"type": "text", "index": 7, "name": "details", "comment": null}, "email": {"type": "text", "index": 8, "name": "email", "comment": null}, "email_template_id": {"type": "integer", "index": 9, "name": "email_template_id", "comment": null}, "id": {"type": "integer", "index": 10, "name": "id", "comment": null}, "lead_id": {"type": "integer", "index": 11, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "text", "index": 12, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 13, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "integer", "index": 14, "name": "step_id", "comment": null}, "subcategory": {"type": "integer", "index": 15, "name": "subcategory", "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.marketo_source_integration_tests.marketo_activity_email_bounced_data"}, "seed.marketo_source_integration_tests.marketo_activity_email_delivered_data": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7", "name": "marketo_activity_email_delivered_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"activity_date": {"type": "text", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "integer", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "integer", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "integer", "index": 5, "name": "choice_number", "comment": null}, "email_template_id": {"type": "integer", "index": 6, "name": "email_template_id", "comment": null}, "id": {"type": "integer", "index": 7, "name": "id", "comment": null}, "lead_id": {"type": "integer", "index": 8, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "text", "index": 9, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 10, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "integer", "index": 11, "name": "step_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.marketo_source_integration_tests.marketo_activity_email_delivered_data"}, "seed.marketo_source_integration_tests.marketo_activity_merge_leads_data": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7", "name": "marketo_activity_merge_leads_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "activity_date": {"type": "text", "index": 3, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "integer", "index": 4, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "integer", "index": 5, "name": "campaign_id", "comment": null}, "lead_id": {"type": "integer", "index": 6, "name": "lead_id", "comment": null}, "master_updated": {"type": "boolean", "index": 7, "name": "master_updated", "comment": null}, "merge_ids": {"type": "text", "index": 8, "name": "merge_ids", "comment": null}, "merge_source": {"type": "text", "index": 9, "name": "merge_source", "comment": null}, "merged_in_sales": {"type": "boolean", "index": 10, "name": "merged_in_sales", "comment": null}, "primary_attribute_value": {"type": "text", "index": 11, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 12, "name": "primary_attribute_value_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.marketo_source_integration_tests.marketo_activity_merge_leads_data"}, "seed.marketo_source_integration_tests.marketo_activity_open_email_data": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7", "name": "marketo_activity_open_email_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"activity_date": {"type": "text", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "integer", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "integer", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "integer", "index": 5, "name": "choice_number", "comment": null}, "device": {"type": "text", "index": 6, "name": "device", "comment": null}, "email_template_id": {"type": "integer", "index": 7, "name": "email_template_id", "comment": null}, "id": {"type": "integer", "index": 8, "name": "id", "comment": null}, "is_mobile_device": {"type": "boolean", "index": 9, "name": "is_mobile_device", "comment": null}, "lead_id": {"type": "integer", "index": 10, "name": "lead_id", "comment": null}, "platform": {"type": "text", "index": 11, "name": "platform", "comment": null}, "primary_attribute_value": {"type": "text", "index": 12, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 13, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "integer", "index": 14, "name": "step_id", "comment": null}, "user_agent": {"type": "text", "index": 15, "name": "user_agent", "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.marketo_source_integration_tests.marketo_activity_open_email_data"}, "seed.marketo_source_integration_tests.marketo_activity_send_email_data": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7", "name": "marketo_activity_send_email_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"activity_date": {"type": "text", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "integer", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "integer", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "integer", "index": 5, "name": "choice_number", "comment": null}, "email_template_id": {"type": "integer", "index": 6, "name": "email_template_id", "comment": null}, "id": {"type": "integer", "index": 7, "name": "id", "comment": null}, "lead_id": {"type": "integer", "index": 8, "name": "lead_id", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 9, "name": "primary_attribute_value_id", "comment": null}, "primary_attribute_value": {"type": "text", "index": 10, "name": "primary_attribute_value", "comment": null}, "step_id": {"type": "integer", "index": 11, "name": "step_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.marketo_source_integration_tests.marketo_activity_send_email_data"}, "seed.marketo_source_integration_tests.marketo_activity_unsubscribe_email_data": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7", "name": "marketo_activity_unsubscribe_email_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"activity_date": {"type": "text", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "integer", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "integer", "index": 4, "name": "campaign_run_id", "comment": null}, "client_ip_address": {"type": "text", "index": 5, "name": "client_ip_address", "comment": null}, "email_template_id": {"type": "integer", "index": 6, "name": "email_template_id", "comment": null}, "form_fields": {"type": "text", "index": 7, "name": "form_fields", "comment": null}, "id": {"type": "integer", "index": 8, "name": "id", "comment": null}, "lead_id": {"type": "integer", "index": 9, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "text", "index": 10, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 11, "name": "primary_attribute_value_id", "comment": null}, "query_parameters": {"type": "text", "index": 12, "name": "query_parameters", "comment": null}, "referrer_url": {"type": "text", "index": 13, "name": "referrer_url", "comment": null}, "user_agent": {"type": "text", "index": 14, "name": "user_agent", "comment": null}, "webform_id": {"type": "integer", "index": 15, "name": "webform_id", "comment": null}, "webpage_id": {"type": "integer", "index": 16, "name": "webpage_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.marketo_source_integration_tests.marketo_activity_unsubscribe_email_data"}, "seed.marketo_source_integration_tests.marketo_campaign_data": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7", "name": "marketo_campaign_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"active": {"type": "boolean", "index": 1, "name": "active", "comment": null}, "created_at": {"type": "text", "index": 2, "name": "created_at", "comment": null}, "description": {"type": "text", "index": 3, "name": "description", "comment": null}, "id": {"type": "integer", "index": 4, "name": "id", "comment": null}, "name": {"type": "text", "index": 5, "name": "name", "comment": null}, "program_id": {"type": "integer", "index": 6, "name": "program_id", "comment": null}, "program_name": {"type": "text", "index": 7, "name": "program_name", "comment": null}, "type": {"type": "text", "index": 8, "name": "type", "comment": null}, "updated_at": {"type": "text", "index": 9, "name": "updated_at", "comment": null}, "workspace_name": {"type": "text", "index": 10, "name": "workspace_name", "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.marketo_source_integration_tests.marketo_campaign_data"}, "seed.marketo_source_integration_tests.marketo_email_template_history_data": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7", "name": "marketo_email_template_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"created_at": {"type": "text", "index": 1, "name": "created_at", "comment": null}, "description": {"type": "text", "index": 2, "name": "description", "comment": null}, "folder_folder_name": {"type": "text", "index": 3, "name": "folder_folder_name", "comment": null}, "folder_id": {"type": "integer", "index": 4, "name": "folder_id", "comment": null}, "folder_type": {"type": "text", "index": 5, "name": "folder_type", "comment": null}, "folder_value": {"type": "integer", "index": 6, "name": "folder_value", "comment": null}, "from_email": {"type": "text", "index": 7, "name": "from_email", "comment": null}, "from_name": {"type": "text", "index": 8, "name": "from_name", "comment": null}, "id": {"type": "integer", "index": 9, "name": "id", "comment": null}, "name": {"type": "text", "index": 10, "name": "name", "comment": null}, "operational": {"type": "boolean", "index": 11, "name": "operational", "comment": null}, "program_id": {"type": "integer", "index": 12, "name": "program_id", "comment": null}, "publish_to_msi": {"type": "boolean", "index": 13, "name": "publish_to_msi", "comment": null}, "reply_email": {"type": "text", "index": 14, "name": "reply_email", "comment": null}, "status": {"type": "text", "index": 15, "name": "status", "comment": null}, "subject": {"type": "text", "index": 16, "name": "subject", "comment": null}, "template": {"type": "integer", "index": 17, "name": "template", "comment": null}, "text_only": {"type": "boolean", "index": 18, "name": "text_only", "comment": null}, "updated_at": {"type": "text", "index": 19, "name": "updated_at", "comment": null}, "url": {"type": "text", "index": 20, "name": "url", "comment": null}, "version": {"type": "integer", "index": 21, "name": "version", "comment": null}, "web_view": {"type": "boolean", "index": 22, "name": "web_view", "comment": null}, "workspace": {"type": "text", "index": 23, "name": "workspace", "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.marketo_source_integration_tests.marketo_email_template_history_data"}, "seed.marketo_source_integration_tests.marketo_lead_data": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7", "name": "marketo_lead_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "created_at": {"type": "text", "index": 2, "name": "created_at", "comment": null}, "updated_at": {"type": "text", "index": 3, "name": "updated_at", "comment": null}, "website": {"type": "text", "index": 4, "name": "website", "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.marketo_source_integration_tests.marketo_lead_data"}, "seed.marketo_source_integration_tests.marketo_lead_describe_data": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7", "name": "marketo_lead_describe_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"data_type": {"type": "text", "index": 1, "name": "data_type", "comment": null}, "display_name": {"type": "text", "index": 2, "name": "display_name", "comment": null}, "id": {"type": "integer", "index": 3, "name": "id", "comment": null}, "length": {"type": "integer", "index": 4, "name": "length", "comment": null}, "restname": {"type": "text", "index": 5, "name": "restname", "comment": null}, "restread_only": {"type": "boolean", "index": 6, "name": "restread_only", "comment": null}, "soapname": {"type": "text", "index": 7, "name": "soapname", "comment": null}, "soapread_only": {"type": "boolean", "index": 8, "name": "soapread_only", "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.marketo_source_integration_tests.marketo_lead_describe_data"}, "seed.marketo_source_integration_tests.marketo_program_data": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7", "name": "marketo_program_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "channel": {"type": "text", "index": 2, "name": "channel", "comment": null}, "created_at": {"type": "text", "index": 3, "name": "created_at", "comment": null}, "description": {"type": "integer", "index": 4, "name": "description", "comment": null}, "end_date": {"type": "integer", "index": 5, "name": "end_date", "comment": null}, "name": {"type": "text", "index": 6, "name": "name", "comment": null}, "sfdc_id": {"type": "text", "index": 7, "name": "sfdc_id", "comment": null}, "sfdc_name": {"type": "text", "index": 8, "name": "sfdc_name", "comment": null}, "start_date": {"type": "integer", "index": 9, "name": "start_date", "comment": null}, "status": {"type": "text", "index": 10, "name": "status", "comment": null}, "type": {"type": "text", "index": 11, "name": "type", "comment": null}, "updated_at": {"type": "text", "index": 12, "name": "updated_at", "comment": null}, "url": {"type": "text", "index": 13, "name": "url", "comment": null}, "workspace": {"type": "text", "index": 14, "name": "workspace", "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.marketo_source_integration_tests.marketo_program_data"}, "model.marketo_source.stg_marketo__activity_change_data_value": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7_marketo_source", "name": "stg_marketo__activity_change_data_value", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"activity_timestamp": {"type": "timestamp without time zone", "index": 1, "name": "activity_timestamp", "comment": null}, "activity_type_id": {"type": "integer", "index": 2, "name": "activity_type_id", "comment": null}, "api_method_name": {"type": "integer", "index": 3, "name": "api_method_name", "comment": null}, "campaign_id": {"type": "integer", "index": 4, "name": "campaign_id", "comment": null}, "activity_id": {"type": "integer", "index": 5, "name": "activity_id", "comment": null}, "lead_id": {"type": "integer", "index": 6, "name": "lead_id", "comment": null}, "modifying_user_id": {"type": "integer", "index": 7, "name": "modifying_user_id", "comment": null}, "new_value": {"type": "text", "index": 8, "name": "new_value", "comment": null}, "old_value": {"type": "text", "index": 9, "name": "old_value", "comment": null}, "primary_attribute_value": {"type": "text", "index": 10, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 11, "name": "primary_attribute_value_id", "comment": null}, "change_reason": {"type": "text", "index": 12, "name": "change_reason", "comment": null}, "request_id": {"type": "integer", "index": 13, "name": "request_id", "comment": null}, "change_source": {"type": "text", "index": 14, "name": "change_source", "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.marketo_source.stg_marketo__activity_change_data_value"}, "model.marketo_source.stg_marketo__activity_change_data_value_tmp": {"metadata": {"type": "VIEW", "schema": "marketo_source_integration_tests_7_marketo_source", "name": "stg_marketo__activity_change_data_value_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"activity_date": {"type": "text", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "integer", "index": 2, "name": "activity_type_id", "comment": null}, "api_method_name": {"type": "integer", "index": 3, "name": "api_method_name", "comment": null}, "campaign_id": {"type": "integer", "index": 4, "name": "campaign_id", "comment": null}, "id": {"type": "integer", "index": 5, "name": "id", "comment": null}, "lead_id": {"type": "integer", "index": 6, "name": "lead_id", "comment": null}, "modifying_user": {"type": "integer", "index": 7, "name": "modifying_user", "comment": null}, "new_value": {"type": "text", "index": 8, "name": "new_value", "comment": null}, "old_value": {"type": "text", "index": 9, "name": "old_value", "comment": null}, "primary_attribute_value": {"type": "text", "index": 10, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 11, "name": "primary_attribute_value_id", "comment": null}, "reason": {"type": "text", "index": 12, "name": "reason", "comment": null}, "request_id": {"type": "integer", "index": 13, "name": "request_id", "comment": null}, "source": {"type": "text", "index": 14, "name": "source", "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.marketo_source.stg_marketo__activity_change_data_value_tmp"}, "model.marketo_source.stg_marketo__activity_click_email": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7_marketo_source", "name": "stg_marketo__activity_click_email", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"activity_timestamp": {"type": "timestamp without time zone", "index": 1, "name": "activity_timestamp", "comment": null}, "activity_type_id": {"type": "integer", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "integer", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "integer", "index": 5, "name": "choice_number", "comment": null}, "click_device": {"type": "text", "index": 6, "name": "click_device", "comment": null}, "email_template_id": {"type": "integer", "index": 7, "name": "email_template_id", "comment": null}, "activity_id": {"type": "integer", "index": 8, "name": "activity_id", "comment": null}, "is_mobile_device": {"type": "boolean", "index": 9, "name": "is_mobile_device", "comment": null}, "lead_id": {"type": "integer", "index": 10, "name": "lead_id", "comment": null}, "click_link_url": {"type": "text", "index": 11, "name": "click_link_url", "comment": null}, "user_platform": {"type": "text", "index": 12, "name": "user_platform", "comment": null}, "primary_attribute_value": {"type": "text", "index": 13, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 14, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "integer", "index": 15, "name": "step_id", "comment": null}, "user_agent": {"type": "text", "index": 16, "name": "user_agent", "comment": null}, "email_send_id": {"type": "text", "index": 17, "name": "email_send_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.marketo_source.stg_marketo__activity_click_email"}, "model.marketo_source.stg_marketo__activity_click_email_tmp": {"metadata": {"type": "VIEW", "schema": "marketo_source_integration_tests_7_marketo_source", "name": "stg_marketo__activity_click_email_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"activity_date": {"type": "text", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "integer", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "integer", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "integer", "index": 5, "name": "choice_number", "comment": null}, "device": {"type": "text", "index": 6, "name": "device", "comment": null}, "email_template_id": {"type": "integer", "index": 7, "name": "email_template_id", "comment": null}, "id": {"type": "integer", "index": 8, "name": "id", "comment": null}, "is_mobile_device": {"type": "boolean", "index": 9, "name": "is_mobile_device", "comment": null}, "lead_id": {"type": "integer", "index": 10, "name": "lead_id", "comment": null}, "link": {"type": "text", "index": 11, "name": "link", "comment": null}, "platform": {"type": "text", "index": 12, "name": "platform", "comment": null}, "primary_attribute_value": {"type": "text", "index": 13, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 14, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "integer", "index": 15, "name": "step_id", "comment": null}, "user_agent": {"type": "text", "index": 16, "name": "user_agent", "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.marketo_source.stg_marketo__activity_click_email_tmp"}, "model.marketo_source.stg_marketo__activity_delete_lead": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7_marketo_source", "name": "stg_marketo__activity_delete_lead", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"activity_id": {"type": "integer", "index": 1, "name": "activity_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "activity_timestamp": {"type": "timestamp without time zone", "index": 3, "name": "activity_timestamp", "comment": null}, "activity_type_id": {"type": "integer", "index": 4, "name": "activity_type_id", "comment": null}, "campaign_name": {"type": "text", "index": 5, "name": "campaign_name", "comment": null}, "campaign_id": {"type": "integer", "index": 6, "name": "campaign_id", "comment": null}, "lead_id": {"type": "integer", "index": 7, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "text", "index": 8, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 9, "name": "primary_attribute_value_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.marketo_source.stg_marketo__activity_delete_lead"}, "model.marketo_source.stg_marketo__activity_delete_lead_tmp": {"metadata": {"type": "VIEW", "schema": "marketo_source_integration_tests_7_marketo_source", "name": "stg_marketo__activity_delete_lead_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "activity_date": {"type": "text", "index": 3, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "integer", "index": 4, "name": "activity_type_id", "comment": null}, "campaign": {"type": "text", "index": 5, "name": "campaign", "comment": null}, "campaign_id": {"type": "integer", "index": 6, "name": "campaign_id", "comment": null}, "lead_id": {"type": "integer", "index": 7, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "text", "index": 8, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 9, "name": "primary_attribute_value_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.marketo_source.stg_marketo__activity_delete_lead_tmp"}, "model.marketo_source.stg_marketo__activity_email_bounced": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7_marketo_source", "name": "stg_marketo__activity_email_bounced", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"activity_timestamp": {"type": "timestamp without time zone", "index": 1, "name": "activity_timestamp", "comment": null}, "activity_type_id": {"type": "integer", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "integer", "index": 4, "name": "campaign_run_id", "comment": null}, "bounce_category": {"type": "integer", "index": 5, "name": "bounce_category", "comment": null}, "choice_number": {"type": "integer", "index": 6, "name": "choice_number", "comment": null}, "details": {"type": "text", "index": 7, "name": "details", "comment": null}, "email_address": {"type": "text", "index": 8, "name": "email_address", "comment": null}, "email_template_id": {"type": "integer", "index": 9, "name": "email_template_id", "comment": null}, "activity_id": {"type": "integer", "index": 10, "name": "activity_id", "comment": null}, "lead_id": {"type": "integer", "index": 11, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "text", "index": 12, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 13, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "integer", "index": 14, "name": "step_id", "comment": null}, "bounce_subcategory": {"type": "integer", "index": 15, "name": "bounce_subcategory", "comment": null}, "email_send_id": {"type": "text", "index": 16, "name": "email_send_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.marketo_source.stg_marketo__activity_email_bounced"}, "model.marketo_source.stg_marketo__activity_email_bounced_tmp": {"metadata": {"type": "VIEW", "schema": "marketo_source_integration_tests_7_marketo_source", "name": "stg_marketo__activity_email_bounced_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"activity_date": {"type": "text", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "integer", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "integer", "index": 4, "name": "campaign_run_id", "comment": null}, "category": {"type": "integer", "index": 5, "name": "category", "comment": null}, "choice_number": {"type": "integer", "index": 6, "name": "choice_number", "comment": null}, "details": {"type": "text", "index": 7, "name": "details", "comment": null}, "email": {"type": "text", "index": 8, "name": "email", "comment": null}, "email_template_id": {"type": "integer", "index": 9, "name": "email_template_id", "comment": null}, "id": {"type": "integer", "index": 10, "name": "id", "comment": null}, "lead_id": {"type": "integer", "index": 11, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "text", "index": 12, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 13, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "integer", "index": 14, "name": "step_id", "comment": null}, "subcategory": {"type": "integer", "index": 15, "name": "subcategory", "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.marketo_source.stg_marketo__activity_email_bounced_tmp"}, "model.marketo_source.stg_marketo__activity_email_delivered": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7_marketo_source", "name": "stg_marketo__activity_email_delivered", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"activity_timestamp": {"type": "timestamp without time zone", "index": 1, "name": "activity_timestamp", "comment": null}, "activity_type_id": {"type": "integer", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "integer", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "integer", "index": 5, "name": "choice_number", "comment": null}, "email_template_id": {"type": "integer", "index": 6, "name": "email_template_id", "comment": null}, "activity_id": {"type": "integer", "index": 7, "name": "activity_id", "comment": null}, "lead_id": {"type": "integer", "index": 8, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "text", "index": 9, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 10, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "integer", "index": 11, "name": "step_id", "comment": null}, "email_send_id": {"type": "text", "index": 12, "name": "email_send_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.marketo_source.stg_marketo__activity_email_delivered"}, "model.marketo_source.stg_marketo__activity_email_delivered_tmp": {"metadata": {"type": "VIEW", "schema": "marketo_source_integration_tests_7_marketo_source", "name": "stg_marketo__activity_email_delivered_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"activity_date": {"type": "text", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "integer", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "integer", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "integer", "index": 5, "name": "choice_number", "comment": null}, "email_template_id": {"type": "integer", "index": 6, "name": "email_template_id", "comment": null}, "id": {"type": "integer", "index": 7, "name": "id", "comment": null}, "lead_id": {"type": "integer", "index": 8, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "text", "index": 9, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 10, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "integer", "index": 11, "name": "step_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.marketo_source.stg_marketo__activity_email_delivered_tmp"}, "model.marketo_source.stg_marketo__activity_merge_leads": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7_marketo_source", "name": "stg_marketo__activity_merge_leads", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"activity_id": {"type": "integer", "index": 1, "name": "activity_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "activity_timestamp": {"type": "timestamp without time zone", "index": 3, "name": "activity_timestamp", "comment": null}, "activity_type_id": {"type": "integer", "index": 4, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "integer", "index": 5, "name": "campaign_id", "comment": null}, "lead_id": {"type": "integer", "index": 6, "name": "lead_id", "comment": null}, "master_updated": {"type": "boolean", "index": 7, "name": "master_updated", "comment": null}, "merged_lead_id": {"type": "text", "index": 8, "name": "merged_lead_id", "comment": null}, "merge_source": {"type": "text", "index": 9, "name": "merge_source", "comment": null}, "merged_in_sales": {"type": "boolean", "index": 10, "name": "merged_in_sales", "comment": null}, "primary_attribute_value": {"type": "text", "index": 11, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 12, "name": "primary_attribute_value_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.marketo_source.stg_marketo__activity_merge_leads"}, "model.marketo_source.stg_marketo__activity_merge_leads_tmp": {"metadata": {"type": "VIEW", "schema": "marketo_source_integration_tests_7_marketo_source", "name": "stg_marketo__activity_merge_leads_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "activity_date": {"type": "text", "index": 3, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "integer", "index": 4, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "integer", "index": 5, "name": "campaign_id", "comment": null}, "lead_id": {"type": "integer", "index": 6, "name": "lead_id", "comment": null}, "master_updated": {"type": "boolean", "index": 7, "name": "master_updated", "comment": null}, "merge_ids": {"type": "text", "index": 8, "name": "merge_ids", "comment": null}, "merge_source": {"type": "text", "index": 9, "name": "merge_source", "comment": null}, "merged_in_sales": {"type": "boolean", "index": 10, "name": "merged_in_sales", "comment": null}, "primary_attribute_value": {"type": "text", "index": 11, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 12, "name": "primary_attribute_value_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.marketo_source.stg_marketo__activity_merge_leads_tmp"}, "model.marketo_source.stg_marketo__activity_open_email": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7_marketo_source", "name": "stg_marketo__activity_open_email", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"activity_timestamp": {"type": "timestamp without time zone", "index": 1, "name": "activity_timestamp", "comment": null}, "activity_type_id": {"type": "integer", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "integer", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "integer", "index": 5, "name": "choice_number", "comment": null}, "device": {"type": "text", "index": 6, "name": "device", "comment": null}, "email_template_id": {"type": "integer", "index": 7, "name": "email_template_id", "comment": null}, "activity_id": {"type": "integer", "index": 8, "name": "activity_id", "comment": null}, "is_mobile_device": {"type": "boolean", "index": 9, "name": "is_mobile_device", "comment": null}, "lead_id": {"type": "integer", "index": 10, "name": "lead_id", "comment": null}, "platform": {"type": "text", "index": 11, "name": "platform", "comment": null}, "primary_attribute_value": {"type": "text", "index": 12, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 13, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "integer", "index": 14, "name": "step_id", "comment": null}, "user_agent": {"type": "text", "index": 15, "name": "user_agent", "comment": null}, "email_send_id": {"type": "text", "index": 16, "name": "email_send_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.marketo_source.stg_marketo__activity_open_email"}, "model.marketo_source.stg_marketo__activity_open_email_tmp": {"metadata": {"type": "VIEW", "schema": "marketo_source_integration_tests_7_marketo_source", "name": "stg_marketo__activity_open_email_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"activity_date": {"type": "text", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "integer", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "integer", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "integer", "index": 5, "name": "choice_number", "comment": null}, "device": {"type": "text", "index": 6, "name": "device", "comment": null}, "email_template_id": {"type": "integer", "index": 7, "name": "email_template_id", "comment": null}, "id": {"type": "integer", "index": 8, "name": "id", "comment": null}, "is_mobile_device": {"type": "boolean", "index": 9, "name": "is_mobile_device", "comment": null}, "lead_id": {"type": "integer", "index": 10, "name": "lead_id", "comment": null}, "platform": {"type": "text", "index": 11, "name": "platform", "comment": null}, "primary_attribute_value": {"type": "text", "index": 12, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 13, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "integer", "index": 14, "name": "step_id", "comment": null}, "user_agent": {"type": "text", "index": 15, "name": "user_agent", "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.marketo_source.stg_marketo__activity_open_email_tmp"}, "model.marketo_source.stg_marketo__activity_send_email": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7_marketo_source", "name": "stg_marketo__activity_send_email", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"activity_timestamp": {"type": "timestamp without time zone", "index": 1, "name": "activity_timestamp", "comment": null}, "activity_type_id": {"type": "integer", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "integer", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "integer", "index": 5, "name": "choice_number", "comment": null}, "email_template_id": {"type": "integer", "index": 6, "name": "email_template_id", "comment": null}, "activity_id": {"type": "integer", "index": 7, "name": "activity_id", "comment": null}, "lead_id": {"type": "integer", "index": 8, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "text", "index": 9, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 10, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "integer", "index": 11, "name": "step_id", "comment": null}, "email_send_id": {"type": "text", "index": 12, "name": "email_send_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.marketo_source.stg_marketo__activity_send_email"}, "model.marketo_source.stg_marketo__activity_send_email_tmp": {"metadata": {"type": "VIEW", "schema": "marketo_source_integration_tests_7_marketo_source", "name": "stg_marketo__activity_send_email_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"activity_date": {"type": "text", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "integer", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "integer", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "integer", "index": 5, "name": "choice_number", "comment": null}, "email_template_id": {"type": "integer", "index": 6, "name": "email_template_id", "comment": null}, "id": {"type": "integer", "index": 7, "name": "id", "comment": null}, "lead_id": {"type": "integer", "index": 8, "name": "lead_id", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 9, "name": "primary_attribute_value_id", "comment": null}, "primary_attribute_value": {"type": "text", "index": 10, "name": "primary_attribute_value", "comment": null}, "step_id": {"type": "integer", "index": 11, "name": "step_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.marketo_source.stg_marketo__activity_send_email_tmp"}, "model.marketo_source.stg_marketo__activity_unsubscribe_email": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7_marketo_source", "name": "stg_marketo__activity_unsubscribe_email", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"activity_timestamp": {"type": "timestamp without time zone", "index": 1, "name": "activity_timestamp", "comment": null}, "activity_type_id": {"type": "integer", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "integer", "index": 4, "name": "campaign_run_id", "comment": null}, "client_ip_address": {"type": "text", "index": 5, "name": "client_ip_address", "comment": null}, "email_template_id": {"type": "integer", "index": 6, "name": "email_template_id", "comment": null}, "form_fields": {"type": "text", "index": 7, "name": "form_fields", "comment": null}, "activity_id": {"type": "integer", "index": 8, "name": "activity_id", "comment": null}, "lead_id": {"type": "integer", "index": 9, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "text", "index": 10, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 11, "name": "primary_attribute_value_id", "comment": null}, "query_parameters": {"type": "text", "index": 12, "name": "query_parameters", "comment": null}, "referrer_url": {"type": "text", "index": 13, "name": "referrer_url", "comment": null}, "user_agent": {"type": "text", "index": 14, "name": "user_agent", "comment": null}, "webform_id": {"type": "integer", "index": 15, "name": "webform_id", "comment": null}, "webpage_id": {"type": "integer", "index": 16, "name": "webpage_id", "comment": null}, "email_send_id": {"type": "text", "index": 17, "name": "email_send_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.marketo_source.stg_marketo__activity_unsubscribe_email"}, "model.marketo_source.stg_marketo__activity_unsubscribe_email_tmp": {"metadata": {"type": "VIEW", "schema": "marketo_source_integration_tests_7_marketo_source", "name": "stg_marketo__activity_unsubscribe_email_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"activity_date": {"type": "text", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "integer", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "integer", "index": 4, "name": "campaign_run_id", "comment": null}, "client_ip_address": {"type": "text", "index": 5, "name": "client_ip_address", "comment": null}, "email_template_id": {"type": "integer", "index": 6, "name": "email_template_id", "comment": null}, "form_fields": {"type": "text", "index": 7, "name": "form_fields", "comment": null}, "id": {"type": "integer", "index": 8, "name": "id", "comment": null}, "lead_id": {"type": "integer", "index": 9, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "text", "index": 10, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 11, "name": "primary_attribute_value_id", "comment": null}, "query_parameters": {"type": "text", "index": 12, "name": "query_parameters", "comment": null}, "referrer_url": {"type": "text", "index": 13, "name": "referrer_url", "comment": null}, "user_agent": {"type": "text", "index": 14, "name": "user_agent", "comment": null}, "webform_id": {"type": "integer", "index": 15, "name": "webform_id", "comment": null}, "webpage_id": {"type": "integer", "index": 16, "name": "webpage_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.marketo_source.stg_marketo__activity_unsubscribe_email_tmp"}, "model.marketo_source.stg_marketo__email_template_history": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7_marketo_source", "name": "stg_marketo__email_template_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"created_timestamp": {"type": "text", "index": 1, "name": "created_timestamp", "comment": null}, "description": {"type": "text", "index": 2, "name": "description", "comment": null}, "folder_name": {"type": "text", "index": 3, "name": "folder_name", "comment": null}, "folder_id": {"type": "integer", "index": 4, "name": "folder_id", "comment": null}, "folder_type": {"type": "text", "index": 5, "name": "folder_type", "comment": null}, "folder_value": {"type": "integer", "index": 6, "name": "folder_value", "comment": null}, "from_email": {"type": "text", "index": 7, "name": "from_email", "comment": null}, "from_name": {"type": "text", "index": 8, "name": "from_name", "comment": null}, "email_template_id": {"type": "integer", "index": 9, "name": "email_template_id", "comment": null}, "email_template_name": {"type": "text", "index": 10, "name": "email_template_name", "comment": null}, "is_operational": {"type": "boolean", "index": 11, "name": "is_operational", "comment": null}, "program_id": {"type": "integer", "index": 12, "name": "program_id", "comment": null}, "publish_to_msi": {"type": "boolean", "index": 13, "name": "publish_to_msi", "comment": null}, "reply_email": {"type": "text", "index": 14, "name": "reply_email", "comment": null}, "email_template_status": {"type": "text", "index": 15, "name": "email_template_status", "comment": null}, "email_subject": {"type": "text", "index": 16, "name": "email_subject", "comment": null}, "parent_template_id": {"type": "integer", "index": 17, "name": "parent_template_id", "comment": null}, "is_text_only": {"type": "boolean", "index": 18, "name": "is_text_only", "comment": null}, "updated_timestamp": {"type": "text", "index": 19, "name": "updated_timestamp", "comment": null}, "email_template_url": {"type": "text", "index": 20, "name": "email_template_url", "comment": null}, "version_type": {"type": "integer", "index": 21, "name": "version_type", "comment": null}, "has_web_view_enabled": {"type": "boolean", "index": 22, "name": "has_web_view_enabled", "comment": null}, "workspace_name": {"type": "text", "index": 23, "name": "workspace_name", "comment": null}, "inferred_version": {"type": "bigint", "index": 24, "name": "inferred_version", "comment": null}, "total_count_of_versions": {"type": "bigint", "index": 25, "name": "total_count_of_versions", "comment": null}, "valid_from": {"type": "text", "index": 26, "name": "valid_from", "comment": null}, "valid_to": {"type": "text", "index": 27, "name": "valid_to", "comment": null}, "is_most_recent_version": {"type": "boolean", "index": 28, "name": "is_most_recent_version", "comment": null}, "email_template_history_id": {"type": "text", "index": 29, "name": "email_template_history_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.marketo_source.stg_marketo__email_template_history"}, "model.marketo_source.stg_marketo__email_template_history_tmp": {"metadata": {"type": "VIEW", "schema": "marketo_source_integration_tests_7_marketo_source", "name": "stg_marketo__email_template_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"created_at": {"type": "text", "index": 1, "name": "created_at", "comment": null}, "description": {"type": "text", "index": 2, "name": "description", "comment": null}, "folder_folder_name": {"type": "text", "index": 3, "name": "folder_folder_name", "comment": null}, "folder_id": {"type": "integer", "index": 4, "name": "folder_id", "comment": null}, "folder_type": {"type": "text", "index": 5, "name": "folder_type", "comment": null}, "folder_value": {"type": "integer", "index": 6, "name": "folder_value", "comment": null}, "from_email": {"type": "text", "index": 7, "name": "from_email", "comment": null}, "from_name": {"type": "text", "index": 8, "name": "from_name", "comment": null}, "id": {"type": "integer", "index": 9, "name": "id", "comment": null}, "name": {"type": "text", "index": 10, "name": "name", "comment": null}, "operational": {"type": "boolean", "index": 11, "name": "operational", "comment": null}, "program_id": {"type": "integer", "index": 12, "name": "program_id", "comment": null}, "publish_to_msi": {"type": "boolean", "index": 13, "name": "publish_to_msi", "comment": null}, "reply_email": {"type": "text", "index": 14, "name": "reply_email", "comment": null}, "status": {"type": "text", "index": 15, "name": "status", "comment": null}, "subject": {"type": "text", "index": 16, "name": "subject", "comment": null}, "template": {"type": "integer", "index": 17, "name": "template", "comment": null}, "text_only": {"type": "boolean", "index": 18, "name": "text_only", "comment": null}, "updated_at": {"type": "text", "index": 19, "name": "updated_at", "comment": null}, "url": {"type": "text", "index": 20, "name": "url", "comment": null}, "version": {"type": "integer", "index": 21, "name": "version", "comment": null}, "web_view": {"type": "boolean", "index": 22, "name": "web_view", "comment": null}, "workspace": {"type": "text", "index": 23, "name": "workspace", "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.marketo_source.stg_marketo__email_template_history_tmp"}, "model.marketo_source.stg_marketo__lead": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7_marketo_source", "name": "stg_marketo__lead", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"lead_id": {"type": "integer", "index": 1, "name": "lead_id", "comment": null}, "created_timestamp": {"type": "text", "index": 2, "name": "created_timestamp", "comment": null}, "updated_timestamp": {"type": "text", "index": 3, "name": "updated_timestamp", "comment": null}, "website": {"type": "text", "index": 4, "name": "website", "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.marketo_source.stg_marketo__lead"}, "model.marketo_source.stg_marketo__lead_describe": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7_marketo_source", "name": "stg_marketo__lead_describe", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"data_type": {"type": "text", "index": 1, "name": "data_type", "comment": null}, "display_name": {"type": "text", "index": 2, "name": "display_name", "comment": null}, "lead_describe_id": {"type": "integer", "index": 3, "name": "lead_describe_id", "comment": null}, "field_max_length": {"type": "integer", "index": 4, "name": "field_max_length", "comment": null}, "rest_name": {"type": "text", "index": 5, "name": "rest_name", "comment": null}, "is_rest_readonly": {"type": "boolean", "index": 6, "name": "is_rest_readonly", "comment": null}, "soap_name": {"type": "text", "index": 7, "name": "soap_name", "comment": null}, "is_soap_readonly": {"type": "boolean", "index": 8, "name": "is_soap_readonly", "comment": null}, "rest_name_xf": {"type": "text", "index": 9, "name": "rest_name_xf", "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.marketo_source.stg_marketo__lead_describe"}, "model.marketo_source.stg_marketo__lead_describe_tmp": {"metadata": {"type": "VIEW", "schema": "marketo_source_integration_tests_7_marketo_source", "name": "stg_marketo__lead_describe_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"data_type": {"type": "text", "index": 1, "name": "data_type", "comment": null}, "display_name": {"type": "text", "index": 2, "name": "display_name", "comment": null}, "id": {"type": "integer", "index": 3, "name": "id", "comment": null}, "length": {"type": "integer", "index": 4, "name": "length", "comment": null}, "restname": {"type": "text", "index": 5, "name": "restname", "comment": null}, "restread_only": {"type": "boolean", "index": 6, "name": "restread_only", "comment": null}, "soapname": {"type": "text", "index": 7, "name": "soapname", "comment": null}, "soapread_only": {"type": "boolean", "index": 8, "name": "soapread_only", "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.marketo_source.stg_marketo__lead_describe_tmp"}, "model.marketo_source.stg_marketo__lead_tmp": {"metadata": {"type": "VIEW", "schema": "marketo_source_integration_tests_7_marketo_source", "name": "stg_marketo__lead_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "created_at": {"type": "text", "index": 2, "name": "created_at", "comment": null}, "updated_at": {"type": "text", "index": 3, "name": "updated_at", "comment": null}, "website": {"type": "text", "index": 4, "name": "website", "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.marketo_source.stg_marketo__lead_tmp"}}, "sources": {"source.marketo_source.marketo.activity_change_data_value": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7", "name": "marketo_activity_change_data_value_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"activity_date": {"type": "text", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "integer", "index": 2, "name": "activity_type_id", "comment": null}, "api_method_name": {"type": "integer", "index": 3, "name": "api_method_name", "comment": null}, "campaign_id": {"type": "integer", "index": 4, "name": "campaign_id", "comment": null}, "id": {"type": "integer", "index": 5, "name": "id", "comment": null}, "lead_id": {"type": "integer", "index": 6, "name": "lead_id", "comment": null}, "modifying_user": {"type": "integer", "index": 7, "name": "modifying_user", "comment": null}, "new_value": {"type": "text", "index": 8, "name": "new_value", "comment": null}, "old_value": {"type": "text", "index": 9, "name": "old_value", "comment": null}, "primary_attribute_value": {"type": "text", "index": 10, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 11, "name": "primary_attribute_value_id", "comment": null}, "reason": {"type": "text", "index": 12, "name": "reason", "comment": null}, "request_id": {"type": "integer", "index": 13, "name": "request_id", "comment": null}, "source": {"type": "text", "index": 14, "name": "source", "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.marketo_source.marketo.activity_change_data_value"}, "source.marketo_source.marketo.activity_click_email": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7", "name": "marketo_activity_click_email_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"activity_date": {"type": "text", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "integer", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "integer", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "integer", "index": 5, "name": "choice_number", "comment": null}, "device": {"type": "text", "index": 6, "name": "device", "comment": null}, "email_template_id": {"type": "integer", "index": 7, "name": "email_template_id", "comment": null}, "id": {"type": "integer", "index": 8, "name": "id", "comment": null}, "is_mobile_device": {"type": "boolean", "index": 9, "name": "is_mobile_device", "comment": null}, "lead_id": {"type": "integer", "index": 10, "name": "lead_id", "comment": null}, "link": {"type": "text", "index": 11, "name": "link", "comment": null}, "platform": {"type": "text", "index": 12, "name": "platform", "comment": null}, "primary_attribute_value": {"type": "text", "index": 13, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 14, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "integer", "index": 15, "name": "step_id", "comment": null}, "user_agent": {"type": "text", "index": 16, "name": "user_agent", "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.marketo_source.marketo.activity_click_email"}, "source.marketo_source.marketo.activity_delete_lead": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7", "name": "marketo_activity_delete_lead_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "activity_date": {"type": "text", "index": 3, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "integer", "index": 4, "name": "activity_type_id", "comment": null}, "campaign": {"type": "text", "index": 5, "name": "campaign", "comment": null}, "campaign_id": {"type": "integer", "index": 6, "name": "campaign_id", "comment": null}, "lead_id": {"type": "integer", "index": 7, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "text", "index": 8, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 9, "name": "primary_attribute_value_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.marketo_source.marketo.activity_delete_lead"}, "source.marketo_source.marketo.activity_email_bounced": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7", "name": "marketo_activity_email_bounced_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"activity_date": {"type": "text", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "integer", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "integer", "index": 4, "name": "campaign_run_id", "comment": null}, "category": {"type": "integer", "index": 5, "name": "category", "comment": null}, "choice_number": {"type": "integer", "index": 6, "name": "choice_number", "comment": null}, "details": {"type": "text", "index": 7, "name": "details", "comment": null}, "email": {"type": "text", "index": 8, "name": "email", "comment": null}, "email_template_id": {"type": "integer", "index": 9, "name": "email_template_id", "comment": null}, "id": {"type": "integer", "index": 10, "name": "id", "comment": null}, "lead_id": {"type": "integer", "index": 11, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "text", "index": 12, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 13, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "integer", "index": 14, "name": "step_id", "comment": null}, "subcategory": {"type": "integer", "index": 15, "name": "subcategory", "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.marketo_source.marketo.activity_email_bounced"}, "source.marketo_source.marketo.activity_email_delivered": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7", "name": "marketo_activity_email_delivered_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"activity_date": {"type": "text", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "integer", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "integer", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "integer", "index": 5, "name": "choice_number", "comment": null}, "email_template_id": {"type": "integer", "index": 6, "name": "email_template_id", "comment": null}, "id": {"type": "integer", "index": 7, "name": "id", "comment": null}, "lead_id": {"type": "integer", "index": 8, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "text", "index": 9, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 10, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "integer", "index": 11, "name": "step_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.marketo_source.marketo.activity_email_delivered"}, "source.marketo_source.marketo.activity_merge_leads": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7", "name": "marketo_activity_merge_leads_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "activity_date": {"type": "text", "index": 3, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "integer", "index": 4, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "integer", "index": 5, "name": "campaign_id", "comment": null}, "lead_id": {"type": "integer", "index": 6, "name": "lead_id", "comment": null}, "master_updated": {"type": "boolean", "index": 7, "name": "master_updated", "comment": null}, "merge_ids": {"type": "text", "index": 8, "name": "merge_ids", "comment": null}, "merge_source": {"type": "text", "index": 9, "name": "merge_source", "comment": null}, "merged_in_sales": {"type": "boolean", "index": 10, "name": "merged_in_sales", "comment": null}, "primary_attribute_value": {"type": "text", "index": 11, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 12, "name": "primary_attribute_value_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.marketo_source.marketo.activity_merge_leads"}, "source.marketo_source.marketo.activity_open_email": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7", "name": "marketo_activity_open_email_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"activity_date": {"type": "text", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "integer", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "integer", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "integer", "index": 5, "name": "choice_number", "comment": null}, "device": {"type": "text", "index": 6, "name": "device", "comment": null}, "email_template_id": {"type": "integer", "index": 7, "name": "email_template_id", "comment": null}, "id": {"type": "integer", "index": 8, "name": "id", "comment": null}, "is_mobile_device": {"type": "boolean", "index": 9, "name": "is_mobile_device", "comment": null}, "lead_id": {"type": "integer", "index": 10, "name": "lead_id", "comment": null}, "platform": {"type": "text", "index": 11, "name": "platform", "comment": null}, "primary_attribute_value": {"type": "text", "index": 12, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 13, "name": "primary_attribute_value_id", "comment": null}, "step_id": {"type": "integer", "index": 14, "name": "step_id", "comment": null}, "user_agent": {"type": "text", "index": 15, "name": "user_agent", "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.marketo_source.marketo.activity_open_email"}, "source.marketo_source.marketo.activity_send_email": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7", "name": "marketo_activity_send_email_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"activity_date": {"type": "text", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "integer", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "integer", "index": 4, "name": "campaign_run_id", "comment": null}, "choice_number": {"type": "integer", "index": 5, "name": "choice_number", "comment": null}, "email_template_id": {"type": "integer", "index": 6, "name": "email_template_id", "comment": null}, "id": {"type": "integer", "index": 7, "name": "id", "comment": null}, "lead_id": {"type": "integer", "index": 8, "name": "lead_id", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 9, "name": "primary_attribute_value_id", "comment": null}, "primary_attribute_value": {"type": "text", "index": 10, "name": "primary_attribute_value", "comment": null}, "step_id": {"type": "integer", "index": 11, "name": "step_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.marketo_source.marketo.activity_send_email"}, "source.marketo_source.marketo.activity_unsubscribe_email": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7", "name": "marketo_activity_unsubscribe_email_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"activity_date": {"type": "text", "index": 1, "name": "activity_date", "comment": null}, "activity_type_id": {"type": "integer", "index": 2, "name": "activity_type_id", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "campaign_run_id": {"type": "integer", "index": 4, "name": "campaign_run_id", "comment": null}, "client_ip_address": {"type": "text", "index": 5, "name": "client_ip_address", "comment": null}, "email_template_id": {"type": "integer", "index": 6, "name": "email_template_id", "comment": null}, "form_fields": {"type": "text", "index": 7, "name": "form_fields", "comment": null}, "id": {"type": "integer", "index": 8, "name": "id", "comment": null}, "lead_id": {"type": "integer", "index": 9, "name": "lead_id", "comment": null}, "primary_attribute_value": {"type": "text", "index": 10, "name": "primary_attribute_value", "comment": null}, "primary_attribute_value_id": {"type": "integer", "index": 11, "name": "primary_attribute_value_id", "comment": null}, "query_parameters": {"type": "text", "index": 12, "name": "query_parameters", "comment": null}, "referrer_url": {"type": "text", "index": 13, "name": "referrer_url", "comment": null}, "user_agent": {"type": "text", "index": 14, "name": "user_agent", "comment": null}, "webform_id": {"type": "integer", "index": 15, "name": "webform_id", "comment": null}, "webpage_id": {"type": "integer", "index": 16, "name": "webpage_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.marketo_source.marketo.activity_unsubscribe_email"}, "source.marketo_source.marketo.campaign": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7", "name": "marketo_campaign_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"active": {"type": "boolean", "index": 1, "name": "active", "comment": null}, "created_at": {"type": "text", "index": 2, "name": "created_at", "comment": null}, "description": {"type": "text", "index": 3, "name": "description", "comment": null}, "id": {"type": "integer", "index": 4, "name": "id", "comment": null}, "name": {"type": "text", "index": 5, "name": "name", "comment": null}, "program_id": {"type": "integer", "index": 6, "name": "program_id", "comment": null}, "program_name": {"type": "text", "index": 7, "name": "program_name", "comment": null}, "type": {"type": "text", "index": 8, "name": "type", "comment": null}, "updated_at": {"type": "text", "index": 9, "name": "updated_at", "comment": null}, "workspace_name": {"type": "text", "index": 10, "name": "workspace_name", "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.marketo_source.marketo.campaign"}, "source.marketo_source.marketo.email_template_history": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7", "name": "marketo_email_template_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"created_at": {"type": "text", "index": 1, "name": "created_at", "comment": null}, "description": {"type": "text", "index": 2, "name": "description", "comment": null}, "folder_folder_name": {"type": "text", "index": 3, "name": "folder_folder_name", "comment": null}, "folder_id": {"type": "integer", "index": 4, "name": "folder_id", "comment": null}, "folder_type": {"type": "text", "index": 5, "name": "folder_type", "comment": null}, "folder_value": {"type": "integer", "index": 6, "name": "folder_value", "comment": null}, "from_email": {"type": "text", "index": 7, "name": "from_email", "comment": null}, "from_name": {"type": "text", "index": 8, "name": "from_name", "comment": null}, "id": {"type": "integer", "index": 9, "name": "id", "comment": null}, "name": {"type": "text", "index": 10, "name": "name", "comment": null}, "operational": {"type": "boolean", "index": 11, "name": "operational", "comment": null}, "program_id": {"type": "integer", "index": 12, "name": "program_id", "comment": null}, "publish_to_msi": {"type": "boolean", "index": 13, "name": "publish_to_msi", "comment": null}, "reply_email": {"type": "text", "index": 14, "name": "reply_email", "comment": null}, "status": {"type": "text", "index": 15, "name": "status", "comment": null}, "subject": {"type": "text", "index": 16, "name": "subject", "comment": null}, "template": {"type": "integer", "index": 17, "name": "template", "comment": null}, "text_only": {"type": "boolean", "index": 18, "name": "text_only", "comment": null}, "updated_at": {"type": "text", "index": 19, "name": "updated_at", "comment": null}, "url": {"type": "text", "index": 20, "name": "url", "comment": null}, "version": {"type": "integer", "index": 21, "name": "version", "comment": null}, "web_view": {"type": "boolean", "index": 22, "name": "web_view", "comment": null}, "workspace": {"type": "text", "index": 23, "name": "workspace", "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.marketo_source.marketo.email_template_history"}, "source.marketo_source.marketo.lead": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7", "name": "marketo_lead_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "created_at": {"type": "text", "index": 2, "name": "created_at", "comment": null}, "updated_at": {"type": "text", "index": 3, "name": "updated_at", "comment": null}, "website": {"type": "text", "index": 4, "name": "website", "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.marketo_source.marketo.lead"}, "source.marketo_source.marketo.lead_describe": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7", "name": "marketo_lead_describe_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"data_type": {"type": "text", "index": 1, "name": "data_type", "comment": null}, "display_name": {"type": "text", "index": 2, "name": "display_name", "comment": null}, "id": {"type": "integer", "index": 3, "name": "id", "comment": null}, "length": {"type": "integer", "index": 4, "name": "length", "comment": null}, "restname": {"type": "text", "index": 5, "name": "restname", "comment": null}, "restread_only": {"type": "boolean", "index": 6, "name": "restread_only", "comment": null}, "soapname": {"type": "text", "index": 7, "name": "soapname", "comment": null}, "soapread_only": {"type": "boolean", "index": 8, "name": "soapread_only", "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.marketo_source.marketo.lead_describe"}, "source.marketo_source.marketo.program": {"metadata": {"type": "BASE TABLE", "schema": "marketo_source_integration_tests_7", "name": "marketo_program_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "channel": {"type": "text", "index": 2, "name": "channel", "comment": null}, "created_at": {"type": "text", "index": 3, "name": "created_at", "comment": null}, "description": {"type": "integer", "index": 4, "name": "description", "comment": null}, "end_date": {"type": "integer", "index": 5, "name": "end_date", "comment": null}, "name": {"type": "text", "index": 6, "name": "name", "comment": null}, "sfdc_id": {"type": "text", "index": 7, "name": "sfdc_id", "comment": null}, "sfdc_name": {"type": "text", "index": 8, "name": "sfdc_name", "comment": null}, "start_date": {"type": "integer", "index": 9, "name": "start_date", "comment": null}, "status": {"type": "text", "index": 10, "name": "status", "comment": null}, "type": {"type": "text", "index": 11, "name": "type", "comment": null}, "updated_at": {"type": "text", "index": 12, "name": "updated_at", "comment": null}, "url": {"type": "text", "index": 13, "name": "url", "comment": null}, "workspace": {"type": "text", "index": 14, "name": "workspace", "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.marketo_source.marketo.program"}}, "errors": null} \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index 56291a2..182b6b4 100644 --- a/docs/index.html +++ b/docs/index.html @@ -24,7 +24,7 @@
icons
- diff --git a/docs/manifest.json b/docs/manifest.json index a1e8ab8..b63e175 100644 --- a/docs/manifest.json +++ b/docs/manifest.json @@ -1 +1 @@ -{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/manifest/v6.json", "dbt_version": "1.2.0", "generated_at": "2022-10-10T19:53:51.134629Z", "invocation_id": "ac505354-f0c8-488c-a952-87195fbb1845", "env": {}, "project_id": "a72643f3c0e6cd4df80476b9de14c1e4", "user_id": "8268eefe-e8f7-472e-ab2a-a92f0135d76d", "send_anonymous_usage_stats": true, "adapter_type": "bigquery"}, "nodes": {"seed.marketo_source_integration_tests.marketo_activity_send_email_data": {"raw_sql": "", "compiled": true, "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "materialized": "seed", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests", "fqn": ["marketo_source_integration_tests", "marketo_activity_send_email_data"], "unique_id": "seed.marketo_source_integration_tests.marketo_activity_send_email_data", "package_name": "marketo_source_integration_tests", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests", "path": "marketo_activity_send_email_data.csv", "original_file_path": "seeds/marketo_activity_send_email_data.csv", "name": "marketo_activity_send_email_data", "alias": "marketo_activity_send_email_data", "checksum": {"name": "sha256", "checksum": "fb2bad0f381304d118073d9983f45eb46e5febee8dca957914a648b4ddff637e"}, "tags": [], "refs": [], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.1777852, "compiled_sql": "", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests`.`marketo_activity_send_email_data`"}, "seed.marketo_source_integration_tests.marketo_activity_change_data_value_data": {"raw_sql": "", "compiled": true, "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "materialized": "seed", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests", "fqn": ["marketo_source_integration_tests", "marketo_activity_change_data_value_data"], "unique_id": "seed.marketo_source_integration_tests.marketo_activity_change_data_value_data", "package_name": "marketo_source_integration_tests", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests", "path": "marketo_activity_change_data_value_data.csv", "original_file_path": "seeds/marketo_activity_change_data_value_data.csv", "name": "marketo_activity_change_data_value_data", "alias": "marketo_activity_change_data_value_data", "checksum": {"name": "sha256", "checksum": "50150cbdd92fde6155258db2e872f0ada8aa08c9d1d86b944e4895f9f4b457af"}, "tags": [], "refs": [], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.1829062, "compiled_sql": "", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests`.`marketo_activity_change_data_value_data`"}, "seed.marketo_source_integration_tests.marketo_email_template_history_data": {"raw_sql": "", "compiled": true, "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "materialized": "seed", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests", "fqn": ["marketo_source_integration_tests", "marketo_email_template_history_data"], "unique_id": "seed.marketo_source_integration_tests.marketo_email_template_history_data", "package_name": "marketo_source_integration_tests", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests", "path": "marketo_email_template_history_data.csv", "original_file_path": "seeds/marketo_email_template_history_data.csv", "name": "marketo_email_template_history_data", "alias": "marketo_email_template_history_data", "checksum": {"name": "sha256", "checksum": "88720f1d192884ba6a37ef4b5d7c6d71854d4317881e3c05527c647f3110819c"}, "tags": [], "refs": [], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.183834, "compiled_sql": "", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests`.`marketo_email_template_history_data`"}, "seed.marketo_source_integration_tests.marketo_activity_email_delivered_data": {"raw_sql": "", "compiled": true, "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "materialized": "seed", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests", "fqn": ["marketo_source_integration_tests", "marketo_activity_email_delivered_data"], "unique_id": "seed.marketo_source_integration_tests.marketo_activity_email_delivered_data", "package_name": "marketo_source_integration_tests", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests", "path": "marketo_activity_email_delivered_data.csv", "original_file_path": "seeds/marketo_activity_email_delivered_data.csv", "name": "marketo_activity_email_delivered_data", "alias": "marketo_activity_email_delivered_data", "checksum": {"name": "sha256", "checksum": "b2243d0565a9b1d4f98aaf79cf1ee52b48f8f2015eea1e748d126925bf15cad6"}, "tags": [], "refs": [], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.18473, "compiled_sql": "", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests`.`marketo_activity_email_delivered_data`"}, "seed.marketo_source_integration_tests.marketo_lead_describe_data": {"raw_sql": "", "compiled": true, "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "materialized": "seed", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests", "fqn": ["marketo_source_integration_tests", "marketo_lead_describe_data"], "unique_id": "seed.marketo_source_integration_tests.marketo_lead_describe_data", "package_name": "marketo_source_integration_tests", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests", "path": "marketo_lead_describe_data.csv", "original_file_path": "seeds/marketo_lead_describe_data.csv", "name": "marketo_lead_describe_data", "alias": "marketo_lead_describe_data", "checksum": {"name": "sha256", "checksum": "82b41788229917c7b5e11620f8093c5664ac80b42f055810c66c2c30a22dad65"}, "tags": [], "refs": [], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.185605, "compiled_sql": "", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests`.`marketo_lead_describe_data`"}, "seed.marketo_source_integration_tests.marketo_activity_delete_lead_data": {"raw_sql": "", "compiled": true, "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "materialized": "seed", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests", "fqn": ["marketo_source_integration_tests", "marketo_activity_delete_lead_data"], "unique_id": "seed.marketo_source_integration_tests.marketo_activity_delete_lead_data", "package_name": "marketo_source_integration_tests", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests", "path": "marketo_activity_delete_lead_data.csv", "original_file_path": "seeds/marketo_activity_delete_lead_data.csv", "name": "marketo_activity_delete_lead_data", "alias": "marketo_activity_delete_lead_data", "checksum": {"name": "sha256", "checksum": "4798018fe3ad445e062842e31f2ab12d165e11784128c0374a24622af39d9851"}, "tags": [], "refs": [], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.186583, "compiled_sql": "", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests`.`marketo_activity_delete_lead_data`"}, "seed.marketo_source_integration_tests.marketo_activity_unsubscribe_email_data": {"raw_sql": "", "compiled": true, "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "materialized": "seed", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests", "fqn": ["marketo_source_integration_tests", "marketo_activity_unsubscribe_email_data"], "unique_id": "seed.marketo_source_integration_tests.marketo_activity_unsubscribe_email_data", "package_name": "marketo_source_integration_tests", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests", "path": "marketo_activity_unsubscribe_email_data.csv", "original_file_path": "seeds/marketo_activity_unsubscribe_email_data.csv", "name": "marketo_activity_unsubscribe_email_data", "alias": "marketo_activity_unsubscribe_email_data", "checksum": {"name": "sha256", "checksum": "9e875888fdd08766cdd8ed980dc75c0fe6d0875af6bd9e32e31df4e1e2e6a1f8"}, "tags": [], "refs": [], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.1874518, "compiled_sql": "", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests`.`marketo_activity_unsubscribe_email_data`"}, "seed.marketo_source_integration_tests.marketo_campaign_data": {"raw_sql": "", "compiled": true, "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "materialized": "seed", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests", "fqn": ["marketo_source_integration_tests", "marketo_campaign_data"], "unique_id": "seed.marketo_source_integration_tests.marketo_campaign_data", "package_name": "marketo_source_integration_tests", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests", "path": "marketo_campaign_data.csv", "original_file_path": "seeds/marketo_campaign_data.csv", "name": "marketo_campaign_data", "alias": "marketo_campaign_data", "checksum": {"name": "sha256", "checksum": "5658a56e719d30db12752655bb7de072d3b49ccf3a1a44003e70cd3066014f62"}, "tags": [], "refs": [], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.1883268, "compiled_sql": "", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests`.`marketo_campaign_data`"}, "seed.marketo_source_integration_tests.marketo_program_data": {"raw_sql": "", "compiled": true, "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "materialized": "seed", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests", "fqn": ["marketo_source_integration_tests", "marketo_program_data"], "unique_id": "seed.marketo_source_integration_tests.marketo_program_data", "package_name": "marketo_source_integration_tests", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests", "path": "marketo_program_data.csv", "original_file_path": "seeds/marketo_program_data.csv", "name": "marketo_program_data", "alias": "marketo_program_data", "checksum": {"name": "sha256", "checksum": "e6adfa2ace0559e917e95b1c141c03ee81b8a2805d28ee73e87ebde8a77770ad"}, "tags": [], "refs": [], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.189194, "compiled_sql": "", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests`.`marketo_program_data`"}, "seed.marketo_source_integration_tests.marketo_activity_merge_leads_data": {"raw_sql": "", "compiled": true, "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "materialized": "seed", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests", "fqn": ["marketo_source_integration_tests", "marketo_activity_merge_leads_data"], "unique_id": "seed.marketo_source_integration_tests.marketo_activity_merge_leads_data", "package_name": "marketo_source_integration_tests", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests", "path": "marketo_activity_merge_leads_data.csv", "original_file_path": "seeds/marketo_activity_merge_leads_data.csv", "name": "marketo_activity_merge_leads_data", "alias": "marketo_activity_merge_leads_data", "checksum": {"name": "sha256", "checksum": "24ad90300354e3399ee9da754c62c3d76e3d36f3d57be16c71e7734545a104a8"}, "tags": [], "refs": [], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.190209, "compiled_sql": "", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests`.`marketo_activity_merge_leads_data`"}, "seed.marketo_source_integration_tests.marketo_activity_click_email_data": {"raw_sql": "", "compiled": true, "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "materialized": "seed", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests", "fqn": ["marketo_source_integration_tests", "marketo_activity_click_email_data"], "unique_id": "seed.marketo_source_integration_tests.marketo_activity_click_email_data", "package_name": "marketo_source_integration_tests", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests", "path": "marketo_activity_click_email_data.csv", "original_file_path": "seeds/marketo_activity_click_email_data.csv", "name": "marketo_activity_click_email_data", "alias": "marketo_activity_click_email_data", "checksum": {"name": "sha256", "checksum": "97c60db60ffb7cef6797417f9eeeed5c72e0f8e8a0001972911b2b74884591c5"}, "tags": [], "refs": [], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.1911092, "compiled_sql": "", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests`.`marketo_activity_click_email_data`"}, "seed.marketo_source_integration_tests.marketo_lead_data": {"raw_sql": "", "compiled": true, "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "materialized": "seed", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests", "fqn": ["marketo_source_integration_tests", "marketo_lead_data"], "unique_id": "seed.marketo_source_integration_tests.marketo_lead_data", "package_name": "marketo_source_integration_tests", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests", "path": "marketo_lead_data.csv", "original_file_path": "seeds/marketo_lead_data.csv", "name": "marketo_lead_data", "alias": "marketo_lead_data", "checksum": {"name": "sha256", "checksum": "693ebc6df5a1c688a340d5f56081447db85fe55b0c34b1034d8be23a40b3b2ff"}, "tags": [], "refs": [], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.1919758, "compiled_sql": "", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests`.`marketo_lead_data`"}, "seed.marketo_source_integration_tests.marketo_activity_open_email_data": {"raw_sql": "", "compiled": true, "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "materialized": "seed", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests", "fqn": ["marketo_source_integration_tests", "marketo_activity_open_email_data"], "unique_id": "seed.marketo_source_integration_tests.marketo_activity_open_email_data", "package_name": "marketo_source_integration_tests", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests", "path": "marketo_activity_open_email_data.csv", "original_file_path": "seeds/marketo_activity_open_email_data.csv", "name": "marketo_activity_open_email_data", "alias": "marketo_activity_open_email_data", "checksum": {"name": "sha256", "checksum": "c2e6f02fb886b1acf308d01f7ac0c8123d6bf83ed235e93cf776d0b03bf48194"}, "tags": [], "refs": [], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.192829, "compiled_sql": "", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests`.`marketo_activity_open_email_data`"}, "seed.marketo_source_integration_tests.marketo_activity_email_bounced_data": {"raw_sql": "", "compiled": true, "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "materialized": "seed", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests", "fqn": ["marketo_source_integration_tests", "marketo_activity_email_bounced_data"], "unique_id": "seed.marketo_source_integration_tests.marketo_activity_email_bounced_data", "package_name": "marketo_source_integration_tests", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests", "path": "marketo_activity_email_bounced_data.csv", "original_file_path": "seeds/marketo_activity_email_bounced_data.csv", "name": "marketo_activity_email_bounced_data", "alias": "marketo_activity_email_bounced_data", "checksum": {"name": "sha256", "checksum": "84ad6102d1351832188e16498b2b5253479cbe9e5fd9d77ccb9f97b210af8f67"}, "tags": [], "refs": [], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.193813, "compiled_sql": "", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests`.`marketo_activity_email_bounced_data`"}, "model.marketo_source.stg_marketo__activity_merge_leads": {"raw_sql": "with base as (\n\n select *\n from {{ ref('stg_marketo__activity_merge_leads_tmp') }}\n\n), macro as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_marketo__activity_merge_leads_tmp')),\n staging_columns=get_activity_merge_leads_columns()\n )\n }}\n from base\n\n), fields as (\n\n select\n id as activity_id,\n _fivetran_synced,\n cast(activity_date as {{ dbt_utils.type_timestamp() }}) as activity_timestamp,\n activity_type_id,\n campaign_id,\n cast(lead_id as {{ dbt_utils.type_int() }}) as lead_id,\n master_updated,\n cast(replace(trim(trim(merge_ids,']'),'['), ',', ', ') as {{ dbt_utils.type_string() }}) as merged_lead_id,\n merge_source,\n merged_in_sales,\n primary_attribute_value,\n primary_attribute_value_id\n from macro\n\n)\n\nselect *\nfrom fields", "compiled": true, "resource_type": "model", "depends_on": {"macros": ["macro.marketo_source.get_activity_merge_leads_columns", "macro.fivetran_utils.fill_staging_columns", "macro.dbt_utils.type_timestamp", "macro.dbt_utils.type_int", "macro.dbt_utils.type_string"], "nodes": ["model.marketo_source.stg_marketo__activity_merge_leads_tmp", "model.marketo_source.stg_marketo__activity_merge_leads_tmp"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "materialized": "table", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_marketo_source", "fqn": ["marketo_source", "stg_marketo__activity_merge_leads"], "unique_id": "model.marketo_source.stg_marketo__activity_merge_leads", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "stg_marketo__activity_merge_leads.sql", "original_file_path": "models/stg_marketo__activity_merge_leads.sql", "name": "stg_marketo__activity_merge_leads", "alias": "stg_marketo__activity_merge_leads", "checksum": {"name": "sha256", "checksum": "3deecebaf02be447edfbdeb6c8db736786cf65e9e1003aa49147d1df69b111a4"}, "tags": [], "refs": [["stg_marketo__activity_merge_leads_tmp"], ["stg_marketo__activity_merge_leads_tmp"]], "sources": [], "metrics": [], "description": "Table with merged lead activities", "columns": {"activity_timestamp": {"name": "activity_timestamp", "description": "The timestamp the lead was deleted.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "The ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the campaign related to the activity, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_id": {"name": "activity_id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "merged_lead_id": {"name": "merged_lead_id", "description": "ID of the lead that the lead was merged into.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "master_updated": {"name": "master_updated", "description": "Boolean if master was updated.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "merge_source": {"name": "merge_source", "description": "Source of the merge.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "merged_in_sales": {"name": "merged_in_sales", "description": "Boolean if merged in sales.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "docs": {"show": true}, "patch_path": "marketo_source://models/stg_marketo.yml", "compiled_path": "target/compiled/marketo_source/models/stg_marketo__activity_merge_leads.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "marketo_source"}, "created_at": 1665431415.509669, "compiled_sql": "with base as (\n\n select *\n from `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_merge_leads_tmp`\n\n), macro as (\n\n select\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n activity_date\n \n as \n \n activity_date\n \n, \n \n \n activity_type_id\n \n as \n \n activity_type_id\n \n, \n \n \n campaign_id\n \n as \n \n campaign_id\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n lead_id\n \n as \n \n lead_id\n \n, \n \n \n master_updated\n \n as \n \n master_updated\n \n, \n \n \n merge_ids\n \n as \n \n merge_ids\n \n, \n \n \n merge_source\n \n as \n \n merge_source\n \n, \n \n \n merged_in_sales\n \n as \n \n merged_in_sales\n \n, \n \n \n primary_attribute_value\n \n as \n \n primary_attribute_value\n \n, \n \n \n primary_attribute_value_id\n \n as \n \n primary_attribute_value_id\n \n\n\n\n from base\n\n), fields as (\n\n select\n id as activity_id,\n _fivetran_synced,\n cast(activity_date as \n timestamp\n) as activity_timestamp,\n activity_type_id,\n campaign_id,\n cast(lead_id as \n int64\n) as lead_id,\n master_updated,\n cast(replace(trim(trim(merge_ids,']'),'['), ',', ', ') as \n string\n) as merged_lead_id,\n merge_source,\n merged_in_sales,\n primary_attribute_value,\n primary_attribute_value_id\n from macro\n\n)\n\nselect *\nfrom fields", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_merge_leads`"}, "model.marketo_source.stg_marketo__activity_open_email": {"raw_sql": "with base as (\n\n select *\n from {{ ref('stg_marketo__activity_open_email_tmp') }}\n\n), macro as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_marketo__activity_open_email_tmp')),\n staging_columns=get_activity_open_email_columns()\n )\n }}\n from base\n\n), fields as (\n\n select \n cast(activity_date as {{ dbt_utils.type_timestamp() }}) as activity_timestamp,\n activity_type_id,\n campaign_id,\n campaign_run_id,\n choice_number,\n device,\n email_template_id,\n id as activity_id,\n is_mobile_device,\n lead_id,\n platform,\n primary_attribute_value,\n primary_attribute_value_id,\n step_id,\n user_agent\n from macro\n\n), surrogate as (\n\n select \n *,\n {{ dbt_utils.surrogate_key(['primary_attribute_value_id','campaign_id','campaign_run_id','lead_id']) }} as email_send_id\n from fields\n\n)\n\nselect *\nfrom surrogate", "compiled": true, "resource_type": "model", "depends_on": {"macros": ["macro.marketo_source.get_activity_open_email_columns", "macro.fivetran_utils.fill_staging_columns", "macro.dbt_utils.type_timestamp", "macro.dbt_utils.surrogate_key"], "nodes": ["model.marketo_source.stg_marketo__activity_open_email_tmp", "model.marketo_source.stg_marketo__activity_open_email_tmp"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "materialized": "table", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_marketo_source", "fqn": ["marketo_source", "stg_marketo__activity_open_email"], "unique_id": "model.marketo_source.stg_marketo__activity_open_email", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "stg_marketo__activity_open_email.sql", "original_file_path": "models/stg_marketo__activity_open_email.sql", "name": "stg_marketo__activity_open_email", "alias": "stg_marketo__activity_open_email", "checksum": {"name": "sha256", "checksum": "557a500146e363c9eb1ef6da3854a981afd0e4d969a5382934ff3ba9ef316dc9"}, "tags": [], "refs": [["stg_marketo__activity_open_email_tmp"], ["stg_marketo__activity_open_email_tmp"]], "sources": [], "metrics": [], "description": "", "columns": {"activity_id": {"name": "activity_id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_timestamp": {"name": "activity_timestamp", "description": "The timestamp the email was opened.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "The ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the email's campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_run_id": {"name": "campaign_run_id", "description": "The ID of the email's campaign run.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "choice_number": {"name": "choice_number", "description": "The choice number of the current step that triggered the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "device": {"name": "device", "description": "The device that was used to open the email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_send_id": {"name": "email_send_id", "description": "The inferred ID for the email sent. This is created by concatenating primary_attribute_value_id, campaign_id, campaign_run_id, and lead_id.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_id": {"name": "email_template_id", "description": "The ID of the email's template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "is_mobile_device": {"name": "is_mobile_device", "description": "Identifies whether a mobile device was used to open the email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "platform": {"name": "platform", "description": "The platform that was used to open the email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "step_id": {"name": "step_id", "description": "The Id of the current step in the flow.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "user_agent": {"name": "user_agent", "description": "The web browser user agent information obtained when the email was opened.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "docs": {"show": true}, "patch_path": "marketo_source://models/stg_marketo.yml", "compiled_path": "target/compiled/marketo_source/models/stg_marketo__activity_open_email.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "marketo_source"}, "created_at": 1665431415.49255, "compiled_sql": "with base as (\n\n select *\n from `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_open_email_tmp`\n\n), macro as (\n\n select\n \n cast(null as \n timestamp\n) as \n \n _fivetran_synced\n \n , \n \n \n activity_date\n \n as \n \n activity_date\n \n, \n \n \n activity_type_id\n \n as \n \n activity_type_id\n \n, \n \n \n campaign_id\n \n as \n \n campaign_id\n \n, \n \n \n campaign_run_id\n \n as \n \n campaign_run_id\n \n, \n \n \n choice_number\n \n as \n \n choice_number\n \n, \n \n \n device\n \n as \n \n device\n \n, \n \n \n email_template_id\n \n as \n \n email_template_id\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n is_mobile_device\n \n as \n \n is_mobile_device\n \n, \n \n \n lead_id\n \n as \n \n lead_id\n \n, \n \n \n platform\n \n as \n \n platform\n \n, \n \n \n primary_attribute_value\n \n as \n \n primary_attribute_value\n \n, \n \n \n primary_attribute_value_id\n \n as \n \n primary_attribute_value_id\n \n, \n \n \n step_id\n \n as \n \n step_id\n \n, \n cast(null as \n int64\n) as \n \n test_variant\n \n , \n \n \n user_agent\n \n as \n \n user_agent\n \n\n\n\n from base\n\n), fields as (\n\n select \n cast(activity_date as \n timestamp\n) as activity_timestamp,\n activity_type_id,\n campaign_id,\n campaign_run_id,\n choice_number,\n device,\n email_template_id,\n id as activity_id,\n is_mobile_device,\n lead_id,\n platform,\n primary_attribute_value,\n primary_attribute_value_id,\n step_id,\n user_agent\n from macro\n\n), surrogate as (\n\n select \n *,\n to_hex(md5(cast(coalesce(cast(primary_attribute_value_id as \n string\n), '') || '-' || coalesce(cast(campaign_id as \n string\n), '') || '-' || coalesce(cast(campaign_run_id as \n string\n), '') || '-' || coalesce(cast(lead_id as \n string\n), '') as \n string\n))) as email_send_id\n from fields\n\n)\n\nselect *\nfrom surrogate", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_open_email`"}, "model.marketo_source.stg_marketo__activity_send_email": {"raw_sql": "with base as (\n\n select *\n from {{ ref('stg_marketo__activity_send_email_tmp') }}\n\n), macro as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_marketo__activity_send_email_tmp')),\n staging_columns=get_activity_send_email_columns()\n )\n }}\n from base\n\n), fields as (\n\n select \n cast(activity_date as {{ dbt_utils.type_timestamp() }}) as activity_timestamp,\n activity_type_id,\n campaign_id,\n campaign_run_id,\n choice_number,\n email_template_id,\n id as activity_id,\n lead_id,\n primary_attribute_value,\n primary_attribute_value_id,\n step_id\n from macro\n\n), surrogate as (\n\n select \n *,\n {{ dbt_utils.surrogate_key(['primary_attribute_value_id','campaign_id','campaign_run_id','lead_id']) }} as email_send_id\n from fields\n\n)\n\nselect *\nfrom surrogate", "compiled": true, "resource_type": "model", "depends_on": {"macros": ["macro.marketo_source.get_activity_send_email_columns", "macro.fivetran_utils.fill_staging_columns", "macro.dbt_utils.type_timestamp", "macro.dbt_utils.surrogate_key"], "nodes": ["model.marketo_source.stg_marketo__activity_send_email_tmp", "model.marketo_source.stg_marketo__activity_send_email_tmp"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "materialized": "table", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_marketo_source", "fqn": ["marketo_source", "stg_marketo__activity_send_email"], "unique_id": "model.marketo_source.stg_marketo__activity_send_email", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "stg_marketo__activity_send_email.sql", "original_file_path": "models/stg_marketo__activity_send_email.sql", "name": "stg_marketo__activity_send_email", "alias": "stg_marketo__activity_send_email", "checksum": {"name": "sha256", "checksum": "2f690ddb89464106356461bcec2633ac4d8ff8a6f7c223e2dc500860529447de"}, "tags": [], "refs": [["stg_marketo__activity_send_email_tmp"], ["stg_marketo__activity_send_email_tmp"]], "sources": [], "metrics": [], "description": "", "columns": {"activity_id": {"name": "activity_id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_timestamp": {"name": "activity_timestamp", "description": "The timestamp the email was sent.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "The ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the email's campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_run_id": {"name": "campaign_run_id", "description": "The ID of the email's campaign run.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "choice_number": {"name": "choice_number", "description": "The choice number of the current step that triggered the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_send_id": {"name": "email_send_id", "description": "The inferred ID for the email sent. This is created by concatenating primary_attribute_value_id, campaign_id, campaign_run_id, and lead_id.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_id": {"name": "email_template_id", "description": "The ID of the email's template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "step_id": {"name": "step_id", "description": "The Id of the current step in the flow.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "docs": {"show": true}, "patch_path": "marketo_source://models/stg_marketo.yml", "compiled_path": "target/compiled/marketo_source/models/stg_marketo__activity_send_email.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "marketo_source"}, "created_at": 1665431415.4943192, "compiled_sql": "with base as (\n\n select *\n from `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_send_email_tmp`\n\n), macro as (\n\n select\n \n cast(null as \n timestamp\n) as \n \n _fivetran_synced\n \n , \n \n \n activity_date\n \n as \n \n activity_date\n \n, \n \n \n activity_type_id\n \n as \n \n activity_type_id\n \n, \n \n \n campaign_id\n \n as \n \n campaign_id\n \n, \n \n \n campaign_run_id\n \n as \n \n campaign_run_id\n \n, \n \n \n choice_number\n \n as \n \n choice_number\n \n, \n \n \n email_template_id\n \n as \n \n email_template_id\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n lead_id\n \n as \n \n lead_id\n \n, \n \n \n primary_attribute_value\n \n as \n \n primary_attribute_value\n \n, \n \n \n primary_attribute_value_id\n \n as \n \n primary_attribute_value_id\n \n, \n \n \n step_id\n \n as \n \n step_id\n \n, \n cast(null as \n int64\n) as \n \n test_variant\n \n \n\n\n from base\n\n), fields as (\n\n select \n cast(activity_date as \n timestamp\n) as activity_timestamp,\n activity_type_id,\n campaign_id,\n campaign_run_id,\n choice_number,\n email_template_id,\n id as activity_id,\n lead_id,\n primary_attribute_value,\n primary_attribute_value_id,\n step_id\n from macro\n\n), surrogate as (\n\n select \n *,\n to_hex(md5(cast(coalesce(cast(primary_attribute_value_id as \n string\n), '') || '-' || coalesce(cast(campaign_id as \n string\n), '') || '-' || coalesce(cast(campaign_run_id as \n string\n), '') || '-' || coalesce(cast(lead_id as \n string\n), '') as \n string\n))) as email_send_id\n from fields\n\n)\n\nselect *\nfrom surrogate", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_send_email`"}, "model.marketo_source.stg_marketo__email_template_history": {"raw_sql": "with base as (\n\n select *\n from {{ ref('stg_marketo__email_template_history_tmp') }}\n\n), macro as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_marketo__email_template_history_tmp')),\n staging_columns=get_email_template_history_columns()\n )\n }}\n from base\n\n), fields as (\n\n select \n created_at as created_timestamp,\n description,\n folder_folder_name as folder_name,\n folder_id,\n folder_type,\n folder_value,\n from_email,\n from_name,\n id as email_template_id,\n name as email_template_name,\n operational as is_operational,\n program_id,\n publish_to_msi,\n reply_email,\n status as email_template_status,\n subject as email_subject,\n template as parent_template_id,\n text_only as is_text_only,\n updated_at as updated_timestamp,\n url as email_template_url,\n version as version_type,\n web_view as has_web_view_enabled,\n workspace as workspace_name\n from macro\n\n), versions as (\n\n select \n *,\n row_number() over (partition by email_template_id order by updated_timestamp) as inferred_version,\n count(*) over (partition by email_template_id) as total_count_of_versions\n from fields\n\n), valid as (\n\n select \n *, \n case\n when inferred_version = 1 then created_timestamp\n else updated_timestamp\n end as valid_from,\n lead(updated_timestamp) over (partition by email_template_id order by updated_timestamp) as valid_to,\n inferred_version = total_count_of_versions as is_most_recent_version\n from versions\n\n), surrogate_key as (\n\n select \n *,\n {{ dbt_utils.surrogate_key(['email_template_id','inferred_version'] )}} as email_template_history_id\n from valid\n\n)\n\nselect *\nfrom surrogate_key", "compiled": true, "resource_type": "model", "depends_on": {"macros": ["macro.marketo_source.get_email_template_history_columns", "macro.fivetran_utils.fill_staging_columns", "macro.dbt_utils.surrogate_key"], "nodes": ["model.marketo_source.stg_marketo__email_template_history_tmp", "model.marketo_source.stg_marketo__email_template_history_tmp"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "materialized": "table", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_marketo_source", "fqn": ["marketo_source", "stg_marketo__email_template_history"], "unique_id": "model.marketo_source.stg_marketo__email_template_history", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "stg_marketo__email_template_history.sql", "original_file_path": "models/stg_marketo__email_template_history.sql", "name": "stg_marketo__email_template_history", "alias": "stg_marketo__email_template_history", "checksum": {"name": "sha256", "checksum": "ef0e2c69f22ae388cc77cc9de33b1e13b4b274bdf5f7d6539724afc507038401"}, "tags": [], "refs": [["stg_marketo__email_template_history_tmp"], ["stg_marketo__email_template_history_tmp"]], "sources": [], "metrics": [], "description": "", "columns": {"email_template_history_id": {"name": "email_template_history_id", "description": "ID of the version of the email template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "created_timestamp": {"name": "created_timestamp", "description": "Timestamp the email template was created.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "description": {"name": "description", "description": "Description of the email template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_subject": {"name": "email_subject", "description": "Subject line of the email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_id": {"name": "email_template_id", "description": "ID of the email template", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_name": {"name": "email_template_name", "description": "Name of the email template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_status": {"name": "email_template_status", "description": "Status filter for draft or approved versions.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_url": {"name": "email_template_url", "description": "URL of the email template in the Marketo UI.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "folder_name": {"name": "folder_name", "description": "The name of the email template's folder.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "folder_id": {"name": "folder_id", "description": "The ID of the email template's folder.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "folder_type": {"name": "folder_type", "description": "The type of the email template's folder.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "folder_value": {"name": "folder_value", "description": "The value of the email template's folder.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "from_email": {"name": "from_email", "description": "The 'From' address of the email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "from_name": {"name": "from_name", "description": "The 'From' name of the email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "has_web_view_enabled": {"name": "has_web_view_enabled", "description": "Whether 'View as Webpage' function is enabled for the email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "inferred_version": {"name": "inferred_version", "description": "Incrementing integer version of the email template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "is_most_recent_version": {"name": "is_most_recent_version", "description": "Whether it is the most recent version of the email template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "is_operational": {"name": "is_operational", "description": "Whether the email is operational. Operational emails bypass unsubscribe status. Defaults to false.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "is_text_only": {"name": "is_text_only", "description": "Setting to include text-only version of email when sent.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "parent_template_id": {"name": "parent_template_id", "description": "ID of the parent template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "program_id": {"name": "program_id", "description": "The ID of the email template's program.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "publish_to_msi": {"name": "publish_to_msi", "description": "Whether the email is published to Marketo Sales Insight.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "reply_email": {"name": "reply_email", "description": "Reply-To address of the Email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "total_count_of_versions": {"name": "total_count_of_versions", "description": "Count of versions of the email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "updated_timestamp": {"name": "updated_timestamp", "description": "Timestamp the email template was last updated.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "valid_from": {"name": "valid_from", "description": "When the version of the email template was is valid from.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "valid_to": {"name": "valid_to", "description": "When the version of the email template was is valid to.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "version_type": {"name": "version_type", "description": "The type version of the email, either '1' or '2'.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "workspace_name": {"name": "workspace_name", "description": "Name of the workspace.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "docs": {"show": true}, "patch_path": "marketo_source://models/stg_marketo.yml", "compiled_path": "target/compiled/marketo_source/models/stg_marketo__email_template_history.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "marketo_source"}, "created_at": 1665431415.50236, "compiled_sql": "with base as (\n\n select *\n from `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__email_template_history_tmp`\n\n), macro as (\n\n select\n \n cast(null as \n timestamp\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 description\n \n as \n \n description\n \n, \n \n \n folder_folder_name\n \n as \n \n folder_folder_name\n \n, \n \n \n folder_id\n \n as \n \n folder_id\n \n, \n \n \n folder_type\n \n as \n \n folder_type\n \n, \n \n \n folder_value\n \n as \n \n folder_value\n \n, \n \n \n from_email\n \n as \n \n from_email\n \n, \n \n \n from_name\n \n as \n \n from_name\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 operational\n \n as \n \n operational\n \n, \n \n \n program_id\n \n as \n \n program_id\n \n, \n \n \n publish_to_msi\n \n as \n \n publish_to_msi\n \n, \n \n \n reply_email\n \n as \n \n reply_email\n \n, \n \n \n status\n \n as \n \n status\n \n, \n \n \n subject\n \n as \n \n subject\n \n, \n \n \n template\n \n as \n \n template\n \n, \n \n \n text_only\n \n as \n \n text_only\n \n, \n \n \n updated_at\n \n as \n \n updated_at\n \n, \n \n \n url\n \n as \n \n url\n \n, \n \n \n version\n \n as \n \n version\n \n, \n \n \n web_view\n \n as \n \n web_view\n \n, \n \n \n workspace\n \n as \n \n workspace\n \n\n\n\n from base\n\n), fields as (\n\n select \n created_at as created_timestamp,\n description,\n folder_folder_name as folder_name,\n folder_id,\n folder_type,\n folder_value,\n from_email,\n from_name,\n id as email_template_id,\n name as email_template_name,\n operational as is_operational,\n program_id,\n publish_to_msi,\n reply_email,\n status as email_template_status,\n subject as email_subject,\n template as parent_template_id,\n text_only as is_text_only,\n updated_at as updated_timestamp,\n url as email_template_url,\n version as version_type,\n web_view as has_web_view_enabled,\n workspace as workspace_name\n from macro\n\n), versions as (\n\n select \n *,\n row_number() over (partition by email_template_id order by updated_timestamp) as inferred_version,\n count(*) over (partition by email_template_id) as total_count_of_versions\n from fields\n\n), valid as (\n\n select \n *, \n case\n when inferred_version = 1 then created_timestamp\n else updated_timestamp\n end as valid_from,\n lead(updated_timestamp) over (partition by email_template_id order by updated_timestamp) as valid_to,\n inferred_version = total_count_of_versions as is_most_recent_version\n from versions\n\n), surrogate_key as (\n\n select \n *,\n to_hex(md5(cast(coalesce(cast(email_template_id as \n string\n), '') || '-' || coalesce(cast(inferred_version as \n string\n), '') as \n string\n))) as email_template_history_id\n from valid\n\n)\n\nselect *\nfrom surrogate_key", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__email_template_history`"}, "model.marketo_source.stg_marketo__activity_email_bounced": {"raw_sql": "with base as (\n\n select *\n from {{ ref('stg_marketo__activity_email_bounced_tmp') }}\n\n), macro as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_marketo__activity_email_bounced_tmp')),\n staging_columns=get_activity_email_bounced_columns()\n )\n }}\n from base\n\n), fields as (\n\n select \t\n cast(activity_date as {{ dbt_utils.type_timestamp() }}) as activity_timestamp,\n activity_type_id,\n campaign_id,\n campaign_run_id,\n category as bounce_category,\n choice_number,\n details,\n email as email_address,\n email_template_id,\n id as activity_id,\n lead_id,\n primary_attribute_value,\n primary_attribute_value_id,\n step_id,\n subcategory as bounce_subcategory\n from macro\n\n), surrogate as (\n\n select \n *,\n {{ dbt_utils.surrogate_key(['primary_attribute_value_id','campaign_id','campaign_run_id','lead_id']) }} as email_send_id\n from fields\n\n)\n\nselect *\nfrom surrogate", "compiled": true, "resource_type": "model", "depends_on": {"macros": ["macro.marketo_source.get_activity_email_bounced_columns", "macro.fivetran_utils.fill_staging_columns", "macro.dbt_utils.type_timestamp", "macro.dbt_utils.surrogate_key"], "nodes": ["model.marketo_source.stg_marketo__activity_email_bounced_tmp", "model.marketo_source.stg_marketo__activity_email_bounced_tmp"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "materialized": "table", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_marketo_source", "fqn": ["marketo_source", "stg_marketo__activity_email_bounced"], "unique_id": "model.marketo_source.stg_marketo__activity_email_bounced", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "stg_marketo__activity_email_bounced.sql", "original_file_path": "models/stg_marketo__activity_email_bounced.sql", "name": "stg_marketo__activity_email_bounced", "alias": "stg_marketo__activity_email_bounced", "checksum": {"name": "sha256", "checksum": "51ce6c4b66aeec823943a6bb20721ec0c7f656a44427f4dce28f129394729cb8"}, "tags": [], "refs": [["stg_marketo__activity_email_bounced_tmp"], ["stg_marketo__activity_email_bounced_tmp"]], "sources": [], "metrics": [], "description": "", "columns": {"activity_id": {"name": "activity_id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_timestamp": {"name": "activity_timestamp", "description": "The timestamp the email bounced.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "The ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "bounce_category": {"name": "bounce_category", "description": "The category associated with bounced email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "bounce_subcategory": {"name": "bounce_subcategory", "description": "The subcategory associated with bounced email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the email's campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_run_id": {"name": "campaign_run_id", "description": "The ID of the email's campaign run.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "choice_number": {"name": "choice_number", "description": "The choice number of the current step that triggered the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "details": {"name": "details", "description": "Details about why the email bounced.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_address": {"name": "email_address", "description": "The email address that bounced.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_send_id": {"name": "email_send_id", "description": "The inferred ID for the email sent. This is created by concatenating primary_attribute_value_id, campaign_id, campaign_run_id, and lead_id.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_id": {"name": "email_template_id", "description": "The ID of the email's template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "step_id": {"name": "step_id", "description": "The Id of the current step in the flow.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "docs": {"show": true}, "patch_path": "marketo_source://models/stg_marketo.yml", "compiled_path": "target/compiled/marketo_source/models/stg_marketo__activity_email_bounced.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "marketo_source"}, "created_at": 1665431415.488478, "compiled_sql": "with base as (\n\n select *\n from `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_email_bounced_tmp`\n\n), macro as (\n\n select\n \n cast(null as \n timestamp\n) as \n \n _fivetran_synced\n \n , \n \n \n activity_date\n \n as \n \n activity_date\n \n, \n \n \n activity_type_id\n \n as \n \n activity_type_id\n \n, \n \n \n campaign_id\n \n as \n \n campaign_id\n \n, \n \n \n campaign_run_id\n \n as \n \n campaign_run_id\n \n, \n \n \n category\n \n as \n \n category\n \n, \n \n \n choice_number\n \n as \n \n choice_number\n \n, \n \n \n details\n \n as \n \n details\n \n, \n \n \n email\n \n as \n \n email\n \n, \n \n \n email_template_id\n \n as \n \n email_template_id\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n lead_id\n \n as \n \n lead_id\n \n, \n \n \n primary_attribute_value\n \n as \n \n primary_attribute_value\n \n, \n \n \n primary_attribute_value_id\n \n as \n \n primary_attribute_value_id\n \n, \n \n \n step_id\n \n as \n \n step_id\n \n, \n \n \n subcategory\n \n as \n \n subcategory\n \n, \n cast(null as \n int64\n) as \n \n test_variant\n \n \n\n\n from base\n\n), fields as (\n\n select \t\n cast(activity_date as \n timestamp\n) as activity_timestamp,\n activity_type_id,\n campaign_id,\n campaign_run_id,\n category as bounce_category,\n choice_number,\n details,\n email as email_address,\n email_template_id,\n id as activity_id,\n lead_id,\n primary_attribute_value,\n primary_attribute_value_id,\n step_id,\n subcategory as bounce_subcategory\n from macro\n\n), surrogate as (\n\n select \n *,\n to_hex(md5(cast(coalesce(cast(primary_attribute_value_id as \n string\n), '') || '-' || coalesce(cast(campaign_id as \n string\n), '') || '-' || coalesce(cast(campaign_run_id as \n string\n), '') || '-' || coalesce(cast(lead_id as \n string\n), '') as \n string\n))) as email_send_id\n from fields\n\n)\n\nselect *\nfrom surrogate", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_email_bounced`"}, "model.marketo_source.stg_marketo__activity_change_data_value": {"raw_sql": "with base as (\n\n select *\n from {{ ref('stg_marketo__activity_change_data_value_tmp') }}\n\n), macro as (\n\n select \n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_marketo__activity_change_data_value_tmp')),\n staging_columns=get_activity_change_data_value_columns()\n )\n }}\n from base\n\n), fields as (\n\n select \n cast(activity_date as {{ dbt_utils.type_timestamp() }}) as activity_timestamp,\n activity_type_id,\n api_method_name,\n campaign_id,\n id as activity_id,\n lead_id,\n modifying_user as modifying_user_id,\n new_value,\n old_value,\n primary_attribute_value,\n primary_attribute_value_id,\n reason as change_reason,\n request_id,\n source as change_source\n from macro\n\n)\n\nselect *\nfrom fields", "compiled": true, "resource_type": "model", "depends_on": {"macros": ["macro.marketo_source.get_activity_change_data_value_columns", "macro.fivetran_utils.fill_staging_columns", "macro.dbt_utils.type_timestamp"], "nodes": ["model.marketo_source.stg_marketo__activity_change_data_value_tmp", "model.marketo_source.stg_marketo__activity_change_data_value_tmp"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "materialized": "table", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_marketo_source", "fqn": ["marketo_source", "stg_marketo__activity_change_data_value"], "unique_id": "model.marketo_source.stg_marketo__activity_change_data_value", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "stg_marketo__activity_change_data_value.sql", "original_file_path": "models/stg_marketo__activity_change_data_value.sql", "name": "stg_marketo__activity_change_data_value", "alias": "stg_marketo__activity_change_data_value", "checksum": {"name": "sha256", "checksum": "5dcdfe06eadff1437218011952de25a26df40e1c503e61c4f1b0c630f84dbc7e"}, "tags": [], "refs": [["stg_marketo__activity_change_data_value_tmp"], ["stg_marketo__activity_change_data_value_tmp"]], "sources": [], "metrics": [], "description": "", "columns": {"activity_id": {"name": "activity_id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_timestamp": {"name": "activity_timestamp", "description": "Timestamp of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "api_method_name": {"name": "api_method_name", "description": "API method used for change, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the related campaign, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "change_reason": {"name": "change_reason", "description": "Reason for the data change.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "change_source": {"name": "change_source", "description": "Source of the data change.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "Id of the lead associated to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "modifying_user_id": {"name": "modifying_user_id", "description": "The user who instigated the change, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "new_value": {"name": "new_value", "description": "New value after the change.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "old_value": {"name": "old_value", "description": "Old value before the change.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "Value of the primary attribute.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "ID of the primary attribute field.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "request_id": {"name": "request_id", "description": "ID of the request made.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "docs": {"show": true}, "patch_path": "marketo_source://models/stg_marketo.yml", "compiled_path": "target/compiled/marketo_source/models/stg_marketo__activity_change_data_value.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "marketo_source"}, "created_at": 1665431415.483605, "compiled_sql": "with base as (\n\n select *\n from `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_change_data_value_tmp`\n\n), macro as (\n\n select \n \n cast(null as \n timestamp\n) as \n \n _fivetran_synced\n \n , \n \n \n activity_date\n \n as \n \n activity_date\n \n, \n \n \n activity_type_id\n \n as \n \n activity_type_id\n \n, \n \n \n api_method_name\n \n as \n \n api_method_name\n \n, \n \n \n campaign_id\n \n as \n \n campaign_id\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n lead_id\n \n as \n \n lead_id\n \n, \n \n \n modifying_user\n \n as \n \n modifying_user\n \n, \n \n \n new_value\n \n as \n \n new_value\n \n, \n \n \n old_value\n \n as \n \n old_value\n \n, \n \n \n primary_attribute_value\n \n as \n \n primary_attribute_value\n \n, \n \n \n primary_attribute_value_id\n \n as \n \n primary_attribute_value_id\n \n, \n \n \n reason\n \n as \n \n reason\n \n, \n \n \n request_id\n \n as \n \n request_id\n \n, \n \n \n source\n \n as \n \n source\n \n\n\n\n from base\n\n), fields as (\n\n select \n cast(activity_date as \n timestamp\n) as activity_timestamp,\n activity_type_id,\n api_method_name,\n campaign_id,\n id as activity_id,\n lead_id,\n modifying_user as modifying_user_id,\n new_value,\n old_value,\n primary_attribute_value,\n primary_attribute_value_id,\n reason as change_reason,\n request_id,\n source as change_source\n from macro\n\n)\n\nselect *\nfrom fields", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_change_data_value`"}, "model.marketo_source.stg_marketo__activity_delete_lead": {"raw_sql": "{{ config(enabled=var('marketo__activity_delete_lead_enabled', True)) }}\n\nwith base as (\n\n select *\n from {{ ref('stg_marketo__activity_delete_lead_tmp') }}\n\n), macro as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_marketo__activity_delete_lead_tmp')),\n staging_columns=get_activity_delete_lead_columns()\n )\n }}\n from base\n\n), fields as (\n\n select\n id as activity_id,\n _fivetran_synced,\n cast(activity_date as {{ dbt_utils.type_timestamp() }}) as activity_timestamp,\n activity_type_id,\n campaign as campaign_name,\n campaign_id,\n lead_id,\n primary_attribute_value,\n primary_attribute_value_id\n from macro\n\n)\n\nselect *\nfrom fields", "compiled": true, "resource_type": "model", "depends_on": {"macros": ["macro.marketo_source.get_activity_delete_lead_columns", "macro.fivetran_utils.fill_staging_columns", "macro.dbt_utils.type_timestamp"], "nodes": ["model.marketo_source.stg_marketo__activity_delete_lead_tmp", "model.marketo_source.stg_marketo__activity_delete_lead_tmp"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "materialized": "table", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_marketo_source", "fqn": ["marketo_source", "stg_marketo__activity_delete_lead"], "unique_id": "model.marketo_source.stg_marketo__activity_delete_lead", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "stg_marketo__activity_delete_lead.sql", "original_file_path": "models/stg_marketo__activity_delete_lead.sql", "name": "stg_marketo__activity_delete_lead", "alias": "stg_marketo__activity_delete_lead", "checksum": {"name": "sha256", "checksum": "8eb5c7e34f05dff90d127d7cd8a640b11b286366ab7a685459bc0adcaa29929f"}, "tags": [], "refs": [["stg_marketo__activity_delete_lead_tmp"], ["stg_marketo__activity_delete_lead_tmp"]], "sources": [], "metrics": [], "description": "Table with deleted lead activities", "columns": {"activity_timestamp": {"name": "activity_timestamp", "description": "The timestamp the lead was deleted.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "The ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the campaign related to the activity, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_name": {"name": "campaign_name", "description": "The name of the campaign related to the activity, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_id": {"name": "activity_id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "docs": {"show": true}, "patch_path": "marketo_source://models/stg_marketo.yml", "compiled_path": "target/compiled/marketo_source/models/stg_marketo__activity_delete_lead.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "marketo_source", "enabled": true}, "created_at": 1665431415.508041, "compiled_sql": "\n\nwith base as (\n\n select *\n from `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_delete_lead_tmp`\n\n), macro as (\n\n select\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n activity_date\n \n as \n \n activity_date\n \n, \n \n \n activity_type_id\n \n as \n \n activity_type_id\n \n, \n \n \n campaign\n \n as \n \n campaign\n \n, \n \n \n campaign_id\n \n as \n \n campaign_id\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n lead_id\n \n as \n \n lead_id\n \n, \n \n \n primary_attribute_value\n \n as \n \n primary_attribute_value\n \n, \n \n \n primary_attribute_value_id\n \n as \n \n primary_attribute_value_id\n \n\n\n\n from base\n\n), fields as (\n\n select\n id as activity_id,\n _fivetran_synced,\n cast(activity_date as \n timestamp\n) as activity_timestamp,\n activity_type_id,\n campaign as campaign_name,\n campaign_id,\n lead_id,\n primary_attribute_value,\n primary_attribute_value_id\n from macro\n\n)\n\nselect *\nfrom fields", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_delete_lead`"}, "model.marketo_source.stg_marketo__lead": {"raw_sql": "with base as (\n\n select *\n from {{ ref('stg_marketo__lead_tmp') }}\n\n), leads as (\n\n select\n id as lead_id,\n created_at as created_timestamp,\n updated_at as updated_timestamp,\n {{ dbt_utils.star(from=ref('stg_marketo__lead_tmp'), except=['id', 'created_at', 'updated_at']) }}\n from base\n)\n\nselect *\nfrom leads", "compiled": true, "resource_type": "model", "depends_on": {"macros": ["macro.dbt_utils.star"], "nodes": ["model.marketo_source.stg_marketo__lead_tmp", "model.marketo_source.stg_marketo__lead_tmp"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "materialized": "table", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_marketo_source", "fqn": ["marketo_source", "stg_marketo__lead"], "unique_id": "model.marketo_source.stg_marketo__lead", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "stg_marketo__lead.sql", "original_file_path": "models/stg_marketo__lead.sql", "name": "stg_marketo__lead", "alias": "stg_marketo__lead", "checksum": {"name": "sha256", "checksum": "652f47bc65f7d7a426399bd15cb8c644c79e121c504c992648d44f4c9210941f"}, "tags": [], "refs": [["stg_marketo__lead_tmp"], ["stg_marketo__lead_tmp"]], "sources": [], "metrics": [], "description": "", "columns": {"lead_id": {"name": "lead_id", "description": "ID of the lead.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "created_timestamp": {"name": "created_timestamp", "description": "The timestamp at which each lead object was created.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "updated_timestamp": {"name": "updated_timestamp", "description": "The timestamp at which each lead object was last updated.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "is_deleted": {"name": "is_deleted", "description": "Whether the lead has been deleted.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "is_merged": {"name": "is_merged", "description": "Whether the lead has been merged into another lead.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "merged_into_lead_id": {"name": "merged_into_lead_id", "description": "The ID of the lead into which a lead was merged.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "website": {"name": "website", "description": "Website of the lead.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "docs": {"show": true}, "patch_path": "marketo_source://models/stg_marketo.yml", "compiled_path": "target/compiled/marketo_source/models/stg_marketo__lead.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "marketo_source"}, "created_at": 1665431415.504868, "compiled_sql": "with base as (\n\n select *\n from `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__lead_tmp`\n\n), leads as (\n\n select\n id as lead_id,\n created_at as created_timestamp,\n updated_at as updated_timestamp,\n \n\n `website`\n from base\n)\n\nselect *\nfrom leads", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__lead`"}, "model.marketo_source.stg_marketo__activity_email_delivered": {"raw_sql": "with base as (\n\n select *\n from {{ ref('stg_marketo__activity_email_delivered_tmp') }}\n\n), macro as (\n\n select \n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_marketo__activity_email_delivered_tmp')),\n staging_columns=get_activity_email_delivered_columns()\n )\n }}\n from base\n\n), fields as (\n\n select \n cast(activity_date as {{ dbt_utils.type_timestamp() }}) as activity_timestamp,\n activity_type_id,\n campaign_id,\n campaign_run_id,\n choice_number,\n email_template_id,\n id as activity_id, \n lead_id,\n primary_attribute_value,\n primary_attribute_value_id,\n step_id\n from macro\n\n), surrogate as (\n\n select \n *,\n {{ dbt_utils.surrogate_key(['primary_attribute_value_id','campaign_id','campaign_run_id','lead_id']) }} as email_send_id\n from fields\n\n)\n\nselect *\nfrom surrogate", "compiled": true, "resource_type": "model", "depends_on": {"macros": ["macro.marketo_source.get_activity_email_delivered_columns", "macro.fivetran_utils.fill_staging_columns", "macro.dbt_utils.type_timestamp", "macro.dbt_utils.surrogate_key"], "nodes": ["model.marketo_source.stg_marketo__activity_email_delivered_tmp", "model.marketo_source.stg_marketo__activity_email_delivered_tmp"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "materialized": "table", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_marketo_source", "fqn": ["marketo_source", "stg_marketo__activity_email_delivered"], "unique_id": "model.marketo_source.stg_marketo__activity_email_delivered", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "stg_marketo__activity_email_delivered.sql", "original_file_path": "models/stg_marketo__activity_email_delivered.sql", "name": "stg_marketo__activity_email_delivered", "alias": "stg_marketo__activity_email_delivered", "checksum": {"name": "sha256", "checksum": "86d9dbc741c9799dbca46e03b6f313a7d8e44bf57fc46a9b8b7c4415515b0e94"}, "tags": [], "refs": [["stg_marketo__activity_email_delivered_tmp"], ["stg_marketo__activity_email_delivered_tmp"]], "sources": [], "metrics": [], "description": "", "columns": {"activity_id": {"name": "activity_id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_timestamp": {"name": "activity_timestamp", "description": "The timestamp the email was delivered.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "The ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the email's campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_run_id": {"name": "campaign_run_id", "description": "The ID of the email's campaign run.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "choice_number": {"name": "choice_number", "description": "The choice number of the current step that triggered the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_send_id": {"name": "email_send_id", "description": "The inferred ID for the email sent. This is created by concatenating primary_attribute_value_id, campaign_id, campaign_run_id, and lead_id.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_id": {"name": "email_template_id", "description": "The ID of the email's template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "step_id": {"name": "step_id", "description": "The Id of the current step in the flow.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "docs": {"show": true}, "patch_path": "marketo_source://models/stg_marketo.yml", "compiled_path": "target/compiled/marketo_source/models/stg_marketo__activity_email_delivered.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "marketo_source"}, "created_at": 1665431415.4902751, "compiled_sql": "with base as (\n\n select *\n from `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_email_delivered_tmp`\n\n), macro as (\n\n select \n \n cast(null as \n timestamp\n) as \n \n _fivetran_synced\n \n , \n \n \n activity_date\n \n as \n \n activity_date\n \n, \n \n \n activity_type_id\n \n as \n \n activity_type_id\n \n, \n \n \n campaign_id\n \n as \n \n campaign_id\n \n, \n \n \n campaign_run_id\n \n as \n \n campaign_run_id\n \n, \n \n \n choice_number\n \n as \n \n choice_number\n \n, \n \n \n email_template_id\n \n as \n \n email_template_id\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n lead_id\n \n as \n \n lead_id\n \n, \n \n \n primary_attribute_value\n \n as \n \n primary_attribute_value\n \n, \n \n \n primary_attribute_value_id\n \n as \n \n primary_attribute_value_id\n \n, \n \n \n step_id\n \n as \n \n step_id\n \n, \n cast(null as \n int64\n) as \n \n test_variant\n \n \n\n\n from base\n\n), fields as (\n\n select \n cast(activity_date as \n timestamp\n) as activity_timestamp,\n activity_type_id,\n campaign_id,\n campaign_run_id,\n choice_number,\n email_template_id,\n id as activity_id, \n lead_id,\n primary_attribute_value,\n primary_attribute_value_id,\n step_id\n from macro\n\n), surrogate as (\n\n select \n *,\n to_hex(md5(cast(coalesce(cast(primary_attribute_value_id as \n string\n), '') || '-' || coalesce(cast(campaign_id as \n string\n), '') || '-' || coalesce(cast(campaign_run_id as \n string\n), '') || '-' || coalesce(cast(lead_id as \n string\n), '') as \n string\n))) as email_send_id\n from fields\n\n)\n\nselect *\nfrom surrogate", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_email_delivered`"}, "model.marketo_source.stg_marketo__activity_click_email": {"raw_sql": "with base as (\n\n select *\n from {{ ref('stg_marketo__activity_click_email_tmp') }}\n\n), macro as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_marketo__activity_click_email_tmp')),\n staging_columns=get_activity_click_email_columns()\n )\n }}\n from base\n\n), fields as (\n\n select \n cast(activity_date as {{ dbt_utils.type_timestamp() }}) as activity_timestamp,\n activity_type_id,\n campaign_id,\n campaign_run_id,\n choice_number,\n device as click_device,\n email_template_id,\n id as activity_id,\n is_mobile_device,\n lead_id,\n link as click_link_url,\n platform as user_platform,\n primary_attribute_value,\n primary_attribute_value_id,\n step_id,\n user_agent\n from macro\n\n), surrogate as (\n\n select \n *,\n {{ dbt_utils.surrogate_key(['primary_attribute_value_id','campaign_id','campaign_run_id','lead_id']) }} as email_send_id\n from fields\n\n)\n\nselect *\nfrom surrogate", "compiled": true, "resource_type": "model", "depends_on": {"macros": ["macro.marketo_source.get_activity_click_email_columns", "macro.fivetran_utils.fill_staging_columns", "macro.dbt_utils.type_timestamp", "macro.dbt_utils.surrogate_key"], "nodes": ["model.marketo_source.stg_marketo__activity_click_email_tmp", "model.marketo_source.stg_marketo__activity_click_email_tmp"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "materialized": "table", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_marketo_source", "fqn": ["marketo_source", "stg_marketo__activity_click_email"], "unique_id": "model.marketo_source.stg_marketo__activity_click_email", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "stg_marketo__activity_click_email.sql", "original_file_path": "models/stg_marketo__activity_click_email.sql", "name": "stg_marketo__activity_click_email", "alias": "stg_marketo__activity_click_email", "checksum": {"name": "sha256", "checksum": "30af913e94ff0dbdd3ef6f9a003d1bb20df6d3ef74a8a0af139a092546a504c2"}, "tags": [], "refs": [["stg_marketo__activity_click_email_tmp"], ["stg_marketo__activity_click_email_tmp"]], "sources": [], "metrics": [], "description": "", "columns": {"activity_id": {"name": "activity_id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_timestamp": {"name": "activity_timestamp", "description": "Timestamp of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the related campaign, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_run_id": {"name": "campaign_run_id", "description": "The ID of the email's campaign run.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "choice_number": {"name": "choice_number", "description": "The choice number of the current step that triggered the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "click_device": {"name": "click_device", "description": "The device type the activity occurred on.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "click_link_url": {"name": "click_link_url", "description": "The URL of the link clicked.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_send_id": {"name": "email_send_id", "description": "The inferred ID for the email sent. This is created by concatenating primary_attribute_value_id, campaign_id, campaign_run_id, and lead_id.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_id": {"name": "email_template_id", "description": "The ID of the email's template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "is_mobile_device": {"name": "is_mobile_device", "description": "Whether the activity occurred on a mobile device.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "step_id": {"name": "step_id", "description": "The Id of the current step in the flow.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "user_agent": {"name": "user_agent", "description": "The Web browser user agent information obtained when the lead clicked the email link.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "user_platform": {"name": "user_platform", "description": "The user's operating platform.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "docs": {"show": true}, "patch_path": "marketo_source://models/stg_marketo.yml", "compiled_path": "target/compiled/marketo_source/models/stg_marketo__activity_click_email.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "marketo_source"}, "created_at": 1665431415.486193, "compiled_sql": "with base as (\n\n select *\n from `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_click_email_tmp`\n\n), macro as (\n\n select\n \n cast(null as \n timestamp\n) as \n \n _fivetran_synced\n \n , \n \n \n activity_date\n \n as \n \n activity_date\n \n, \n \n \n activity_type_id\n \n as \n \n activity_type_id\n \n, \n \n \n campaign_id\n \n as \n \n campaign_id\n \n, \n \n \n campaign_run_id\n \n as \n \n campaign_run_id\n \n, \n \n \n choice_number\n \n as \n \n choice_number\n \n, \n \n \n device\n \n as \n \n device\n \n, \n \n \n email_template_id\n \n as \n \n email_template_id\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n is_mobile_device\n \n as \n \n is_mobile_device\n \n, \n \n \n lead_id\n \n as \n \n lead_id\n \n, \n \n \n link\n \n as \n \n link\n \n, \n cast(null as \n string\n) as \n \n link_id\n \n , \n \n \n platform\n \n as \n \n platform\n \n, \n \n \n primary_attribute_value\n \n as \n \n primary_attribute_value\n \n, \n \n \n primary_attribute_value_id\n \n as \n \n primary_attribute_value_id\n \n, \n \n \n step_id\n \n as \n \n step_id\n \n, \n cast(null as \n int64\n) as \n \n test_variant\n \n , \n \n \n user_agent\n \n as \n \n user_agent\n \n\n\n\n from base\n\n), fields as (\n\n select \n cast(activity_date as \n timestamp\n) as activity_timestamp,\n activity_type_id,\n campaign_id,\n campaign_run_id,\n choice_number,\n device as click_device,\n email_template_id,\n id as activity_id,\n is_mobile_device,\n lead_id,\n link as click_link_url,\n platform as user_platform,\n primary_attribute_value,\n primary_attribute_value_id,\n step_id,\n user_agent\n from macro\n\n), surrogate as (\n\n select \n *,\n to_hex(md5(cast(coalesce(cast(primary_attribute_value_id as \n string\n), '') || '-' || coalesce(cast(campaign_id as \n string\n), '') || '-' || coalesce(cast(campaign_run_id as \n string\n), '') || '-' || coalesce(cast(lead_id as \n string\n), '') as \n string\n))) as email_send_id\n from fields\n\n)\n\nselect *\nfrom surrogate", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_click_email`"}, "model.marketo_source.stg_marketo__lead_describe": {"raw_sql": "with base as (\n\n select *\n from {{ ref('stg_marketo__lead_describe_tmp') }}\n\n), macro as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_marketo__lead_describe_tmp')),\n staging_columns=get_lead_describe_columns()\n )\n }}\n from base\n\n), fields as (\n\n select\n data_type,\n display_name,\n id as lead_describe_id,\n length as field_max_length,\n restname as rest_name,\n restread_only as is_rest_readonly,\n soapname as soap_name,\n soapread_only as is_soap_readonly\n from macro\n\n), regex as (\n\n select \n *,\n case\n when rest_name like '%\\\\_\\\\_c%' then lower(rest_name)\n else ltrim(lower(regexp_replace(rest_name, '[A-Z]','_\\\\0')),'_')\n end as rest_name_xf\n from fields\n\n)\n\nselect *\nfrom regex", "compiled": true, "resource_type": "model", "depends_on": {"macros": ["macro.marketo_source.get_lead_describe_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": ["model.marketo_source.stg_marketo__lead_describe_tmp", "model.marketo_source.stg_marketo__lead_describe_tmp"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "materialized": "table", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_marketo_source", "fqn": ["marketo_source", "stg_marketo__lead_describe"], "unique_id": "model.marketo_source.stg_marketo__lead_describe", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "stg_marketo__lead_describe.sql", "original_file_path": "models/stg_marketo__lead_describe.sql", "name": "stg_marketo__lead_describe", "alias": "stg_marketo__lead_describe", "checksum": {"name": "sha256", "checksum": "038705eae4a2758a0567f5478ba0f53bf323c5bddbfc4b4995df10573a29de2d"}, "tags": [], "refs": [["stg_marketo__lead_describe_tmp"], ["stg_marketo__lead_describe_tmp"]], "sources": [], "metrics": [], "description": "", "columns": {"lead_describe_id": {"name": "lead_describe_id", "description": "ID of the description.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "data_type": {"name": "data_type", "description": "Datatype of the field.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "display_name": {"name": "display_name", "description": "UI display-name of the field.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "field_max_length": {"name": "field_max_length", "description": "Max length of the field. Only applicable to text, string, and text area.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "is_rest_readonly": {"name": "is_rest_readonly", "description": "Whether the field is only available via the REST API.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "is_soap_readonly": {"name": "is_soap_readonly", "description": "Whether the field is only available via the SOAP API.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "rest_name": {"name": "rest_name", "description": "Description of REST API usage attributes in camel case.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "rest_name_xf": {"name": "rest_name_xf", "description": "Description of REST API usage attributes in snake case.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "soap_name": {"name": "soap_name", "description": "Description of SOAP API usage attributes.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "docs": {"show": true}, "patch_path": "marketo_source://models/stg_marketo.yml", "compiled_path": "target/compiled/marketo_source/models/stg_marketo__lead_describe.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "marketo_source"}, "created_at": 1665431415.503701, "compiled_sql": "with base as (\n\n select *\n from `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__lead_describe_tmp`\n\n), macro as (\n\n select\n \n cast(null as \n timestamp\n) as \n \n _fivetran_synced\n \n , \n \n \n data_type\n \n as \n \n data_type\n \n, \n \n \n display_name\n \n as \n \n display_name\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n length\n \n as \n \n length\n \n, \n \n \n restname\n \n as \n \n restname\n \n, \n \n \n restread_only\n \n as \n \n restread_only\n \n, \n \n \n soapname\n \n as \n \n soapname\n \n, \n \n \n soapread_only\n \n as \n \n soapread_only\n \n\n\n\n from base\n\n), fields as (\n\n select\n data_type,\n display_name,\n id as lead_describe_id,\n length as field_max_length,\n restname as rest_name,\n restread_only as is_rest_readonly,\n soapname as soap_name,\n soapread_only as is_soap_readonly\n from macro\n\n), regex as (\n\n select \n *,\n case\n when rest_name like '%\\\\_\\\\_c%' then lower(rest_name)\n else ltrim(lower(regexp_replace(rest_name, '[A-Z]','_\\\\0')),'_')\n end as rest_name_xf\n from fields\n\n)\n\nselect *\nfrom regex", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__lead_describe`"}, "model.marketo_source.stg_marketo__activity_unsubscribe_email": {"raw_sql": "with base as (\n\n select *\n from {{ ref('stg_marketo__activity_unsubscribe_email_tmp') }}\n\n), macro as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_marketo__activity_unsubscribe_email_tmp')),\n staging_columns=get_activity_unsubscribe_email_columns()\n )\n }}\n from base\n\n), fields as (\n\n select \t\n cast(activity_date as {{ dbt_utils.type_timestamp() }}) as activity_timestamp,\n activity_type_id,\n campaign_id,\n campaign_run_id,\n client_ip_address,\n email_template_id,\n form_fields,\n id as activity_id,\n lead_id,\n primary_attribute_value,\n primary_attribute_value_id,\n query_parameters,\n referrer_url,\n user_agent,\n webform_id,\n webpage_id\n from macro\n\n), surrogate as (\n\n select \n *,\n {{ dbt_utils.surrogate_key(['primary_attribute_value_id','campaign_id','campaign_run_id','lead_id']) }} as email_send_id\n from fields\n\n)\n\nselect *\nfrom surrogate", "compiled": true, "resource_type": "model", "depends_on": {"macros": ["macro.marketo_source.get_activity_unsubscribe_email_columns", "macro.fivetran_utils.fill_staging_columns", "macro.dbt_utils.type_timestamp", "macro.dbt_utils.surrogate_key"], "nodes": ["model.marketo_source.stg_marketo__activity_unsubscribe_email_tmp", "model.marketo_source.stg_marketo__activity_unsubscribe_email_tmp"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "materialized": "table", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_marketo_source", "fqn": ["marketo_source", "stg_marketo__activity_unsubscribe_email"], "unique_id": "model.marketo_source.stg_marketo__activity_unsubscribe_email", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "stg_marketo__activity_unsubscribe_email.sql", "original_file_path": "models/stg_marketo__activity_unsubscribe_email.sql", "name": "stg_marketo__activity_unsubscribe_email", "alias": "stg_marketo__activity_unsubscribe_email", "checksum": {"name": "sha256", "checksum": "a009a5962818d3f9676e131d5d0ddea3948353e3688af91a6d18418859a4ace3"}, "tags": [], "refs": [["stg_marketo__activity_unsubscribe_email_tmp"], ["stg_marketo__activity_unsubscribe_email_tmp"]], "sources": [], "metrics": [], "description": "", "columns": {"activity_id": {"name": "activity_id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_timestamp": {"name": "activity_timestamp", "description": "The timestamp the lead unsubscribed.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "The ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the email's campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_run_id": {"name": "campaign_run_id", "description": "The ID of the email's campaign run.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "client_ip_address": {"name": "client_ip_address", "description": "The IP address of the client that unsubscribed.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_send_id": {"name": "email_send_id", "description": "The inferred ID for the email sent. This is created by concatenating primary_attribute_value_id, campaign_id, campaign_run_id, and lead_id.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_id": {"name": "email_template_id", "description": "The ID of the email's template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "form_fields": {"name": "form_fields", "description": "The query parameters contained within the URL.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "query_parameters": {"name": "query_parameters", "description": "The query parameters contained within the URL.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "referrer_url": {"name": "referrer_url", "description": "The URL of the referrer used to identify where the form visit originated from.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "user_agent": {"name": "user_agent", "description": "The web browser user agent information obtained when the lead unsubscribed.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "webform_id": {"name": "webform_id", "description": "The ID of the unsubscribe web page.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "webpage_id": {"name": "webpage_id", "description": "The ID of the unsubscribe web form.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "docs": {"show": true}, "patch_path": "marketo_source://models/stg_marketo.yml", "compiled_path": "target/compiled/marketo_source/models/stg_marketo__activity_unsubscribe_email.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "marketo_source"}, "created_at": 1665431415.49668, "compiled_sql": "with base as (\n\n select *\n from `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_unsubscribe_email_tmp`\n\n), macro as (\n\n select\n \n cast(null as \n timestamp\n) as \n \n _fivetran_synced\n \n , \n \n \n activity_date\n \n as \n \n activity_date\n \n, \n \n \n activity_type_id\n \n as \n \n activity_type_id\n \n, \n \n \n campaign_id\n \n as \n \n campaign_id\n \n, \n \n \n campaign_run_id\n \n as \n \n campaign_run_id\n \n, \n \n \n client_ip_address\n \n as \n \n client_ip_address\n \n, \n \n \n email_template_id\n \n as \n \n email_template_id\n \n, \n \n \n form_fields\n \n as \n \n form_fields\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n lead_id\n \n as \n \n lead_id\n \n, \n \n \n primary_attribute_value\n \n as \n \n primary_attribute_value\n \n, \n \n \n primary_attribute_value_id\n \n as \n \n primary_attribute_value_id\n \n, \n \n \n query_parameters\n \n as \n \n query_parameters\n \n, \n \n \n referrer_url\n \n as \n \n referrer_url\n \n, \n cast(null as \n int64\n) as \n \n test_variant\n \n , \n \n \n user_agent\n \n as \n \n user_agent\n \n, \n \n \n webform_id\n \n as \n \n webform_id\n \n, \n \n \n webpage_id\n \n as \n \n webpage_id\n \n\n\n\n from base\n\n), fields as (\n\n select \t\n cast(activity_date as \n timestamp\n) as activity_timestamp,\n activity_type_id,\n campaign_id,\n campaign_run_id,\n client_ip_address,\n email_template_id,\n form_fields,\n id as activity_id,\n lead_id,\n primary_attribute_value,\n primary_attribute_value_id,\n query_parameters,\n referrer_url,\n user_agent,\n webform_id,\n webpage_id\n from macro\n\n), surrogate as (\n\n select \n *,\n to_hex(md5(cast(coalesce(cast(primary_attribute_value_id as \n string\n), '') || '-' || coalesce(cast(campaign_id as \n string\n), '') || '-' || coalesce(cast(campaign_run_id as \n string\n), '') || '-' || coalesce(cast(lead_id as \n string\n), '') as \n string\n))) as email_send_id\n from fields\n\n)\n\nselect *\nfrom surrogate", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_unsubscribe_email`"}, "model.marketo_source.stg_marketo__activity_email_delivered_tmp": {"raw_sql": "select *\nfrom {{ var('activity_email_delivered') }}", "compiled": true, "resource_type": "model", "depends_on": {"macros": [], "nodes": ["source.marketo_source.marketo.activity_email_delivered"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "materialized": "view", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_marketo_source", "fqn": ["marketo_source", "tmp", "stg_marketo__activity_email_delivered_tmp"], "unique_id": "model.marketo_source.stg_marketo__activity_email_delivered_tmp", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "tmp/stg_marketo__activity_email_delivered_tmp.sql", "original_file_path": "models/tmp/stg_marketo__activity_email_delivered_tmp.sql", "name": "stg_marketo__activity_email_delivered_tmp", "alias": "stg_marketo__activity_email_delivered_tmp", "checksum": {"name": "sha256", "checksum": "619861b37833addf40ae386dea3dd084ea60309b183bad77b540df75c10b6a11"}, "tags": [], "refs": [], "sources": [["marketo", "activity_email_delivered"]], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/tmp/stg_marketo__activity_email_delivered_tmp.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "marketo_source"}, "created_at": 1665431415.39519, "compiled_sql": "select *\nfrom `dbt-package-testing`.`marketo_source_integration_tests`.`marketo_activity_email_delivered_data`", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_email_delivered_tmp`"}, "model.marketo_source.stg_marketo__activity_click_email_tmp": {"raw_sql": "select *\nfrom {{ var('activity_click_email') }}", "compiled": true, "resource_type": "model", "depends_on": {"macros": [], "nodes": ["source.marketo_source.marketo.activity_click_email"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "materialized": "view", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_marketo_source", "fqn": ["marketo_source", "tmp", "stg_marketo__activity_click_email_tmp"], "unique_id": "model.marketo_source.stg_marketo__activity_click_email_tmp", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "tmp/stg_marketo__activity_click_email_tmp.sql", "original_file_path": "models/tmp/stg_marketo__activity_click_email_tmp.sql", "name": "stg_marketo__activity_click_email_tmp", "alias": "stg_marketo__activity_click_email_tmp", "checksum": {"name": "sha256", "checksum": "0e028b0617b3e65df31014efeebb7a2d87b9aab9476740575d4fe7f873a77ff4"}, "tags": [], "refs": [], "sources": [["marketo", "activity_click_email"]], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/tmp/stg_marketo__activity_click_email_tmp.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "marketo_source"}, "created_at": 1665431415.401097, "compiled_sql": "select *\nfrom `dbt-package-testing`.`marketo_source_integration_tests`.`marketo_activity_click_email_data`", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_click_email_tmp`"}, "model.marketo_source.stg_marketo__lead_describe_tmp": {"raw_sql": "select *\nfrom {{ var('lead_describe') }}", "compiled": true, "resource_type": "model", "depends_on": {"macros": [], "nodes": ["source.marketo_source.marketo.lead_describe"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "materialized": "view", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_marketo_source", "fqn": ["marketo_source", "tmp", "stg_marketo__lead_describe_tmp"], "unique_id": "model.marketo_source.stg_marketo__lead_describe_tmp", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "tmp/stg_marketo__lead_describe_tmp.sql", "original_file_path": "models/tmp/stg_marketo__lead_describe_tmp.sql", "name": "stg_marketo__lead_describe_tmp", "alias": "stg_marketo__lead_describe_tmp", "checksum": {"name": "sha256", "checksum": "c61773bfab28a87cda9cdeea526fd4862e1ed4e4a0b81f433f9f1a867d76c9d1"}, "tags": [], "refs": [], "sources": [["marketo", "lead_describe"]], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/tmp/stg_marketo__lead_describe_tmp.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "marketo_source"}, "created_at": 1665431415.408295, "compiled_sql": "select *\nfrom `dbt-package-testing`.`marketo_source_integration_tests`.`marketo_lead_describe_data`", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__lead_describe_tmp`"}, "model.marketo_source.stg_marketo__activity_delete_lead_tmp": {"raw_sql": "{{ config(enabled=var('marketo__activity_delete_lead_enabled', True)) }}\n\nselect *\nfrom {{ var('activity_delete_lead') }}", "compiled": true, "resource_type": "model", "depends_on": {"macros": [], "nodes": ["source.marketo_source.marketo.activity_delete_lead"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "materialized": "view", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_marketo_source", "fqn": ["marketo_source", "tmp", "stg_marketo__activity_delete_lead_tmp"], "unique_id": "model.marketo_source.stg_marketo__activity_delete_lead_tmp", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "tmp/stg_marketo__activity_delete_lead_tmp.sql", "original_file_path": "models/tmp/stg_marketo__activity_delete_lead_tmp.sql", "name": "stg_marketo__activity_delete_lead_tmp", "alias": "stg_marketo__activity_delete_lead_tmp", "checksum": {"name": "sha256", "checksum": "fffb76ce387a28ae21f4d7c802403c6f1c0c8d9c19f53096b02baa7a194fb8fc"}, "tags": [], "refs": [], "sources": [["marketo", "activity_delete_lead"]], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/tmp/stg_marketo__activity_delete_lead_tmp.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "marketo_source", "enabled": true}, "created_at": 1665431415.411201, "compiled_sql": "\n\nselect *\nfrom `dbt-package-testing`.`marketo_source_integration_tests`.`marketo_activity_delete_lead_data`", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_delete_lead_tmp`"}, "model.marketo_source.stg_marketo__activity_change_data_value_tmp": {"raw_sql": "select *\nfrom {{ var('activity_change_data_value') }}", "compiled": true, "resource_type": "model", "depends_on": {"macros": [], "nodes": ["source.marketo_source.marketo.activity_change_data_value"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "materialized": "view", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_marketo_source", "fqn": ["marketo_source", "tmp", "stg_marketo__activity_change_data_value_tmp"], "unique_id": "model.marketo_source.stg_marketo__activity_change_data_value_tmp", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "tmp/stg_marketo__activity_change_data_value_tmp.sql", "original_file_path": "models/tmp/stg_marketo__activity_change_data_value_tmp.sql", "name": "stg_marketo__activity_change_data_value_tmp", "alias": "stg_marketo__activity_change_data_value_tmp", "checksum": {"name": "sha256", "checksum": "1c0163494dff29680a332b778533c3e931ecee3b5d035e3fe0aee2e8aafea58c"}, "tags": [], "refs": [], "sources": [["marketo", "activity_change_data_value"]], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/tmp/stg_marketo__activity_change_data_value_tmp.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "marketo_source"}, "created_at": 1665431415.414386, "compiled_sql": "select *\nfrom `dbt-package-testing`.`marketo_source_integration_tests`.`marketo_activity_change_data_value_data`", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_change_data_value_tmp`"}, "model.marketo_source.stg_marketo__activity_email_bounced_tmp": {"raw_sql": "select *\nfrom {{ var('activity_email_bounced') }}", "compiled": true, "resource_type": "model", "depends_on": {"macros": [], "nodes": ["source.marketo_source.marketo.activity_email_bounced"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "materialized": "view", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_marketo_source", "fqn": ["marketo_source", "tmp", "stg_marketo__activity_email_bounced_tmp"], "unique_id": "model.marketo_source.stg_marketo__activity_email_bounced_tmp", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "tmp/stg_marketo__activity_email_bounced_tmp.sql", "original_file_path": "models/tmp/stg_marketo__activity_email_bounced_tmp.sql", "name": "stg_marketo__activity_email_bounced_tmp", "alias": "stg_marketo__activity_email_bounced_tmp", "checksum": {"name": "sha256", "checksum": "785d1381d31052e8bad524afaa3e48e3fb52cea207fe4830ce4f0394546961c7"}, "tags": [], "refs": [], "sources": [["marketo", "activity_email_bounced"]], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/tmp/stg_marketo__activity_email_bounced_tmp.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "marketo_source"}, "created_at": 1665431415.417156, "compiled_sql": "select *\nfrom `dbt-package-testing`.`marketo_source_integration_tests`.`marketo_activity_email_bounced_data`", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_email_bounced_tmp`"}, "model.marketo_source.stg_marketo__activity_open_email_tmp": {"raw_sql": "select *\nfrom {{ var('activity_open_email') }}", "compiled": true, "resource_type": "model", "depends_on": {"macros": [], "nodes": ["source.marketo_source.marketo.activity_open_email"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "materialized": "view", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_marketo_source", "fqn": ["marketo_source", "tmp", "stg_marketo__activity_open_email_tmp"], "unique_id": "model.marketo_source.stg_marketo__activity_open_email_tmp", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "tmp/stg_marketo__activity_open_email_tmp.sql", "original_file_path": "models/tmp/stg_marketo__activity_open_email_tmp.sql", "name": "stg_marketo__activity_open_email_tmp", "alias": "stg_marketo__activity_open_email_tmp", "checksum": {"name": "sha256", "checksum": "3ba57512b86948f0be15cbbaf8dd492df48e602cc92cfe971134e0c27a457b1b"}, "tags": [], "refs": [], "sources": [["marketo", "activity_open_email"]], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/tmp/stg_marketo__activity_open_email_tmp.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "marketo_source"}, "created_at": 1665431415.420036, "compiled_sql": "select *\nfrom `dbt-package-testing`.`marketo_source_integration_tests`.`marketo_activity_open_email_data`", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_open_email_tmp`"}, "model.marketo_source.stg_marketo__activity_merge_leads_tmp": {"raw_sql": "select *\nfrom {{ var('activity_merge_leads') }}", "compiled": true, "resource_type": "model", "depends_on": {"macros": [], "nodes": ["source.marketo_source.marketo.activity_merge_leads"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "materialized": "view", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_marketo_source", "fqn": ["marketo_source", "tmp", "stg_marketo__activity_merge_leads_tmp"], "unique_id": "model.marketo_source.stg_marketo__activity_merge_leads_tmp", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "tmp/stg_marketo__activity_merge_leads_tmp.sql", "original_file_path": "models/tmp/stg_marketo__activity_merge_leads_tmp.sql", "name": "stg_marketo__activity_merge_leads_tmp", "alias": "stg_marketo__activity_merge_leads_tmp", "checksum": {"name": "sha256", "checksum": "390ca68fd4496684358f31732a6736a812e0d5ab911ed03b55df66c037536680"}, "tags": [], "refs": [], "sources": [["marketo", "activity_merge_leads"]], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/tmp/stg_marketo__activity_merge_leads_tmp.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "marketo_source"}, "created_at": 1665431415.4233868, "compiled_sql": "select *\nfrom `dbt-package-testing`.`marketo_source_integration_tests`.`marketo_activity_merge_leads_data`", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_merge_leads_tmp`"}, "model.marketo_source.stg_marketo__activity_send_email_tmp": {"raw_sql": "select *\nfrom {{ var('activity_send_email') }}", "compiled": true, "resource_type": "model", "depends_on": {"macros": [], "nodes": ["source.marketo_source.marketo.activity_send_email"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "materialized": "view", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_marketo_source", "fqn": ["marketo_source", "tmp", "stg_marketo__activity_send_email_tmp"], "unique_id": "model.marketo_source.stg_marketo__activity_send_email_tmp", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "tmp/stg_marketo__activity_send_email_tmp.sql", "original_file_path": "models/tmp/stg_marketo__activity_send_email_tmp.sql", "name": "stg_marketo__activity_send_email_tmp", "alias": "stg_marketo__activity_send_email_tmp", "checksum": {"name": "sha256", "checksum": "18970ad238a0307944650200bac20c3d13f8b502c79a9dfc50f4afff40aa56bf"}, "tags": [], "refs": [], "sources": [["marketo", "activity_send_email"]], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/tmp/stg_marketo__activity_send_email_tmp.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "marketo_source"}, "created_at": 1665431415.429409, "compiled_sql": "select *\nfrom `dbt-package-testing`.`marketo_source_integration_tests`.`marketo_activity_send_email_data`", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_send_email_tmp`"}, "model.marketo_source.stg_marketo__email_template_history_tmp": {"raw_sql": "select *\nfrom {{ var('email_template_history') }}", "compiled": true, "resource_type": "model", "depends_on": {"macros": [], "nodes": ["source.marketo_source.marketo.email_template_history"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "materialized": "view", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_marketo_source", "fqn": ["marketo_source", "tmp", "stg_marketo__email_template_history_tmp"], "unique_id": "model.marketo_source.stg_marketo__email_template_history_tmp", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "tmp/stg_marketo__email_template_history_tmp.sql", "original_file_path": "models/tmp/stg_marketo__email_template_history_tmp.sql", "name": "stg_marketo__email_template_history_tmp", "alias": "stg_marketo__email_template_history_tmp", "checksum": {"name": "sha256", "checksum": "1dd1b43a68b211cd3b47dd3281094b8896b621b70e8b2469bf184e028e0dfde9"}, "tags": [], "refs": [], "sources": [["marketo", "email_template_history"]], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/tmp/stg_marketo__email_template_history_tmp.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "marketo_source"}, "created_at": 1665431415.432137, "compiled_sql": "select *\nfrom `dbt-package-testing`.`marketo_source_integration_tests`.`marketo_email_template_history_data`", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__email_template_history_tmp`"}, "model.marketo_source.stg_marketo__activity_unsubscribe_email_tmp": {"raw_sql": "select *\nfrom {{ var('activity_unsubscribe_email') }}", "compiled": true, "resource_type": "model", "depends_on": {"macros": [], "nodes": ["source.marketo_source.marketo.activity_unsubscribe_email"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "materialized": "view", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_marketo_source", "fqn": ["marketo_source", "tmp", "stg_marketo__activity_unsubscribe_email_tmp"], "unique_id": "model.marketo_source.stg_marketo__activity_unsubscribe_email_tmp", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "tmp/stg_marketo__activity_unsubscribe_email_tmp.sql", "original_file_path": "models/tmp/stg_marketo__activity_unsubscribe_email_tmp.sql", "name": "stg_marketo__activity_unsubscribe_email_tmp", "alias": "stg_marketo__activity_unsubscribe_email_tmp", "checksum": {"name": "sha256", "checksum": "b232d541f777b2cebbc95f76e491b03fed71652efb8f0723ef55d4ca74ef7778"}, "tags": [], "refs": [], "sources": [["marketo", "activity_unsubscribe_email"]], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/tmp/stg_marketo__activity_unsubscribe_email_tmp.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "marketo_source"}, "created_at": 1665431415.434887, "compiled_sql": "select *\nfrom `dbt-package-testing`.`marketo_source_integration_tests`.`marketo_activity_unsubscribe_email_data`", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_unsubscribe_email_tmp`"}, "model.marketo_source.stg_marketo__lead_tmp": {"raw_sql": "select *\nfrom {{ var('lead') }}", "compiled": true, "resource_type": "model", "depends_on": {"macros": [], "nodes": ["source.marketo_source.marketo.lead"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "materialized": "view", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_marketo_source", "fqn": ["marketo_source", "tmp", "stg_marketo__lead_tmp"], "unique_id": "model.marketo_source.stg_marketo__lead_tmp", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "tmp/stg_marketo__lead_tmp.sql", "original_file_path": "models/tmp/stg_marketo__lead_tmp.sql", "name": "stg_marketo__lead_tmp", "alias": "stg_marketo__lead_tmp", "checksum": {"name": "sha256", "checksum": "a41c8a092c451f50cf4357ec0359cb5e54dd5014e43c8635c35ae677b529be16"}, "tags": [], "refs": [], "sources": [["marketo", "lead"]], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/tmp/stg_marketo__lead_tmp.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "marketo_source"}, "created_at": 1665431415.4383402, "compiled_sql": "select *\nfrom `dbt-package-testing`.`marketo_source_integration_tests`.`marketo_lead_data`", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__lead_tmp`"}, "test.marketo_source.unique_stg_marketo__activity_change_data_value_activity_id.7c7047bbcd": {"raw_sql": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "test_metadata": {"name": "unique", "kwargs": {"column_name": "activity_id", "model": "{{ get_where_subquery(ref('stg_marketo__activity_change_data_value')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__activity_change_data_value"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_dbt_test__audit", "fqn": ["marketo_source", "unique_stg_marketo__activity_change_data_value_activity_id"], "unique_id": "test.marketo_source.unique_stg_marketo__activity_change_data_value_activity_id.7c7047bbcd", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "unique_stg_marketo__activity_change_data_value_activity_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "unique_stg_marketo__activity_change_data_value_activity_id", "alias": "unique_stg_marketo__activity_change_data_value_activity_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__activity_change_data_value"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/unique_stg_marketo__activity_change_data_value_activity_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.513497, "compiled_sql": "\n \n \n\nwith dbt_test__target as (\n\n select activity_id as unique_field\n from `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_change_data_value`\n where activity_id is not null\n\n)\n\nselect\n unique_field,\n count(*) as n_records\n\nfrom dbt_test__target\ngroup by unique_field\nhaving count(*) > 1\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "activity_id", "file_key_name": "models.stg_marketo__activity_change_data_value"}, "test.marketo_source.not_null_stg_marketo__activity_change_data_value_activity_id.8ae060d108": {"raw_sql": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "activity_id", "model": "{{ get_where_subquery(ref('stg_marketo__activity_change_data_value')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__activity_change_data_value"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_dbt_test__audit", "fqn": ["marketo_source", "not_null_stg_marketo__activity_change_data_value_activity_id"], "unique_id": "test.marketo_source.not_null_stg_marketo__activity_change_data_value_activity_id.8ae060d108", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "not_null_stg_marketo__activity_change_data_value_activity_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "not_null_stg_marketo__activity_change_data_value_activity_id", "alias": "not_null_stg_marketo__activity_change_data_value_activity_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__activity_change_data_value"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/not_null_stg_marketo__activity_change_data_value_activity_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.514634, "compiled_sql": "\n \n \n\n\n\nselect activity_id\nfrom `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_change_data_value`\nwhere activity_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "activity_id", "file_key_name": "models.stg_marketo__activity_change_data_value"}, "test.marketo_source.unique_stg_marketo__activity_click_email_activity_id.6c599791a0": {"raw_sql": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "test_metadata": {"name": "unique", "kwargs": {"column_name": "activity_id", "model": "{{ get_where_subquery(ref('stg_marketo__activity_click_email')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__activity_click_email"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_dbt_test__audit", "fqn": ["marketo_source", "unique_stg_marketo__activity_click_email_activity_id"], "unique_id": "test.marketo_source.unique_stg_marketo__activity_click_email_activity_id.6c599791a0", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "unique_stg_marketo__activity_click_email_activity_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "unique_stg_marketo__activity_click_email_activity_id", "alias": "unique_stg_marketo__activity_click_email_activity_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__activity_click_email"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/unique_stg_marketo__activity_click_email_activity_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.515618, "compiled_sql": "\n \n \n\nwith dbt_test__target as (\n\n select activity_id as unique_field\n from `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_click_email`\n where activity_id is not null\n\n)\n\nselect\n unique_field,\n count(*) as n_records\n\nfrom dbt_test__target\ngroup by unique_field\nhaving count(*) > 1\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "activity_id", "file_key_name": "models.stg_marketo__activity_click_email"}, "test.marketo_source.not_null_stg_marketo__activity_click_email_activity_id.8e4b4af9fd": {"raw_sql": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "activity_id", "model": "{{ get_where_subquery(ref('stg_marketo__activity_click_email')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__activity_click_email"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_dbt_test__audit", "fqn": ["marketo_source", "not_null_stg_marketo__activity_click_email_activity_id"], "unique_id": "test.marketo_source.not_null_stg_marketo__activity_click_email_activity_id.8e4b4af9fd", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "not_null_stg_marketo__activity_click_email_activity_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "not_null_stg_marketo__activity_click_email_activity_id", "alias": "not_null_stg_marketo__activity_click_email_activity_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__activity_click_email"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/not_null_stg_marketo__activity_click_email_activity_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.516709, "compiled_sql": "\n \n \n\n\n\nselect activity_id\nfrom `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_click_email`\nwhere activity_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "activity_id", "file_key_name": "models.stg_marketo__activity_click_email"}, "test.marketo_source.unique_stg_marketo__activity_email_bounced_activity_id.28833155c3": {"raw_sql": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "test_metadata": {"name": "unique", "kwargs": {"column_name": "activity_id", "model": "{{ get_where_subquery(ref('stg_marketo__activity_email_bounced')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__activity_email_bounced"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_dbt_test__audit", "fqn": ["marketo_source", "unique_stg_marketo__activity_email_bounced_activity_id"], "unique_id": "test.marketo_source.unique_stg_marketo__activity_email_bounced_activity_id.28833155c3", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "unique_stg_marketo__activity_email_bounced_activity_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "unique_stg_marketo__activity_email_bounced_activity_id", "alias": "unique_stg_marketo__activity_email_bounced_activity_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__activity_email_bounced"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/unique_stg_marketo__activity_email_bounced_activity_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.51765, "compiled_sql": "\n \n \n\nwith dbt_test__target as (\n\n select activity_id as unique_field\n from `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_email_bounced`\n where activity_id is not null\n\n)\n\nselect\n unique_field,\n count(*) as n_records\n\nfrom dbt_test__target\ngroup by unique_field\nhaving count(*) > 1\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "activity_id", "file_key_name": "models.stg_marketo__activity_email_bounced"}, "test.marketo_source.not_null_stg_marketo__activity_email_bounced_activity_id.578b8cddf2": {"raw_sql": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "activity_id", "model": "{{ get_where_subquery(ref('stg_marketo__activity_email_bounced')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__activity_email_bounced"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_dbt_test__audit", "fqn": ["marketo_source", "not_null_stg_marketo__activity_email_bounced_activity_id"], "unique_id": "test.marketo_source.not_null_stg_marketo__activity_email_bounced_activity_id.578b8cddf2", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "not_null_stg_marketo__activity_email_bounced_activity_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "not_null_stg_marketo__activity_email_bounced_activity_id", "alias": "not_null_stg_marketo__activity_email_bounced_activity_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__activity_email_bounced"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/not_null_stg_marketo__activity_email_bounced_activity_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.5185862, "compiled_sql": "\n \n \n\n\n\nselect activity_id\nfrom `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_email_bounced`\nwhere activity_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "activity_id", "file_key_name": "models.stg_marketo__activity_email_bounced"}, "test.marketo_source.unique_stg_marketo__activity_email_delivered_activity_id.6f715c1b87": {"raw_sql": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "test_metadata": {"name": "unique", "kwargs": {"column_name": "activity_id", "model": "{{ get_where_subquery(ref('stg_marketo__activity_email_delivered')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__activity_email_delivered"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_dbt_test__audit", "fqn": ["marketo_source", "unique_stg_marketo__activity_email_delivered_activity_id"], "unique_id": "test.marketo_source.unique_stg_marketo__activity_email_delivered_activity_id.6f715c1b87", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "unique_stg_marketo__activity_email_delivered_activity_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "unique_stg_marketo__activity_email_delivered_activity_id", "alias": "unique_stg_marketo__activity_email_delivered_activity_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__activity_email_delivered"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/unique_stg_marketo__activity_email_delivered_activity_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.519525, "compiled_sql": "\n \n \n\nwith dbt_test__target as (\n\n select activity_id as unique_field\n from `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_email_delivered`\n where activity_id is not null\n\n)\n\nselect\n unique_field,\n count(*) as n_records\n\nfrom dbt_test__target\ngroup by unique_field\nhaving count(*) > 1\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "activity_id", "file_key_name": "models.stg_marketo__activity_email_delivered"}, "test.marketo_source.not_null_stg_marketo__activity_email_delivered_activity_id.138e450885": {"raw_sql": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "activity_id", "model": "{{ get_where_subquery(ref('stg_marketo__activity_email_delivered')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__activity_email_delivered"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_dbt_test__audit", "fqn": ["marketo_source", "not_null_stg_marketo__activity_email_delivered_activity_id"], "unique_id": "test.marketo_source.not_null_stg_marketo__activity_email_delivered_activity_id.138e450885", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "not_null_stg_marketo__activity_email_delivered_activity_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "not_null_stg_marketo__activity_email_delivered_activity_id", "alias": "not_null_stg_marketo__activity_email_delivered_activity_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__activity_email_delivered"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/not_null_stg_marketo__activity_email_delivered_activity_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.520591, "compiled_sql": "\n \n \n\n\n\nselect activity_id\nfrom `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_email_delivered`\nwhere activity_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "activity_id", "file_key_name": "models.stg_marketo__activity_email_delivered"}, "test.marketo_source.unique_stg_marketo__activity_open_email_activity_id.d48e7e93e6": {"raw_sql": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "test_metadata": {"name": "unique", "kwargs": {"column_name": "activity_id", "model": "{{ get_where_subquery(ref('stg_marketo__activity_open_email')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__activity_open_email"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_dbt_test__audit", "fqn": ["marketo_source", "unique_stg_marketo__activity_open_email_activity_id"], "unique_id": "test.marketo_source.unique_stg_marketo__activity_open_email_activity_id.d48e7e93e6", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "unique_stg_marketo__activity_open_email_activity_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "unique_stg_marketo__activity_open_email_activity_id", "alias": "unique_stg_marketo__activity_open_email_activity_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__activity_open_email"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/unique_stg_marketo__activity_open_email_activity_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.521523, "compiled_sql": "\n \n \n\nwith dbt_test__target as (\n\n select activity_id as unique_field\n from `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_open_email`\n where activity_id is not null\n\n)\n\nselect\n unique_field,\n count(*) as n_records\n\nfrom dbt_test__target\ngroup by unique_field\nhaving count(*) > 1\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "activity_id", "file_key_name": "models.stg_marketo__activity_open_email"}, "test.marketo_source.not_null_stg_marketo__activity_open_email_activity_id.72e7514396": {"raw_sql": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "activity_id", "model": "{{ get_where_subquery(ref('stg_marketo__activity_open_email')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__activity_open_email"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_dbt_test__audit", "fqn": ["marketo_source", "not_null_stg_marketo__activity_open_email_activity_id"], "unique_id": "test.marketo_source.not_null_stg_marketo__activity_open_email_activity_id.72e7514396", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "not_null_stg_marketo__activity_open_email_activity_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "not_null_stg_marketo__activity_open_email_activity_id", "alias": "not_null_stg_marketo__activity_open_email_activity_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__activity_open_email"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/not_null_stg_marketo__activity_open_email_activity_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.522453, "compiled_sql": "\n \n \n\n\n\nselect activity_id\nfrom `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_open_email`\nwhere activity_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "activity_id", "file_key_name": "models.stg_marketo__activity_open_email"}, "test.marketo_source.unique_stg_marketo__activity_send_email_activity_id.bd25ee45d1": {"raw_sql": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "test_metadata": {"name": "unique", "kwargs": {"column_name": "activity_id", "model": "{{ get_where_subquery(ref('stg_marketo__activity_send_email')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__activity_send_email"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_dbt_test__audit", "fqn": ["marketo_source", "unique_stg_marketo__activity_send_email_activity_id"], "unique_id": "test.marketo_source.unique_stg_marketo__activity_send_email_activity_id.bd25ee45d1", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "unique_stg_marketo__activity_send_email_activity_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "unique_stg_marketo__activity_send_email_activity_id", "alias": "unique_stg_marketo__activity_send_email_activity_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__activity_send_email"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/unique_stg_marketo__activity_send_email_activity_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.52351, "compiled_sql": "\n \n \n\nwith dbt_test__target as (\n\n select activity_id as unique_field\n from `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_send_email`\n where activity_id is not null\n\n)\n\nselect\n unique_field,\n count(*) as n_records\n\nfrom dbt_test__target\ngroup by unique_field\nhaving count(*) > 1\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "activity_id", "file_key_name": "models.stg_marketo__activity_send_email"}, "test.marketo_source.not_null_stg_marketo__activity_send_email_activity_id.4eaf534bc8": {"raw_sql": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "activity_id", "model": "{{ get_where_subquery(ref('stg_marketo__activity_send_email')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__activity_send_email"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_dbt_test__audit", "fqn": ["marketo_source", "not_null_stg_marketo__activity_send_email_activity_id"], "unique_id": "test.marketo_source.not_null_stg_marketo__activity_send_email_activity_id.4eaf534bc8", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "not_null_stg_marketo__activity_send_email_activity_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "not_null_stg_marketo__activity_send_email_activity_id", "alias": "not_null_stg_marketo__activity_send_email_activity_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__activity_send_email"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/not_null_stg_marketo__activity_send_email_activity_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.524441, "compiled_sql": "\n \n \n\n\n\nselect activity_id\nfrom `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_send_email`\nwhere activity_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "activity_id", "file_key_name": "models.stg_marketo__activity_send_email"}, "test.marketo_source.unique_stg_marketo__activity_unsubscribe_email_activity_id.a3bca07e06": {"raw_sql": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "test_metadata": {"name": "unique", "kwargs": {"column_name": "activity_id", "model": "{{ get_where_subquery(ref('stg_marketo__activity_unsubscribe_email')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__activity_unsubscribe_email"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_dbt_test__audit", "fqn": ["marketo_source", "unique_stg_marketo__activity_unsubscribe_email_activity_id"], "unique_id": "test.marketo_source.unique_stg_marketo__activity_unsubscribe_email_activity_id.a3bca07e06", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "unique_stg_marketo__activity_unsubscribe_email_activity_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "unique_stg_marketo__activity_unsubscribe_email_activity_id", "alias": "unique_stg_marketo__activity_unsubscribe_email_activity_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__activity_unsubscribe_email"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/unique_stg_marketo__activity_unsubscribe_email_activity_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.5253718, "compiled_sql": "\n \n \n\nwith dbt_test__target as (\n\n select activity_id as unique_field\n from `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_unsubscribe_email`\n where activity_id is not null\n\n)\n\nselect\n unique_field,\n count(*) as n_records\n\nfrom dbt_test__target\ngroup by unique_field\nhaving count(*) > 1\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "activity_id", "file_key_name": "models.stg_marketo__activity_unsubscribe_email"}, "test.marketo_source.not_null_stg_marketo__activity_unsubscribe_email_activity_id.a31edf42c0": {"raw_sql": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "activity_id", "model": "{{ get_where_subquery(ref('stg_marketo__activity_unsubscribe_email')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__activity_unsubscribe_email"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_dbt_test__audit", "fqn": ["marketo_source", "not_null_stg_marketo__activity_unsubscribe_email_activity_id"], "unique_id": "test.marketo_source.not_null_stg_marketo__activity_unsubscribe_email_activity_id.a31edf42c0", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "not_null_stg_marketo__activity_unsubscribe_email_activity_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "not_null_stg_marketo__activity_unsubscribe_email_activity_id", "alias": "not_null_stg_marketo__activity_unsubscribe_email_activity_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__activity_unsubscribe_email"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/not_null_stg_marketo__activity_unsubscribe_email_activity_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.5262988, "compiled_sql": "\n \n \n\n\n\nselect activity_id\nfrom `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__activity_unsubscribe_email`\nwhere activity_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "activity_id", "file_key_name": "models.stg_marketo__activity_unsubscribe_email"}, "test.marketo_source.unique_stg_marketo__campaigns_campaign_id.58c604f925": {"raw_sql": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "test_metadata": {"name": "unique", "kwargs": {"column_name": "campaign_id", "model": "{{ get_where_subquery(ref('stg_marketo__campaigns')) }}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique"], "nodes": []}, "config": {"enabled": false, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_dbt_test__audit", "fqn": ["marketo_source", "unique_stg_marketo__campaigns_campaign_id"], "unique_id": "test.marketo_source.unique_stg_marketo__campaigns_campaign_id.58c604f925", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "unique_stg_marketo__campaigns_campaign_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "unique_stg_marketo__campaigns_campaign_id", "alias": "unique_stg_marketo__campaigns_campaign_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__campaigns"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.527352, "column_name": "campaign_id", "file_key_name": "models.stg_marketo__campaigns"}, "test.marketo_source.not_null_stg_marketo__campaigns_campaign_id.9599619112": {"raw_sql": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "campaign_id", "model": "{{ get_where_subquery(ref('stg_marketo__campaigns')) }}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": []}, "config": {"enabled": false, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_dbt_test__audit", "fqn": ["marketo_source", "not_null_stg_marketo__campaigns_campaign_id"], "unique_id": "test.marketo_source.not_null_stg_marketo__campaigns_campaign_id.9599619112", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "not_null_stg_marketo__campaigns_campaign_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "not_null_stg_marketo__campaigns_campaign_id", "alias": "not_null_stg_marketo__campaigns_campaign_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__campaigns"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.528276, "column_name": "campaign_id", "file_key_name": "models.stg_marketo__campaigns"}, "test.marketo_source.unique_stg_marketo__email_template_history_email_template_history_id.7e3c0524e2": {"raw_sql": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_stg_marketo__email_temp_c5e4520ae792d796c7a93ad4ff601e7e\") }}", "test_metadata": {"name": "unique", "kwargs": {"column_name": "email_template_history_id", "model": "{{ get_where_subquery(ref('stg_marketo__email_template_history')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__email_template_history"]}, "config": {"enabled": true, "alias": "unique_stg_marketo__email_temp_c5e4520ae792d796c7a93ad4ff601e7e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_dbt_test__audit", "fqn": ["marketo_source", "unique_stg_marketo__email_template_history_email_template_history_id"], "unique_id": "test.marketo_source.unique_stg_marketo__email_template_history_email_template_history_id.7e3c0524e2", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "unique_stg_marketo__email_temp_c5e4520ae792d796c7a93ad4ff601e7e.sql", "original_file_path": "models/stg_marketo.yml", "name": "unique_stg_marketo__email_template_history_email_template_history_id", "alias": "unique_stg_marketo__email_temp_c5e4520ae792d796c7a93ad4ff601e7e", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__email_template_history"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/unique_stg_marketo__email_temp_c5e4520ae792d796c7a93ad4ff601e7e.sql", "build_path": null, "deferred": false, "unrendered_config": {"alias": "unique_stg_marketo__email_temp_c5e4520ae792d796c7a93ad4ff601e7e"}, "created_at": 1665431415.5292249, "compiled_sql": "\n \n \n\nwith dbt_test__target as (\n\n select email_template_history_id as unique_field\n from `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__email_template_history`\n where email_template_history_id is not null\n\n)\n\nselect\n unique_field,\n count(*) as n_records\n\nfrom dbt_test__target\ngroup by unique_field\nhaving count(*) > 1\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "email_template_history_id", "file_key_name": "models.stg_marketo__email_template_history"}, "test.marketo_source.not_null_stg_marketo__email_template_history_email_template_history_id.dcab273dfa": {"raw_sql": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_stg_marketo__email_te_80ee2025020122dcfd13af1d9e7d57cd\") }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "email_template_history_id", "model": "{{ get_where_subquery(ref('stg_marketo__email_template_history')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__email_template_history"]}, "config": {"enabled": true, "alias": "not_null_stg_marketo__email_te_80ee2025020122dcfd13af1d9e7d57cd", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_dbt_test__audit", "fqn": ["marketo_source", "not_null_stg_marketo__email_template_history_email_template_history_id"], "unique_id": "test.marketo_source.not_null_stg_marketo__email_template_history_email_template_history_id.dcab273dfa", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "not_null_stg_marketo__email_te_80ee2025020122dcfd13af1d9e7d57cd.sql", "original_file_path": "models/stg_marketo.yml", "name": "not_null_stg_marketo__email_template_history_email_template_history_id", "alias": "not_null_stg_marketo__email_te_80ee2025020122dcfd13af1d9e7d57cd", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__email_template_history"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/not_null_stg_marketo__email_te_80ee2025020122dcfd13af1d9e7d57cd.sql", "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_stg_marketo__email_te_80ee2025020122dcfd13af1d9e7d57cd"}, "created_at": 1665431415.530354, "compiled_sql": "\n \n \n\n\n\nselect email_template_history_id\nfrom `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__email_template_history`\nwhere email_template_history_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "email_template_history_id", "file_key_name": "models.stg_marketo__email_template_history"}, "test.marketo_source.unique_stg_marketo__lead_describe_lead_describe_id.4f0a7f9cc1": {"raw_sql": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "test_metadata": {"name": "unique", "kwargs": {"column_name": "lead_describe_id", "model": "{{ get_where_subquery(ref('stg_marketo__lead_describe')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__lead_describe"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_dbt_test__audit", "fqn": ["marketo_source", "unique_stg_marketo__lead_describe_lead_describe_id"], "unique_id": "test.marketo_source.unique_stg_marketo__lead_describe_lead_describe_id.4f0a7f9cc1", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "unique_stg_marketo__lead_describe_lead_describe_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "unique_stg_marketo__lead_describe_lead_describe_id", "alias": "unique_stg_marketo__lead_describe_lead_describe_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__lead_describe"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/unique_stg_marketo__lead_describe_lead_describe_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.531349, "compiled_sql": "\n \n \n\nwith dbt_test__target as (\n\n select lead_describe_id as unique_field\n from `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__lead_describe`\n where lead_describe_id is not null\n\n)\n\nselect\n unique_field,\n count(*) as n_records\n\nfrom dbt_test__target\ngroup by unique_field\nhaving count(*) > 1\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "lead_describe_id", "file_key_name": "models.stg_marketo__lead_describe"}, "test.marketo_source.not_null_stg_marketo__lead_describe_lead_describe_id.37612f6879": {"raw_sql": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "lead_describe_id", "model": "{{ get_where_subquery(ref('stg_marketo__lead_describe')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__lead_describe"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_dbt_test__audit", "fqn": ["marketo_source", "not_null_stg_marketo__lead_describe_lead_describe_id"], "unique_id": "test.marketo_source.not_null_stg_marketo__lead_describe_lead_describe_id.37612f6879", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "not_null_stg_marketo__lead_describe_lead_describe_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "not_null_stg_marketo__lead_describe_lead_describe_id", "alias": "not_null_stg_marketo__lead_describe_lead_describe_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__lead_describe"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/not_null_stg_marketo__lead_describe_lead_describe_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.532272, "compiled_sql": "\n \n \n\n\n\nselect lead_describe_id\nfrom `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__lead_describe`\nwhere lead_describe_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "lead_describe_id", "file_key_name": "models.stg_marketo__lead_describe"}, "test.marketo_source.unique_stg_marketo__lead_lead_id.1a4c20db9f": {"raw_sql": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "test_metadata": {"name": "unique", "kwargs": {"column_name": "lead_id", "model": "{{ get_where_subquery(ref('stg_marketo__lead')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__lead"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_dbt_test__audit", "fqn": ["marketo_source", "unique_stg_marketo__lead_lead_id"], "unique_id": "test.marketo_source.unique_stg_marketo__lead_lead_id.1a4c20db9f", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "unique_stg_marketo__lead_lead_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "unique_stg_marketo__lead_lead_id", "alias": "unique_stg_marketo__lead_lead_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__lead"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/unique_stg_marketo__lead_lead_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.533322, "compiled_sql": "\n \n \n\nwith dbt_test__target as (\n\n select lead_id as unique_field\n from `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__lead`\n where lead_id is not null\n\n)\n\nselect\n unique_field,\n count(*) as n_records\n\nfrom dbt_test__target\ngroup by unique_field\nhaving count(*) > 1\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "lead_id", "file_key_name": "models.stg_marketo__lead"}, "test.marketo_source.not_null_stg_marketo__lead_lead_id.a539cbf055": {"raw_sql": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "lead_id", "model": "{{ get_where_subquery(ref('stg_marketo__lead')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__lead"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_dbt_test__audit", "fqn": ["marketo_source", "not_null_stg_marketo__lead_lead_id"], "unique_id": "test.marketo_source.not_null_stg_marketo__lead_lead_id.a539cbf055", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "not_null_stg_marketo__lead_lead_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "not_null_stg_marketo__lead_lead_id", "alias": "not_null_stg_marketo__lead_lead_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__lead"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/not_null_stg_marketo__lead_lead_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.5342588, "compiled_sql": "\n \n \n\n\n\nselect lead_id\nfrom `dbt-package-testing`.`marketo_source_integration_tests_marketo_source`.`stg_marketo__lead`\nwhere lead_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "lead_id", "file_key_name": "models.stg_marketo__lead"}, "test.marketo_source.unique_stg_marketo__program_program_id.20616f7b2c": {"raw_sql": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "test_metadata": {"name": "unique", "kwargs": {"column_name": "program_id", "model": "{{ get_where_subquery(ref('stg_marketo__program')) }}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique"], "nodes": []}, "config": {"enabled": false, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_dbt_test__audit", "fqn": ["marketo_source", "unique_stg_marketo__program_program_id"], "unique_id": "test.marketo_source.unique_stg_marketo__program_program_id.20616f7b2c", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "unique_stg_marketo__program_program_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "unique_stg_marketo__program_program_id", "alias": "unique_stg_marketo__program_program_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__program"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.535182, "column_name": "program_id", "file_key_name": "models.stg_marketo__program"}, "test.marketo_source.not_null_stg_marketo__program_program_id.882bad918f": {"raw_sql": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "program_id", "model": "{{ get_where_subquery(ref('stg_marketo__program')) }}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": []}, "config": {"enabled": false, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_dbt_test__audit", "fqn": ["marketo_source", "not_null_stg_marketo__program_program_id"], "unique_id": "test.marketo_source.not_null_stg_marketo__program_program_id.882bad918f", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "not_null_stg_marketo__program_program_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "not_null_stg_marketo__program_program_id", "alias": "not_null_stg_marketo__program_program_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__program"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1665431415.536105, "column_name": "program_id", "file_key_name": "models.stg_marketo__program"}}, "sources": {"source.marketo_source.marketo.lead": {"fqn": ["marketo_source", "marketo", "lead"], "database": "dbt-package-testing", "schema": "marketo_source_integration_tests", "unique_id": "source.marketo_source.marketo.lead", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "models/src_marketo.yml", "original_file_path": "models/src_marketo.yml", "name": "lead", "source_name": "marketo", "source_description": "", "loader": "", "identifier": "marketo_lead_data", "resource_type": "source", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table with all Marketo leads.", "columns": {"id": {"name": "id", "description": "Unique integer id of a lead record.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "The timestamp each lead object was last updated at.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests`.`marketo_lead_data`", "created_at": 1665431415.537017}, "source.marketo_source.marketo.lead_describe": {"fqn": ["marketo_source", "marketo", "lead_describe"], "database": "dbt-package-testing", "schema": "marketo_source_integration_tests", "unique_id": "source.marketo_source.marketo.lead_describe", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "models/src_marketo.yml", "original_file_path": "models/src_marketo.yml", "name": "lead_describe", "source_name": "marketo", "source_description": "", "loader": "", "identifier": "marketo_lead_describe_data", "resource_type": "source", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table with metadata about lead object columns", "columns": {"data_type": {"name": "data_type", "description": "Datatype of the field.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "display_name": {"name": "display_name", "description": "UI display-name of the field.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "id": {"name": "id", "description": "Unique integer id of the field.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "length": {"name": "length", "description": "Max length of the field. Only applicable to text, string, and text area.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "restname": {"name": "restname", "description": "Description of REST API usage attributes.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "restread_only": {"name": "restread_only", "description": "Whether the field is only available via the REST API.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "soapname": {"name": "soapname", "description": "Description of SOAP API usage attributes.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "soapread_only": {"name": "soapread_only", "description": "Whether the field is only available via the SOAP API.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests`.`marketo_lead_describe_data`", "created_at": 1665431415.537112}, "source.marketo_source.marketo.activity_change_data_value": {"fqn": ["marketo_source", "marketo", "activity_change_data_value"], "database": "dbt-package-testing", "schema": "marketo_source_integration_tests", "unique_id": "source.marketo_source.marketo.activity_change_data_value", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "models/src_marketo.yml", "original_file_path": "models/src_marketo.yml", "name": "activity_change_data_value", "source_name": "marketo", "source_description": "", "loader": "", "identifier": "marketo_activity_change_data_value_data", "resource_type": "source", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table with data value changes from the leads object.", "columns": {"api_method_name": {"name": "api_method_name", "description": "API method used for change, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_date": {"name": "activity_date", "description": "Timestamp of the actvity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the related campaign, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "id": {"name": "id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "Id of the lead associated to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "modifying_user": {"name": "modifying_user", "description": "The user who instigated the change, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "new_value": {"name": "new_value", "description": "New value after the change.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "old_value": {"name": "old_value", "description": "Old value before the change.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "Value of the primary attribute.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "ID of the primary attribute field.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "reason": {"name": "reason", "description": "Reason for the data change.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "request_id": {"name": "request_id", "description": "ID of the request made.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests`.`marketo_activity_change_data_value_data`", "created_at": 1665431415.537189}, "source.marketo_source.marketo.campaign": {"fqn": ["marketo_source", "marketo", "campaign"], "database": "dbt-package-testing", "schema": "marketo_source_integration_tests", "unique_id": "source.marketo_source.marketo.campaign", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "models/src_marketo.yml", "original_file_path": "models/src_marketo.yml", "name": "campaign", "source_name": "marketo", "source_description": "", "loader": "", "identifier": "marketo_campaign_data", "resource_type": "source", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table with all Marketo campaigns.", "columns": {"active": {"name": "active", "description": "Whether the campaign is active. Only applicable to trigger campaigns.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "Timestamp when the campaign was created.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "description": {"name": "description", "description": "Description of the campaign", "meta": {}, "data_type": null, "quote": null, "tags": []}, "id": {"name": "id", "description": "Unique integer ID of the campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "name": {"name": "name", "description": "Name of the campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "program_id": {"name": "program_id", "description": "ID of the parent program, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "program_name": {"name": "program_name", "description": "Name of the parent program, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "type": {"name": "type", "description": "Type of campaign, either 'batch' or 'trigger'.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Timestamp when the campaign was most recently updated.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "workspace_name": {"name": "workspace_name", "description": "Name of the parent workspace, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests`.`marketo_campaign_data`", "created_at": 1665431415.537256}, "source.marketo_source.marketo.program": {"fqn": ["marketo_source", "marketo", "program"], "database": "dbt-package-testing", "schema": "marketo_source_integration_tests", "unique_id": "source.marketo_source.marketo.program", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "models/src_marketo.yml", "original_file_path": "models/src_marketo.yml", "name": "program", "source_name": "marketo", "source_description": "", "loader": "", "identifier": "marketo_program_data", "resource_type": "source", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table with all Marketo programs.", "columns": {"channel": {"name": "channel", "description": "Channel of the program.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "Timestamp the program was created at", "meta": {}, "data_type": null, "quote": null, "tags": []}, "description": {"name": "description", "description": "Description of the program.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "end_date": {"name": "end_date", "description": "End date of the program. Applicable to event, email, and webinar type programs.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "id": {"name": "id", "description": "ID of the program.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "name": {"name": "name", "description": "Name of the program.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "sfdc_id": {"name": "sfdc_id", "description": "SFDC id of the program if linked to an SFDC campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "sfdc_name": {"name": "sfdc_name", "description": "Name of the linked SFDC campaign if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "start_date": {"name": "start_date", "description": "Start date of program. Applicable to event, email and webinar type programs.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "status": {"name": "status", "description": "Status of the program. Only valid for Email and engagement program types.\nAllowed values: locked, unlocked, on, off\n", "meta": {}, "data_type": null, "quote": null, "tags": []}, "type": {"name": "type", "description": "Type of the program. Allowed values: program, event, webinar, nurture\n", "meta": {}, "data_type": null, "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Timestamp the program was most recently updated.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "url": {"name": "url", "description": "URL of the program in the Marketo UI.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "workspace": {"name": "workspace", "description": "Name of the workspace.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests`.`marketo_program_data`", "created_at": 1665431415.537326}, "source.marketo_source.marketo.email_template_history": {"fqn": ["marketo_source", "marketo", "email_template_history"], "database": "dbt-package-testing", "schema": "marketo_source_integration_tests", "unique_id": "source.marketo_source.marketo.email_template_history", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "models/src_marketo.yml", "original_file_path": "models/src_marketo.yml", "name": "email_template_history", "source_name": "marketo", "source_description": "", "loader": "", "identifier": "marketo_email_template_history_data", "resource_type": "source", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table with a history of email template versions.", "columns": {"created_at": {"name": "created_at", "description": "Timestamp the email template was created.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "description": {"name": "description", "description": "Description of the email template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "folder_folder_name": {"name": "folder_folder_name", "description": "The name of the email template's folder.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "folder_id": {"name": "folder_id", "description": "The ID of the email template's folder.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "folder_type": {"name": "folder_type", "description": "The type of the email template's folder.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "folder_value": {"name": "folder_value", "description": "The value of the email template's folder.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "from_email": {"name": "from_email", "description": "The 'From' address of the email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "from_name": {"name": "from_name", "description": "The 'From' name of the email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "id": {"name": "id", "description": "ID of the email template", "meta": {}, "data_type": null, "quote": null, "tags": []}, "name": {"name": "name", "description": "Name of the email template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "operational": {"name": "operational", "description": "Whether the email is operational. Operational emails bypass unsubscribe status. Defaults to false.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "program_id": {"name": "program_id", "description": "The ID of the email template's program.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "publish_to_msi": {"name": "publish_to_msi", "description": "Whether the email is published to Marketo Sales Insight.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "reply_email": {"name": "reply_email", "description": "Reply-To address of the Email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "status": {"name": "status", "description": "Status filter for draft or approved versions.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "subject": {"name": "subject", "description": "Subject line of the email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "template": {"name": "template", "description": "ID of the parent template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "text_only": {"name": "text_only", "description": "Setting to include text-only version of email when sent.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Timestamp the email template was last updated.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "url": {"name": "url", "description": "URL of the email template in the Marketo UI.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "version": {"name": "version", "description": "The type version of the email, either '1' or '2'.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "web_view": {"name": "web_view", "description": "Whether 'View as Webpage' function is enabled for the email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "workspace": {"name": "workspace", "description": "Name of the workspace.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests`.`marketo_email_template_history_data`", "created_at": 1665431415.5374038}, "source.marketo_source.marketo.activity_click_email": {"fqn": ["marketo_source", "marketo", "activity_click_email"], "database": "dbt-package-testing", "schema": "marketo_source_integration_tests", "unique_id": "source.marketo_source.marketo.activity_click_email", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "models/src_marketo.yml", "original_file_path": "models/src_marketo.yml", "name": "activity_click_email", "source_name": "marketo", "source_description": "", "loader": "", "identifier": "marketo_activity_click_email_data", "resource_type": "source", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table with email click activities.", "columns": {"activity_date": {"name": "activity_date", "description": "The date of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "The ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the email's campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_run_id": {"name": "campaign_run_id", "description": "The ID of the email's campaign run.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "choice_number": {"name": "choice_number", "description": "The choice number of the current step that triggered the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "device": {"name": "device", "description": "The device type the activity occurred on.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_id": {"name": "email_template_id", "description": "The ID of the email's template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "id": {"name": "id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "is_mobile_device": {"name": "is_mobile_device", "description": "Whether the activity occurred on a mobile device.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "link": {"name": "link", "description": "The URL of the link clicked.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "step_id": {"name": "step_id", "description": "The Id of the current step in the flow.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "user_agent": {"name": "user_agent", "description": "The Web browser user agent information obtained when the lead clicked the email link.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests`.`marketo_activity_click_email_data`", "created_at": 1665431415.537473}, "source.marketo_source.marketo.activity_email_delivered": {"fqn": ["marketo_source", "marketo", "activity_email_delivered"], "database": "dbt-package-testing", "schema": "marketo_source_integration_tests", "unique_id": "source.marketo_source.marketo.activity_email_delivered", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "models/src_marketo.yml", "original_file_path": "models/src_marketo.yml", "name": "activity_email_delivered", "source_name": "marketo", "source_description": "", "loader": "", "identifier": "marketo_activity_email_delivered_data", "resource_type": "source", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table with email delivery activities.", "columns": {"activity_date": {"name": "activity_date", "description": "The timestamp the email was delivered.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "The ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the email's campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_run_id": {"name": "campaign_run_id", "description": "The ID of the email's campaign run.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "choice_number": {"name": "choice_number", "description": "The choice number of the current step that triggered the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_id": {"name": "email_template_id", "description": "The ID of the email's template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "id": {"name": "id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "step_id": {"name": "step_id", "description": "The Id of the current step in the flow.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests`.`marketo_activity_email_delivered_data`", "created_at": 1665431415.537539}, "source.marketo_source.marketo.activity_email_bounced": {"fqn": ["marketo_source", "marketo", "activity_email_bounced"], "database": "dbt-package-testing", "schema": "marketo_source_integration_tests", "unique_id": "source.marketo_source.marketo.activity_email_bounced", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "models/src_marketo.yml", "original_file_path": "models/src_marketo.yml", "name": "activity_email_bounced", "source_name": "marketo", "source_description": "", "loader": "", "identifier": "marketo_activity_email_bounced_data", "resource_type": "source", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table with email bounce activities.", "columns": {"activity_date": {"name": "activity_date", "description": "The timestamp the email bounced.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "The ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the email's campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_run_id": {"name": "campaign_run_id", "description": "The ID of the email's campaign run.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "category": {"name": "category", "description": "The category associated with bounced email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "choice_number": {"name": "choice_number", "description": "The choice number of the current step that triggered the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "details": {"name": "details", "description": "Details about why the email bounced.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email": {"name": "email", "description": "The email address that bounced.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_id": {"name": "email_template_id", "description": "The ID of the email's template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "id": {"name": "id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "step_id": {"name": "step_id", "description": "The Id of the current step in the flow.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "subcategory": {"name": "subcategory", "description": "The subcategory associated with bounced email.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests`.`marketo_activity_email_bounced_data`", "created_at": 1665431415.537608}, "source.marketo_source.marketo.activity_open_email": {"fqn": ["marketo_source", "marketo", "activity_open_email"], "database": "dbt-package-testing", "schema": "marketo_source_integration_tests", "unique_id": "source.marketo_source.marketo.activity_open_email", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "models/src_marketo.yml", "original_file_path": "models/src_marketo.yml", "name": "activity_open_email", "source_name": "marketo", "source_description": "", "loader": "", "identifier": "marketo_activity_open_email_data", "resource_type": "source", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table with email bounce activities.", "columns": {"activity_date": {"name": "activity_date", "description": "The timestamp the email was opened.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "The ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the email's campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_run_id": {"name": "campaign_run_id", "description": "The ID of the email's campaign run.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "choice_number": {"name": "choice_number", "description": "The choice number of the current step that triggered the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "device": {"name": "device", "description": "The device that was used to open the email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_id": {"name": "email_template_id", "description": "The ID of the email's template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "id": {"name": "id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "is_mobile_device": {"name": "is_mobile_device", "description": "Identifies whether a mobile device was used to open the email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "platform": {"name": "platform", "description": "The platform that was used to open the email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "step_id": {"name": "step_id", "description": "The Id of the current step in the flow.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "user_agent": {"name": "user_agent", "description": "The web browser user agent information obtained when the email was opened.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests`.`marketo_activity_open_email_data`", "created_at": 1665431415.537677}, "source.marketo_source.marketo.activity_unsubscribe_email": {"fqn": ["marketo_source", "marketo", "activity_unsubscribe_email"], "database": "dbt-package-testing", "schema": "marketo_source_integration_tests", "unique_id": "source.marketo_source.marketo.activity_unsubscribe_email", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "models/src_marketo.yml", "original_file_path": "models/src_marketo.yml", "name": "activity_unsubscribe_email", "source_name": "marketo", "source_description": "", "loader": "", "identifier": "marketo_activity_unsubscribe_email_data", "resource_type": "source", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table with email unsusbscribe activities.", "columns": {"activity_date": {"name": "activity_date", "description": "The timestamp the lead unsubscribed.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "The ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the email's campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_run_id": {"name": "campaign_run_id", "description": "The ID of the email's campaign run.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "client_ip_address": {"name": "client_ip_address", "description": "The IP address of the client that unsubscribed.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_id": {"name": "email_template_id", "description": "The ID of the email's template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "form_fields": {"name": "form_fields", "description": "The query parameters contained within the URL.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "id": {"name": "id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "query_parameters": {"name": "query_parameters", "description": "The query parameters contained within the URL.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "referrer_url": {"name": "referrer_url", "description": "The URL of the referrer used to identify where the form visit originated from.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "user_agent": {"name": "user_agent", "description": "The web browser user agent information obtained when the lead unsubscribed.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "webform_id": {"name": "webform_id", "description": "The ID of the unsubscribe web page.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "webpage_id": {"name": "webpage_id", "description": "The ID of the unsubscribe web form.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests`.`marketo_activity_unsubscribe_email_data`", "created_at": 1665431415.537746}, "source.marketo_source.marketo.activity_send_email": {"fqn": ["marketo_source", "marketo", "activity_send_email"], "database": "dbt-package-testing", "schema": "marketo_source_integration_tests", "unique_id": "source.marketo_source.marketo.activity_send_email", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "models/src_marketo.yml", "original_file_path": "models/src_marketo.yml", "name": "activity_send_email", "source_name": "marketo", "source_description": "", "loader": "", "identifier": "marketo_activity_send_email_data", "resource_type": "source", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table with email send activities.", "columns": {"activity_date": {"name": "activity_date", "description": "The timestamp the email was sent.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "The ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the email's campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_run_id": {"name": "campaign_run_id", "description": "The ID of the email's campaign run.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "choice_number": {"name": "choice_number", "description": "The choice number of the current step that triggered the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_id": {"name": "email_template_id", "description": "The ID of the email's template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "id": {"name": "id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "step_id": {"name": "step_id", "description": "The Id of the current step in the flow.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests`.`marketo_activity_send_email_data`", "created_at": 1665431415.537812}, "source.marketo_source.marketo.activity_delete_lead": {"fqn": ["marketo_source", "marketo", "activity_delete_lead"], "database": "dbt-package-testing", "schema": "marketo_source_integration_tests", "unique_id": "source.marketo_source.marketo.activity_delete_lead", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "models/src_marketo.yml", "original_file_path": "models/src_marketo.yml", "name": "activity_delete_lead", "source_name": "marketo", "source_description": "", "loader": "", "identifier": "marketo_activity_delete_lead_data", "resource_type": "source", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table with deleted lead activities", "columns": {"activity_date": {"name": "activity_date", "description": "The timestamp the lead was deleted.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "The ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the campaign related to the activity, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign": {"name": "campaign", "description": "The name of the campaign related to the activity, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "id": {"name": "id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests`.`marketo_activity_delete_lead_data`", "created_at": 1665431415.537874}, "source.marketo_source.marketo.activity_merge_leads": {"fqn": ["marketo_source", "marketo", "activity_merge_leads"], "database": "dbt-package-testing", "schema": "marketo_source_integration_tests", "unique_id": "source.marketo_source.marketo.activity_merge_leads", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "models/src_marketo.yml", "original_file_path": "models/src_marketo.yml", "name": "activity_merge_leads", "source_name": "marketo", "source_description": "", "loader": "", "identifier": "marketo_activity_merge_leads_data", "resource_type": "source", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table with merged lead activities", "columns": {"activity_date": {"name": "activity_date", "description": "The timestamp the lead was deleted.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "The ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the campaign related to the activity, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "id": {"name": "id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "merge_ids": {"name": "merge_ids", "description": "ID of the lead that the lead was merged into.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "`dbt-package-testing`.`marketo_source_integration_tests`.`marketo_activity_merge_leads_data`", "created_at": 1665431415.537936}}, "macros": {"macro.dbt_bigquery.date_sharded_table": {"unique_id": "macro.dbt_bigquery.date_sharded_table", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/etc.sql", "original_file_path": "macros/etc.sql", "name": "date_sharded_table", "macro_sql": "{% macro date_sharded_table(base_name) %}\n {{ return(base_name ~ \"[DBT__PARTITION_DATE]\") }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.252525}, "macro.dbt_bigquery.grant_access_to": {"unique_id": "macro.dbt_bigquery.grant_access_to", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/etc.sql", "original_file_path": "macros/etc.sql", "name": "grant_access_to", "macro_sql": "{% macro grant_access_to(entity, entity_type, role, grant_target_dict) -%}\n {% do adapter.grant_access_to(entity, entity_type, role, grant_target_dict) %}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.2527528}, "macro.dbt_bigquery.get_partitions_metadata": {"unique_id": "macro.dbt_bigquery.get_partitions_metadata", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/etc.sql", "original_file_path": "macros/etc.sql", "name": "get_partitions_metadata", "macro_sql": "\n\n{%- macro get_partitions_metadata(table) -%}\n {%- if execute -%}\n {%- set res = adapter.get_partitions_metadata(table) -%}\n {{- return(res) -}}\n {%- endif -%}\n {{- return(None) -}}\n{%- endmacro -%}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.253023}, "macro.dbt_bigquery.bigquery__get_catalog": {"unique_id": "macro.dbt_bigquery.bigquery__get_catalog", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/catalog.sql", "original_file_path": "macros/catalog.sql", "name": "bigquery__get_catalog", "macro_sql": "{% macro bigquery__get_catalog(information_schema, schemas) -%}\n\n {%- if (schemas | length) == 0 -%}\n {# Hopefully nothing cares about the columns we return when there are no rows #}\n {%- set query = \"select 1 as id limit 0\" -%}\n {%- else -%}\n\n {%- set query -%}\n with tables as (\n select\n project_id as table_database,\n dataset_id as table_schema,\n table_id as original_table_name,\n\n concat(project_id, '.', dataset_id, '.', table_id) as relation_id,\n\n row_count,\n size_bytes as size_bytes,\n case\n when type = 1 then 'table'\n when type = 2 then 'view'\n else 'external'\n end as table_type,\n\n REGEXP_CONTAINS(table_id, '^.+[0-9]{8}$') and coalesce(type, 0) = 1 as is_date_shard,\n REGEXP_EXTRACT(table_id, '^(.+)[0-9]{8}$') as shard_base_name,\n REGEXP_EXTRACT(table_id, '^.+([0-9]{8})$') as shard_name\n\n from {{ information_schema.replace(information_schema_view='__TABLES__') }}\n where (\n {%- for schema in schemas -%}\n upper(dataset_id) = upper('{{ schema }}'){%- if not loop.last %} or {% endif -%}\n {%- endfor -%}\n )\n ),\n\n extracted as (\n\n select *,\n case\n when is_date_shard then shard_base_name\n else original_table_name\n end as table_name\n\n from tables\n\n ),\n\n unsharded_tables as (\n\n select\n table_database,\n table_schema,\n table_name,\n coalesce(table_type, 'external') as table_type,\n is_date_shard,\n\n struct(\n min(shard_name) as shard_min,\n max(shard_name) as shard_max,\n count(*) as shard_count\n ) as table_shards,\n\n sum(size_bytes) as size_bytes,\n sum(row_count) as row_count,\n\n max(relation_id) as relation_id\n\n from extracted\n group by 1,2,3,4,5\n\n ),\n\n info_schema_columns as (\n\n select\n concat(table_catalog, '.', table_schema, '.', table_name) as relation_id,\n table_catalog as table_database,\n table_schema,\n table_name,\n\n -- use the \"real\" column name from the paths query below\n column_name as base_column_name,\n ordinal_position as column_index,\n\n is_partitioning_column,\n clustering_ordinal_position\n\n from {{ information_schema.replace(information_schema_view='COLUMNS') }}\n where ordinal_position is not null\n\n ),\n\n info_schema_column_paths as (\n\n select\n concat(table_catalog, '.', table_schema, '.', table_name) as relation_id,\n field_path as column_name,\n data_type as column_type,\n column_name as base_column_name,\n description as column_comment\n\n from {{ information_schema.replace(information_schema_view='COLUMN_FIELD_PATHS') }}\n\n ),\n\n columns as (\n\n select * except (base_column_name)\n from info_schema_columns\n join info_schema_column_paths using (relation_id, base_column_name)\n\n ),\n\n column_stats as (\n\n select\n table_database,\n table_schema,\n table_name,\n max(relation_id) as relation_id,\n max(case when is_partitioning_column = 'YES' then 1 else 0 end) = 1 as is_partitioned,\n max(case when is_partitioning_column = 'YES' then column_name else null end) as partition_column,\n max(case when clustering_ordinal_position is not null then 1 else 0 end) = 1 as is_clustered,\n array_to_string(\n array_agg(\n case\n when clustering_ordinal_position is not null then column_name\n else null\n end ignore nulls\n order by clustering_ordinal_position\n ), ', '\n ) as clustering_columns\n\n from columns\n group by 1,2,3\n\n )\n\n select\n unsharded_tables.table_database,\n unsharded_tables.table_schema,\n case\n when is_date_shard then concat(unsharded_tables.table_name, '*')\n else unsharded_tables.table_name\n end as table_name,\n unsharded_tables.table_type,\n\n -- coalesce name and type for External tables - these columns are not\n -- present in the COLUMN_FIELD_PATHS resultset\n coalesce(columns.column_name, '') as column_name,\n -- invent a row number to account for nested fields -- BQ does\n -- not treat these nested properties as independent fields\n row_number() over (\n partition by relation_id\n order by columns.column_index, columns.column_name\n ) as column_index,\n coalesce(columns.column_type, '') as column_type,\n columns.column_comment,\n\n 'Shard count' as `stats__date_shards__label`,\n table_shards.shard_count as `stats__date_shards__value`,\n 'The number of date shards in this table' as `stats__date_shards__description`,\n is_date_shard as `stats__date_shards__include`,\n\n 'Shard (min)' as `stats__date_shard_min__label`,\n table_shards.shard_min as `stats__date_shard_min__value`,\n 'The first date shard in this table' as `stats__date_shard_min__description`,\n is_date_shard as `stats__date_shard_min__include`,\n\n 'Shard (max)' as `stats__date_shard_max__label`,\n table_shards.shard_max as `stats__date_shard_max__value`,\n 'The last date shard in this table' as `stats__date_shard_max__description`,\n is_date_shard as `stats__date_shard_max__include`,\n\n '# Rows' as `stats__num_rows__label`,\n row_count as `stats__num_rows__value`,\n 'Approximate count of rows in this table' as `stats__num_rows__description`,\n (unsharded_tables.table_type = 'table') as `stats__num_rows__include`,\n\n 'Approximate Size' as `stats__num_bytes__label`,\n size_bytes as `stats__num_bytes__value`,\n 'Approximate size of table as reported by BigQuery' as `stats__num_bytes__description`,\n (unsharded_tables.table_type = 'table') as `stats__num_bytes__include`,\n\n 'Partitioned By' as `stats__partitioning_type__label`,\n partition_column as `stats__partitioning_type__value`,\n 'The partitioning column for this table' as `stats__partitioning_type__description`,\n is_partitioned as `stats__partitioning_type__include`,\n\n 'Clustered By' as `stats__clustering_fields__label`,\n clustering_columns as `stats__clustering_fields__value`,\n 'The clustering columns for this table' as `stats__clustering_fields__description`,\n is_clustered as `stats__clustering_fields__include`\n\n -- join using relation_id (an actual relation, not a shard prefix) to make\n -- sure that column metadata is picked up through the join. This will only\n -- return the column information for the \"max\" table in a date-sharded table set\n from unsharded_tables\n left join columns using (relation_id)\n left join column_stats using (relation_id)\n {%- endset -%}\n\n {%- endif -%}\n\n {{ return(run_query(query)) }}\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.replace", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.256205}, "macro.dbt_bigquery.partition_by": {"unique_id": "macro.dbt_bigquery.partition_by", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "partition_by", "macro_sql": "{% macro partition_by(partition_config) -%}\n {%- if partition_config is none -%}\n {% do return('') %}\n {%- elif partition_config.data_type | lower in ('date','timestamp','datetime') -%}\n partition by {{ partition_config.render() }}\n {%- elif partition_config.data_type | lower in ('int64') -%}\n {%- set range = partition_config.range -%}\n partition by range_bucket(\n {{ partition_config.field }},\n generate_array({{ range.start}}, {{ range.end }}, {{ range.interval }})\n )\n {%- endif -%}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.261361}, "macro.dbt_bigquery.cluster_by": {"unique_id": "macro.dbt_bigquery.cluster_by", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "cluster_by", "macro_sql": "{% macro cluster_by(raw_cluster_by) %}\n {%- if raw_cluster_by is not none -%}\n cluster by {% if raw_cluster_by is string -%}\n {% set raw_cluster_by = [raw_cluster_by] %}\n {%- endif -%}\n {%- for cluster in raw_cluster_by -%}\n {{ cluster }}\n {%- if not loop.last -%}, {% endif -%}\n {%- endfor -%}\n\n {% endif %}\n\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.2617228}, "macro.dbt_bigquery.bigquery_options": {"unique_id": "macro.dbt_bigquery.bigquery_options", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "bigquery_options", "macro_sql": "{% macro bigquery_options(opts) %}\n {% set options -%}\n OPTIONS({% for opt_key, opt_val in opts.items() %}\n {{ opt_key }}={{ opt_val }}{{ \",\" if not loop.last }}\n {% endfor %})\n {%- endset %}\n {%- do return(options) -%}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.262074}, "macro.dbt_bigquery.bigquery_table_options": {"unique_id": "macro.dbt_bigquery.bigquery_table_options", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "bigquery_table_options", "macro_sql": "{% macro bigquery_table_options(config, node, temporary) %}\n {% set opts = adapter.get_table_options(config, node, temporary) %}\n {%- do return(bigquery_options(opts)) -%}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.bigquery_options"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.262336}, "macro.dbt_bigquery.bigquery__create_table_as": {"unique_id": "macro.dbt_bigquery.bigquery__create_table_as", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "bigquery__create_table_as", "macro_sql": "{% macro bigquery__create_table_as(temporary, relation, sql) -%}\n {%- set raw_partition_by = config.get('partition_by', none) -%}\n {%- set raw_cluster_by = config.get('cluster_by', none) -%}\n {%- set sql_header = config.get('sql_header', none) -%}\n\n {%- set partition_config = adapter.parse_partition_by(raw_partition_by) -%}\n\n {{ sql_header if sql_header is not none }}\n\n create or replace table {{ relation }}\n {{ partition_by(partition_config) }}\n {{ cluster_by(raw_cluster_by) }}\n {{ bigquery_table_options(config, model, temporary) }}\n as (\n {{ sql }}\n );\n\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.partition_by", "macro.dbt_bigquery.cluster_by", "macro.dbt_bigquery.bigquery_table_options"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.2629702}, "macro.dbt_bigquery.bigquery_view_options": {"unique_id": "macro.dbt_bigquery.bigquery_view_options", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "bigquery_view_options", "macro_sql": "{% macro bigquery_view_options(config, node) %}\n {% set opts = adapter.get_view_options(config, node) %}\n {%- do return(bigquery_options(opts)) -%}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.bigquery_options"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.263206}, "macro.dbt_bigquery.bigquery__create_view_as": {"unique_id": "macro.dbt_bigquery.bigquery__create_view_as", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "bigquery__create_view_as", "macro_sql": "{% macro bigquery__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\n create or replace view {{ relation }}\n {{ bigquery_view_options(config, model) }}\n as {{ sql }};\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.bigquery_view_options"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.263523}, "macro.dbt_bigquery.bigquery__create_schema": {"unique_id": "macro.dbt_bigquery.bigquery__create_schema", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "bigquery__create_schema", "macro_sql": "{% macro bigquery__create_schema(relation) -%}\n {{ adapter.create_schema(relation) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.26365}, "macro.dbt_bigquery.bigquery__drop_schema": {"unique_id": "macro.dbt_bigquery.bigquery__drop_schema", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "bigquery__drop_schema", "macro_sql": "{% macro bigquery__drop_schema(relation) -%}\n {{ adapter.drop_schema(relation) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.2637691}, "macro.dbt_bigquery.bigquery__drop_relation": {"unique_id": "macro.dbt_bigquery.bigquery__drop_relation", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "bigquery__drop_relation", "macro_sql": "{% macro bigquery__drop_relation(relation) -%}\n {% call statement('drop_relation') -%}\n drop {{ relation.type }} if exists {{ relation }}\n {%- endcall %}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.263953}, "macro.dbt_bigquery.bigquery__get_columns_in_relation": {"unique_id": "macro.dbt_bigquery.bigquery__get_columns_in_relation", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "bigquery__get_columns_in_relation", "macro_sql": "{% macro bigquery__get_columns_in_relation(relation) -%}\n {{ return(adapter.get_columns_in_relation(relation)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.264098}, "macro.dbt_bigquery.bigquery__list_relations_without_caching": {"unique_id": "macro.dbt_bigquery.bigquery__list_relations_without_caching", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "bigquery__list_relations_without_caching", "macro_sql": "{% macro bigquery__list_relations_without_caching(schema_relation) -%}\n {{ return(adapter.list_relations_without_caching(schema_relation)) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.26424}, "macro.dbt_bigquery.bigquery__current_timestamp": {"unique_id": "macro.dbt_bigquery.bigquery__current_timestamp", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "bigquery__current_timestamp", "macro_sql": "{% macro bigquery__current_timestamp() -%}\n CURRENT_TIMESTAMP()\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.264309}, "macro.dbt_bigquery.bigquery__snapshot_string_as_time": {"unique_id": "macro.dbt_bigquery.bigquery__snapshot_string_as_time", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "bigquery__snapshot_string_as_time", "macro_sql": "{% macro bigquery__snapshot_string_as_time(timestamp) -%}\n {%- set result = 'TIMESTAMP(\"' ~ timestamp ~ '\")' -%}\n {{ return(result) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.2644758}, "macro.dbt_bigquery.bigquery__list_schemas": {"unique_id": "macro.dbt_bigquery.bigquery__list_schemas", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "bigquery__list_schemas", "macro_sql": "{% macro bigquery__list_schemas(database) -%}\n {{ return(adapter.list_schemas(database)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.2646852}, "macro.dbt_bigquery.bigquery__check_schema_exists": {"unique_id": "macro.dbt_bigquery.bigquery__check_schema_exists", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "bigquery__check_schema_exists", "macro_sql": "{% macro bigquery__check_schema_exists(information_schema, schema) %}\n {{ return(adapter.check_schema_exists(information_schema.database, schema)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.2648609}, "macro.dbt_bigquery.bigquery__persist_docs": {"unique_id": "macro.dbt_bigquery.bigquery__persist_docs", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "bigquery__persist_docs", "macro_sql": "{% macro bigquery__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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.alter_column_comment"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.2651289}, "macro.dbt_bigquery.bigquery__alter_column_comment": {"unique_id": "macro.dbt_bigquery.bigquery__alter_column_comment", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "bigquery__alter_column_comment", "macro_sql": "{% macro bigquery__alter_column_comment(relation, column_dict) -%}\n {% do adapter.update_columns(relation, column_dict) %}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.265283}, "macro.dbt_bigquery.bigquery__rename_relation": {"unique_id": "macro.dbt_bigquery.bigquery__rename_relation", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "bigquery__rename_relation", "macro_sql": "{% macro bigquery__rename_relation(from_relation, to_relation) -%}\n {% do adapter.rename_relation(from_relation, to_relation) %}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.265431}, "macro.dbt_bigquery.bigquery__alter_relation_add_columns": {"unique_id": "macro.dbt_bigquery.bigquery__alter_relation_add_columns", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "bigquery__alter_relation_add_columns", "macro_sql": "{% macro bigquery__alter_relation_add_columns(relation, add_columns) %}\n\n {% set sql -%}\n\n alter {{ relation.type }} {{ relation }}\n {% for column in add_columns %}\n add column {{ column.name }} {{ column.data_type }}{{ ',' if not loop.last }}\n {% endfor %}\n\n {%- endset -%}\n\n {{ return(run_query(sql)) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.265816}, "macro.dbt_bigquery.bigquery__alter_relation_drop_columns": {"unique_id": "macro.dbt_bigquery.bigquery__alter_relation_drop_columns", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "bigquery__alter_relation_drop_columns", "macro_sql": "{% macro bigquery__alter_relation_drop_columns(relation, drop_columns) %}\n\n {% set sql -%}\n\n alter {{ relation.type }} {{ relation }}\n\n {% for column in drop_columns %}\n drop column {{ column.name }}{{ ',' if not loop.last }}\n {% endfor %}\n\n {%- endset -%}\n\n {{ return(run_query(sql)) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.266173}, "macro.dbt_bigquery.bigquery__alter_column_type": {"unique_id": "macro.dbt_bigquery.bigquery__alter_column_type", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "bigquery__alter_column_type", "macro_sql": "{% macro bigquery__alter_column_type(relation, column_name, new_column_type) -%}\n {#-- Changing a column's data type using a query requires you to scan the entire table.\n The query charges can be significant if the table is very large.\n\n https://cloud.google.com/bigquery/docs/manually-changing-schemas#changing_a_columns_data_type\n #}\n {% set relation_columns = get_columns_in_relation(relation) %}\n\n {% set sql %}\n select\n {%- for col in relation_columns -%}\n {% if col.column == column_name %}\n CAST({{ col.quoted }} AS {{ new_column_type }}) AS {{ col.quoted }}\n {%- else %}\n {{ col.quoted }}\n {%- endif %}\n {%- if not loop.last %},{% endif -%}\n {%- endfor %}\n from {{ relation }}\n {% endset %}\n\n {% call statement('alter_column_type') %}\n {{ create_table_as(False, relation, sql)}}\n {%- endcall %}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.get_columns_in_relation", "macro.dbt.statement", "macro.dbt.create_table_as"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.266811}, "macro.dbt_bigquery.bigquery__test_unique": {"unique_id": "macro.dbt_bigquery.bigquery__test_unique", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "bigquery__test_unique", "macro_sql": "{% macro bigquery__test_unique(model, column_name) %}\n\nwith dbt_test__target as (\n\n select {{ column_name }} as unique_field\n from {{ model }}\n where {{ column_name }} is not null\n\n)\n\nselect\n unique_field,\n count(*) as n_records\n\nfrom dbt_test__target\ngroup by unique_field\nhaving count(*) > 1\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.266975}, "macro.dbt_bigquery.bigquery__upload_file": {"unique_id": "macro.dbt_bigquery.bigquery__upload_file", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "bigquery__upload_file", "macro_sql": "{% macro bigquery__upload_file(local_file_path, database, table_schema, table_name) %}\n\n {{ log(\"kwargs: \" ~ kwargs) }}\n\n {% do adapter.upload_file(local_file_path, database, table_schema, table_name, kwargs=kwargs) %}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.2672482}, "macro.dbt_bigquery.bigquery__create_csv_table": {"unique_id": "macro.dbt_bigquery.bigquery__create_csv_table", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/materializations/seed.sql", "original_file_path": "macros/materializations/seed.sql", "name": "bigquery__create_csv_table", "macro_sql": "{% macro bigquery__create_csv_table(model, agate_table) %}\n -- no-op\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.267607}, "macro.dbt_bigquery.bigquery__reset_csv_table": {"unique_id": "macro.dbt_bigquery.bigquery__reset_csv_table", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/materializations/seed.sql", "original_file_path": "macros/materializations/seed.sql", "name": "bigquery__reset_csv_table", "macro_sql": "{% macro bigquery__reset_csv_table(model, full_refresh, old_relation, agate_table) %}\n {{ adapter.drop_relation(old_relation) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.26776}, "macro.dbt_bigquery.bigquery__load_csv_rows": {"unique_id": "macro.dbt_bigquery.bigquery__load_csv_rows", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/materializations/seed.sql", "original_file_path": "macros/materializations/seed.sql", "name": "bigquery__load_csv_rows", "macro_sql": "{% macro bigquery__load_csv_rows(model, agate_table) %}\n\n {%- set column_override = model['config'].get('column_types', {}) -%}\n {{ adapter.load_dataframe(model['database'], model['schema'], model['alias'],\n \t\t\t\t\t\t\tagate_table, column_override) }}\n {% if config.persist_relation_docs() and 'description' in model %}\n\n \t{{ adapter.update_table_description(model['database'], model['schema'], model['alias'], model['description']) }}\n {% endif %}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.26835}, "macro.dbt_bigquery.bigquery__handle_existing_table": {"unique_id": "macro.dbt_bigquery.bigquery__handle_existing_table", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/materializations/view.sql", "original_file_path": "macros/materializations/view.sql", "name": "bigquery__handle_existing_table", "macro_sql": "{% macro bigquery__handle_existing_table(full_refresh, old_relation) %}\n {%- if full_refresh -%}\n {{ adapter.drop_relation(old_relation) }}\n {%- else -%}\n {{ exceptions.relation_wrong_type(old_relation, 'view') }}\n {%- endif -%}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.268945}, "macro.dbt_bigquery.materialization_view_bigquery": {"unique_id": "macro.dbt_bigquery.materialization_view_bigquery", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/materializations/view.sql", "original_file_path": "macros/materializations/view.sql", "name": "materialization_view_bigquery", "macro_sql": "{% materialization view, adapter='bigquery' -%}\n -- grab current tables grants config for comparision later on\n {% set grant_config = config.get('grants') %}\n\n {% set to_return = create_or_replace_view() %}\n\n {% set target_relation = this.incorporate(type='view') %}\n\n {% do persist_docs(target_relation, model) %}\n\n {% if config.get('grant_access_to') %}\n {% for grant_target_dict in config.get('grant_access_to') %}\n {% do adapter.grant_access_to(this, 'view', None, grant_target_dict) %}\n {% endfor %}\n {% endif %}\n\n {% do return(to_return) %}\n\n{%- endmaterialization %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.create_or_replace_view", "macro.dbt.persist_docs"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.269591}, "macro.dbt_bigquery.materialization_table_bigquery": {"unique_id": "macro.dbt_bigquery.materialization_table_bigquery", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/materializations/table.sql", "original_file_path": "macros/materializations/table.sql", "name": "materialization_table_bigquery", "macro_sql": "{% materialization table, adapter='bigquery' -%}\n\n {%- set identifier = model['alias'] -%}\n {%- set old_relation = adapter.get_relation(database=database, schema=schema, identifier=identifier) -%}\n {%- set exists_not_as_table = (old_relation is not none and not old_relation.is_table) -%}\n {%- set target_relation = api.Relation.create(database=database, schema=schema, identifier=identifier, type='table') -%}\n\n -- grab current tables grants config for comparision later on\n {%- set grant_config = config.get('grants') -%}\n\n {{ run_hooks(pre_hooks) }}\n\n {#\n We only need to drop this thing if it is not a table.\n If it _is_ already a table, then we can overwrite it without downtime\n Unlike table -> view, no need for `--full-refresh`: dropping a view is no big deal\n #}\n {%- if exists_not_as_table -%}\n {{ adapter.drop_relation(old_relation) }}\n {%- endif -%}\n\n -- build model\n {%- set raw_partition_by = config.get('partition_by', none) -%}\n {%- set partition_by = adapter.parse_partition_by(raw_partition_by) -%}\n {%- set cluster_by = config.get('cluster_by', none) -%}\n {% if not adapter.is_replaceable(old_relation, partition_by, cluster_by) %}\n {% do log(\"Hard refreshing \" ~ old_relation ~ \" because it is not replaceable\") %}\n {% do adapter.drop_relation(old_relation) %}\n {% endif %}\n {% call statement('main') -%}\n {{ create_table_as(False, target_relation, sql) }}\n {% endcall -%}\n\n {{ run_hooks(post_hooks) }}\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 {{ return({'relations': [target_relation]}) }}\n\n{% endmaterialization %}", "resource_type": "macro", "tags": [], "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"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.2716742}, "macro.dbt_bigquery.materialization_copy_bigquery": {"unique_id": "macro.dbt_bigquery.materialization_copy_bigquery", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/materializations/copy.sql", "original_file_path": "macros/materializations/copy.sql", "name": "materialization_copy_bigquery", "macro_sql": "{% materialization copy, adapter='bigquery' -%}\n\n {# Setup #}\n {{ run_hooks(pre_hooks) }}\n\n {% set destination = this.incorporate(type='table') %}\n\n {# there can be several ref() or source() according to BQ copy API docs #}\n {# cycle over ref() and source() to create source tables array #}\n {% set source_array = [] %}\n {% for ref_table in model.refs %}\n {{ source_array.append(ref(*ref_table)) }}\n {% endfor %}\n\n {% for src_table in model.sources %}\n {{ source_array.append(source(*src_table)) }}\n {% endfor %}\n\n {# Call adapter copy_table function #}\n {%- set result_str = adapter.copy_table(\n source_array,\n destination,\n config.get('copy_materialization', default = 'table')) -%}\n\n {{ store_result('main', response=result_str) }}\n\n {# Clean up #}\n {{ run_hooks(post_hooks) }}\n {%- do apply_grants(target_relation, grant_config) -%}\n {{ adapter.commit() }}\n\n {{ return({'relations': [destination]}) }}\n{%- endmaterialization %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.run_hooks", "macro.dbt.apply_grants"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.2728891}, "macro.dbt_bigquery.declare_dbt_max_partition": {"unique_id": "macro.dbt_bigquery.declare_dbt_max_partition", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/materializations/incremental.sql", "original_file_path": "macros/materializations/incremental.sql", "name": "declare_dbt_max_partition", "macro_sql": "{% macro declare_dbt_max_partition(relation, partition_by, sql) %}\n\n {% if '_dbt_max_partition' in sql %}\n\n declare _dbt_max_partition {{ partition_by.data_type }} default (\n select max({{ partition_by.field }}) from {{ this }}\n where {{ partition_by.field }} is not null\n );\n\n {% endif %}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.274753}, "macro.dbt_bigquery.dbt_bigquery_validate_get_incremental_strategy": {"unique_id": "macro.dbt_bigquery.dbt_bigquery_validate_get_incremental_strategy", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/materializations/incremental.sql", "original_file_path": "macros/materializations/incremental.sql", "name": "dbt_bigquery_validate_get_incremental_strategy", "macro_sql": "{% macro dbt_bigquery_validate_get_incremental_strategy(config) %}\n {#-- Find and validate the incremental strategy #}\n {%- set strategy = config.get(\"incremental_strategy\", default=\"merge\") -%}\n\n {% set invalid_strategy_msg -%}\n Invalid incremental strategy provided: {{ strategy }}\n Expected one of: 'merge', 'insert_overwrite'\n {%- endset %}\n {% if strategy not in ['merge', 'insert_overwrite'] %}\n {% do exceptions.raise_compiler_error(invalid_strategy_msg) %}\n {% endif %}\n\n {% do return(strategy) %}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.2751858}, "macro.dbt_bigquery.bq_insert_overwrite": {"unique_id": "macro.dbt_bigquery.bq_insert_overwrite", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/materializations/incremental.sql", "original_file_path": "macros/materializations/incremental.sql", "name": "bq_insert_overwrite", "macro_sql": "{% macro bq_insert_overwrite(\n tmp_relation, target_relation, sql, unique_key, partition_by, partitions, dest_columns, tmp_relation_exists\n) %}\n\n {% if partitions is not none and partitions != [] %} {# static #}\n\n {% set predicate -%}\n {{ partition_by.render(alias='DBT_INTERNAL_DEST') }} in (\n {{ partitions | join (', ') }}\n )\n {%- endset %}\n\n {%- set source_sql -%}\n (\n {{sql}}\n )\n {%- endset -%}\n\n {{ get_insert_overwrite_merge_sql(target_relation, source_sql, dest_columns, [predicate], include_sql_header=true) }}\n\n {% else %} {# dynamic #}\n\n {% set predicate -%}\n {{ partition_by.render(alias='DBT_INTERNAL_DEST') }} in unnest(dbt_partitions_for_replacement)\n {%- endset %}\n\n {%- set source_sql -%}\n (\n select * from {{ tmp_relation }}\n )\n {%- endset -%}\n\n -- generated script to merge partitions into {{ target_relation }}\n declare dbt_partitions_for_replacement array<{{ partition_by.data_type }}>;\n\n {# have we already created the temp table to check for schema changes? #}\n {% if not tmp_relation_exists %}\n {{ declare_dbt_max_partition(this, partition_by, sql) }}\n\n -- 1. create a temp table\n {{ create_table_as(True, tmp_relation, sql) }}\n {% else %}\n -- 1. temp table already exists, we used it to check for schema changes\n {% endif %}\n\n -- 2. define partitions to update\n set (dbt_partitions_for_replacement) = (\n select as struct\n array_agg(distinct {{ partition_by.render() }})\n from {{ tmp_relation }}\n );\n\n {#\n TODO: include_sql_header is a hack; consider a better approach that includes\n the sql_header at the materialization-level instead\n #}\n -- 3. run the merge statement\n {{ get_insert_overwrite_merge_sql(target_relation, source_sql, dest_columns, [predicate], include_sql_header=false) }};\n\n -- 4. clean up the temp table\n drop table if exists {{ tmp_relation }}\n\n {% endif %}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.get_insert_overwrite_merge_sql", "macro.dbt_bigquery.declare_dbt_max_partition", "macro.dbt.create_table_as"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.276391}, "macro.dbt_bigquery.bq_generate_incremental_build_sql": {"unique_id": "macro.dbt_bigquery.bq_generate_incremental_build_sql", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/materializations/incremental.sql", "original_file_path": "macros/materializations/incremental.sql", "name": "bq_generate_incremental_build_sql", "macro_sql": "{% macro bq_generate_incremental_build_sql(\n strategy, tmp_relation, target_relation, sql, unique_key, partition_by, partitions, dest_columns, tmp_relation_exists\n) %}\n {#-- if partitioned, use BQ scripting to get the range of partition values to be updated --#}\n {% if strategy == 'insert_overwrite' %}\n\n {% set missing_partition_msg -%}\n The 'insert_overwrite' strategy requires the `partition_by` config.\n {%- endset %}\n {% if partition_by is none %}\n {% do exceptions.raise_compiler_error(missing_partition_msg) %}\n {% endif %}\n\n {% set build_sql = bq_insert_overwrite(\n tmp_relation, target_relation, sql, unique_key, partition_by, partitions, dest_columns, tmp_relation_exists\n ) %}\n\n {% else %} {# strategy == 'merge' #}\n {%- set source_sql -%}\n {%- if tmp_relation_exists -%}\n (\n select * from {{ tmp_relation }}\n )\n {%- else -%} {#-- wrap sql in parens to make it a subquery --#}\n (\n {{sql}}\n )\n {%- endif -%}\n {%- endset -%}\n\n {% set build_sql = get_merge_sql(target_relation, source_sql, unique_key, dest_columns) %}\n\n {% endif %}\n\n {{ return(build_sql) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.bq_insert_overwrite", "macro.dbt.get_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.277216}, "macro.dbt_bigquery.materialization_incremental_bigquery": {"unique_id": "macro.dbt_bigquery.materialization_incremental_bigquery", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/materializations/incremental.sql", "original_file_path": "macros/materializations/incremental.sql", "name": "materialization_incremental_bigquery", "macro_sql": "{% materialization incremental, adapter='bigquery' -%}\n\n {%- set unique_key = config.get('unique_key') -%}\n {%- set full_refresh_mode = (should_full_refresh()) -%}\n\n {%- set target_relation = this %}\n {%- set existing_relation = load_relation(this) %}\n {%- set tmp_relation = make_temp_relation(this) %}\n\n {#-- Validate early so we don't run SQL if the strategy is invalid --#}\n {% set strategy = dbt_bigquery_validate_get_incremental_strategy(config) -%}\n\n {%- set raw_partition_by = config.get('partition_by', none) -%}\n {%- set partition_by = adapter.parse_partition_by(raw_partition_by) -%}\n {%- set partitions = config.get('partitions', none) -%}\n {%- set cluster_by = config.get('cluster_by', none) -%}\n\n {% set on_schema_change = incremental_validate_on_schema_change(config.get('on_schema_change'), default='ignore') %}\n\n -- grab current tables grants config for comparision later on\n {% set grant_config = config.get('grants') %}\n\n {{ run_hooks(pre_hooks) }}\n\n {% if existing_relation is none %}\n {% set build_sql = create_table_as(False, target_relation, sql) %}\n\n {% elif existing_relation.is_view %}\n {#-- There's no way to atomically replace a view with a table on BQ --#}\n {{ adapter.drop_relation(existing_relation) }}\n {% set build_sql = create_table_as(False, target_relation, sql) %}\n\n {% elif full_refresh_mode %}\n {#-- If the partition/cluster config has changed, then we must drop and recreate --#}\n {% if not adapter.is_replaceable(existing_relation, partition_by, cluster_by) %}\n {% do log(\"Hard refreshing \" ~ existing_relation ~ \" because it is not replaceable\") %}\n {{ adapter.drop_relation(existing_relation) }}\n {% endif %}\n {% set build_sql = create_table_as(False, target_relation, sql) %}\n\n {% else %}\n {% set tmp_relation_exists = false %}\n {% if on_schema_change != 'ignore' %} {# Check first, since otherwise we may not build a temp table #}\n {% do run_query(\n declare_dbt_max_partition(this, partition_by, sql) + create_table_as(True, tmp_relation, sql)\n ) %}\n {% set tmp_relation_exists = true %}\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, tmp_relation, existing_relation) %}\n {% endif %}\n {% if not dest_columns %}\n {% set dest_columns = adapter.get_columns_in_relation(existing_relation) %}\n {% endif %}\n {% set build_sql = bq_generate_incremental_build_sql(\n strategy, tmp_relation, target_relation, sql, unique_key, partition_by, partitions, dest_columns, tmp_relation_exists\n ) %}\n\n {% endif %}\n\n {%- call statement('main') -%}\n {{ build_sql }}\n {% endcall %}\n\n {{ run_hooks(post_hooks) }}\n\n {% set target_relation = this.incorporate(type='table') %}\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 {{ return({'relations': [target_relation]}) }}\n\n{%- endmaterialization %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.should_full_refresh", "macro.dbt.load_relation", "macro.dbt.make_temp_relation", "macro.dbt_bigquery.dbt_bigquery_validate_get_incremental_strategy", "macro.dbt.incremental_validate_on_schema_change", "macro.dbt.run_hooks", "macro.dbt.create_table_as", "macro.dbt.run_query", "macro.dbt_bigquery.declare_dbt_max_partition", "macro.dbt.process_schema_changes", "macro.dbt_bigquery.bq_generate_incremental_build_sql", "macro.dbt.statement", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.279954}, "macro.dbt_bigquery.bigquery__snapshot_hash_arguments": {"unique_id": "macro.dbt_bigquery.bigquery__snapshot_hash_arguments", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/materializations/snapshot.sql", "original_file_path": "macros/materializations/snapshot.sql", "name": "bigquery__snapshot_hash_arguments", "macro_sql": "{% macro bigquery__snapshot_hash_arguments(args) -%}\n to_hex(md5(concat({%- for arg in args -%}\n coalesce(cast({{ arg }} as string), ''){% if not loop.last %}, '|',{% endif -%}\n {%- endfor -%}\n )))\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.280401}, "macro.dbt_bigquery.bigquery__create_columns": {"unique_id": "macro.dbt_bigquery.bigquery__create_columns", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/materializations/snapshot.sql", "original_file_path": "macros/materializations/snapshot.sql", "name": "bigquery__create_columns", "macro_sql": "{% macro bigquery__create_columns(relation, columns) %}\n {{ adapter.alter_table_add_columns(relation, columns) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.280552}, "macro.dbt_bigquery.bigquery__post_snapshot": {"unique_id": "macro.dbt_bigquery.bigquery__post_snapshot", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/materializations/snapshot.sql", "original_file_path": "macros/materializations/snapshot.sql", "name": "bigquery__post_snapshot", "macro_sql": "{% macro bigquery__post_snapshot(staging_relation) %}\n -- Clean up the snapshot temp table\n {% do drop_relation(staging_relation) %}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.drop_relation"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.2806778}, "macro.dbt_bigquery.bigquery__except": {"unique_id": "macro.dbt_bigquery.bigquery__except", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/utils/except.sql", "original_file_path": "macros/utils/except.sql", "name": "bigquery__except", "macro_sql": "{% macro bigquery__except() %}\n\n except distinct\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.2808409}, "macro.dbt_bigquery.bigquery__dateadd": {"unique_id": "macro.dbt_bigquery.bigquery__dateadd", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/utils/dateadd.sql", "original_file_path": "macros/utils/dateadd.sql", "name": "bigquery__dateadd", "macro_sql": "{% macro bigquery__dateadd(datepart, interval, from_date_or_timestamp) %}\n\n datetime_add(\n cast( {{ from_date_or_timestamp }} as datetime),\n interval {{ interval }} {{ datepart }}\n )\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.281114}, "macro.dbt_bigquery.bigquery__intersect": {"unique_id": "macro.dbt_bigquery.bigquery__intersect", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/utils/intersect.sql", "original_file_path": "macros/utils/intersect.sql", "name": "bigquery__intersect", "macro_sql": "{% macro bigquery__intersect() %}\n\n intersect distinct\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.281269}, "macro.dbt_bigquery.bigquery__escape_single_quotes": {"unique_id": "macro.dbt_bigquery.bigquery__escape_single_quotes", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/utils/escape_single_quotes.sql", "original_file_path": "macros/utils/escape_single_quotes.sql", "name": "bigquery__escape_single_quotes", "macro_sql": "{% macro bigquery__escape_single_quotes(expression) -%}\n{{ expression | replace(\"'\", \"\\\\'\") }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.281506}, "macro.dbt_bigquery.bigquery__right": {"unique_id": "macro.dbt_bigquery.bigquery__right", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/utils/right.sql", "original_file_path": "macros/utils/right.sql", "name": "bigquery__right", "macro_sql": "{% macro bigquery__right(string_text, length_expression) %}\n\n case when {{ length_expression }} = 0\n then ''\n else\n substr(\n {{ string_text }},\n -1 * ({{ length_expression }})\n )\n end\n\n{%- endmacro -%}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.281783}, "macro.dbt_bigquery.bigquery__listagg": {"unique_id": "macro.dbt_bigquery.bigquery__listagg", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/utils/listagg.sql", "original_file_path": "macros/utils/listagg.sql", "name": "bigquery__listagg", "macro_sql": "{% macro bigquery__listagg(measure, delimiter_text, order_by_clause, limit_num) -%}\n\n string_agg(\n {{ measure }},\n {{ delimiter_text }}\n {% if order_by_clause -%}\n {{ order_by_clause }}\n {%- endif %}\n {% if limit_num -%}\n limit {{ limit_num }}\n {%- endif %}\n )\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.2822132}, "macro.dbt_bigquery.bigquery__datediff": {"unique_id": "macro.dbt_bigquery.bigquery__datediff", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/utils/datediff.sql", "original_file_path": "macros/utils/datediff.sql", "name": "bigquery__datediff", "macro_sql": "{% macro bigquery__datediff(first_date, second_date, datepart) -%}\n\n {% if dbt_version[0] == 1 and dbt_version[2] >= 2 %}\n {{ return(dbt.datediff(first_date, second_date, datepart)) }}\n {% else %}\n\n datetime_diff(\n cast({{second_date}} as datetime),\n cast({{first_date}} as datetime),\n {{datepart}}\n )\n\n {% endif %}\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.datediff"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.28275}, "macro.dbt_bigquery.bigquery__safe_cast": {"unique_id": "macro.dbt_bigquery.bigquery__safe_cast", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/utils/safe_cast.sql", "original_file_path": "macros/utils/safe_cast.sql", "name": "bigquery__safe_cast", "macro_sql": "{% macro bigquery__safe_cast(field, type) %}\n safe_cast({{field}} as {{type}})\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.282969}, "macro.dbt_bigquery.bigquery__hash": {"unique_id": "macro.dbt_bigquery.bigquery__hash", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/utils/hash.sql", "original_file_path": "macros/utils/hash.sql", "name": "bigquery__hash", "macro_sql": "{% macro bigquery__hash(field) -%}\n to_hex({{dbt.default__hash(field)}})\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__hash"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.283184}, "macro.dbt_bigquery.bigquery__position": {"unique_id": "macro.dbt_bigquery.bigquery__position", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/utils/position.sql", "original_file_path": "macros/utils/position.sql", "name": "bigquery__position", "macro_sql": "{% macro bigquery__position(substring_text, string_text) %}\n\n strpos(\n {{ string_text }},\n {{ substring_text }}\n\n )\n\n{%- endmacro -%}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.283413}, "macro.dbt_bigquery.bigquery__bool_or": {"unique_id": "macro.dbt_bigquery.bigquery__bool_or", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/utils/bool_or.sql", "original_file_path": "macros/utils/bool_or.sql", "name": "bigquery__bool_or", "macro_sql": "{% macro bigquery__bool_or(expression) -%}\n\n logical_or({{ expression }})\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.2836008}, "macro.dbt_bigquery.bigquery__split_part": {"unique_id": "macro.dbt_bigquery.bigquery__split_part", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/utils/split_part.sql", "original_file_path": "macros/utils/split_part.sql", "name": "bigquery__split_part", "macro_sql": "{% macro bigquery__split_part(string_text, delimiter_text, part_number) %}\n\n {% if part_number >= 0 %}\n split(\n {{ string_text }},\n {{ delimiter_text }}\n )[safe_offset({{ part_number - 1 }})]\n {% else %}\n split(\n {{ string_text }},\n {{ delimiter_text }}\n )[safe_offset(\n length({{ string_text }})\n - length(\n replace({{ string_text }}, {{ delimiter_text }}, '')\n ) + 1\n )]\n {% endif %}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.2841961}, "macro.dbt_bigquery.bigquery__date_trunc": {"unique_id": "macro.dbt_bigquery.bigquery__date_trunc", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/utils/date_trunc.sql", "original_file_path": "macros/utils/date_trunc.sql", "name": "bigquery__date_trunc", "macro_sql": "{% macro bigquery__date_trunc(datepart, date) -%}\n timestamp_trunc(\n cast({{date}} as timestamp),\n {{datepart}}\n )\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.284427}, "macro.dbt_bigquery.bigquery__get_show_grant_sql": {"unique_id": "macro.dbt_bigquery.bigquery__get_show_grant_sql", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "bigquery__get_show_grant_sql", "macro_sql": "{% macro bigquery__get_show_grant_sql(relation) %}\n {% set location = adapter.get_dataset_location(relation) %}\n {% set relation = relation.incorporate(location=location) %}\n\n select privilege_type, grantee\n from {{ relation.information_schema(\"OBJECT_PRIVILEGES\") }}\n where object_schema = \"{{ relation.dataset }}\"\n and object_name = \"{{ relation.identifier }}\"\n -- filter out current user\n and split(grantee, ':')[offset(1)] != session_user()\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.285088}, "macro.dbt_bigquery.bigquery__get_grant_sql": {"unique_id": "macro.dbt_bigquery.bigquery__get_grant_sql", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "bigquery__get_grant_sql", "macro_sql": "\n\n\n{%- macro bigquery__get_grant_sql(relation, privilege, grantee) -%}\n grant `{{ privilege }}` on {{ relation.type }} {{ relation }} to {{ '\\\"' + grantee|join('\\\", \\\"') + '\\\"' }}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.285387}, "macro.dbt_bigquery.bigquery__get_revoke_sql": {"unique_id": "macro.dbt_bigquery.bigquery__get_revoke_sql", "package_name": "dbt_bigquery", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/bigquery", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "bigquery__get_revoke_sql", "macro_sql": "{%- macro bigquery__get_revoke_sql(relation, privilege, grantee) -%}\n revoke `{{ privilege }}` on {{ relation.type }} {{ relation }} from {{ '\\\"' + grantee|join('\\\", \\\"') + '\\\"' }}\n{%- endmacro -%}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.285627}, "macro.dbt.run_hooks": {"unique_id": "macro.dbt.run_hooks", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.2867048}, "macro.dbt.make_hook_config": {"unique_id": "macro.dbt.make_hook_config", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "name": "make_hook_config", "macro_sql": "{% macro make_hook_config(sql, inside_transaction) %}\n {{ tojson({\"sql\": sql, \"transaction\": inside_transaction}) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.286895}, "macro.dbt.before_begin": {"unique_id": "macro.dbt.before_begin", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "name": "before_begin", "macro_sql": "{% macro before_begin(sql) %}\n {{ make_hook_config(sql, inside_transaction=False) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.make_hook_config"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.287037}, "macro.dbt.in_transaction": {"unique_id": "macro.dbt.in_transaction", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "name": "in_transaction", "macro_sql": "{% macro in_transaction(sql) %}\n {{ make_hook_config(sql, inside_transaction=True) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.make_hook_config"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.287175}, "macro.dbt.after_commit": {"unique_id": "macro.dbt.after_commit", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "name": "after_commit", "macro_sql": "{% macro after_commit(sql) %}\n {{ make_hook_config(sql, inside_transaction=False) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.make_hook_config"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.2873101}, "macro.dbt.set_sql_header": {"unique_id": "macro.dbt.set_sql_header", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/configs.sql", "original_file_path": "macros/materializations/configs.sql", "name": "set_sql_header", "macro_sql": "{% macro set_sql_header(config) -%}\n {{ config.set('sql_header', caller()) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.287714}, "macro.dbt.should_full_refresh": {"unique_id": "macro.dbt.should_full_refresh", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/configs.sql", "original_file_path": "macros/materializations/configs.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.2880058}, "macro.dbt.should_store_failures": {"unique_id": "macro.dbt.should_store_failures", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/configs.sql", "original_file_path": "macros/materializations/configs.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.288304}, "macro.dbt.snapshot_merge_sql": {"unique_id": "macro.dbt.snapshot_merge_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/snapshot_merge.sql", "original_file_path": "macros/materializations/snapshots/snapshot_merge.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__snapshot_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.2887712}, "macro.dbt.default__snapshot_merge_sql": {"unique_id": "macro.dbt.default__snapshot_merge_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/snapshot_merge.sql", "original_file_path": "macros/materializations/snapshots/snapshot_merge.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.289035}, "macro.dbt.strategy_dispatch": {"unique_id": "macro.dbt.strategy_dispatch", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.292276}, "macro.dbt.snapshot_hash_arguments": {"unique_id": "macro.dbt.snapshot_hash_arguments", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "name": "snapshot_hash_arguments", "macro_sql": "{% macro snapshot_hash_arguments(args) -%}\n {{ adapter.dispatch('snapshot_hash_arguments', 'dbt')(args) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.bigquery__snapshot_hash_arguments"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.2924402}, "macro.dbt.default__snapshot_hash_arguments": {"unique_id": "macro.dbt.default__snapshot_hash_arguments", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.292655}, "macro.dbt.snapshot_get_time": {"unique_id": "macro.dbt.snapshot_get_time", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "name": "snapshot_get_time", "macro_sql": "{% macro snapshot_get_time() -%}\n {{ adapter.dispatch('snapshot_get_time', 'dbt')() }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__snapshot_get_time"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.292793}, "macro.dbt.default__snapshot_get_time": {"unique_id": "macro.dbt.default__snapshot_get_time", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "name": "default__snapshot_get_time", "macro_sql": "{% macro default__snapshot_get_time() -%}\n {{ current_timestamp() }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.292887}, "macro.dbt.snapshot_timestamp_strategy": {"unique_id": "macro.dbt.snapshot_timestamp_strategy", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.snapshot_hash_arguments"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.293642}, "macro.dbt.snapshot_string_as_time": {"unique_id": "macro.dbt.snapshot_string_as_time", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "name": "snapshot_string_as_time", "macro_sql": "{% macro snapshot_string_as_time(timestamp) -%}\n {{ adapter.dispatch('snapshot_string_as_time', 'dbt')(timestamp) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.bigquery__snapshot_string_as_time"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.293806}, "macro.dbt.default__snapshot_string_as_time": {"unique_id": "macro.dbt.default__snapshot_string_as_time", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.293968}, "macro.dbt.snapshot_check_all_get_existing_columns": {"unique_id": "macro.dbt.snapshot_check_all_get_existing_columns", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "name": "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_sql']) -%}\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 select {{ check_cols_config | join(', ') }} from ({{ node['compiled_sql'] }}) 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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.get_columns_in_query"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.295327}, "macro.dbt.snapshot_check_strategy": {"unique_id": "macro.dbt.snapshot_check_strategy", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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}, "patch_path": null, "arguments": [], "created_at": 1665431414.296594}, "macro.dbt.create_columns": {"unique_id": "macro.dbt.create_columns", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "name": "create_columns", "macro_sql": "{% macro create_columns(relation, columns) %}\n {{ adapter.dispatch('create_columns', 'dbt')(relation, columns) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.bigquery__create_columns"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.300159}, "macro.dbt.default__create_columns": {"unique_id": "macro.dbt.default__create_columns", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3004339}, "macro.dbt.post_snapshot": {"unique_id": "macro.dbt.post_snapshot", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "name": "post_snapshot", "macro_sql": "{% macro post_snapshot(staging_relation) %}\n {{ adapter.dispatch('post_snapshot', 'dbt')(staging_relation) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.bigquery__post_snapshot"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.300601}, "macro.dbt.default__post_snapshot": {"unique_id": "macro.dbt.default__post_snapshot", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "name": "default__post_snapshot", "macro_sql": "{% macro default__post_snapshot(staging_relation) %}\n {# no-op #}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.300682}, "macro.dbt.get_true_sql": {"unique_id": "macro.dbt.get_true_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "name": "get_true_sql", "macro_sql": "{% macro get_true_sql() %}\n {{ adapter.dispatch('get_true_sql', 'dbt')() }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__get_true_sql"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.300823}, "macro.dbt.default__get_true_sql": {"unique_id": "macro.dbt.default__get_true_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "name": "default__get_true_sql", "macro_sql": "{% macro default__get_true_sql() %}\n {{ return('TRUE') }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.30093}, "macro.dbt.snapshot_staging_table": {"unique_id": "macro.dbt.snapshot_staging_table", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__snapshot_staging_table"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.301131}, "macro.dbt.default__snapshot_staging_table": {"unique_id": "macro.dbt.default__snapshot_staging_table", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.snapshot_get_time"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.301965}, "macro.dbt.build_snapshot_table": {"unique_id": "macro.dbt.build_snapshot_table", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "name": "build_snapshot_table", "macro_sql": "{% macro build_snapshot_table(strategy, sql) -%}\n {{ adapter.dispatch('build_snapshot_table', 'dbt')(strategy, sql) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__build_snapshot_table"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3021529}, "macro.dbt.default__build_snapshot_table": {"unique_id": "macro.dbt.default__build_snapshot_table", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3023958}, "macro.dbt.build_snapshot_staging_table": {"unique_id": "macro.dbt.build_snapshot_staging_table", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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}, "patch_path": null, "arguments": [], "created_at": 1665431414.302818}, "macro.dbt.materialization_snapshot_default": {"unique_id": "macro.dbt.materialization_snapshot_default", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/snapshot.sql", "original_file_path": "macros/materializations/snapshots/snapshot.sql", "name": "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_sql']) %}\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 %}", "resource_type": "macro", "tags": [], "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}, "patch_path": null, "arguments": [], "created_at": 1665431414.308546}, "macro.dbt.materialization_test_default": {"unique_id": "macro.dbt.materialization_test_default", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/tests/test.sql", "original_file_path": "macros/materializations/tests/test.sql", "name": "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 -%}", "resource_type": "macro", "tags": [], "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}, "patch_path": null, "arguments": [], "created_at": 1665431414.310551}, "macro.dbt.get_test_sql": {"unique_id": "macro.dbt.get_test_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/tests/helpers.sql", "original_file_path": "macros/materializations/tests/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__get_test_sql"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3110368}, "macro.dbt.default__get_test_sql": {"unique_id": "macro.dbt.default__get_test_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/tests/helpers.sql", "original_file_path": "macros/materializations/tests/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.311334}, "macro.dbt.get_where_subquery": {"unique_id": "macro.dbt.get_where_subquery", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/tests/where_subquery.sql", "original_file_path": "macros/materializations/tests/where_subquery.sql", "name": "get_where_subquery", "macro_sql": "{% macro get_where_subquery(relation) -%}\n {% do return(adapter.dispatch('get_where_subquery', 'dbt')(relation)) %}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__get_where_subquery"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.31174}, "macro.dbt.default__get_where_subquery": {"unique_id": "macro.dbt.default__get_where_subquery", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/tests/where_subquery.sql", "original_file_path": "macros/materializations/tests/where_subquery.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3121102}, "macro.dbt.get_quoted_csv": {"unique_id": "macro.dbt.get_quoted_csv", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.312928}, "macro.dbt.diff_columns": {"unique_id": "macro.dbt.diff_columns", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.313456}, "macro.dbt.diff_column_data_types": {"unique_id": "macro.dbt.diff_column_data_types", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "name": "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 %}\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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.314056}, "macro.dbt.get_merge_sql": {"unique_id": "macro.dbt.get_merge_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "name": "get_merge_sql", "macro_sql": "{% macro get_merge_sql(target, source, unique_key, dest_columns, predicates=none) -%}\n {{ adapter.dispatch('get_merge_sql', 'dbt')(target, source, unique_key, dest_columns, predicates) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__get_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.318768}, "macro.dbt.default__get_merge_sql": {"unique_id": "macro.dbt.default__get_merge_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "name": "default__get_merge_sql", "macro_sql": "{% macro default__get_merge_sql(target, source, unique_key, dest_columns, predicates) -%}\n {%- set predicates = [] if predicates is none else [] + predicates -%}\n {%- set dest_cols_csv = get_quoted_csv(dest_columns | map(attribute=\"name\")) -%}\n {%- set update_columns = config.get('merge_update_columns', default = dest_columns | map(attribute=\"quoted\") | list) -%}\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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.get_quoted_csv"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.32022}, "macro.dbt.get_delete_insert_merge_sql": {"unique_id": "macro.dbt.get_delete_insert_merge_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "name": "get_delete_insert_merge_sql", "macro_sql": "{% macro get_delete_insert_merge_sql(target, source, unique_key, dest_columns) -%}\n {{ adapter.dispatch('get_delete_insert_merge_sql', 'dbt')(target, source, unique_key, dest_columns) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__get_delete_insert_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.320513}, "macro.dbt.default__get_delete_insert_merge_sql": {"unique_id": "macro.dbt.default__get_delete_insert_merge_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "name": "default__get_delete_insert_merge_sql", "macro_sql": "{% macro default__get_delete_insert_merge_sql(target, source, unique_key, dest_columns) -%}\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 );\n {% else %}\n delete from {{ target }}\n where (\n {{ unique_key }}) in (\n select ({{ unique_key }})\n from {{ source }}\n );\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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.get_quoted_csv"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.321236}, "macro.dbt.get_insert_overwrite_merge_sql": {"unique_id": "macro.dbt.get_insert_overwrite_merge_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__get_insert_overwrite_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3214972}, "macro.dbt.default__get_insert_overwrite_merge_sql": {"unique_id": "macro.dbt.default__get_insert_overwrite_merge_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "name": "default__get_insert_overwrite_merge_sql", "macro_sql": "{% macro default__get_insert_overwrite_merge_sql(target, source, dest_columns, predicates, include_sql_header) -%}\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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.get_quoted_csv"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.322109}, "macro.dbt.is_incremental": {"unique_id": "macro.dbt.is_incremental", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/is_incremental.sql", "original_file_path": "macros/materializations/models/incremental/is_incremental.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.should_full_refresh"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.322784}, "macro.dbt.materialization_incremental_default": {"unique_id": "macro.dbt.materialization_incremental_default", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/incremental.sql", "original_file_path": "macros/materializations/models/incremental/incremental.sql", "name": "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 {% set build_sql = get_delete_insert_merge_sql(target_relation, temp_relation, unique_key, dest_columns) %}\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 %}", "resource_type": "macro", "tags": [], "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.get_delete_insert_merge_sql", "macro.dbt.statement", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs", "macro.dbt.create_indexes"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3270478}, "macro.dbt.incremental_validate_on_schema_change": {"unique_id": "macro.dbt.incremental_validate_on_schema_change", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/on_schema_change.sql", "original_file_path": "macros/materializations/models/incremental/on_schema_change.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3313322}, "macro.dbt.check_for_schema_changes": {"unique_id": "macro.dbt.check_for_schema_changes", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/on_schema_change.sql", "original_file_path": "macros/materializations/models/incremental/on_schema_change.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.diff_columns", "macro.dbt.diff_column_data_types"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.332524}, "macro.dbt.sync_column_schemas": {"unique_id": "macro.dbt.sync_column_schemas", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/on_schema_change.sql", "original_file_path": "macros/materializations/models/incremental/on_schema_change.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.alter_relation_add_remove_columns", "macro.dbt.alter_column_type"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.333705}, "macro.dbt.process_schema_changes": {"unique_id": "macro.dbt.process_schema_changes", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/on_schema_change.sql", "original_file_path": "macros/materializations/models/incremental/on_schema_change.sql", "name": "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 {% 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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.check_for_schema_changes", "macro.dbt.sync_column_schemas"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3344052}, "macro.dbt.materialization_table_default": {"unique_id": "macro.dbt.materialization_table_default", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/table/table.sql", "original_file_path": "macros/materializations/models/table/table.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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}, "patch_path": null, "arguments": [], "created_at": 1665431414.336902}, "macro.dbt.get_create_table_as_sql": {"unique_id": "macro.dbt.get_create_table_as_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/table/create_table_as.sql", "original_file_path": "macros/materializations/models/table/create_table_as.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__get_create_table_as_sql"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3373811}, "macro.dbt.default__get_create_table_as_sql": {"unique_id": "macro.dbt.default__get_create_table_as_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/table/create_table_as.sql", "original_file_path": "macros/materializations/models/table/create_table_as.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.create_table_as"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.337564}, "macro.dbt.create_table_as": {"unique_id": "macro.dbt.create_table_as", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/table/create_table_as.sql", "original_file_path": "macros/materializations/models/table/create_table_as.sql", "name": "create_table_as", "macro_sql": "{% macro create_table_as(temporary, relation, sql) -%}\n {{ adapter.dispatch('create_table_as', 'dbt')(temporary, relation, sql) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.bigquery__create_table_as"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.337763}, "macro.dbt.default__create_table_as": {"unique_id": "macro.dbt.default__create_table_as", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/table/create_table_as.sql", "original_file_path": "macros/materializations/models/table/create_table_as.sql", "name": "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 as (\n {{ sql }}\n );\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3381739}, "macro.dbt.materialization_view_default": {"unique_id": "macro.dbt.materialization_view_default", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/view/view.sql", "original_file_path": "macros/materializations/models/view/view.sql", "name": "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 -%}", "resource_type": "macro", "tags": [], "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}, "patch_path": null, "arguments": [], "created_at": 1665431414.340637}, "macro.dbt.handle_existing_table": {"unique_id": "macro.dbt.handle_existing_table", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/view/helpers.sql", "original_file_path": "macros/materializations/models/view/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.bigquery__handle_existing_table"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.340985}, "macro.dbt.default__handle_existing_table": {"unique_id": "macro.dbt.default__handle_existing_table", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/view/helpers.sql", "original_file_path": "macros/materializations/models/view/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.341204}, "macro.dbt.create_or_replace_view": {"unique_id": "macro.dbt.create_or_replace_view", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/view/create_or_replace_view.sql", "original_file_path": "macros/materializations/models/view/create_or_replace_view.sql", "name": "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=True) %}\n\n {{ run_hooks(post_hooks) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "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}, "patch_path": null, "arguments": [], "created_at": 1665431414.342701}, "macro.dbt.get_create_view_as_sql": {"unique_id": "macro.dbt.get_create_view_as_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/view/create_view_as.sql", "original_file_path": "macros/materializations/models/view/create_view_as.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__get_create_view_as_sql"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.343107}, "macro.dbt.default__get_create_view_as_sql": {"unique_id": "macro.dbt.default__get_create_view_as_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/view/create_view_as.sql", "original_file_path": "macros/materializations/models/view/create_view_as.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.create_view_as"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.343263}, "macro.dbt.create_view_as": {"unique_id": "macro.dbt.create_view_as", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/view/create_view_as.sql", "original_file_path": "macros/materializations/models/view/create_view_as.sql", "name": "create_view_as", "macro_sql": "{% macro create_view_as(relation, sql) -%}\n {{ adapter.dispatch('create_view_as', 'dbt')(relation, sql) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.bigquery__create_view_as"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.343442}, "macro.dbt.default__create_view_as": {"unique_id": "macro.dbt.default__create_view_as", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/view/create_view_as.sql", "original_file_path": "macros/materializations/models/view/create_view_as.sql", "name": "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 }} as (\n {{ sql }}\n );\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3437}, "macro.dbt.materialization_seed_default": {"unique_id": "macro.dbt.materialization_seed_default", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/seeds/seed.sql", "original_file_path": "macros/materializations/seeds/seed.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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}, "patch_path": null, "arguments": [], "created_at": 1665431414.346853}, "macro.dbt.create_csv_table": {"unique_id": "macro.dbt.create_csv_table", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "name": "create_csv_table", "macro_sql": "{% macro create_csv_table(model, agate_table) -%}\n {{ adapter.dispatch('create_csv_table', 'dbt')(model, agate_table) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.bigquery__create_csv_table"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3512058}, "macro.dbt.default__create_csv_table": {"unique_id": "macro.dbt.default__create_csv_table", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3520901}, "macro.dbt.reset_csv_table": {"unique_id": "macro.dbt.reset_csv_table", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.bigquery__reset_csv_table"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.352315}, "macro.dbt.default__reset_csv_table": {"unique_id": "macro.dbt.default__reset_csv_table", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.create_csv_table"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.352784}, "macro.dbt.get_csv_sql": {"unique_id": "macro.dbt.get_csv_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__get_csv_sql"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3529751}, "macro.dbt.default__get_csv_sql": {"unique_id": "macro.dbt.default__get_csv_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.353101}, "macro.dbt.get_binding_char": {"unique_id": "macro.dbt.get_binding_char", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "name": "get_binding_char", "macro_sql": "{% macro get_binding_char() -%}\n {{ adapter.dispatch('get_binding_char', 'dbt')() }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__get_binding_char"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3532338}, "macro.dbt.default__get_binding_char": {"unique_id": "macro.dbt.default__get_binding_char", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "name": "default__get_binding_char", "macro_sql": "{% macro default__get_binding_char() %}\n {{ return('%s') }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.353346}, "macro.dbt.get_batch_size": {"unique_id": "macro.dbt.get_batch_size", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "name": "get_batch_size", "macro_sql": "{% macro get_batch_size() -%}\n {{ return(adapter.dispatch('get_batch_size', 'dbt')()) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__get_batch_size"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.353502}, "macro.dbt.default__get_batch_size": {"unique_id": "macro.dbt.default__get_batch_size", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "name": "default__get_batch_size", "macro_sql": "{% macro default__get_batch_size() %}\n {{ return(10000) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.353611}, "macro.dbt.get_seed_column_quoted_csv": {"unique_id": "macro.dbt.get_seed_column_quoted_csv", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3540711}, "macro.dbt.load_csv_rows": {"unique_id": "macro.dbt.load_csv_rows", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "name": "load_csv_rows", "macro_sql": "{% macro load_csv_rows(model, agate_table) -%}\n {{ adapter.dispatch('load_csv_rows', 'dbt')(model, agate_table) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.bigquery__load_csv_rows"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.354251}, "macro.dbt.default__load_csv_rows": {"unique_id": "macro.dbt.default__load_csv_rows", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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}, "patch_path": null, "arguments": [], "created_at": 1665431414.355484}, "macro.dbt.generate_alias_name": {"unique_id": "macro.dbt.generate_alias_name", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/get_custom_name/get_custom_alias.sql", "original_file_path": "macros/get_custom_name/get_custom_alias.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__generate_alias_name"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.355916}, "macro.dbt.default__generate_alias_name": {"unique_id": "macro.dbt.default__generate_alias_name", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/get_custom_name/get_custom_alias.sql", "original_file_path": "macros/get_custom_name/get_custom_alias.sql", "name": "default__generate_alias_name", "macro_sql": "{% macro default__generate_alias_name(custom_alias_name=none, node=none) -%}\n\n {%- if custom_alias_name is none -%}\n\n {{ node.name }}\n\n {%- else -%}\n\n {{ custom_alias_name | trim }}\n\n {%- endif -%}\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.356137}, "macro.dbt.generate_schema_name": {"unique_id": "macro.dbt.generate_schema_name", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/get_custom_name/get_custom_schema.sql", "original_file_path": "macros/get_custom_name/get_custom_schema.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__generate_schema_name"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.356683}, "macro.dbt.default__generate_schema_name": {"unique_id": "macro.dbt.default__generate_schema_name", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/get_custom_name/get_custom_schema.sql", "original_file_path": "macros/get_custom_name/get_custom_schema.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.356941}, "macro.dbt.generate_schema_name_for_env": {"unique_id": "macro.dbt.generate_schema_name_for_env", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/get_custom_name/get_custom_schema.sql", "original_file_path": "macros/get_custom_name/get_custom_schema.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.357217}, "macro.dbt.generate_database_name": {"unique_id": "macro.dbt.generate_database_name", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/get_custom_name/get_custom_database.sql", "original_file_path": "macros/get_custom_name/get_custom_database.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__generate_database_name"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.357653}, "macro.dbt.default__generate_database_name": {"unique_id": "macro.dbt.default__generate_database_name", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/get_custom_name/get_custom_database.sql", "original_file_path": "macros/get_custom_name/get_custom_database.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.357898}, "macro.dbt.default__test_relationships": {"unique_id": "macro.dbt.default__test_relationships", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/generic_test_sql/relationships.sql", "original_file_path": "macros/generic_test_sql/relationships.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3582878}, "macro.dbt.default__test_not_null": {"unique_id": "macro.dbt.default__test_not_null", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/generic_test_sql/not_null.sql", "original_file_path": "macros/generic_test_sql/not_null.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.should_store_failures"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3586318}, "macro.dbt.default__test_unique": {"unique_id": "macro.dbt.default__test_unique", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/generic_test_sql/unique.sql", "original_file_path": "macros/generic_test_sql/unique.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3589242}, "macro.dbt.default__test_accepted_values": {"unique_id": "macro.dbt.default__test_accepted_values", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/generic_test_sql/accepted_values.sql", "original_file_path": "macros/generic_test_sql/accepted_values.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.359514}, "macro.dbt.statement": {"unique_id": "macro.dbt.statement", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/etc/statement.sql", "original_file_path": "macros/etc/statement.sql", "name": "statement", "macro_sql": "{% macro statement(name=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) -%}\n {%- if name is not none -%}\n {{ store_result(name, response=res, agate_table=table) }}\n {%- endif -%}\n\n {%- endif -%}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3606138}, "macro.dbt.noop_statement": {"unique_id": "macro.dbt.noop_statement", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/etc/statement.sql", "original_file_path": "macros/etc/statement.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3611698}, "macro.dbt.run_query": {"unique_id": "macro.dbt.run_query", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/etc/statement.sql", "original_file_path": "macros/etc/statement.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3614569}, "macro.dbt.convert_datetime": {"unique_id": "macro.dbt.convert_datetime", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/etc/datetime.sql", "original_file_path": "macros/etc/datetime.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3631492}, "macro.dbt.dates_in_range": {"unique_id": "macro.dbt.dates_in_range", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/etc/datetime.sql", "original_file_path": "macros/etc/datetime.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.convert_datetime"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.364458}, "macro.dbt.partition_range": {"unique_id": "macro.dbt.partition_range", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/etc/datetime.sql", "original_file_path": "macros/etc/datetime.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.dates_in_range"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3651829}, "macro.dbt.py_current_timestring": {"unique_id": "macro.dbt.py_current_timestring", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/etc/datetime.sql", "original_file_path": "macros/etc/datetime.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.365412}, "macro.dbt.except": {"unique_id": "macro.dbt.except", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/except.sql", "original_file_path": "macros/utils/except.sql", "name": "except", "macro_sql": "{% macro except() %}\n {{ return(adapter.dispatch('except', 'dbt')()) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__except"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.365695}, "macro.dbt.default__except": {"unique_id": "macro.dbt.default__except", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/except.sql", "original_file_path": "macros/utils/except.sql", "name": "default__except", "macro_sql": "{% macro default__except() %}\n\n except\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.365768}, "macro.dbt.replace": {"unique_id": "macro.dbt.replace", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/replace.sql", "original_file_path": "macros/utils/replace.sql", "name": "replace", "macro_sql": "{% macro replace(field, old_chars, new_chars) -%}\n {{ return(adapter.dispatch('replace', 'dbt') (field, old_chars, new_chars)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__replace"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3661382}, "macro.dbt.default__replace": {"unique_id": "macro.dbt.default__replace", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/replace.sql", "original_file_path": "macros/utils/replace.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3663008}, "macro.dbt.concat": {"unique_id": "macro.dbt.concat", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/concat.sql", "original_file_path": "macros/utils/concat.sql", "name": "concat", "macro_sql": "{% macro concat(fields) -%}\n {{ return(adapter.dispatch('concat', 'dbt')(fields)) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__concat"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.366594}, "macro.dbt.default__concat": {"unique_id": "macro.dbt.default__concat", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/concat.sql", "original_file_path": "macros/utils/concat.sql", "name": "default__concat", "macro_sql": "{% macro default__concat(fields) -%}\n {{ fields|join(' || ') }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.366712}, "macro.dbt.length": {"unique_id": "macro.dbt.length", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/length.sql", "original_file_path": "macros/utils/length.sql", "name": "length", "macro_sql": "{% macro length(expression) -%}\n {{ return(adapter.dispatch('length', 'dbt') (expression)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__length"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.36701}, "macro.dbt.default__length": {"unique_id": "macro.dbt.default__length", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/length.sql", "original_file_path": "macros/utils/length.sql", "name": "default__length", "macro_sql": "{% macro default__length(expression) %}\n\n length(\n {{ expression }}\n )\n\n{%- endmacro -%}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3671098}, "macro.dbt.dateadd": {"unique_id": "macro.dbt.dateadd", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/dateadd.sql", "original_file_path": "macros/utils/dateadd.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__dateadd"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3674932}, "macro.dbt.default__dateadd": {"unique_id": "macro.dbt.default__dateadd", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/dateadd.sql", "original_file_path": "macros/utils/dateadd.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.367649}, "macro.dbt.intersect": {"unique_id": "macro.dbt.intersect", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/intersect.sql", "original_file_path": "macros/utils/intersect.sql", "name": "intersect", "macro_sql": "{% macro intersect() %}\n {{ return(adapter.dispatch('intersect', 'dbt')()) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__intersect"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.367925}, "macro.dbt.default__intersect": {"unique_id": "macro.dbt.default__intersect", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/intersect.sql", "original_file_path": "macros/utils/intersect.sql", "name": "default__intersect", "macro_sql": "{% macro default__intersect() %}\n\n intersect\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.367994}, "macro.dbt.escape_single_quotes": {"unique_id": "macro.dbt.escape_single_quotes", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/escape_single_quotes.sql", "original_file_path": "macros/utils/escape_single_quotes.sql", "name": "escape_single_quotes", "macro_sql": "{% macro escape_single_quotes(expression) %}\n {{ return(adapter.dispatch('escape_single_quotes', 'dbt') (expression)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__escape_single_quotes"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.368303}, "macro.dbt.default__escape_single_quotes": {"unique_id": "macro.dbt.default__escape_single_quotes", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/escape_single_quotes.sql", "original_file_path": "macros/utils/escape_single_quotes.sql", "name": "default__escape_single_quotes", "macro_sql": "{% macro default__escape_single_quotes(expression) -%}\n{{ expression | replace(\"'\",\"''\") }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.368439}, "macro.dbt.right": {"unique_id": "macro.dbt.right", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/right.sql", "original_file_path": "macros/utils/right.sql", "name": "right", "macro_sql": "{% macro right(string_text, length_expression) -%}\n {{ return(adapter.dispatch('right', 'dbt') (string_text, length_expression)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__right"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.368779}, "macro.dbt.default__right": {"unique_id": "macro.dbt.default__right", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/right.sql", "original_file_path": "macros/utils/right.sql", "name": "default__right", "macro_sql": "{% macro default__right(string_text, length_expression) %}\n\n right(\n {{ string_text }},\n {{ length_expression }}\n )\n\n{%- endmacro -%}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.36891}, "macro.dbt.listagg": {"unique_id": "macro.dbt.listagg", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/listagg.sql", "original_file_path": "macros/utils/listagg.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__listagg"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.369557}, "macro.dbt.default__listagg": {"unique_id": "macro.dbt.default__listagg", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/listagg.sql", "original_file_path": "macros/utils/listagg.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.370019}, "macro.dbt.datediff": {"unique_id": "macro.dbt.datediff", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/datediff.sql", "original_file_path": "macros/utils/datediff.sql", "name": "datediff", "macro_sql": "{% macro datediff(first_date, second_date, datepart) %}\n {{ return(adapter.dispatch('datediff', 'dbt')(first_date, second_date, datepart)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__datediff"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3703969}, "macro.dbt.default__datediff": {"unique_id": "macro.dbt.default__datediff", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/datediff.sql", "original_file_path": "macros/utils/datediff.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.370555}, "macro.dbt.safe_cast": {"unique_id": "macro.dbt.safe_cast", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/safe_cast.sql", "original_file_path": "macros/utils/safe_cast.sql", "name": "safe_cast", "macro_sql": "{% macro safe_cast(field, type) %}\n {{ return(adapter.dispatch('safe_cast', 'dbt') (field, type)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__safe_cast"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.370889}, "macro.dbt.default__safe_cast": {"unique_id": "macro.dbt.default__safe_cast", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/safe_cast.sql", "original_file_path": "macros/utils/safe_cast.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.371026}, "macro.dbt.hash": {"unique_id": "macro.dbt.hash", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/hash.sql", "original_file_path": "macros/utils/hash.sql", "name": "hash", "macro_sql": "{% macro hash(field) -%}\n {{ return(adapter.dispatch('hash', 'dbt') (field)) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__hash"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.371331}, "macro.dbt.default__hash": {"unique_id": "macro.dbt.default__hash", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/hash.sql", "original_file_path": "macros/utils/hash.sql", "name": "default__hash", "macro_sql": "{% macro default__hash(field) -%}\n md5(cast({{ field }} as {{ api.Column.translate_type('string') }}))\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3714838}, "macro.dbt.cast_bool_to_text": {"unique_id": "macro.dbt.cast_bool_to_text", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/cast_bool_to_text.sql", "original_file_path": "macros/utils/cast_bool_to_text.sql", "name": "cast_bool_to_text", "macro_sql": "{% macro cast_bool_to_text(field) %}\n {{ adapter.dispatch('cast_bool_to_text', 'dbt') (field) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__cast_bool_to_text"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.371778}, "macro.dbt.default__cast_bool_to_text": {"unique_id": "macro.dbt.default__cast_bool_to_text", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/cast_bool_to_text.sql", "original_file_path": "macros/utils/cast_bool_to_text.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.371933}, "macro.dbt.any_value": {"unique_id": "macro.dbt.any_value", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/any_value.sql", "original_file_path": "macros/utils/any_value.sql", "name": "any_value", "macro_sql": "{% macro any_value(expression) -%}\n {{ return(adapter.dispatch('any_value', 'dbt') (expression)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__any_value"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.372225}, "macro.dbt.default__any_value": {"unique_id": "macro.dbt.default__any_value", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/any_value.sql", "original_file_path": "macros/utils/any_value.sql", "name": "default__any_value", "macro_sql": "{% macro default__any_value(expression) -%}\n\n any_value({{ expression }})\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3723252}, "macro.dbt.position": {"unique_id": "macro.dbt.position", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/position.sql", "original_file_path": "macros/utils/position.sql", "name": "position", "macro_sql": "{% macro position(substring_text, string_text) -%}\n {{ return(adapter.dispatch('position', 'dbt') (substring_text, string_text)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__position"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.372663}, "macro.dbt.default__position": {"unique_id": "macro.dbt.default__position", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/position.sql", "original_file_path": "macros/utils/position.sql", "name": "default__position", "macro_sql": "{% macro default__position(substring_text, string_text) %}\n\n position(\n {{ substring_text }} in {{ string_text }}\n )\n\n{%- endmacro -%}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.372797}, "macro.dbt.string_literal": {"unique_id": "macro.dbt.string_literal", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/literal.sql", "original_file_path": "macros/utils/literal.sql", "name": "string_literal", "macro_sql": "{%- macro string_literal(value) -%}\n {{ return(adapter.dispatch('string_literal', 'dbt') (value)) }}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__string_literal"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.373088}, "macro.dbt.default__string_literal": {"unique_id": "macro.dbt.default__string_literal", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/literal.sql", "original_file_path": "macros/utils/literal.sql", "name": "default__string_literal", "macro_sql": "{% macro default__string_literal(value) -%}\n '{{ value }}'\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.373186}, "macro.dbt.type_string": {"unique_id": "macro.dbt.type_string", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "name": "type_string", "macro_sql": "\n\n{%- macro type_string() -%}\n {{ return(adapter.dispatch('type_string', 'dbt')()) }}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__type_string"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.374037}, "macro.dbt.default__type_string": {"unique_id": "macro.dbt.default__type_string", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "name": "default__type_string", "macro_sql": "{% macro default__type_string() %}\n {{ return(api.Column.translate_type(\"string\")) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.374183}, "macro.dbt.type_timestamp": {"unique_id": "macro.dbt.type_timestamp", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "name": "type_timestamp", "macro_sql": "\n\n{%- macro type_timestamp() -%}\n {{ return(adapter.dispatch('type_timestamp', 'dbt')()) }}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.374341}, "macro.dbt.default__type_timestamp": {"unique_id": "macro.dbt.default__type_timestamp", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "name": "default__type_timestamp", "macro_sql": "{% macro default__type_timestamp() %}\n {{ return(api.Column.translate_type(\"timestamp\")) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.37449}, "macro.dbt.type_float": {"unique_id": "macro.dbt.type_float", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "name": "type_float", "macro_sql": "\n\n{%- macro type_float() -%}\n {{ return(adapter.dispatch('type_float', 'dbt')()) }}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__type_float"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.374707}, "macro.dbt.default__type_float": {"unique_id": "macro.dbt.default__type_float", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "name": "default__type_float", "macro_sql": "{% macro default__type_float() %}\n {{ return(api.Column.translate_type(\"float\")) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3748538}, "macro.dbt.type_numeric": {"unique_id": "macro.dbt.type_numeric", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "name": "type_numeric", "macro_sql": "\n\n{%- macro type_numeric() -%}\n {{ return(adapter.dispatch('type_numeric', 'dbt')()) }}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__type_numeric"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.37501}, "macro.dbt.default__type_numeric": {"unique_id": "macro.dbt.default__type_numeric", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "name": "default__type_numeric", "macro_sql": "{% macro default__type_numeric() %}\n {{ return(api.Column.numeric_type(\"numeric\", 28, 6)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.375186}, "macro.dbt.type_bigint": {"unique_id": "macro.dbt.type_bigint", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "name": "type_bigint", "macro_sql": "\n\n{%- macro type_bigint() -%}\n {{ return(adapter.dispatch('type_bigint', 'dbt')()) }}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__type_bigint"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.375343}, "macro.dbt.default__type_bigint": {"unique_id": "macro.dbt.default__type_bigint", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "name": "default__type_bigint", "macro_sql": "{% macro default__type_bigint() %}\n {{ return(api.Column.translate_type(\"bigint\")) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.375488}, "macro.dbt.type_int": {"unique_id": "macro.dbt.type_int", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "name": "type_int", "macro_sql": "\n\n{%- macro type_int() -%}\n {{ return(adapter.dispatch('type_int', 'dbt')()) }}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__type_int"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3756402}, "macro.dbt.default__type_int": {"unique_id": "macro.dbt.default__type_int", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "name": "default__type_int", "macro_sql": "{%- macro default__type_int() -%}\n {{ return(api.Column.translate_type(\"integer\")) }}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3757818}, "macro.dbt.bool_or": {"unique_id": "macro.dbt.bool_or", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/bool_or.sql", "original_file_path": "macros/utils/bool_or.sql", "name": "bool_or", "macro_sql": "{% macro bool_or(expression) -%}\n {{ return(adapter.dispatch('bool_or', 'dbt') (expression)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__bool_or"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.376085}, "macro.dbt.default__bool_or": {"unique_id": "macro.dbt.default__bool_or", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/bool_or.sql", "original_file_path": "macros/utils/bool_or.sql", "name": "default__bool_or", "macro_sql": "{% macro default__bool_or(expression) -%}\n\n bool_or({{ expression }})\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3761852}, "macro.dbt.last_day": {"unique_id": "macro.dbt.last_day", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/last_day.sql", "original_file_path": "macros/utils/last_day.sql", "name": "last_day", "macro_sql": "{% macro last_day(date, datepart) %}\n {{ return(adapter.dispatch('last_day', 'dbt') (date, datepart)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__last_day"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.376569}, "macro.dbt.default_last_day": {"unique_id": "macro.dbt.default_last_day", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/last_day.sql", "original_file_path": "macros/utils/last_day.sql", "name": "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", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.dateadd", "macro.dbt_utils.date_trunc"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3768299}, "macro.dbt.default__last_day": {"unique_id": "macro.dbt.default__last_day", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/last_day.sql", "original_file_path": "macros/utils/last_day.sql", "name": "default__last_day", "macro_sql": "{% macro default__last_day(date, datepart) -%}\n {{dbt.default_last_day(date, datepart)}}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default_last_day"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.376974}, "macro.dbt.split_part": {"unique_id": "macro.dbt.split_part", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/split_part.sql", "original_file_path": "macros/utils/split_part.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__split_part"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.377517}, "macro.dbt.default__split_part": {"unique_id": "macro.dbt.default__split_part", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/split_part.sql", "original_file_path": "macros/utils/split_part.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.377674}, "macro.dbt._split_part_negative": {"unique_id": "macro.dbt._split_part_negative", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/split_part.sql", "original_file_path": "macros/utils/split_part.sql", "name": "_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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.377891}, "macro.dbt.date_trunc": {"unique_id": "macro.dbt.date_trunc", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/date_trunc.sql", "original_file_path": "macros/utils/date_trunc.sql", "name": "date_trunc", "macro_sql": "{% macro date_trunc(datepart, date) -%}\n {{ return(adapter.dispatch('date_trunc', 'dbt') (datepart, date)) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__date_trunc"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.378217}, "macro.dbt.default__date_trunc": {"unique_id": "macro.dbt.default__date_trunc", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/date_trunc.sql", "original_file_path": "macros/utils/date_trunc.sql", "name": "default__date_trunc", "macro_sql": "{% macro default__date_trunc(datepart, date) -%}\n date_trunc('{{datepart}}', {{date}})\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3783412}, "macro.dbt.create_schema": {"unique_id": "macro.dbt.create_schema", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/schema.sql", "original_file_path": "macros/adapters/schema.sql", "name": "create_schema", "macro_sql": "{% macro create_schema(relation) -%}\n {{ adapter.dispatch('create_schema', 'dbt')(relation) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.bigquery__create_schema"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.378743}, "macro.dbt.default__create_schema": {"unique_id": "macro.dbt.default__create_schema", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/schema.sql", "original_file_path": "macros/adapters/schema.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3789172}, "macro.dbt.drop_schema": {"unique_id": "macro.dbt.drop_schema", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/schema.sql", "original_file_path": "macros/adapters/schema.sql", "name": "drop_schema", "macro_sql": "{% macro drop_schema(relation) -%}\n {{ adapter.dispatch('drop_schema', 'dbt')(relation) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.bigquery__drop_schema"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.379072}, "macro.dbt.default__drop_schema": {"unique_id": "macro.dbt.default__drop_schema", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/schema.sql", "original_file_path": "macros/adapters/schema.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.379317}, "macro.dbt.get_create_index_sql": {"unique_id": "macro.dbt.get_create_index_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__get_create_index_sql"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.379797}, "macro.dbt.default__get_create_index_sql": {"unique_id": "macro.dbt.default__get_create_index_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "name": "default__get_create_index_sql", "macro_sql": "{% macro default__get_create_index_sql(relation, index_dict) -%}\n {% do return(None) %}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.379929}, "macro.dbt.create_indexes": {"unique_id": "macro.dbt.create_indexes", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "name": "create_indexes", "macro_sql": "{% macro create_indexes(relation) -%}\n {{ adapter.dispatch('create_indexes', 'dbt')(relation) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__create_indexes"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.380079}, "macro.dbt.default__create_indexes": {"unique_id": "macro.dbt.default__create_indexes", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.get_create_index_sql", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.380471}, "macro.dbt.make_intermediate_relation": {"unique_id": "macro.dbt.make_intermediate_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__make_intermediate_relation"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.383425}, "macro.dbt.default__make_intermediate_relation": {"unique_id": "macro.dbt.default__make_intermediate_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__make_temp_relation"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3835871}, "macro.dbt.make_temp_relation": {"unique_id": "macro.dbt.make_temp_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__make_temp_relation"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.383797}, "macro.dbt.default__make_temp_relation": {"unique_id": "macro.dbt.default__make_temp_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.384083}, "macro.dbt.make_backup_relation": {"unique_id": "macro.dbt.make_backup_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__make_backup_relation"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.384326}, "macro.dbt.default__make_backup_relation": {"unique_id": "macro.dbt.default__make_backup_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.38464}, "macro.dbt.drop_relation": {"unique_id": "macro.dbt.drop_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "drop_relation", "macro_sql": "{% macro drop_relation(relation) -%}\n {{ return(adapter.dispatch('drop_relation', 'dbt')(relation)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.bigquery__drop_relation"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.384819}, "macro.dbt.default__drop_relation": {"unique_id": "macro.dbt.default__drop_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3850229}, "macro.dbt.truncate_relation": {"unique_id": "macro.dbt.truncate_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "truncate_relation", "macro_sql": "{% macro truncate_relation(relation) -%}\n {{ return(adapter.dispatch('truncate_relation', 'dbt')(relation)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__truncate_relation"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.385198}, "macro.dbt.default__truncate_relation": {"unique_id": "macro.dbt.default__truncate_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "default__truncate_relation", "macro_sql": "{% macro default__truncate_relation(relation) -%}\n {% call statement('truncate_relation') -%}\n truncate table {{ relation }}\n {%- endcall %}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.385352}, "macro.dbt.rename_relation": {"unique_id": "macro.dbt.rename_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "rename_relation", "macro_sql": "{% macro rename_relation(from_relation, to_relation) -%}\n {{ return(adapter.dispatch('rename_relation', 'dbt')(from_relation, to_relation)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.bigquery__rename_relation"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.385548}, "macro.dbt.default__rename_relation": {"unique_id": "macro.dbt.default__rename_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3858151}, "macro.dbt.get_or_create_relation": {"unique_id": "macro.dbt.get_or_create_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__get_or_create_relation"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.386058}, "macro.dbt.default__get_or_create_relation": {"unique_id": "macro.dbt.default__get_or_create_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.386656}, "macro.dbt.load_cached_relation": {"unique_id": "macro.dbt.load_cached_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.386881}, "macro.dbt.load_relation": {"unique_id": "macro.dbt.load_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "load_relation", "macro_sql": "{% macro load_relation(relation) %}\n {{ return(load_cached_relation(relation)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.load_cached_relation"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.387017}, "macro.dbt.drop_relation_if_exists": {"unique_id": "macro.dbt.drop_relation_if_exists", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3872051}, "macro.dbt.current_timestamp": {"unique_id": "macro.dbt.current_timestamp", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/freshness.sql", "original_file_path": "macros/adapters/freshness.sql", "name": "current_timestamp", "macro_sql": "{% macro current_timestamp() -%}\n {{ adapter.dispatch('current_timestamp', 'dbt')() }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3876932}, "macro.dbt.default__current_timestamp": {"unique_id": "macro.dbt.default__current_timestamp", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/freshness.sql", "original_file_path": "macros/adapters/freshness.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3878348}, "macro.dbt.collect_freshness": {"unique_id": "macro.dbt.collect_freshness", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/freshness.sql", "original_file_path": "macros/adapters/freshness.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.default__collect_freshness"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.388059}, "macro.dbt.default__collect_freshness": {"unique_id": "macro.dbt.default__collect_freshness", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/freshness.sql", "original_file_path": "macros/adapters/freshness.sql", "name": "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').table) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt_utils.current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.388469}, "macro.dbt.copy_grants": {"unique_id": "macro.dbt.copy_grants", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "copy_grants", "macro_sql": "{% macro copy_grants() %}\n {{ return(adapter.dispatch('copy_grants', 'dbt')()) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__copy_grants"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3900568}, "macro.dbt.default__copy_grants": {"unique_id": "macro.dbt.default__copy_grants", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "default__copy_grants", "macro_sql": "{% macro default__copy_grants() %}\n {{ return(True) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.390166}, "macro.dbt.support_multiple_grantees_per_dcl_statement": {"unique_id": "macro.dbt.support_multiple_grantees_per_dcl_statement", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__support_multiple_grantees_per_dcl_statement"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.390327}, "macro.dbt.default__support_multiple_grantees_per_dcl_statement": {"unique_id": "macro.dbt.default__support_multiple_grantees_per_dcl_statement", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "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", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.390432}, "macro.dbt.should_revoke": {"unique_id": "macro.dbt.should_revoke", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.copy_grants"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.39076}, "macro.dbt.get_show_grant_sql": {"unique_id": "macro.dbt.get_show_grant_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "get_show_grant_sql", "macro_sql": "{% macro get_show_grant_sql(relation) %}\n {{ return(adapter.dispatch(\"get_show_grant_sql\", \"dbt\")(relation)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.bigquery__get_show_grant_sql"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3909419}, "macro.dbt.default__get_show_grant_sql": {"unique_id": "macro.dbt.default__get_show_grant_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "default__get_show_grant_sql", "macro_sql": "{% macro default__get_show_grant_sql(relation) %}\n show grants on {{ relation }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.391037}, "macro.dbt.get_grant_sql": {"unique_id": "macro.dbt.get_grant_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.bigquery__get_grant_sql"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.391256}, "macro.dbt.default__get_grant_sql": {"unique_id": "macro.dbt.default__get_grant_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "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", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.391434}, "macro.dbt.get_revoke_sql": {"unique_id": "macro.dbt.get_revoke_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.bigquery__get_revoke_sql"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3916512}, "macro.dbt.default__get_revoke_sql": {"unique_id": "macro.dbt.default__get_revoke_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "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", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3918269}, "macro.dbt.get_dcl_statement_list": {"unique_id": "macro.dbt.get_dcl_statement_list", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__get_dcl_statement_list"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3920481}, "macro.dbt.default__get_dcl_statement_list": {"unique_id": "macro.dbt.default__get_dcl_statement_list", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.support_multiple_grantees_per_dcl_statement"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.392769}, "macro.dbt.call_dcl_statements": {"unique_id": "macro.dbt.call_dcl_statements", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__call_dcl_statements"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.392951}, "macro.dbt.default__call_dcl_statements": {"unique_id": "macro.dbt.default__call_dcl_statements", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.393186}, "macro.dbt.apply_grants": {"unique_id": "macro.dbt.apply_grants", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__apply_grants"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3934112}, "macro.dbt.default__apply_grants": {"unique_id": "macro.dbt.default__apply_grants", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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}, "patch_path": null, "arguments": [], "created_at": 1665431414.394517}, "macro.dbt.alter_column_comment": {"unique_id": "macro.dbt.alter_column_comment", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.bigquery__alter_column_comment"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.395201}, "macro.dbt.default__alter_column_comment": {"unique_id": "macro.dbt.default__alter_column_comment", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.395363}, "macro.dbt.alter_relation_comment": {"unique_id": "macro.dbt.alter_relation_comment", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__alter_relation_comment"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.395562}, "macro.dbt.default__alter_relation_comment": {"unique_id": "macro.dbt.default__alter_relation_comment", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.395723}, "macro.dbt.persist_docs": {"unique_id": "macro.dbt.persist_docs", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.bigquery__persist_docs"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.395991}, "macro.dbt.default__persist_docs": {"unique_id": "macro.dbt.default__persist_docs", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.run_query", "macro.dbt.alter_relation_comment", "macro.dbt.alter_column_comment"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.39646}, "macro.dbt.get_catalog": {"unique_id": "macro.dbt.get_catalog", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "name": "get_catalog", "macro_sql": "{% macro get_catalog(information_schema, schemas) -%}\n {{ return(adapter.dispatch('get_catalog', 'dbt')(information_schema, schemas)) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.bigquery__get_catalog"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3978481}, "macro.dbt.default__get_catalog": {"unique_id": "macro.dbt.default__get_catalog", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3980968}, "macro.dbt.information_schema_name": {"unique_id": "macro.dbt.information_schema_name", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "name": "information_schema_name", "macro_sql": "{% macro information_schema_name(database) %}\n {{ return(adapter.dispatch('information_schema_name', 'dbt')(database)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__information_schema_name"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.398278}, "macro.dbt.default__information_schema_name": {"unique_id": "macro.dbt.default__information_schema_name", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.398423}, "macro.dbt.list_schemas": {"unique_id": "macro.dbt.list_schemas", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "name": "list_schemas", "macro_sql": "{% macro list_schemas(database) -%}\n {{ return(adapter.dispatch('list_schemas', 'dbt')(database)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.bigquery__list_schemas"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3985999}, "macro.dbt.default__list_schemas": {"unique_id": "macro.dbt.default__list_schemas", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.information_schema_name", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3988328}, "macro.dbt.check_schema_exists": {"unique_id": "macro.dbt.check_schema_exists", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.bigquery__check_schema_exists"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.399029}, "macro.dbt.default__check_schema_exists": {"unique_id": "macro.dbt.default__check_schema_exists", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.replace", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3993201}, "macro.dbt.list_relations_without_caching": {"unique_id": "macro.dbt.list_relations_without_caching", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.bigquery__list_relations_without_caching"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.3995001}, "macro.dbt.default__list_relations_without_caching": {"unique_id": "macro.dbt.default__list_relations_without_caching", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.399652}, "macro.dbt.get_columns_in_relation": {"unique_id": "macro.dbt.get_columns_in_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "name": "get_columns_in_relation", "macro_sql": "{% macro get_columns_in_relation(relation) -%}\n {{ return(adapter.dispatch('get_columns_in_relation', 'dbt')(relation)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.bigquery__get_columns_in_relation"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.401227}, "macro.dbt.default__get_columns_in_relation": {"unique_id": "macro.dbt.default__get_columns_in_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4014568}, "macro.dbt.sql_convert_columns_in_relation": {"unique_id": "macro.dbt.sql_convert_columns_in_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.401762}, "macro.dbt.get_columns_in_query": {"unique_id": "macro.dbt.get_columns_in_query", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__get_columns_in_query"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.401943}, "macro.dbt.default__get_columns_in_query": {"unique_id": "macro.dbt.default__get_columns_in_query", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "name": "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 select * from (\n {{ select_sql }}\n ) as __dbt_sbq\n where false\n limit 0\n {% endcall %}\n\n {{ return(load_result('get_columns_in_query').table.columns | map(attribute='name') | list) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.402269}, "macro.dbt.alter_column_type": {"unique_id": "macro.dbt.alter_column_type", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.bigquery__alter_column_type"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.402494}, "macro.dbt.default__alter_column_type": {"unique_id": "macro.dbt.default__alter_column_type", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.403085}, "macro.dbt.alter_relation_add_remove_columns": {"unique_id": "macro.dbt.alter_relation_add_remove_columns", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__alter_relation_add_remove_columns"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.403337}, "macro.dbt.default__alter_relation_add_remove_columns": {"unique_id": "macro.dbt.default__alter_relation_add_remove_columns", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.404094}, "macro.dbt.test_unique": {"unique_id": "macro.dbt.test_unique", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "tests/generic/builtin.sql", "original_file_path": "tests/generic/builtin.sql", "name": "test_unique", "macro_sql": "{% test unique(model, column_name) %}\n {% set macro = adapter.dispatch('test_unique', 'dbt') %}\n {{ macro(model, column_name) }}\n{% endtest %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_bigquery.bigquery__test_unique"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.404633}, "macro.dbt.test_not_null": {"unique_id": "macro.dbt.test_not_null", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "tests/generic/builtin.sql", "original_file_path": "tests/generic/builtin.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__test_not_null"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.40486}, "macro.dbt.test_accepted_values": {"unique_id": "macro.dbt.test_accepted_values", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "tests/generic/builtin.sql", "original_file_path": "tests/generic/builtin.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__test_accepted_values"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.405143}, "macro.dbt.test_relationships": {"unique_id": "macro.dbt.test_relationships", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "tests/generic/builtin.sql", "original_file_path": "tests/generic/builtin.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__test_relationships"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.405411}, "macro.dbt_utils.except": {"unique_id": "macro.dbt_utils.except", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/except.sql", "original_file_path": "macros/cross_db_utils/except.sql", "name": "except", "macro_sql": "{% macro except() %}\n {{ return(adapter.dispatch('except', 'dbt_utils')()) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__except"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4057128}, "macro.dbt_utils.default__except": {"unique_id": "macro.dbt_utils.default__except", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/except.sql", "original_file_path": "macros/cross_db_utils/except.sql", "name": "default__except", "macro_sql": "{% macro default__except() %}\n\n except\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.405787}, "macro.dbt_utils.bigquery__except": {"unique_id": "macro.dbt_utils.bigquery__except", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/except.sql", "original_file_path": "macros/cross_db_utils/except.sql", "name": "bigquery__except", "macro_sql": "{% macro bigquery__except() %}\n\n except distinct\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.405855}, "macro.dbt_utils.replace": {"unique_id": "macro.dbt_utils.replace", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/replace.sql", "original_file_path": "macros/cross_db_utils/replace.sql", "name": "replace", "macro_sql": "{% macro replace(field, old_chars, new_chars) -%}\n {{ return(adapter.dispatch('replace', 'dbt_utils') (field, old_chars, new_chars)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__replace"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.406229}, "macro.dbt_utils.default__replace": {"unique_id": "macro.dbt_utils.default__replace", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/replace.sql", "original_file_path": "macros/cross_db_utils/replace.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4063869}, "macro.dbt_utils.concat": {"unique_id": "macro.dbt_utils.concat", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/concat.sql", "original_file_path": "macros/cross_db_utils/concat.sql", "name": "concat", "macro_sql": "{% macro concat(fields) -%}\n {{ return(adapter.dispatch('concat', 'dbt_utils')(fields)) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__concat"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.406681}, "macro.dbt_utils.default__concat": {"unique_id": "macro.dbt_utils.default__concat", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/concat.sql", "original_file_path": "macros/cross_db_utils/concat.sql", "name": "default__concat", "macro_sql": "{% macro default__concat(fields) -%}\n {{ fields|join(' || ') }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.406802}, "macro.dbt_utils.type_string": {"unique_id": "macro.dbt_utils.type_string", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/datatypes.sql", "original_file_path": "macros/cross_db_utils/datatypes.sql", "name": "type_string", "macro_sql": "\n\n{%- macro type_string() -%}\n {{ return(adapter.dispatch('type_string', 'dbt_utils')()) }}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__type_string"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.407487}, "macro.dbt_utils.default__type_string": {"unique_id": "macro.dbt_utils.default__type_string", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/datatypes.sql", "original_file_path": "macros/cross_db_utils/datatypes.sql", "name": "default__type_string", "macro_sql": "{% macro default__type_string() %}\n string\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.407557}, "macro.dbt_utils.redshift__type_string": {"unique_id": "macro.dbt_utils.redshift__type_string", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/datatypes.sql", "original_file_path": "macros/cross_db_utils/datatypes.sql", "name": "redshift__type_string", "macro_sql": "\n\n{%- macro redshift__type_string() -%}\n varchar\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.407688}, "macro.dbt_utils.postgres__type_string": {"unique_id": "macro.dbt_utils.postgres__type_string", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/datatypes.sql", "original_file_path": "macros/cross_db_utils/datatypes.sql", "name": "postgres__type_string", "macro_sql": "{% macro postgres__type_string() %}\n varchar\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.407754}, "macro.dbt_utils.snowflake__type_string": {"unique_id": "macro.dbt_utils.snowflake__type_string", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/datatypes.sql", "original_file_path": "macros/cross_db_utils/datatypes.sql", "name": "snowflake__type_string", "macro_sql": "{% macro snowflake__type_string() %}\n varchar\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.407821}, "macro.dbt_utils.type_timestamp": {"unique_id": "macro.dbt_utils.type_timestamp", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/datatypes.sql", "original_file_path": "macros/cross_db_utils/datatypes.sql", "name": "type_timestamp", "macro_sql": "\n\n{%- macro type_timestamp() -%}\n {{ return(adapter.dispatch('type_timestamp', 'dbt_utils')()) }}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.407974}, "macro.dbt_utils.default__type_timestamp": {"unique_id": "macro.dbt_utils.default__type_timestamp", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/datatypes.sql", "original_file_path": "macros/cross_db_utils/datatypes.sql", "name": "default__type_timestamp", "macro_sql": "{% macro default__type_timestamp() %}\n timestamp\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.408045}, "macro.dbt_utils.postgres__type_timestamp": {"unique_id": "macro.dbt_utils.postgres__type_timestamp", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/datatypes.sql", "original_file_path": "macros/cross_db_utils/datatypes.sql", "name": "postgres__type_timestamp", "macro_sql": "{% macro postgres__type_timestamp() %}\n timestamp without time zone\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.408111}, "macro.dbt_utils.snowflake__type_timestamp": {"unique_id": "macro.dbt_utils.snowflake__type_timestamp", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/datatypes.sql", "original_file_path": "macros/cross_db_utils/datatypes.sql", "name": "snowflake__type_timestamp", "macro_sql": "{% macro snowflake__type_timestamp() %}\n timestamp_ntz\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.408177}, "macro.dbt_utils.type_float": {"unique_id": "macro.dbt_utils.type_float", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/datatypes.sql", "original_file_path": "macros/cross_db_utils/datatypes.sql", "name": "type_float", "macro_sql": "\n\n{%- macro type_float() -%}\n {{ return(adapter.dispatch('type_float', 'dbt_utils')()) }}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__type_float"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.40833}, "macro.dbt_utils.default__type_float": {"unique_id": "macro.dbt_utils.default__type_float", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/datatypes.sql", "original_file_path": "macros/cross_db_utils/datatypes.sql", "name": "default__type_float", "macro_sql": "{% macro default__type_float() %}\n float\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4083982}, "macro.dbt_utils.bigquery__type_float": {"unique_id": "macro.dbt_utils.bigquery__type_float", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/datatypes.sql", "original_file_path": "macros/cross_db_utils/datatypes.sql", "name": "bigquery__type_float", "macro_sql": "{% macro bigquery__type_float() %}\n float64\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.408464}, "macro.dbt_utils.type_numeric": {"unique_id": "macro.dbt_utils.type_numeric", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/datatypes.sql", "original_file_path": "macros/cross_db_utils/datatypes.sql", "name": "type_numeric", "macro_sql": "\n\n{%- macro type_numeric() -%}\n {{ return(adapter.dispatch('type_numeric', 'dbt_utils')()) }}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__type_numeric"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.408617}, "macro.dbt_utils.default__type_numeric": {"unique_id": "macro.dbt_utils.default__type_numeric", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/datatypes.sql", "original_file_path": "macros/cross_db_utils/datatypes.sql", "name": "default__type_numeric", "macro_sql": "{% macro default__type_numeric() %}\n numeric(28, 6)\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.408687}, "macro.dbt_utils.bigquery__type_numeric": {"unique_id": "macro.dbt_utils.bigquery__type_numeric", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/datatypes.sql", "original_file_path": "macros/cross_db_utils/datatypes.sql", "name": "bigquery__type_numeric", "macro_sql": "{% macro bigquery__type_numeric() %}\n numeric\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4087522}, "macro.dbt_utils.type_bigint": {"unique_id": "macro.dbt_utils.type_bigint", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/datatypes.sql", "original_file_path": "macros/cross_db_utils/datatypes.sql", "name": "type_bigint", "macro_sql": "\n\n{%- macro type_bigint() -%}\n {{ return(adapter.dispatch('type_bigint', 'dbt_utils')()) }}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__type_bigint"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.408906}, "macro.dbt_utils.default__type_bigint": {"unique_id": "macro.dbt_utils.default__type_bigint", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/datatypes.sql", "original_file_path": "macros/cross_db_utils/datatypes.sql", "name": "default__type_bigint", "macro_sql": "{% macro default__type_bigint() %}\n bigint\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4089768}, "macro.dbt_utils.bigquery__type_bigint": {"unique_id": "macro.dbt_utils.bigquery__type_bigint", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/datatypes.sql", "original_file_path": "macros/cross_db_utils/datatypes.sql", "name": "bigquery__type_bigint", "macro_sql": "{% macro bigquery__type_bigint() %}\n int64\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.409041}, "macro.dbt_utils.type_int": {"unique_id": "macro.dbt_utils.type_int", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/datatypes.sql", "original_file_path": "macros/cross_db_utils/datatypes.sql", "name": "type_int", "macro_sql": "\n\n{%- macro type_int() -%}\n {{ return(adapter.dispatch('type_int', 'dbt_utils')()) }}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__type_int"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4091918}, "macro.dbt_utils.default__type_int": {"unique_id": "macro.dbt_utils.default__type_int", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/datatypes.sql", "original_file_path": "macros/cross_db_utils/datatypes.sql", "name": "default__type_int", "macro_sql": "{% macro default__type_int() %}\n int\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.409261}, "macro.dbt_utils.bigquery__type_int": {"unique_id": "macro.dbt_utils.bigquery__type_int", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/datatypes.sql", "original_file_path": "macros/cross_db_utils/datatypes.sql", "name": "bigquery__type_int", "macro_sql": "{% macro bigquery__type_int() %}\n int64\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4093251}, "macro.dbt_utils._is_relation": {"unique_id": "macro.dbt_utils._is_relation", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/_is_relation.sql", "original_file_path": "macros/cross_db_utils/_is_relation.sql", "name": "_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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4098141}, "macro.dbt_utils.cast_array_to_string": {"unique_id": "macro.dbt_utils.cast_array_to_string", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/cast_array_to_string.sql", "original_file_path": "macros/cross_db_utils/cast_array_to_string.sql", "name": "cast_array_to_string", "macro_sql": "{% macro cast_array_to_string(array) %}\n {{ adapter.dispatch('cast_array_to_string', 'dbt_utils') (array) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__cast_array_to_string"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.410252}, "macro.dbt_utils.default__cast_array_to_string": {"unique_id": "macro.dbt_utils.default__cast_array_to_string", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/cast_array_to_string.sql", "original_file_path": "macros/cross_db_utils/cast_array_to_string.sql", "name": "default__cast_array_to_string", "macro_sql": "{% macro default__cast_array_to_string(array) %}\n cast({{ array }} as {{ dbt_utils.type_string() }})\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.410453}, "macro.dbt_utils.postgres__cast_array_to_string": {"unique_id": "macro.dbt_utils.postgres__cast_array_to_string", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/cast_array_to_string.sql", "original_file_path": "macros/cross_db_utils/cast_array_to_string.sql", "name": "postgres__cast_array_to_string", "macro_sql": "{% macro postgres__cast_array_to_string(array) %}\n {%- set array_as_string -%}cast({{ array }} as {{ dbt_utils.type_string() }}){%- endset -%}\n {{ dbt_utils.replace(dbt_utils.replace(array_as_string,\"'}'\",\"']'\"),\"'{'\",\"'['\") }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.type_string", "macro.dbt_utils.replace"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.410746}, "macro.dbt_utils.redshift__cast_array_to_string": {"unique_id": "macro.dbt_utils.redshift__cast_array_to_string", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/cast_array_to_string.sql", "original_file_path": "macros/cross_db_utils/cast_array_to_string.sql", "name": "redshift__cast_array_to_string", "macro_sql": "{% macro redshift__cast_array_to_string(array) %}\n cast({{ array }} as {{ dbt_utils.type_string() }})\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4108832}, "macro.dbt_utils.bigquery__cast_array_to_string": {"unique_id": "macro.dbt_utils.bigquery__cast_array_to_string", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/cast_array_to_string.sql", "original_file_path": "macros/cross_db_utils/cast_array_to_string.sql", "name": "bigquery__cast_array_to_string", "macro_sql": "{% macro bigquery__cast_array_to_string(array) %}\n '['||(select string_agg(cast(element as string), ',') from unnest({{ array }}) element)||']'\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4109828}, "macro.dbt_utils.length": {"unique_id": "macro.dbt_utils.length", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/length.sql", "original_file_path": "macros/cross_db_utils/length.sql", "name": "length", "macro_sql": "{% macro length(expression) -%}\n {{ return(adapter.dispatch('length', 'dbt_utils') (expression)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__length"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.41132}, "macro.dbt_utils.default__length": {"unique_id": "macro.dbt_utils.default__length", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/length.sql", "original_file_path": "macros/cross_db_utils/length.sql", "name": "default__length", "macro_sql": "{% macro default__length(expression) %}\n \n length(\n {{ expression }}\n )\n \n{%- endmacro -%}\n\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.411423}, "macro.dbt_utils.redshift__length": {"unique_id": "macro.dbt_utils.redshift__length", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/length.sql", "original_file_path": "macros/cross_db_utils/length.sql", "name": "redshift__length", "macro_sql": "{% macro redshift__length(expression) %}\n\n len(\n {{ expression }}\n )\n \n{%- endmacro -%}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.411519}, "macro.dbt_utils.dateadd": {"unique_id": "macro.dbt_utils.dateadd", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/dateadd.sql", "original_file_path": "macros/cross_db_utils/dateadd.sql", "name": "dateadd", "macro_sql": "{% macro dateadd(datepart, interval, from_date_or_timestamp) %}\n {{ return(adapter.dispatch('dateadd', 'dbt_utils')(datepart, interval, from_date_or_timestamp)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__dateadd"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4120908}, "macro.dbt_utils.default__dateadd": {"unique_id": "macro.dbt_utils.default__dateadd", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/dateadd.sql", "original_file_path": "macros/cross_db_utils/dateadd.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.412249}, "macro.dbt_utils.bigquery__dateadd": {"unique_id": "macro.dbt_utils.bigquery__dateadd", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/dateadd.sql", "original_file_path": "macros/cross_db_utils/dateadd.sql", "name": "bigquery__dateadd", "macro_sql": "{% macro bigquery__dateadd(datepart, interval, from_date_or_timestamp) %}\n\n datetime_add(\n cast( {{ from_date_or_timestamp }} as datetime),\n interval {{ interval }} {{ datepart }}\n )\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.412404}, "macro.dbt_utils.postgres__dateadd": {"unique_id": "macro.dbt_utils.postgres__dateadd", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/dateadd.sql", "original_file_path": "macros/cross_db_utils/dateadd.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.41256}, "macro.dbt_utils.redshift__dateadd": {"unique_id": "macro.dbt_utils.redshift__dateadd", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/dateadd.sql", "original_file_path": "macros/cross_db_utils/dateadd.sql", "name": "redshift__dateadd", "macro_sql": "{% macro redshift__dateadd(datepart, interval, from_date_or_timestamp) %}\n\n {{ return(dbt_utils.default__dateadd(datepart, interval, from_date_or_timestamp)) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__dateadd"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.412752}, "macro.dbt_utils.intersect": {"unique_id": "macro.dbt_utils.intersect", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/intersect.sql", "original_file_path": "macros/cross_db_utils/intersect.sql", "name": "intersect", "macro_sql": "{% macro intersect() %}\n {{ return(adapter.dispatch('intersect', 'dbt_utils')()) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__intersect"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4130461}, "macro.dbt_utils.default__intersect": {"unique_id": "macro.dbt_utils.default__intersect", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/intersect.sql", "original_file_path": "macros/cross_db_utils/intersect.sql", "name": "default__intersect", "macro_sql": "{% macro default__intersect() %}\n\n intersect\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.413116}, "macro.dbt_utils.bigquery__intersect": {"unique_id": "macro.dbt_utils.bigquery__intersect", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/intersect.sql", "original_file_path": "macros/cross_db_utils/intersect.sql", "name": "bigquery__intersect", "macro_sql": "{% macro bigquery__intersect() %}\n\n intersect distinct\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.413183}, "macro.dbt_utils.escape_single_quotes": {"unique_id": "macro.dbt_utils.escape_single_quotes", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/escape_single_quotes.sql", "original_file_path": "macros/cross_db_utils/escape_single_quotes.sql", "name": "escape_single_quotes", "macro_sql": "{% macro escape_single_quotes(expression) %}\n {{ return(adapter.dispatch('escape_single_quotes', 'dbt_utils') (expression)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__escape_single_quotes"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.413555}, "macro.dbt_utils.default__escape_single_quotes": {"unique_id": "macro.dbt_utils.default__escape_single_quotes", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/escape_single_quotes.sql", "original_file_path": "macros/cross_db_utils/escape_single_quotes.sql", "name": "default__escape_single_quotes", "macro_sql": "{% macro default__escape_single_quotes(expression) -%}\n{{ expression | replace(\"'\",\"''\") }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4136891}, "macro.dbt_utils.snowflake__escape_single_quotes": {"unique_id": "macro.dbt_utils.snowflake__escape_single_quotes", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/escape_single_quotes.sql", "original_file_path": "macros/cross_db_utils/escape_single_quotes.sql", "name": "snowflake__escape_single_quotes", "macro_sql": "{% macro snowflake__escape_single_quotes(expression) -%}\n{{ expression | replace(\"'\", \"\\\\'\") }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4138181}, "macro.dbt_utils.bigquery__escape_single_quotes": {"unique_id": "macro.dbt_utils.bigquery__escape_single_quotes", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/escape_single_quotes.sql", "original_file_path": "macros/cross_db_utils/escape_single_quotes.sql", "name": "bigquery__escape_single_quotes", "macro_sql": "{% macro bigquery__escape_single_quotes(expression) -%}\n{{ expression | replace(\"'\", \"\\\\'\") }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4139452}, "macro.dbt_utils.right": {"unique_id": "macro.dbt_utils.right", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/right.sql", "original_file_path": "macros/cross_db_utils/right.sql", "name": "right", "macro_sql": "{% macro right(string_text, length_expression) -%}\n {{ return(adapter.dispatch('right', 'dbt_utils') (string_text, length_expression)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__right"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4145012}, "macro.dbt_utils.default__right": {"unique_id": "macro.dbt_utils.default__right", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/right.sql", "original_file_path": "macros/cross_db_utils/right.sql", "name": "default__right", "macro_sql": "{% macro default__right(string_text, length_expression) %}\n\n right(\n {{ string_text }},\n {{ length_expression }}\n )\n \n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.414634}, "macro.dbt_utils.bigquery__right": {"unique_id": "macro.dbt_utils.bigquery__right", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/right.sql", "original_file_path": "macros/cross_db_utils/right.sql", "name": "bigquery__right", "macro_sql": "{% macro bigquery__right(string_text, length_expression) %}\n\n case when {{ length_expression }} = 0 \n then ''\n else \n substr(\n {{ string_text }},\n -1 * ({{ length_expression }})\n )\n end\n\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.414847}, "macro.dbt_utils.snowflake__right": {"unique_id": "macro.dbt_utils.snowflake__right", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/right.sql", "original_file_path": "macros/cross_db_utils/right.sql", "name": "snowflake__right", "macro_sql": "{% macro snowflake__right(string_text, length_expression) %}\n\n case when {{ length_expression }} = 0 \n then ''\n else \n right(\n {{ string_text }},\n {{ length_expression }}\n )\n end\n\n{%- endmacro -%}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.414998}, "macro.dbt_utils.listagg": {"unique_id": "macro.dbt_utils.listagg", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/listagg.sql", "original_file_path": "macros/cross_db_utils/listagg.sql", "name": "listagg", "macro_sql": "{% macro listagg(measure, delimiter_text=\"','\", order_by_clause=none, limit_num=none) -%}\n {{ return(adapter.dispatch('listagg', 'dbt_utils') (measure, delimiter_text, order_by_clause, limit_num)) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__listagg"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.417142}, "macro.dbt_utils.default__listagg": {"unique_id": "macro.dbt_utils.default__listagg", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/listagg.sql", "original_file_path": "macros/cross_db_utils/listagg.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4175282}, "macro.dbt_utils.bigquery__listagg": {"unique_id": "macro.dbt_utils.bigquery__listagg", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/listagg.sql", "original_file_path": "macros/cross_db_utils/listagg.sql", "name": "bigquery__listagg", "macro_sql": "{% macro bigquery__listagg(measure, delimiter_text, order_by_clause, limit_num) -%}\n\n string_agg(\n {{ measure }},\n {{ delimiter_text }}\n {% if order_by_clause -%}\n {{ order_by_clause }}\n {%- endif %}\n {% if limit_num -%}\n limit {{ limit_num }}\n {%- endif %}\n )\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4177961}, "macro.dbt_utils.postgres__listagg": {"unique_id": "macro.dbt_utils.postgres__listagg", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/listagg.sql", "original_file_path": "macros/cross_db_utils/listagg.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.418174}, "macro.dbt_utils.redshift__listagg": {"unique_id": "macro.dbt_utils.redshift__listagg", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/listagg.sql", "original_file_path": "macros/cross_db_utils/listagg.sql", "name": "redshift__listagg", "macro_sql": "{% macro redshift__listagg(measure, delimiter_text, order_by_clause, limit_num) -%}\n\n {% if limit_num -%}\n {% set ns = namespace() %}\n {% set ns.delimiter_text_regex = delimiter_text|trim(\"'\") %}\n {% set special_chars %}\\,^,$,.,|,?,*,+,(,),[,],{,}{% endset %} \n {%- for char in special_chars.split(',') -%}\n {% set escape_char %}\\\\{{ char }}{% endset %}\n {% set ns.delimiter_text_regex = ns.delimiter_text_regex|replace(char,escape_char) %}\n {%- endfor -%}\n\n {% set regex %}'([^{{ ns.delimiter_text_regex }}]+{{ ns.delimiter_text_regex }}){1,{{ limit_num - 1}}}[^{{ ns.delimiter_text_regex }}]+'{% endset %}\n regexp_substr(\n listagg(\n {{ measure }},\n {{ delimiter_text }}\n )\n {% if order_by_clause -%}\n within group ({{ order_by_clause }})\n {%- endif %}\n ,{{ regex }}\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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.419102}, "macro.dbt_utils.datediff": {"unique_id": "macro.dbt_utils.datediff", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/datediff.sql", "original_file_path": "macros/cross_db_utils/datediff.sql", "name": "datediff", "macro_sql": "{% macro datediff(first_date, second_date, datepart) %}\n {{ return(adapter.dispatch('datediff', 'dbt_utils')(first_date, second_date, datepart)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__datediff"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4215329}, "macro.dbt_utils.default__datediff": {"unique_id": "macro.dbt_utils.default__datediff", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/datediff.sql", "original_file_path": "macros/cross_db_utils/datediff.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4216902}, "macro.dbt_utils.bigquery__datediff": {"unique_id": "macro.dbt_utils.bigquery__datediff", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/datediff.sql", "original_file_path": "macros/cross_db_utils/datediff.sql", "name": "bigquery__datediff", "macro_sql": "{% macro bigquery__datediff(first_date, second_date, datepart) -%}\n\n datetime_diff(\n cast({{second_date}} as datetime),\n cast({{first_date}} as datetime),\n {{datepart}}\n )\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4218419}, "macro.dbt_utils.postgres__datediff": {"unique_id": "macro.dbt_utils.postgres__datediff", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/datediff.sql", "original_file_path": "macros/cross_db_utils/datediff.sql", "name": "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 ({{ dbt_utils.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_utils.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_utils.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_utils.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_utils.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_utils.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_utils.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_utils.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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.datediff"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.423552}, "macro.dbt_utils.redshift__datediff": {"unique_id": "macro.dbt_utils.redshift__datediff", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/datediff.sql", "original_file_path": "macros/cross_db_utils/datediff.sql", "name": "redshift__datediff", "macro_sql": "{% macro redshift__datediff(first_date, second_date, datepart) -%}\n\n {{ return(dbt_utils.default__datediff(first_date, second_date, datepart)) }}\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__datediff"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4237492}, "macro.dbt_utils.safe_cast": {"unique_id": "macro.dbt_utils.safe_cast", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/safe_cast.sql", "original_file_path": "macros/cross_db_utils/safe_cast.sql", "name": "safe_cast", "macro_sql": "{% macro safe_cast(field, type) %}\n {{ return(adapter.dispatch('safe_cast', 'dbt_utils') (field, type)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__safe_cast"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.424148}, "macro.dbt_utils.default__safe_cast": {"unique_id": "macro.dbt_utils.default__safe_cast", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/safe_cast.sql", "original_file_path": "macros/cross_db_utils/safe_cast.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4242828}, "macro.dbt_utils.snowflake__safe_cast": {"unique_id": "macro.dbt_utils.snowflake__safe_cast", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/safe_cast.sql", "original_file_path": "macros/cross_db_utils/safe_cast.sql", "name": "snowflake__safe_cast", "macro_sql": "{% macro snowflake__safe_cast(field, type) %}\n try_cast({{field}} as {{type}})\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.424404}, "macro.dbt_utils.bigquery__safe_cast": {"unique_id": "macro.dbt_utils.bigquery__safe_cast", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/safe_cast.sql", "original_file_path": "macros/cross_db_utils/safe_cast.sql", "name": "bigquery__safe_cast", "macro_sql": "{% macro bigquery__safe_cast(field, type) %}\n safe_cast({{field}} as {{type}})\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.424525}, "macro.dbt_utils.hash": {"unique_id": "macro.dbt_utils.hash", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/hash.sql", "original_file_path": "macros/cross_db_utils/hash.sql", "name": "hash", "macro_sql": "{% macro hash(field) -%}\n {{ return(adapter.dispatch('hash', 'dbt_utils') (field)) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__hash"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.42486}, "macro.dbt_utils.default__hash": {"unique_id": "macro.dbt_utils.default__hash", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/hash.sql", "original_file_path": "macros/cross_db_utils/hash.sql", "name": "default__hash", "macro_sql": "{% macro default__hash(field) -%}\n md5(cast({{field}} as {{dbt_utils.type_string()}}))\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.424994}, "macro.dbt_utils.bigquery__hash": {"unique_id": "macro.dbt_utils.bigquery__hash", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/hash.sql", "original_file_path": "macros/cross_db_utils/hash.sql", "name": "bigquery__hash", "macro_sql": "{% macro bigquery__hash(field) -%}\n to_hex({{dbt_utils.default__hash(field)}})\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__hash"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.425118}, "macro.dbt_utils.cast_bool_to_text": {"unique_id": "macro.dbt_utils.cast_bool_to_text", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/cast_bool_to_text.sql", "original_file_path": "macros/cross_db_utils/cast_bool_to_text.sql", "name": "cast_bool_to_text", "macro_sql": "{% macro cast_bool_to_text(field) %}\n {{ adapter.dispatch('cast_bool_to_text', 'dbt_utils') (field) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__cast_bool_to_text"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.425468}, "macro.dbt_utils.default__cast_bool_to_text": {"unique_id": "macro.dbt_utils.default__cast_bool_to_text", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/cast_bool_to_text.sql", "original_file_path": "macros/cross_db_utils/cast_bool_to_text.sql", "name": "default__cast_bool_to_text", "macro_sql": "{% macro default__cast_bool_to_text(field) %}\n cast({{ field }} as {{ dbt_utils.type_string() }})\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.425601}, "macro.dbt_utils.redshift__cast_bool_to_text": {"unique_id": "macro.dbt_utils.redshift__cast_bool_to_text", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/cast_bool_to_text.sql", "original_file_path": "macros/cross_db_utils/cast_bool_to_text.sql", "name": "redshift__cast_bool_to_text", "macro_sql": "{% macro redshift__cast_bool_to_text(field) %}\n case\n when {{ field }} is true then 'true'\n when {{ field }} is false then 'false'\n end::text\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4257212}, "macro.dbt_utils.identifier": {"unique_id": "macro.dbt_utils.identifier", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/identifier.sql", "original_file_path": "macros/cross_db_utils/identifier.sql", "name": "identifier", "macro_sql": "{% macro identifier(value) %}\t\n {%- set error_message = '\n Warning: the `identifier` macro is no longer supported and will be deprecated in a future release of dbt-utils. \\\n Use `adapter.quote` instead. The {}.{} model triggered this warning. \\\n '.format(model.package_name, model.name) -%}\n {%- do exceptions.warn(error_message) -%}\n {{ return(adapter.dispatch('identifier', 'dbt_utils') (value)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__identifier"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.426229}, "macro.dbt_utils.default__identifier": {"unique_id": "macro.dbt_utils.default__identifier", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/identifier.sql", "original_file_path": "macros/cross_db_utils/identifier.sql", "name": "default__identifier", "macro_sql": "{% macro default__identifier(value) -%}\t\n \"{{ value }}\"\t\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4263308}, "macro.dbt_utils.bigquery__identifier": {"unique_id": "macro.dbt_utils.bigquery__identifier", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/identifier.sql", "original_file_path": "macros/cross_db_utils/identifier.sql", "name": "bigquery__identifier", "macro_sql": "{% macro bigquery__identifier(value) -%}\t\n `{{ value }}`\t\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.426429}, "macro.dbt_utils.any_value": {"unique_id": "macro.dbt_utils.any_value", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/any_value.sql", "original_file_path": "macros/cross_db_utils/any_value.sql", "name": "any_value", "macro_sql": "{% macro any_value(expression) -%}\n {{ return(adapter.dispatch('any_value', 'dbt_utils') (expression)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__any_value"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.426761}, "macro.dbt_utils.default__any_value": {"unique_id": "macro.dbt_utils.default__any_value", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/any_value.sql", "original_file_path": "macros/cross_db_utils/any_value.sql", "name": "default__any_value", "macro_sql": "{% macro default__any_value(expression) -%}\n \n any_value({{ expression }})\n \n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.42686}, "macro.dbt_utils.postgres__any_value": {"unique_id": "macro.dbt_utils.postgres__any_value", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/any_value.sql", "original_file_path": "macros/cross_db_utils/any_value.sql", "name": "postgres__any_value", "macro_sql": "{% macro postgres__any_value(expression) -%}\n {#- /*Postgres doesn't support any_value, so we're using min() to get the same result*/ -#}\n min({{ expression }})\n \n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.426961}, "macro.dbt_utils.position": {"unique_id": "macro.dbt_utils.position", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/position.sql", "original_file_path": "macros/cross_db_utils/position.sql", "name": "position", "macro_sql": "{% macro position(substring_text, string_text) -%}\n {{ return(adapter.dispatch('position', 'dbt_utils') (substring_text, string_text)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__position"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.427361}, "macro.dbt_utils.default__position": {"unique_id": "macro.dbt_utils.default__position", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/position.sql", "original_file_path": "macros/cross_db_utils/position.sql", "name": "default__position", "macro_sql": "{% macro default__position(substring_text, string_text) %}\n\n position(\n {{ substring_text }} in {{ string_text }}\n )\n \n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.427493}, "macro.dbt_utils.bigquery__position": {"unique_id": "macro.dbt_utils.bigquery__position", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/position.sql", "original_file_path": "macros/cross_db_utils/position.sql", "name": "bigquery__position", "macro_sql": "{% macro bigquery__position(substring_text, string_text) %}\n\n strpos(\n {{ string_text }},\n {{ substring_text }}\n \n )\n \n{%- endmacro -%}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4276211}, "macro.dbt_utils.string_literal": {"unique_id": "macro.dbt_utils.string_literal", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/literal.sql", "original_file_path": "macros/cross_db_utils/literal.sql", "name": "string_literal", "macro_sql": "{%- macro string_literal(value) -%}\n {{ return(adapter.dispatch('string_literal', 'dbt_utils') (value)) }}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__string_literal"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.427972}, "macro.dbt_utils.default__string_literal": {"unique_id": "macro.dbt_utils.default__string_literal", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/literal.sql", "original_file_path": "macros/cross_db_utils/literal.sql", "name": "default__string_literal", "macro_sql": "{% macro default__string_literal(value) -%}\n '{{ value }}'\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.428073}, "macro.dbt_utils.current_timestamp": {"unique_id": "macro.dbt_utils.current_timestamp", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/current_timestamp.sql", "original_file_path": "macros/cross_db_utils/current_timestamp.sql", "name": "current_timestamp", "macro_sql": "{% macro current_timestamp() -%}\n {{ return(adapter.dispatch('current_timestamp', 'dbt_utils')()) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.428637}, "macro.dbt_utils.default__current_timestamp": {"unique_id": "macro.dbt_utils.default__current_timestamp", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/current_timestamp.sql", "original_file_path": "macros/cross_db_utils/current_timestamp.sql", "name": "default__current_timestamp", "macro_sql": "{% macro default__current_timestamp() %}\n current_timestamp::{{dbt_utils.type_timestamp()}}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4287481}, "macro.dbt_utils.redshift__current_timestamp": {"unique_id": "macro.dbt_utils.redshift__current_timestamp", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/current_timestamp.sql", "original_file_path": "macros/cross_db_utils/current_timestamp.sql", "name": "redshift__current_timestamp", "macro_sql": "{% macro redshift__current_timestamp() %}\n getdate()\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4288158}, "macro.dbt_utils.bigquery__current_timestamp": {"unique_id": "macro.dbt_utils.bigquery__current_timestamp", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/current_timestamp.sql", "original_file_path": "macros/cross_db_utils/current_timestamp.sql", "name": "bigquery__current_timestamp", "macro_sql": "{% macro bigquery__current_timestamp() %}\n current_timestamp\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.428886}, "macro.dbt_utils.current_timestamp_in_utc": {"unique_id": "macro.dbt_utils.current_timestamp_in_utc", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/current_timestamp.sql", "original_file_path": "macros/cross_db_utils/current_timestamp.sql", "name": "current_timestamp_in_utc", "macro_sql": "{% macro current_timestamp_in_utc() -%}\n {{ return(adapter.dispatch('current_timestamp_in_utc', 'dbt_utils')()) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__current_timestamp_in_utc"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.429039}, "macro.dbt_utils.default__current_timestamp_in_utc": {"unique_id": "macro.dbt_utils.default__current_timestamp_in_utc", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/current_timestamp.sql", "original_file_path": "macros/cross_db_utils/current_timestamp.sql", "name": "default__current_timestamp_in_utc", "macro_sql": "{% macro default__current_timestamp_in_utc() %}\n {{dbt_utils.current_timestamp()}}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.429145}, "macro.dbt_utils.snowflake__current_timestamp_in_utc": {"unique_id": "macro.dbt_utils.snowflake__current_timestamp_in_utc", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/current_timestamp.sql", "original_file_path": "macros/cross_db_utils/current_timestamp.sql", "name": "snowflake__current_timestamp_in_utc", "macro_sql": "{% macro snowflake__current_timestamp_in_utc() %}\n convert_timezone('UTC', {{dbt_utils.current_timestamp()}})::{{dbt_utils.type_timestamp()}}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.current_timestamp", "macro.dbt_utils.type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.429284}, "macro.dbt_utils.postgres__current_timestamp_in_utc": {"unique_id": "macro.dbt_utils.postgres__current_timestamp_in_utc", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/current_timestamp.sql", "original_file_path": "macros/cross_db_utils/current_timestamp.sql", "name": "postgres__current_timestamp_in_utc", "macro_sql": "{% macro postgres__current_timestamp_in_utc() %}\n (current_timestamp at time zone 'utc')::{{dbt_utils.type_timestamp()}}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.429389}, "macro.dbt_utils.redshift__current_timestamp_in_utc": {"unique_id": "macro.dbt_utils.redshift__current_timestamp_in_utc", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/current_timestamp.sql", "original_file_path": "macros/cross_db_utils/current_timestamp.sql", "name": "redshift__current_timestamp_in_utc", "macro_sql": "{% macro redshift__current_timestamp_in_utc() %}\n {{ return(dbt_utils.default__current_timestamp_in_utc()) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__current_timestamp_in_utc"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.429513}, "macro.dbt_utils.width_bucket": {"unique_id": "macro.dbt_utils.width_bucket", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/width_bucket.sql", "original_file_path": "macros/cross_db_utils/width_bucket.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__width_bucket"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4308841}, "macro.dbt_utils.default__width_bucket": {"unique_id": "macro.dbt_utils.default__width_bucket", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/width_bucket.sql", "original_file_path": "macros/cross_db_utils/width_bucket.sql", "name": "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_utils.safe_cast(expr, dbt_utils.type_numeric() ) }},\n {{ dbt_utils.safe_cast(bin_size, dbt_utils.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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.safe_cast", "macro.dbt_utils.type_numeric"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.43134}, "macro.dbt_utils.redshift__width_bucket": {"unique_id": "macro.dbt_utils.redshift__width_bucket", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/width_bucket.sql", "original_file_path": "macros/cross_db_utils/width_bucket.sql", "name": "redshift__width_bucket", "macro_sql": "{% macro redshift__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 exactly at the bucket edge\n case\n when\n {{ dbt_utils.safe_cast(expr, dbt_utils.type_numeric() ) }} %\n {{ dbt_utils.safe_cast(bin_size, dbt_utils.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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.safe_cast", "macro.dbt_utils.type_numeric"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.43179}, "macro.dbt_utils.snowflake__width_bucket": {"unique_id": "macro.dbt_utils.snowflake__width_bucket", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/width_bucket.sql", "original_file_path": "macros/cross_db_utils/width_bucket.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4319701}, "macro.dbt_utils.array_concat": {"unique_id": "macro.dbt_utils.array_concat", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/array_concat.sql", "original_file_path": "macros/cross_db_utils/array_concat.sql", "name": "array_concat", "macro_sql": "{% macro array_concat(array_1, array_2) -%}\n {{ return(adapter.dispatch('array_concat', 'dbt_utils')(array_1, array_2)) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__array_concat"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4323788}, "macro.dbt_utils.default__array_concat": {"unique_id": "macro.dbt_utils.default__array_concat", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/array_concat.sql", "original_file_path": "macros/cross_db_utils/array_concat.sql", "name": "default__array_concat", "macro_sql": "{% macro default__array_concat(array_1, array_2) -%}\n array_cat({{ array_1 }}, {{ array_2 }})\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.432508}, "macro.dbt_utils.bigquery__array_concat": {"unique_id": "macro.dbt_utils.bigquery__array_concat", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/array_concat.sql", "original_file_path": "macros/cross_db_utils/array_concat.sql", "name": "bigquery__array_concat", "macro_sql": "{% macro bigquery__array_concat(array_1, array_2) -%}\n array_concat({{ array_1 }}, {{ array_2 }})\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.432637}, "macro.dbt_utils.redshift__array_concat": {"unique_id": "macro.dbt_utils.redshift__array_concat", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/array_concat.sql", "original_file_path": "macros/cross_db_utils/array_concat.sql", "name": "redshift__array_concat", "macro_sql": "{% macro redshift__array_concat(array_1, array_2) -%}\n array_concat({{ array_1 }}, {{ array_2 }})\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.43276}, "macro.dbt_utils.bool_or": {"unique_id": "macro.dbt_utils.bool_or", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/bool_or.sql", "original_file_path": "macros/cross_db_utils/bool_or.sql", "name": "bool_or", "macro_sql": "{% macro bool_or(expression) -%}\n {{ return(adapter.dispatch('bool_or', 'dbt_utils') (expression)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__bool_or"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4331279}, "macro.dbt_utils.default__bool_or": {"unique_id": "macro.dbt_utils.default__bool_or", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/bool_or.sql", "original_file_path": "macros/cross_db_utils/bool_or.sql", "name": "default__bool_or", "macro_sql": "{% macro default__bool_or(expression) -%}\n \n bool_or({{ expression }})\n \n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4332302}, "macro.dbt_utils.snowflake__bool_or": {"unique_id": "macro.dbt_utils.snowflake__bool_or", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/bool_or.sql", "original_file_path": "macros/cross_db_utils/bool_or.sql", "name": "snowflake__bool_or", "macro_sql": "{% macro snowflake__bool_or(expression) -%}\n \n boolor_agg({{ expression }})\n \n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4335098}, "macro.dbt_utils.bigquery__bool_or": {"unique_id": "macro.dbt_utils.bigquery__bool_or", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/bool_or.sql", "original_file_path": "macros/cross_db_utils/bool_or.sql", "name": "bigquery__bool_or", "macro_sql": "{% macro bigquery__bool_or(expression) -%}\n \n logical_or({{ expression }})\n \n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.433608}, "macro.dbt_utils.last_day": {"unique_id": "macro.dbt_utils.last_day", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/last_day.sql", "original_file_path": "macros/cross_db_utils/last_day.sql", "name": "last_day", "macro_sql": "{% macro last_day(date, datepart) %}\n {{ return(adapter.dispatch('last_day', 'dbt_utils') (date, datepart)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__last_day"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.434177}, "macro.dbt_utils.default_last_day": {"unique_id": "macro.dbt_utils.default_last_day", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/last_day.sql", "original_file_path": "macros/cross_db_utils/last_day.sql", "name": "default_last_day", "macro_sql": "\n\n\n{%- macro default_last_day(date, datepart) -%}\n cast(\n {{dbt_utils.dateadd('day', '-1',\n dbt_utils.dateadd(datepart, '1', dbt_utils.date_trunc(datepart, date))\n )}}\n as date)\n{%- endmacro -%}\n\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.dateadd", "macro.dbt_utils.date_trunc"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4344351}, "macro.dbt_utils.default__last_day": {"unique_id": "macro.dbt_utils.default__last_day", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/last_day.sql", "original_file_path": "macros/cross_db_utils/last_day.sql", "name": "default__last_day", "macro_sql": "{% macro default__last_day(date, datepart) -%}\n {{dbt_utils.default_last_day(date, datepart)}}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default_last_day"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.434579}, "macro.dbt_utils.postgres__last_day": {"unique_id": "macro.dbt_utils.postgres__last_day", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/last_day.sql", "original_file_path": "macros/cross_db_utils/last_day.sql", "name": "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_utils.dateadd('day', '-1',\n dbt_utils.dateadd('month', '3', dbt_utils.date_trunc(datepart, date))\n )}}\n as date)\n {%- else -%}\n {{dbt_utils.default_last_day(date, datepart)}}\n {%- endif -%}\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.dateadd", "macro.dbt_utils.date_trunc", "macro.dbt_utils.default_last_day"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.434967}, "macro.dbt_utils.redshift__last_day": {"unique_id": "macro.dbt_utils.redshift__last_day", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/last_day.sql", "original_file_path": "macros/cross_db_utils/last_day.sql", "name": "redshift__last_day", "macro_sql": "{% macro redshift__last_day(date, datepart) %}\n\n {{ return(dbt_utils.default__last_day(date, datepart)) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__last_day"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.435136}, "macro.dbt_utils.split_part": {"unique_id": "macro.dbt_utils.split_part", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/split_part.sql", "original_file_path": "macros/cross_db_utils/split_part.sql", "name": "split_part", "macro_sql": "{% macro split_part(string_text, delimiter_text, part_number) %}\n {{ return(adapter.dispatch('split_part', 'dbt_utils') (string_text, delimiter_text, part_number)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__split_part"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.43655}, "macro.dbt_utils.default__split_part": {"unique_id": "macro.dbt_utils.default__split_part", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/split_part.sql", "original_file_path": "macros/cross_db_utils/split_part.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.436713}, "macro.dbt_utils._split_part_negative": {"unique_id": "macro.dbt_utils._split_part_negative", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/split_part.sql", "original_file_path": "macros/cross_db_utils/split_part.sql", "name": "_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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.436926}, "macro.dbt_utils.postgres__split_part": {"unique_id": "macro.dbt_utils.postgres__split_part", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/split_part.sql", "original_file_path": "macros/cross_db_utils/split_part.sql", "name": "postgres__split_part", "macro_sql": "{% macro postgres__split_part(string_text, delimiter_text, part_number) %}\n\n {% if part_number >= 0 %}\n {{ dbt_utils.default__split_part(string_text, delimiter_text, part_number) }}\n {% else %}\n {{ dbt_utils._split_part_negative(string_text, delimiter_text, part_number) }}\n {% endif %}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__split_part", "macro.dbt_utils._split_part_negative"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.437248}, "macro.dbt_utils.redshift__split_part": {"unique_id": "macro.dbt_utils.redshift__split_part", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/split_part.sql", "original_file_path": "macros/cross_db_utils/split_part.sql", "name": "redshift__split_part", "macro_sql": "{% macro redshift__split_part(string_text, delimiter_text, part_number) %}\n\n {% if part_number >= 0 %}\n {{ dbt_utils.default__split_part(string_text, delimiter_text, part_number) }}\n {% else %}\n {{ dbt_utils._split_part_negative(string_text, delimiter_text, part_number) }}\n {% endif %}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__split_part", "macro.dbt_utils._split_part_negative"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.437574}, "macro.dbt_utils.bigquery__split_part": {"unique_id": "macro.dbt_utils.bigquery__split_part", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/split_part.sql", "original_file_path": "macros/cross_db_utils/split_part.sql", "name": "bigquery__split_part", "macro_sql": "{% macro bigquery__split_part(string_text, delimiter_text, part_number) %}\n\n {% if part_number >= 0 %}\n split(\n {{ string_text }},\n {{ delimiter_text }}\n )[safe_offset({{ part_number - 1 }})]\n {% else %}\n split(\n {{ string_text }},\n {{ delimiter_text }}\n )[safe_offset(\n length({{ string_text }}) \n - length(\n replace({{ string_text }}, {{ delimiter_text }}, '')\n ) + 1\n )]\n {% endif %}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.437919}, "macro.dbt_utils.date_trunc": {"unique_id": "macro.dbt_utils.date_trunc", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/date_trunc.sql", "original_file_path": "macros/cross_db_utils/date_trunc.sql", "name": "date_trunc", "macro_sql": "{% macro date_trunc(datepart, date) -%}\n {{ return(adapter.dispatch('date_trunc', 'dbt_utils') (datepart, date)) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__date_trunc"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.438303}, "macro.dbt_utils.default__date_trunc": {"unique_id": "macro.dbt_utils.default__date_trunc", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/date_trunc.sql", "original_file_path": "macros/cross_db_utils/date_trunc.sql", "name": "default__date_trunc", "macro_sql": "{% macro default__date_trunc(datepart, date) -%}\n date_trunc('{{datepart}}', {{date}})\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.438427}, "macro.dbt_utils.bigquery__date_trunc": {"unique_id": "macro.dbt_utils.bigquery__date_trunc", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/date_trunc.sql", "original_file_path": "macros/cross_db_utils/date_trunc.sql", "name": "bigquery__date_trunc", "macro_sql": "{% macro bigquery__date_trunc(datepart, date) -%}\n timestamp_trunc(\n cast({{date}} as timestamp),\n {{datepart}}\n )\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4385521}, "macro.dbt_utils.array_construct": {"unique_id": "macro.dbt_utils.array_construct", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/array_construct.sql", "original_file_path": "macros/cross_db_utils/array_construct.sql", "name": "array_construct", "macro_sql": "{% macro array_construct(inputs = [], data_type = api.Column.translate_type('integer')) -%}\n {{ return(adapter.dispatch('array_construct', 'dbt_utils')(inputs, data_type)) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__array_construct"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.439094}, "macro.dbt_utils.default__array_construct": {"unique_id": "macro.dbt_utils.default__array_construct", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/array_construct.sql", "original_file_path": "macros/cross_db_utils/array_construct.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.439324}, "macro.dbt_utils.snowflake__array_construct": {"unique_id": "macro.dbt_utils.snowflake__array_construct", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/array_construct.sql", "original_file_path": "macros/cross_db_utils/array_construct.sql", "name": "snowflake__array_construct", "macro_sql": "{% macro snowflake__array_construct(inputs, data_type) -%}\n array_construct( {{ inputs|join(' , ') }} )\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4394612}, "macro.dbt_utils.redshift__array_construct": {"unique_id": "macro.dbt_utils.redshift__array_construct", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/array_construct.sql", "original_file_path": "macros/cross_db_utils/array_construct.sql", "name": "redshift__array_construct", "macro_sql": "{% macro redshift__array_construct(inputs, data_type) -%}\n array( {{ inputs|join(' , ') }} )\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.439593}, "macro.dbt_utils.bigquery__array_construct": {"unique_id": "macro.dbt_utils.bigquery__array_construct", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/array_construct.sql", "original_file_path": "macros/cross_db_utils/array_construct.sql", "name": "bigquery__array_construct", "macro_sql": "{% macro bigquery__array_construct(inputs, data_type) -%}\n [ {{ inputs|join(' , ') }} ]\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.439727}, "macro.dbt_utils._is_ephemeral": {"unique_id": "macro.dbt_utils._is_ephemeral", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/_is_ephemeral.sql", "original_file_path": "macros/cross_db_utils/_is_ephemeral.sql", "name": "_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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4406369}, "macro.dbt_utils.array_append": {"unique_id": "macro.dbt_utils.array_append", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/array_append.sql", "original_file_path": "macros/cross_db_utils/array_append.sql", "name": "array_append", "macro_sql": "{% macro array_append(array, new_element) -%}\n {{ return(adapter.dispatch('array_append', 'dbt_utils')(array, new_element)) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__array_append"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.441047}, "macro.dbt_utils.default__array_append": {"unique_id": "macro.dbt_utils.default__array_append", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/array_append.sql", "original_file_path": "macros/cross_db_utils/array_append.sql", "name": "default__array_append", "macro_sql": "{% macro default__array_append(array, new_element) -%}\n array_append({{ array }}, {{ new_element }})\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4411788}, "macro.dbt_utils.bigquery__array_append": {"unique_id": "macro.dbt_utils.bigquery__array_append", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/array_append.sql", "original_file_path": "macros/cross_db_utils/array_append.sql", "name": "bigquery__array_append", "macro_sql": "{% macro bigquery__array_append(array, new_element) -%}\n {{ dbt_utils.array_concat(array, dbt_utils.array_construct([new_element])) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.array_concat", "macro.dbt_utils.array_construct"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.441359}, "macro.dbt_utils.redshift__array_append": {"unique_id": "macro.dbt_utils.redshift__array_append", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/cross_db_utils/array_append.sql", "original_file_path": "macros/cross_db_utils/array_append.sql", "name": "redshift__array_append", "macro_sql": "{% macro redshift__array_append(array, new_element) -%}\n {{ dbt_utils.array_concat(array, dbt_utils.array_construct([new_element])) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.array_concat", "macro.dbt_utils.array_construct"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.441538}, "macro.dbt_utils.get_period_boundaries": {"unique_id": "macro.dbt_utils.get_period_boundaries", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/materializations/insert_by_period_materialization.sql", "original_file_path": "macros/materializations/insert_by_period_materialization.sql", "name": "get_period_boundaries", "macro_sql": "{% macro get_period_boundaries(target_schema, target_table, timestamp_field, start_date, stop_date, period) -%}\n {{ return(adapter.dispatch('get_period_boundaries', 'dbt_utils')(target_schema, target_table, timestamp_field, start_date, stop_date, period)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__get_period_boundaries"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4470148}, "macro.dbt_utils.default__get_period_boundaries": {"unique_id": "macro.dbt_utils.default__get_period_boundaries", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/materializations/insert_by_period_materialization.sql", "original_file_path": "macros/materializations/insert_by_period_materialization.sql", "name": "default__get_period_boundaries", "macro_sql": "{% macro default__get_period_boundaries(target_schema, target_table, timestamp_field, start_date, stop_date, period) -%}\n\n {% call statement('period_boundaries', fetch_result=True) -%}\n with data as (\n select\n coalesce(max(\"{{timestamp_field}}\"), '{{start_date}}')::timestamp as start_timestamp,\n coalesce(\n {{dbt_utils.dateadd('millisecond',\n -1,\n \"nullif('\" ~ stop_date ~ \"','')::timestamp\")}},\n {{dbt_utils.current_timestamp()}}\n ) as stop_timestamp\n from \"{{target_schema}}\".\"{{target_table}}\"\n )\n\n select\n start_timestamp,\n stop_timestamp,\n {{dbt_utils.datediff('start_timestamp',\n 'stop_timestamp',\n period)}} + 1 as num_periods\n from data\n {%- endcall %}\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt_utils.dateadd", "macro.dbt_utils.current_timestamp", "macro.dbt_utils.datediff"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.447516}, "macro.dbt_utils.get_period_sql": {"unique_id": "macro.dbt_utils.get_period_sql", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/materializations/insert_by_period_materialization.sql", "original_file_path": "macros/materializations/insert_by_period_materialization.sql", "name": "get_period_sql", "macro_sql": "{% macro get_period_sql(target_cols_csv, sql, timestamp_field, period, start_timestamp, stop_timestamp, offset) -%}\n {{ return(adapter.dispatch('get_period_sql', 'dbt_utils')(target_cols_csv, sql, timestamp_field, period, start_timestamp, stop_timestamp, offset)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__get_period_sql"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.447829}, "macro.dbt_utils.default__get_period_sql": {"unique_id": "macro.dbt_utils.default__get_period_sql", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/materializations/insert_by_period_materialization.sql", "original_file_path": "macros/materializations/insert_by_period_materialization.sql", "name": "default__get_period_sql", "macro_sql": "{% macro default__get_period_sql(target_cols_csv, sql, timestamp_field, period, start_timestamp, stop_timestamp, offset) -%}\n\n {%- set period_filter -%}\n (\"{{timestamp_field}}\" > '{{start_timestamp}}'::timestamp + interval '{{offset}} {{period}}' and\n \"{{timestamp_field}}\" <= '{{start_timestamp}}'::timestamp + interval '{{offset}} {{period}}' + interval '1 {{period}}' and\n \"{{timestamp_field}}\" < '{{stop_timestamp}}'::timestamp)\n {%- endset -%}\n\n {%- set filtered_sql = sql | replace(\"__PERIOD_FILTER__\", period_filter) -%}\n\n select\n {{target_cols_csv}}\n from (\n {{filtered_sql}}\n )\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.44831}, "macro.dbt_utils.materialization_insert_by_period_default": {"unique_id": "macro.dbt_utils.materialization_insert_by_period_default", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/materializations/insert_by_period_materialization.sql", "original_file_path": "macros/materializations/insert_by_period_materialization.sql", "name": "materialization_insert_by_period_default", "macro_sql": "{% materialization insert_by_period, default -%}\n {%- set timestamp_field = config.require('timestamp_field') -%}\n {%- set start_date = config.require('start_date') -%}\n {%- set stop_date = config.get('stop_date') or '' -%}\n {%- set period = config.get('period') or 'week' -%}\n\n {%- if sql.find('__PERIOD_FILTER__') == -1 -%}\n {%- set error_message -%}\n Model '{{ model.unique_id }}' does not include the required string '__PERIOD_FILTER__' in its sql\n {%- endset -%}\n {{ exceptions.raise_compiler_error(error_message) }}\n {%- endif -%}\n\n {%- set identifier = model['name'] -%}\n\n {%- set old_relation = adapter.get_relation(database=database, schema=schema, identifier=identifier) -%}\n {%- set target_relation = api.Relation.create(identifier=identifier, schema=schema, type='table') -%}\n\n {%- set non_destructive_mode = (flags.NON_DESTRUCTIVE == True) -%}\n {%- set full_refresh_mode = (flags.FULL_REFRESH == True) -%}\n\n {%- set exists_as_table = (old_relation is not none and old_relation.is_table) -%}\n {%- set exists_not_as_table = (old_relation is not none and not old_relation.is_table) -%}\n\n {%- set should_truncate = (non_destructive_mode and full_refresh_mode and exists_as_table) -%}\n {%- set should_drop = (not should_truncate and (full_refresh_mode or exists_not_as_table)) -%}\n {%- set force_create = (flags.FULL_REFRESH and not flags.NON_DESTRUCTIVE) -%}\n\n -- setup\n {% if old_relation is none -%}\n -- noop\n {%- elif should_truncate -%}\n {{adapter.truncate_relation(old_relation)}}\n {%- elif should_drop -%}\n {{adapter.drop_relation(old_relation)}}\n {%- set old_relation = none -%}\n {%- endif %}\n\n {{run_hooks(pre_hooks, inside_transaction=False)}}\n\n -- `begin` happens here, so `commit` after it to finish the transaction\n {{run_hooks(pre_hooks, inside_transaction=True)}}\n {% call statement() -%}\n begin; -- make extra sure we've closed out the transaction\n commit;\n {%- endcall %}\n\n -- build model\n {% if force_create or old_relation is none -%}\n {# Create an empty target table -#}\n {% call statement('main') -%}\n {%- set empty_sql = sql | replace(\"__PERIOD_FILTER__\", 'false') -%}\n {{create_table_as(False, target_relation, empty_sql)}}\n {%- endcall %}\n {%- endif %}\n\n {% set _ = dbt_utils.get_period_boundaries(schema,\n identifier,\n timestamp_field,\n start_date,\n stop_date,\n period) %}\n {%- set start_timestamp = load_result('period_boundaries')['data'][0][0] | string -%}\n {%- set stop_timestamp = load_result('period_boundaries')['data'][0][1] | string -%}\n {%- set num_periods = load_result('period_boundaries')['data'][0][2] | int -%}\n\n {% set target_columns = adapter.get_columns_in_relation(target_relation) %}\n {%- set target_cols_csv = target_columns | map(attribute='quoted') | join(', ') -%}\n {%- set loop_vars = {'sum_rows_inserted': 0} -%}\n\n -- commit each period as a separate transaction\n {% for i in range(num_periods) -%}\n {%- set msg = \"Running for \" ~ period ~ \" \" ~ (i + 1) ~ \" of \" ~ (num_periods) -%}\n {{ dbt_utils.log_info(msg) }}\n\n {%- set tmp_identifier = model['name'] ~ '__dbt_incremental_period' ~ i ~ '_tmp' -%}\n {%- set tmp_relation = api.Relation.create(identifier=tmp_identifier,\n schema=schema, type='table') -%}\n {% call statement() -%}\n {% set tmp_table_sql = dbt_utils.get_period_sql(target_cols_csv,\n sql,\n timestamp_field,\n period,\n start_timestamp,\n stop_timestamp,\n i) %}\n {{dbt.create_table_as(True, tmp_relation, tmp_table_sql)}}\n {%- endcall %}\n\n {{adapter.expand_target_column_types(from_relation=tmp_relation,\n to_relation=target_relation)}}\n {%- set name = 'main-' ~ i -%}\n {% call statement(name, fetch_result=True) -%}\n insert into {{target_relation}} ({{target_cols_csv}})\n (\n select\n {{target_cols_csv}}\n from {{tmp_relation.include(schema=False)}}\n );\n {%- endcall %}\n {% set result = load_result('main-' ~ i) %}\n {% if 'response' in result.keys() %} {# added in v0.19.0 #}\n {% set rows_inserted = result['response']['rows_affected'] %}\n {% else %} {# older versions #}\n {% set rows_inserted = result['status'].split(\" \")[2] | int %}\n {% endif %}\n \n {%- set sum_rows_inserted = loop_vars['sum_rows_inserted'] + rows_inserted -%}\n {%- if loop_vars.update({'sum_rows_inserted': sum_rows_inserted}) %} {% endif -%}\n\n {%- set msg = \"Ran for \" ~ period ~ \" \" ~ (i + 1) ~ \" of \" ~ (num_periods) ~ \"; \" ~ rows_inserted ~ \" records inserted\" -%}\n {{ dbt_utils.log_info(msg) }}\n\n {%- endfor %}\n\n {% call statement() -%}\n begin;\n {%- endcall %}\n\n {{run_hooks(post_hooks, inside_transaction=True)}}\n\n {% call statement() -%}\n commit;\n {%- endcall %}\n\n {{run_hooks(post_hooks, inside_transaction=False)}}\n\n {%- set status_string = \"INSERT \" ~ loop_vars['sum_rows_inserted'] -%}\n\n {% call noop_statement('main', status_string) -%}\n -- no-op\n {%- endcall %}\n\n -- Return the relations created in this materialization\n {{ return({'relations': [target_relation]}) }} \n\n{%- endmaterialization %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.run_hooks", "macro.dbt.statement", "macro.dbt.create_table_as", "macro.dbt_utils.get_period_boundaries", "macro.dbt_utils.log_info", "macro.dbt_utils.get_period_sql", "macro.dbt.noop_statement"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.453294}, "macro.dbt_utils.get_url_host": {"unique_id": "macro.dbt_utils.get_url_host", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/web/get_url_host.sql", "original_file_path": "macros/web/get_url_host.sql", "name": "get_url_host", "macro_sql": "{% macro get_url_host(field) -%}\n {{ return(adapter.dispatch('get_url_host', 'dbt_utils')(field)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__get_url_host"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.453734}, "macro.dbt_utils.default__get_url_host": {"unique_id": "macro.dbt_utils.default__get_url_host", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/web/get_url_host.sql", "original_file_path": "macros/web/get_url_host.sql", "name": "default__get_url_host", "macro_sql": "{% macro default__get_url_host(field) -%}\n\n{%- set parsed =\n dbt_utils.split_part(\n dbt_utils.split_part(\n dbt_utils.replace(\n dbt_utils.replace(\n dbt_utils.replace(field, \"'android-app://'\", \"''\"\n ), \"'http://'\", \"''\"\n ), \"'https://'\", \"''\"\n ), \"'/'\", 1\n ), \"'?'\", 1\n )\n\n-%}\n\n\n {{ dbt_utils.safe_cast(\n parsed,\n dbt_utils.type_string()\n )}}\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.split_part", "macro.dbt_utils.replace", "macro.dbt_utils.safe_cast", "macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4542038}, "macro.dbt_utils.get_url_path": {"unique_id": "macro.dbt_utils.get_url_path", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/web/get_url_path.sql", "original_file_path": "macros/web/get_url_path.sql", "name": "get_url_path", "macro_sql": "{% macro get_url_path(field) -%}\n {{ return(adapter.dispatch('get_url_path', 'dbt_utils')(field)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__get_url_path"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.454717}, "macro.dbt_utils.default__get_url_path": {"unique_id": "macro.dbt_utils.default__get_url_path", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/web/get_url_path.sql", "original_file_path": "macros/web/get_url_path.sql", "name": "default__get_url_path", "macro_sql": "{% macro default__get_url_path(field) -%}\n\n {%- set stripped_url = \n dbt_utils.replace(\n dbt_utils.replace(field, \"'http://'\", \"''\"), \"'https://'\", \"''\")\n -%}\n\n {%- set first_slash_pos -%}\n coalesce(\n nullif({{dbt_utils.position(\"'/'\", stripped_url)}}, 0),\n {{dbt_utils.position(\"'?'\", stripped_url)}} - 1\n )\n {%- endset -%}\n\n {%- set parsed_path =\n dbt_utils.split_part(\n dbt_utils.right(\n stripped_url, \n dbt_utils.length(stripped_url) ~ \"-\" ~ first_slash_pos\n ), \n \"'?'\", 1\n )\n -%}\n\n {{ dbt_utils.safe_cast(\n parsed_path,\n dbt_utils.type_string()\n )}}\n \n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.replace", "macro.dbt_utils.position", "macro.dbt_utils.split_part", "macro.dbt_utils.right", "macro.dbt_utils.length", "macro.dbt_utils.safe_cast", "macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.455355}, "macro.dbt_utils.get_url_parameter": {"unique_id": "macro.dbt_utils.get_url_parameter", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/web/get_url_parameter.sql", "original_file_path": "macros/web/get_url_parameter.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__get_url_parameter"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.455724}, "macro.dbt_utils.default__get_url_parameter": {"unique_id": "macro.dbt_utils.default__get_url_parameter", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/web/get_url_parameter.sql", "original_file_path": "macros/web/get_url_parameter.sql", "name": "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_utils.split_part(dbt_utils.split_part(field, formatted_url_parameter, 2), \"'&'\", 1) -%}\n\nnullif({{ split }},'')\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.split_part"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.456034}, "macro.dbt_utils.test_fewer_rows_than": {"unique_id": "macro.dbt_utils.test_fewer_rows_than", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/fewer_rows_than.sql", "original_file_path": "macros/generic_tests/fewer_rows_than.sql", "name": "test_fewer_rows_than", "macro_sql": "{% test fewer_rows_than(model, compare_model) %}\n {{ return(adapter.dispatch('test_fewer_rows_than', 'dbt_utils')(model, compare_model)) }}\n{% endtest %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__test_fewer_rows_than"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.456597}, "macro.dbt_utils.default__test_fewer_rows_than": {"unique_id": "macro.dbt_utils.default__test_fewer_rows_than", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/fewer_rows_than.sql", "original_file_path": "macros/generic_tests/fewer_rows_than.sql", "name": "default__test_fewer_rows_than", "macro_sql": "{% macro default__test_fewer_rows_than(model, compare_model) %}\n\n{{ config(fail_calc = 'coalesce(row_count_delta, 0)') }}\n\nwith a as (\n\n select count(*) as count_our_model from {{ model }}\n\n),\nb as (\n\n select count(*) as count_comparison_model from {{ compare_model }}\n\n),\ncounts as (\n\n select\n count_our_model,\n count_comparison_model\n from a\n cross join b\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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.456817}, "macro.dbt_utils.test_equal_rowcount": {"unique_id": "macro.dbt_utils.test_equal_rowcount", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/equal_rowcount.sql", "original_file_path": "macros/generic_tests/equal_rowcount.sql", "name": "test_equal_rowcount", "macro_sql": "{% test equal_rowcount(model, compare_model) %}\n {{ return(adapter.dispatch('test_equal_rowcount', 'dbt_utils')(model, compare_model)) }}\n{% endtest %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__test_equal_rowcount"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4572558}, "macro.dbt_utils.default__test_equal_rowcount": {"unique_id": "macro.dbt_utils.default__test_equal_rowcount", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/equal_rowcount.sql", "original_file_path": "macros/generic_tests/equal_rowcount.sql", "name": "default__test_equal_rowcount", "macro_sql": "{% macro default__test_equal_rowcount(model, compare_model) %}\n\n{#-- Needs to be set at parse time, before we return '' below --#}\n{{ config(fail_calc = '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\nwith a as (\n\n select count(*) as count_a from {{ model }}\n\n),\nb as (\n\n select count(*) as count_b from {{ compare_model }}\n\n),\nfinal as (\n\n select\n count_a,\n count_b,\n abs(count_a - count_b) as diff_count\n from a\n cross join b\n\n)\n\nselect * from final\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.457546}, "macro.dbt_utils.test_relationships_where": {"unique_id": "macro.dbt_utils.test_relationships_where", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/relationships_where.sql", "original_file_path": "macros/generic_tests/relationships_where.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__test_relationships_where"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.45822}, "macro.dbt_utils.default__test_relationships_where": {"unique_id": "macro.dbt_utils.default__test_relationships_where", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/relationships_where.sql", "original_file_path": "macros/generic_tests/relationships_where.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.45855}, "macro.dbt_utils.test_recency": {"unique_id": "macro.dbt_utils.test_recency", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/recency.sql", "original_file_path": "macros/generic_tests/recency.sql", "name": "test_recency", "macro_sql": "{% test recency(model, field, datepart, interval) %}\n {{ return(adapter.dispatch('test_recency', 'dbt_utils')(model, field, datepart, interval)) }}\n{% endtest %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__test_recency"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.458987}, "macro.dbt_utils.default__test_recency": {"unique_id": "macro.dbt_utils.default__test_recency", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/recency.sql", "original_file_path": "macros/generic_tests/recency.sql", "name": "default__test_recency", "macro_sql": "{% macro default__test_recency(model, field, datepart, interval) %}\n\n{% set threshold = dbt_utils.dateadd(datepart, interval * -1, dbt_utils.current_timestamp()) %}\n\nwith recency as (\n\n select max({{field}}) as most_recent\n from {{ model }}\n\n)\n\nselect\n\n most_recent,\n {{ threshold }} as threshold\n\nfrom recency\nwhere most_recent < {{ threshold }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.dateadd", "macro.dbt_utils.current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.459303}, "macro.dbt_utils.test_not_constant": {"unique_id": "macro.dbt_utils.test_not_constant", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/not_constant.sql", "original_file_path": "macros/generic_tests/not_constant.sql", "name": "test_not_constant", "macro_sql": "{% test not_constant(model, column_name) %}\n {{ return(adapter.dispatch('test_not_constant', 'dbt_utils')(model, column_name)) }}\n{% endtest %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__test_not_constant"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4596639}, "macro.dbt_utils.default__test_not_constant": {"unique_id": "macro.dbt_utils.default__test_not_constant", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/not_constant.sql", "original_file_path": "macros/generic_tests/not_constant.sql", "name": "default__test_not_constant", "macro_sql": "{% macro default__test_not_constant(model, column_name) %}\n\n\nselect\n {# In TSQL, subquery aggregate columns need aliases #}\n {# thus: a filler col name, 'filler_column' #}\n count(distinct {{ column_name }}) as filler_column\n\nfrom {{ model }}\n\nhaving count(distinct {{ column_name }}) = 1\n\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.459828}, "macro.dbt_utils.test_accepted_range": {"unique_id": "macro.dbt_utils.test_accepted_range", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/accepted_range.sql", "original_file_path": "macros/generic_tests/accepted_range.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__test_accepted_range"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4604568}, "macro.dbt_utils.default__test_accepted_range": {"unique_id": "macro.dbt_utils.default__test_accepted_range", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/accepted_range.sql", "original_file_path": "macros/generic_tests/accepted_range.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.460983}, "macro.dbt_utils.test_not_accepted_values": {"unique_id": "macro.dbt_utils.test_not_accepted_values", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/not_accepted_values.sql", "original_file_path": "macros/generic_tests/not_accepted_values.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__test_not_accepted_values"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4615521}, "macro.dbt_utils.default__test_not_accepted_values": {"unique_id": "macro.dbt_utils.default__test_not_accepted_values", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/not_accepted_values.sql", "original_file_path": "macros/generic_tests/not_accepted_values.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.461922}, "macro.dbt_utils.test_unique_where": {"unique_id": "macro.dbt_utils.test_unique_where", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/test_unique_where.sql", "original_file_path": "macros/generic_tests/test_unique_where.sql", "name": "test_unique_where", "macro_sql": "{% test unique_where(model, column_name) %}\r\n {%- set deprecation_warning = '\r\n Warning: `dbt_utils.unique_where` is no longer supported.\r\n Starting in dbt v0.20.0, the built-in `unique` test supports a `where` config.\r\n ' -%}\r\n {%- do exceptions.warn(deprecation_warning) -%}\r\n {{ return(adapter.dispatch('test_unique_where', 'dbt_utils')(model, column_name)) }}\r\n{% endtest %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__test_unique_where"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.462371}, "macro.dbt_utils.default__test_unique_where": {"unique_id": "macro.dbt_utils.default__test_unique_where", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/test_unique_where.sql", "original_file_path": "macros/generic_tests/test_unique_where.sql", "name": "default__test_unique_where", "macro_sql": "{% macro default__test_unique_where(model, column_name) %}\r\n {{ return(test_unique(model, column_name)) }}\r\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.test_unique"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.462535}, "macro.dbt_utils.test_at_least_one": {"unique_id": "macro.dbt_utils.test_at_least_one", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/at_least_one.sql", "original_file_path": "macros/generic_tests/at_least_one.sql", "name": "test_at_least_one", "macro_sql": "{% test at_least_one(model, column_name) %}\n {{ return(adapter.dispatch('test_at_least_one', 'dbt_utils')(model, column_name)) }}\n{% endtest %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__test_at_least_one"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.462913}, "macro.dbt_utils.default__test_at_least_one": {"unique_id": "macro.dbt_utils.default__test_at_least_one", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/at_least_one.sql", "original_file_path": "macros/generic_tests/at_least_one.sql", "name": "default__test_at_least_one", "macro_sql": "{% macro default__test_at_least_one(model, column_name) %}\n\nselect *\nfrom (\n select\n {# In TSQL, subquery aggregate columns need aliases #}\n {# thus: a filler col name, 'filler_column' #}\n count({{ column_name }}) as filler_column\n\n from {{ model }}\n\n having count({{ column_name }}) = 0\n\n) validation_errors\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4630852}, "macro.dbt_utils.test_unique_combination_of_columns": {"unique_id": "macro.dbt_utils.test_unique_combination_of_columns", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/unique_combination_of_columns.sql", "original_file_path": "macros/generic_tests/unique_combination_of_columns.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__test_unique_combination_of_columns"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4637141}, "macro.dbt_utils.default__test_unique_combination_of_columns": {"unique_id": "macro.dbt_utils.default__test_unique_combination_of_columns", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/unique_combination_of_columns.sql", "original_file_path": "macros/generic_tests/unique_combination_of_columns.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4643378}, "macro.dbt_utils.test_cardinality_equality": {"unique_id": "macro.dbt_utils.test_cardinality_equality", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/cardinality_equality.sql", "original_file_path": "macros/generic_tests/cardinality_equality.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__test_cardinality_equality"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.464926}, "macro.dbt_utils.default__test_cardinality_equality": {"unique_id": "macro.dbt_utils.default__test_cardinality_equality", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/cardinality_equality.sql", "original_file_path": "macros/generic_tests/cardinality_equality.sql", "name": "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_utils.except() }}\n select *\n from table_b\n),\n\nexcept_b as (\n select *\n from table_b\n {{ dbt_utils.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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.except"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.465257}, "macro.dbt_utils.test_expression_is_true": {"unique_id": "macro.dbt_utils.test_expression_is_true", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/expression_is_true.sql", "original_file_path": "macros/generic_tests/expression_is_true.sql", "name": "test_expression_is_true", "macro_sql": "{% test expression_is_true(model, expression, column_name=None, condition='1=1') %}\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 {{ return(adapter.dispatch('test_expression_is_true', 'dbt_utils')(model, expression, column_name, condition)) }}\n{% endtest %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__test_expression_is_true"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4657521}, "macro.dbt_utils.default__test_expression_is_true": {"unique_id": "macro.dbt_utils.default__test_expression_is_true", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/expression_is_true.sql", "original_file_path": "macros/generic_tests/expression_is_true.sql", "name": "default__test_expression_is_true", "macro_sql": "{% macro default__test_expression_is_true(model, expression, column_name, condition) %}\n\nwith meet_condition as (\n select * from {{ model }} where {{ condition }}\n)\n\nselect\n *\nfrom meet_condition\n{% if column_name is none %}\nwhere not({{ expression }})\n{%- else %}\nwhere not({{ column_name }} {{ expression }})\n{%- endif %}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.466037}, "macro.dbt_utils.test_not_null_proportion": {"unique_id": "macro.dbt_utils.test_not_null_proportion", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/not_null_proportion.sql", "original_file_path": "macros/generic_tests/not_null_proportion.sql", "name": "test_not_null_proportion", "macro_sql": "{% macro test_not_null_proportion(model) %}\n {{ return(adapter.dispatch('test_not_null_proportion', 'dbt_utils')(model, **kwargs)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__test_not_null_proportion"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.466495}, "macro.dbt_utils.default__test_not_null_proportion": {"unique_id": "macro.dbt_utils.default__test_not_null_proportion", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/not_null_proportion.sql", "original_file_path": "macros/generic_tests/not_null_proportion.sql", "name": "default__test_not_null_proportion", "macro_sql": "{% macro default__test_not_null_proportion(model) %}\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\nwith validation as (\n select\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),\nvalidation_errors as (\n select\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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4670038}, "macro.dbt_utils.test_sequential_values": {"unique_id": "macro.dbt_utils.test_sequential_values", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/sequential_values.sql", "original_file_path": "macros/generic_tests/sequential_values.sql", "name": "test_sequential_values", "macro_sql": "{% test sequential_values(model, column_name, interval=1, datepart=None) %}\n\n {{ return(adapter.dispatch('test_sequential_values', 'dbt_utils')(model, column_name, interval, datepart)) }}\n\n{% endtest %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__test_sequential_values"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.46768}, "macro.dbt_utils.default__test_sequential_values": {"unique_id": "macro.dbt_utils.default__test_sequential_values", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/sequential_values.sql", "original_file_path": "macros/generic_tests/sequential_values.sql", "name": "default__test_sequential_values", "macro_sql": "{% macro default__test_sequential_values(model, column_name, interval=1, datepart=None) %}\n\n{% set previous_column_name = \"previous_\" ~ dbt_utils.slugify(column_name) %}\n\nwith windowed as (\n\n select\n {{ column_name }},\n lag({{ column_name }}) over (\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_utils.type_timestamp() }})= cast({{ dbt_utils.dateadd(datepart, interval, previous_column_name) }} as {{ dbt_utils.type_timestamp() }}))\n {% else %}\n where not({{ column_name }} = {{ previous_column_name }} + {{ interval }})\n {% endif %}\n)\n\nselect *\nfrom validation_errors\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.slugify", "macro.dbt_utils.type_timestamp", "macro.dbt_utils.dateadd"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4683352}, "macro.dbt_utils.test_not_null_where": {"unique_id": "macro.dbt_utils.test_not_null_where", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/test_not_null_where.sql", "original_file_path": "macros/generic_tests/test_not_null_where.sql", "name": "test_not_null_where", "macro_sql": "{% test not_null_where(model, column_name) %}\r\n {%- set deprecation_warning = '\r\n Warning: `dbt_utils.not_null_where` is no longer supported.\r\n Starting in dbt v0.20.0, the built-in `not_null` test supports a `where` config.\r\n ' -%}\r\n {%- do exceptions.warn(deprecation_warning) -%}\r\n {{ return(adapter.dispatch('test_not_null_where', 'dbt_utils')(model, column_name)) }}\r\n{% endtest %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__test_not_null_where"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.468787}, "macro.dbt_utils.default__test_not_null_where": {"unique_id": "macro.dbt_utils.default__test_not_null_where", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/test_not_null_where.sql", "original_file_path": "macros/generic_tests/test_not_null_where.sql", "name": "default__test_not_null_where", "macro_sql": "{% macro default__test_not_null_where(model, column_name) %}\r\n {{ return(test_not_null(model, column_name)) }}\r\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.test_not_null"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4689522}, "macro.dbt_utils.test_equality": {"unique_id": "macro.dbt_utils.test_equality", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/equality.sql", "original_file_path": "macros/generic_tests/equality.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__test_equality"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4697}, "macro.dbt_utils.default__test_equality": {"unique_id": "macro.dbt_utils.default__test_equality", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/equality.sql", "original_file_path": "macros/generic_tests/equality.sql", "name": "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_utils.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_utils.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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt_utils.except"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.470567}, "macro.dbt_utils.test_mutually_exclusive_ranges": {"unique_id": "macro.dbt_utils.test_mutually_exclusive_ranges", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/mutually_exclusive_ranges.sql", "original_file_path": "macros/generic_tests/mutually_exclusive_ranges.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__test_mutually_exclusive_ranges"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.473502}, "macro.dbt_utils.default__test_mutually_exclusive_ranges": {"unique_id": "macro.dbt_utils.default__test_mutually_exclusive_ranges", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/mutually_exclusive_ranges.sql", "original_file_path": "macros/generic_tests/mutually_exclusive_ranges.sql", "name": "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 }}\n ) as next_lower_bound,\n\n row_number() over (\n {{ partition_clause }}\n order by {{ lower_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 nore 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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.474936}, "macro.dbt_utils.pretty_log_format": {"unique_id": "macro.dbt_utils.pretty_log_format", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/jinja_helpers/pretty_log_format.sql", "original_file_path": "macros/jinja_helpers/pretty_log_format.sql", "name": "pretty_log_format", "macro_sql": "{% macro pretty_log_format(message) %}\n {{ return(adapter.dispatch('pretty_log_format', 'dbt_utils')(message)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__pretty_log_format"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.475256}, "macro.dbt_utils.default__pretty_log_format": {"unique_id": "macro.dbt_utils.default__pretty_log_format", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/jinja_helpers/pretty_log_format.sql", "original_file_path": "macros/jinja_helpers/pretty_log_format.sql", "name": "default__pretty_log_format", "macro_sql": "{% macro default__pretty_log_format(message) %}\n {{ return( dbt_utils.pretty_time() ~ ' + ' ~ message) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.pretty_time"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4754188}, "macro.dbt_utils.pretty_time": {"unique_id": "macro.dbt_utils.pretty_time", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/jinja_helpers/pretty_time.sql", "original_file_path": "macros/jinja_helpers/pretty_time.sql", "name": "pretty_time", "macro_sql": "{% macro pretty_time(format='%H:%M:%S') %}\n {{ return(adapter.dispatch('pretty_time', 'dbt_utils')(format)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__pretty_time"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.475743}, "macro.dbt_utils.default__pretty_time": {"unique_id": "macro.dbt_utils.default__pretty_time", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/jinja_helpers/pretty_time.sql", "original_file_path": "macros/jinja_helpers/pretty_time.sql", "name": "default__pretty_time", "macro_sql": "{% macro default__pretty_time(format='%H:%M:%S') %}\n {{ return(modules.datetime.datetime.now().strftime(format)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.475935}, "macro.dbt_utils.log_info": {"unique_id": "macro.dbt_utils.log_info", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/jinja_helpers/log_info.sql", "original_file_path": "macros/jinja_helpers/log_info.sql", "name": "log_info", "macro_sql": "{% macro log_info(message) %}\n {{ return(adapter.dispatch('log_info', 'dbt_utils')(message)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__log_info"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4762409}, "macro.dbt_utils.default__log_info": {"unique_id": "macro.dbt_utils.default__log_info", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/jinja_helpers/log_info.sql", "original_file_path": "macros/jinja_helpers/log_info.sql", "name": "default__log_info", "macro_sql": "{% macro default__log_info(message) %}\n {{ log(dbt_utils.pretty_log_format(message), info=True) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.pretty_log_format"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4764118}, "macro.dbt_utils.slugify": {"unique_id": "macro.dbt_utils.slugify", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/jinja_helpers/slugify.sql", "original_file_path": "macros/jinja_helpers/slugify.sql", "name": "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\n{{ return(string) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.476919}, "macro.dbt_utils.get_intervals_between": {"unique_id": "macro.dbt_utils.get_intervals_between", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/date_spine.sql", "original_file_path": "macros/sql/date_spine.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__get_intervals_between"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.477618}, "macro.dbt_utils.default__get_intervals_between": {"unique_id": "macro.dbt_utils.default__get_intervals_between", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/date_spine.sql", "original_file_path": "macros/sql/date_spine.sql", "name": "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_utils.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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt_utils.datediff"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.478192}, "macro.dbt_utils.date_spine": {"unique_id": "macro.dbt_utils.date_spine", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/date_spine.sql", "original_file_path": "macros/sql/date_spine.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__date_spine"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4784179}, "macro.dbt_utils.default__date_spine": {"unique_id": "macro.dbt_utils.default__date_spine", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/date_spine.sql", "original_file_path": "macros/sql/date_spine.sql", "name": "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 \"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_utils.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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.generate_series", "macro.dbt_utils.get_intervals_between", "macro.dbt_utils.dateadd"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4787688}, "macro.dbt_utils.nullcheck_table": {"unique_id": "macro.dbt_utils.nullcheck_table", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/nullcheck_table.sql", "original_file_path": "macros/sql/nullcheck_table.sql", "name": "nullcheck_table", "macro_sql": "{% macro nullcheck_table(relation) %}\n {{ return(adapter.dispatch('nullcheck_table', 'dbt_utils')(relation)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__nullcheck_table"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.479125}, "macro.dbt_utils.default__nullcheck_table": {"unique_id": "macro.dbt_utils.default__nullcheck_table", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/nullcheck_table.sql", "original_file_path": "macros/sql/nullcheck_table.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt_utils.nullcheck"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4795241}, "macro.dbt_utils.get_relations_by_pattern": {"unique_id": "macro.dbt_utils.get_relations_by_pattern", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_relations_by_pattern.sql", "original_file_path": "macros/sql/get_relations_by_pattern.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__get_relations_by_pattern"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.480212}, "macro.dbt_utils.default__get_relations_by_pattern": {"unique_id": "macro.dbt_utils.default__get_relations_by_pattern", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_relations_by_pattern.sql", "original_file_path": "macros/sql/get_relations_by_pattern.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt_utils.get_tables_by_pattern_sql"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.481039}, "macro.dbt_utils.get_powers_of_two": {"unique_id": "macro.dbt_utils.get_powers_of_two", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/generate_series.sql", "original_file_path": "macros/sql/generate_series.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__get_powers_of_two"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.481858}, "macro.dbt_utils.default__get_powers_of_two": {"unique_id": "macro.dbt_utils.default__get_powers_of_two", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/generate_series.sql", "original_file_path": "macros/sql/generate_series.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.482267}, "macro.dbt_utils.generate_series": {"unique_id": "macro.dbt_utils.generate_series", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/generate_series.sql", "original_file_path": "macros/sql/generate_series.sql", "name": "generate_series", "macro_sql": "{% macro generate_series(upper_bound) %}\n {{ return(adapter.dispatch('generate_series', 'dbt_utils')(upper_bound)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__generate_series"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.482451}, "macro.dbt_utils.default__generate_series": {"unique_id": "macro.dbt_utils.default__generate_series", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/generate_series.sql", "original_file_path": "macros/sql/generate_series.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.get_powers_of_two"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.482954}, "macro.dbt_utils.get_relations_by_prefix": {"unique_id": "macro.dbt_utils.get_relations_by_prefix", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_relations_by_prefix.sql", "original_file_path": "macros/sql/get_relations_by_prefix.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__get_relations_by_prefix"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.48364}, "macro.dbt_utils.default__get_relations_by_prefix": {"unique_id": "macro.dbt_utils.default__get_relations_by_prefix", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_relations_by_prefix.sql", "original_file_path": "macros/sql/get_relations_by_prefix.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt_utils.get_tables_by_prefix_sql"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.484473}, "macro.dbt_utils.get_tables_by_prefix_sql": {"unique_id": "macro.dbt_utils.get_tables_by_prefix_sql", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_tables_by_prefix_sql.sql", "original_file_path": "macros/sql/get_tables_by_prefix_sql.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__get_tables_by_prefix_sql"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.48492}, "macro.dbt_utils.default__get_tables_by_prefix_sql": {"unique_id": "macro.dbt_utils.default__get_tables_by_prefix_sql", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_tables_by_prefix_sql.sql", "original_file_path": "macros/sql/get_tables_by_prefix_sql.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.get_tables_by_pattern_sql"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.485196}, "macro.dbt_utils.star": {"unique_id": "macro.dbt_utils.star", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/star.sql", "original_file_path": "macros/sql/star.sql", "name": "star", "macro_sql": "{% macro star(from, relation_alias=False, except=[], prefix='', suffix='') -%}\n {{ return(adapter.dispatch('star', 'dbt_utils')(from, relation_alias, except, prefix, suffix)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__star"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.485895}, "macro.dbt_utils.default__star": {"unique_id": "macro.dbt_utils.default__star", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/star.sql", "original_file_path": "macros/sql/star.sql", "name": "default__star", "macro_sql": "{% macro default__star(from, relation_alias=False, except=[], prefix='', suffix='') -%}\n {%- do dbt_utils._is_relation(from, 'star') -%}\n {%- do dbt_utils._is_ephemeral(from, 'star') -%}\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 cols = dbt_utils.get_filtered_columns_in_relation(from, except) %}\n\n {%- if cols|length <= 0 -%}\n {{- return('*') -}}\n {%- else -%}\n {%- for col in cols %}\n {%- if relation_alias %}{{ relation_alias }}.{% else %}{%- endif -%}{{ adapter.quote(col)|trim }} {%- if prefix!='' or suffix!='' %} as {{ adapter.quote(prefix ~ col ~ suffix)|trim }} {%- endif -%}\n {%- if not loop.last %},{{ '\\n ' }}{% endif %}\n {%- endfor -%}\n {% endif %}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "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}, "patch_path": null, "arguments": [], "created_at": 1665431414.4868538}, "macro.dbt_utils.unpivot": {"unique_id": "macro.dbt_utils.unpivot", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/unpivot.sql", "original_file_path": "macros/sql/unpivot.sql", "name": "unpivot", "macro_sql": "{% macro unpivot(relation=none, cast_to='varchar', exclude=none, remove=none, field_name='field_name', value_name='value', table=none) -%}\n {{ return(adapter.dispatch('unpivot', 'dbt_utils')(relation, cast_to, exclude, remove, field_name, value_name, table)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__unpivot"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4885252}, "macro.dbt_utils.default__unpivot": {"unique_id": "macro.dbt_utils.default__unpivot", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/unpivot.sql", "original_file_path": "macros/sql/unpivot.sql", "name": "default__unpivot", "macro_sql": "{% macro default__unpivot(relation=none, cast_to='varchar', exclude=none, remove=none, field_name='field_name', value_name='value', table=none) -%}\n\n {% if table %}\n {%- set error_message = '\n Warning: the `unpivot` macro no longer accepts a `table` parameter. \\\n This parameter will be deprecated in a future release of dbt-utils. Use the `relation` parameter instead. \\\n The {}.{} model triggered this warning. \\\n '.format(model.package_name, model.name) -%}\n {%- do exceptions.warn(error_message) -%}\n {% endif %}\n\n {% if relation and table %}\n {{ exceptions.raise_compiler_error(\"Error: both the `relation` and `table` parameters were provided to `unpivot` macro. Choose one only (we recommend `relation`).\") }}\n {% elif not relation and table %}\n {% set relation=table %}\n {% elif not relation and not table %}\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_utils.type_string() }}) as {{ field_name }},\n cast( {% if col.data_type == 'boolean' %}\n {{ dbt_utils.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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt_utils.type_string", "macro.dbt_utils.cast_bool_to_text"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.49054}, "macro.dbt_utils.union_relations": {"unique_id": "macro.dbt_utils.union_relations", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/union.sql", "original_file_path": "macros/sql/union.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__union_relations"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.49299}, "macro.dbt_utils.default__union_relations": {"unique_id": "macro.dbt_utils.default__union_relations", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/union.sql", "original_file_path": "macros/sql/union.sql", "name": "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\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 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 {%- 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 cast({{ dbt_utils.string_literal(relation) }} as {{ dbt_utils.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 {{ 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 -%}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt_utils.string_literal", "macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4959118}, "macro.dbt_utils.group_by": {"unique_id": "macro.dbt_utils.group_by", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/groupby.sql", "original_file_path": "macros/sql/groupby.sql", "name": "group_by", "macro_sql": "{%- macro group_by(n) -%}\n {{ return(adapter.dispatch('group_by', 'dbt_utils')(n)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__group_by"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4962602}, "macro.dbt_utils.default__group_by": {"unique_id": "macro.dbt_utils.default__group_by", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/groupby.sql", "original_file_path": "macros/sql/groupby.sql", "name": "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 -%}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.496504}, "macro.dbt_utils.deduplicate": {"unique_id": "macro.dbt_utils.deduplicate", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "name": "deduplicate", "macro_sql": "{%- macro deduplicate(relation, partition_by, order_by=none, relation_alias=none) -%}\n\n {%- set error_message_group_by -%}\nWarning: the `group_by` parameter of the `deduplicate` macro is no longer supported and will be deprecated in a future release of dbt-utils.\nUse `partition_by` instead.\nThe {{ model.package_name }}.{{ model.name }} model triggered this warning.\n {%- endset -%}\n\n {% if kwargs.get('group_by') %}\n {%- do exceptions.warn(error_message_group_by) -%}\n {%- endif -%}\n\n {%- set error_message_order_by -%}\nWarning: `order_by` as an optional parameter of the `deduplicate` macro is no longer supported and will be deprecated in a future release of dbt-utils.\nSupply a non-null value for `order_by` instead.\nThe {{ model.package_name }}.{{ model.name }} model triggered this warning.\n {%- endset -%}\n\n {% if not order_by %}\n {%- do exceptions.warn(error_message_order_by) -%}\n {%- endif -%}\n\n {%- set error_message_alias -%}\nWarning: the `relation_alias` parameter of the `deduplicate` macro is no longer supported and will be deprecated in a future release of dbt-utils.\nIf you were using `relation_alias` to point to a CTE previously then you can now pass the alias directly to `relation` instead.\nThe {{ model.package_name }}.{{ model.name }} model triggered this warning.\n {%- endset -%}\n\n {% if relation_alias %}\n {%- do exceptions.warn(error_message_alias) -%}\n {%- endif -%}\n\n {% set partition_by = partition_by or kwargs.get('group_by') %}\n {% set relation = relation_alias or relation %}\n {% set order_by = order_by or \"'1'\" %}\n\n {{ return(adapter.dispatch('deduplicate', 'dbt_utils')(relation, partition_by, order_by)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__deduplicate"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.498837}, "macro.dbt_utils.default__deduplicate": {"unique_id": "macro.dbt_utils.default__deduplicate", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "name": "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", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.499048}, "macro.dbt_utils.redshift__deduplicate": {"unique_id": "macro.dbt_utils.redshift__deduplicate", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__deduplicate"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.499247}, "macro.dbt_utils.postgres__deduplicate": {"unique_id": "macro.dbt_utils.postgres__deduplicate", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "name": "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", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.4994292}, "macro.dbt_utils.snowflake__deduplicate": {"unique_id": "macro.dbt_utils.snowflake__deduplicate", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "name": "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", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.499588}, "macro.dbt_utils.bigquery__deduplicate": {"unique_id": "macro.dbt_utils.bigquery__deduplicate", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "name": "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 -%}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.499755}, "macro.dbt_utils.surrogate_key": {"unique_id": "macro.dbt_utils.surrogate_key", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/surrogate_key.sql", "original_file_path": "macros/sql/surrogate_key.sql", "name": "surrogate_key", "macro_sql": "{%- macro surrogate_key(field_list) -%}\n {# needed for safe_add to allow for non-keyword arguments see SO post #}\n {# https://stackoverflow.com/questions/13944751/args-kwargs-in-jinja2-macros #}\n {% set frustrating_jinja_feature = varargs %}\n {{ return(adapter.dispatch('surrogate_key', 'dbt_utils')(field_list, *varargs)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__surrogate_key"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5003572}, "macro.dbt_utils.default__surrogate_key": {"unique_id": "macro.dbt_utils.default__surrogate_key", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/surrogate_key.sql", "original_file_path": "macros/sql/surrogate_key.sql", "name": "default__surrogate_key", "macro_sql": "\n\n{%- macro default__surrogate_key(field_list) -%}\n\n{%- if varargs|length >= 1 or field_list is string %}\n\n{%- set error_message = '\nWarning: the `surrogate_key` macro now takes a single list argument instead of \\\nmultiple string arguments. Support for multiple string arguments will be \\\ndeprecated in a future release of dbt-utils. The {}.{} model triggered this warning. \\\n'.format(model.package_name, model.name) -%}\n\n{%- do exceptions.warn(error_message) -%}\n\n{# first argument is not included in varargs, so add first element to field_list_xf #}\n{%- set field_list_xf = [field_list] -%}\n\n{%- for field in varargs %}\n{%- set _ = field_list_xf.append(field) -%}\n{%- endfor -%}\n\n{%- else -%}\n\n{# if using list, just set field_list_xf as field_list #}\n{%- set field_list_xf = field_list -%}\n\n{%- endif -%}\n\n\n{%- set fields = [] -%}\n\n{%- for field in field_list_xf -%}\n\n {%- set _ = fields.append(\n \"coalesce(cast(\" ~ field ~ \" as \" ~ dbt_utils.type_string() ~ \"), '')\"\n ) -%}\n\n {%- if not loop.last %}\n {%- set _ = fields.append(\"'-'\") -%}\n {%- endif -%}\n\n{%- endfor -%}\n\n{{dbt_utils.hash(dbt_utils.concat(fields))}}\n\n{%- endmacro -%}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.type_string", "macro.dbt_utils.hash", "macro.dbt_utils.concat"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5012631}, "macro.dbt_utils.safe_add": {"unique_id": "macro.dbt_utils.safe_add", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/safe_add.sql", "original_file_path": "macros/sql/safe_add.sql", "name": "safe_add", "macro_sql": "{%- macro safe_add() -%}\n {# needed for safe_add to allow for non-keyword arguments see SO post #}\n {# https://stackoverflow.com/questions/13944751/args-kwargs-in-jinja2-macros #}\n {% set frustrating_jinja_feature = varargs %}\n {{ return(adapter.dispatch('safe_add', 'dbt_utils')(*varargs)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__safe_add"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.501688}, "macro.dbt_utils.default__safe_add": {"unique_id": "macro.dbt_utils.default__safe_add", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/safe_add.sql", "original_file_path": "macros/sql/safe_add.sql", "name": "default__safe_add", "macro_sql": "\n\n{%- macro default__safe_add() -%}\n\n{% set fields = [] %}\n\n{%- for field in varargs -%}\n\n {% do fields.append(\"coalesce(\" ~ field ~ \", 0)\") %}\n\n{%- endfor -%}\n\n{{ fields|join(' +\\n ') }}\n\n{%- endmacro -%}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.501966}, "macro.dbt_utils.nullcheck": {"unique_id": "macro.dbt_utils.nullcheck", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/nullcheck.sql", "original_file_path": "macros/sql/nullcheck.sql", "name": "nullcheck", "macro_sql": "{% macro nullcheck(cols) %}\n {{ return(adapter.dispatch('nullcheck', 'dbt_utils')(cols)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__nullcheck"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.502346}, "macro.dbt_utils.default__nullcheck": {"unique_id": "macro.dbt_utils.default__nullcheck", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/nullcheck.sql", "original_file_path": "macros/sql/nullcheck.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.502675}, "macro.dbt_utils.get_tables_by_pattern_sql": {"unique_id": "macro.dbt_utils.get_tables_by_pattern_sql", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_tables_by_pattern_sql.sql", "original_file_path": "macros/sql/get_tables_by_pattern_sql.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__get_tables_by_pattern_sql"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5041358}, "macro.dbt_utils.default__get_tables_by_pattern_sql": {"unique_id": "macro.dbt_utils.default__get_tables_by_pattern_sql", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_tables_by_pattern_sql.sql", "original_file_path": "macros/sql/get_tables_by_pattern_sql.sql", "name": "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 \"table_schema\",\n table_name as \"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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.get_table_types_sql"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.504405}, "macro.dbt_utils.bigquery__get_tables_by_pattern_sql": {"unique_id": "macro.dbt_utils.bigquery__get_tables_by_pattern_sql", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_tables_by_pattern_sql.sql", "original_file_path": "macros/sql/get_tables_by_pattern_sql.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils._bigquery__get_matching_schemata", "macro.dbt_utils.get_table_types_sql"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.505166}, "macro.dbt_utils._bigquery__get_matching_schemata": {"unique_id": "macro.dbt_utils._bigquery__get_matching_schemata", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_tables_by_pattern_sql.sql", "original_file_path": "macros/sql/get_tables_by_pattern_sql.sql", "name": "_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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5056589}, "macro.dbt_utils.get_column_values": {"unique_id": "macro.dbt_utils.get_column_values", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_column_values.sql", "original_file_path": "macros/sql/get_column_values.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__get_column_values"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.506741}, "macro.dbt_utils.default__get_column_values": {"unique_id": "macro.dbt_utils.default__get_column_values", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_column_values.sql", "original_file_path": "macros/sql/get_column_values.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils._is_ephemeral", "macro.dbt.load_relation", "macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.508209}, "macro.dbt_utils.pivot": {"unique_id": "macro.dbt_utils.pivot", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/pivot.sql", "original_file_path": "macros/sql/pivot.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__pivot"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.509259}, "macro.dbt_utils.default__pivot": {"unique_id": "macro.dbt_utils.default__pivot", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/pivot.sql", "original_file_path": "macros/sql/pivot.sql", "name": "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_utils.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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.escape_single_quotes", "macro.dbt_utils.slugify"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5100842}, "macro.dbt_utils.get_filtered_columns_in_relation": {"unique_id": "macro.dbt_utils.get_filtered_columns_in_relation", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_filtered_columns_in_relation.sql", "original_file_path": "macros/sql/get_filtered_columns_in_relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__get_filtered_columns_in_relation"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.510584}, "macro.dbt_utils.default__get_filtered_columns_in_relation": {"unique_id": "macro.dbt_utils.default__get_filtered_columns_in_relation", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_filtered_columns_in_relation.sql", "original_file_path": "macros/sql/get_filtered_columns_in_relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.511293}, "macro.dbt_utils.get_query_results_as_dict": {"unique_id": "macro.dbt_utils.get_query_results_as_dict", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_query_results_as_dict.sql", "original_file_path": "macros/sql/get_query_results_as_dict.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__get_query_results_as_dict"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5117161}, "macro.dbt_utils.default__get_query_results_as_dict": {"unique_id": "macro.dbt_utils.default__get_query_results_as_dict", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_query_results_as_dict.sql", "original_file_path": "macros/sql/get_query_results_as_dict.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.512296}, "macro.dbt_utils.get_table_types_sql": {"unique_id": "macro.dbt_utils.get_table_types_sql", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_table_types_sql.sql", "original_file_path": "macros/sql/get_table_types_sql.sql", "name": "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", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__get_table_types_sql"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.512795}, "macro.dbt_utils.default__get_table_types_sql": {"unique_id": "macro.dbt_utils.default__get_table_types_sql", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_table_types_sql.sql", "original_file_path": "macros/sql/get_table_types_sql.sql", "name": "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 \"table_type\"\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5128782}, "macro.dbt_utils.postgres__get_table_types_sql": {"unique_id": "macro.dbt_utils.postgres__get_table_types_sql", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_table_types_sql.sql", "original_file_path": "macros/sql/get_table_types_sql.sql", "name": "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 \"table_type\"\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5129569}, "macro.dbt_utils.bigquery__get_table_types_sql": {"unique_id": "macro.dbt_utils.bigquery__get_table_types_sql", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_table_types_sql.sql", "original_file_path": "macros/sql/get_table_types_sql.sql", "name": "bigquery__get_table_types_sql", "macro_sql": "{% macro bigquery__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 `table_type`\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.513033}, "macro.dbt_utils.degrees_to_radians": {"unique_id": "macro.dbt_utils.degrees_to_radians", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/haversine_distance.sql", "original_file_path": "macros/sql/haversine_distance.sql", "name": "degrees_to_radians", "macro_sql": "{% macro degrees_to_radians(degrees) -%}\n acos(-1) * {{degrees}} / 180\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5140421}, "macro.dbt_utils.haversine_distance": {"unique_id": "macro.dbt_utils.haversine_distance", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/haversine_distance.sql", "original_file_path": "macros/sql/haversine_distance.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.bigquery__haversine_distance"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.514315}, "macro.dbt_utils.default__haversine_distance": {"unique_id": "macro.dbt_utils.default__haversine_distance", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/haversine_distance.sql", "original_file_path": "macros/sql/haversine_distance.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.515997}, "macro.dbt_utils.bigquery__haversine_distance": {"unique_id": "macro.dbt_utils.bigquery__haversine_distance", "package_name": "dbt_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/haversine_distance.sql", "original_file_path": "macros/sql/haversine_distance.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.degrees_to_radians"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.516845}, "macro.spark_utils.get_tables": {"unique_id": "macro.spark_utils.get_tables", "package_name": "spark_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/maintenance_operation.sql", "original_file_path": "macros/maintenance_operation.sql", "name": "get_tables", "macro_sql": "{% macro get_tables(table_regex_pattern='.*') %}\n\n {% set tables = [] %}\n {% for database in spark__list_schemas('not_used') %}\n {% for table in spark__list_relations_without_caching(database[0]) %}\n {% set db_tablename = database[0] ~ \".\" ~ table[1] %}\n {% set is_match = modules.re.match(table_regex_pattern, db_tablename) %}\n {% if is_match %}\n {% call statement('table_detail', fetch_result=True) -%}\n describe extended {{ db_tablename }}\n {% endcall %}\n\n {% set table_type = load_result('table_detail').table|reverse|selectattr(0, 'in', ('type', 'TYPE', 'Type'))|first %}\n {% if table_type[1]|lower != 'view' %}\n {{ tables.append(db_tablename) }}\n {% endif %}\n {% endif %}\n {% endfor %}\n {% endfor %}\n {{ return(tables) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.521557}, "macro.spark_utils.get_delta_tables": {"unique_id": "macro.spark_utils.get_delta_tables", "package_name": "spark_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/maintenance_operation.sql", "original_file_path": "macros/maintenance_operation.sql", "name": "get_delta_tables", "macro_sql": "{% macro get_delta_tables(table_regex_pattern='.*') %}\n\n {% set delta_tables = [] %}\n {% for db_tablename in get_tables(table_regex_pattern) %}\n {% call statement('table_detail', fetch_result=True) -%}\n describe extended {{ db_tablename }}\n {% endcall %}\n\n {% set table_type = load_result('table_detail').table|reverse|selectattr(0, 'in', ('provider', 'PROVIDER', 'Provider'))|first %}\n {% if table_type[1]|lower == 'delta' %}\n {{ delta_tables.append(db_tablename) }}\n {% endif %}\n {% endfor %}\n {{ return(delta_tables) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.spark_utils.get_tables", "macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.522239}, "macro.spark_utils.get_statistic_columns": {"unique_id": "macro.spark_utils.get_statistic_columns", "package_name": "spark_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/maintenance_operation.sql", "original_file_path": "macros/maintenance_operation.sql", "name": "get_statistic_columns", "macro_sql": "{% macro get_statistic_columns(table) %}\n\n {% call statement('input_columns', fetch_result=True) %}\n SHOW COLUMNS IN {{ table }}\n {% endcall %}\n {% set input_columns = load_result('input_columns').table %}\n\n {% set output_columns = [] %}\n {% for column in input_columns %}\n {% call statement('column_information', fetch_result=True) %}\n DESCRIBE TABLE {{ table }} `{{ column[0] }}`\n {% endcall %}\n {% if not load_result('column_information').table[1][1].startswith('struct') and not load_result('column_information').table[1][1].startswith('array') %}\n {{ output_columns.append('`' ~ column[0] ~ '`') }}\n {% endif %}\n {% endfor %}\n {{ return(output_columns) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.523103}, "macro.spark_utils.spark_optimize_delta_tables": {"unique_id": "macro.spark_utils.spark_optimize_delta_tables", "package_name": "spark_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/maintenance_operation.sql", "original_file_path": "macros/maintenance_operation.sql", "name": "spark_optimize_delta_tables", "macro_sql": "{% macro spark_optimize_delta_tables(table_regex_pattern='.*') %}\n\n {% for table in get_delta_tables(table_regex_pattern) %}\n {% set start=modules.datetime.datetime.now() %}\n {% set message_prefix=loop.index ~ \" of \" ~ loop.length %}\n {{ dbt_utils.log_info(message_prefix ~ \" Optimizing \" ~ table) }}\n {% do run_query(\"optimize \" ~ table) %}\n {% set end=modules.datetime.datetime.now() %}\n {% set total_seconds = (end - start).total_seconds() | round(2) %}\n {{ dbt_utils.log_info(message_prefix ~ \" Finished \" ~ table ~ \" in \" ~ total_seconds ~ \"s\") }}\n {% endfor %}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.spark_utils.get_delta_tables", "macro.dbt_utils.log_info", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.523825}, "macro.spark_utils.spark_vacuum_delta_tables": {"unique_id": "macro.spark_utils.spark_vacuum_delta_tables", "package_name": "spark_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/maintenance_operation.sql", "original_file_path": "macros/maintenance_operation.sql", "name": "spark_vacuum_delta_tables", "macro_sql": "{% macro spark_vacuum_delta_tables(table_regex_pattern='.*') %}\n\n {% for table in get_delta_tables(table_regex_pattern) %}\n {% set start=modules.datetime.datetime.now() %}\n {% set message_prefix=loop.index ~ \" of \" ~ loop.length %}\n {{ dbt_utils.log_info(message_prefix ~ \" Vacuuming \" ~ table) }}\n {% do run_query(\"vacuum \" ~ table) %}\n {% set end=modules.datetime.datetime.now() %}\n {% set total_seconds = (end - start).total_seconds() | round(2) %}\n {{ dbt_utils.log_info(message_prefix ~ \" Finished \" ~ table ~ \" in \" ~ total_seconds ~ \"s\") }}\n {% endfor %}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.spark_utils.get_delta_tables", "macro.dbt_utils.log_info", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.524537}, "macro.spark_utils.spark_analyze_tables": {"unique_id": "macro.spark_utils.spark_analyze_tables", "package_name": "spark_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/maintenance_operation.sql", "original_file_path": "macros/maintenance_operation.sql", "name": "spark_analyze_tables", "macro_sql": "{% macro spark_analyze_tables(table_regex_pattern='.*') %}\n\n {% for table in get_tables(table_regex_pattern) %}\n {% set start=modules.datetime.datetime.now() %}\n {% set columns = get_statistic_columns(table) | join(',') %}\n {% set message_prefix=loop.index ~ \" of \" ~ loop.length %}\n {{ dbt_utils.log_info(message_prefix ~ \" Analyzing \" ~ table) }}\n {% if columns != '' %}\n {% do run_query(\"analyze table \" ~ table ~ \" compute statistics for columns \" ~ columns) %}\n {% endif %}\n {% set end=modules.datetime.datetime.now() %}\n {% set total_seconds = (end - start).total_seconds() | round(2) %}\n {{ dbt_utils.log_info(message_prefix ~ \" Finished \" ~ table ~ \" in \" ~ total_seconds ~ \"s\") }}\n {% endfor %}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.spark_utils.get_tables", "macro.spark_utils.get_statistic_columns", "macro.dbt_utils.log_info", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5254111}, "macro.spark_utils.spark__concat": {"unique_id": "macro.spark_utils.spark__concat", "package_name": "spark_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/dbt_utils/cross_db_utils/concat.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/concat.sql", "name": "spark__concat", "macro_sql": "{% macro spark__concat(fields) -%}\n concat({{ fields|join(', ') }})\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.525646}, "macro.spark_utils.spark__type_numeric": {"unique_id": "macro.spark_utils.spark__type_numeric", "package_name": "spark_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/dbt_utils/cross_db_utils/datatypes.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/datatypes.sql", "name": "spark__type_numeric", "macro_sql": "{% macro spark__type_numeric() %}\n decimal(28, 6)\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.525812}, "macro.spark_utils.spark__dateadd": {"unique_id": "macro.spark_utils.spark__dateadd", "package_name": "spark_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/dbt_utils/cross_db_utils/dateadd.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/dateadd.sql", "name": "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({{ spark_utils.assert_not_null('to_timestamp', from_date_or_timestamp) }})\n - to_unix_timestamp({{ spark_utils.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 {{ spark_utils.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 {{ spark_utils.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 {{ spark_utils.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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.spark_utils.assert_not_null"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.528496}, "macro.spark_utils.spark__datediff": {"unique_id": "macro.spark_utils.spark__datediff", "package_name": "spark_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/dbt_utils/cross_db_utils/datediff.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/datediff.sql", "name": "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 = spark_utils.assert_not_null('date', first_date) %}\n {% set second_date = spark_utils.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 {{ spark_utils.assert_not_null('to_unix_timestamp', spark_utils.assert_not_null('to_timestamp', second_date)) }}\n - {{ spark_utils.assert_not_null('to_unix_timestamp', spark_utils.assert_not_null('to_timestamp', first_date)) }}\n ) / {{divisor}})\n else floor((\n {{ spark_utils.assert_not_null('to_unix_timestamp', spark_utils.assert_not_null('to_timestamp', second_date)) }}\n - {{ spark_utils.assert_not_null('to_unix_timestamp', spark_utils.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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.spark_utils.assert_not_null"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.535399}, "macro.spark_utils.spark__current_timestamp": {"unique_id": "macro.spark_utils.spark__current_timestamp", "package_name": "spark_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/dbt_utils/cross_db_utils/current_timestamp.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/current_timestamp.sql", "name": "spark__current_timestamp", "macro_sql": "{% macro spark__current_timestamp() %}\n current_timestamp()\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.53559}, "macro.spark_utils.spark__current_timestamp_in_utc": {"unique_id": "macro.spark_utils.spark__current_timestamp_in_utc", "package_name": "spark_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/dbt_utils/cross_db_utils/current_timestamp.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/current_timestamp.sql", "name": "spark__current_timestamp_in_utc", "macro_sql": "{% macro spark__current_timestamp_in_utc() %}\n unix_timestamp()\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5356648}, "macro.spark_utils.spark__split_part": {"unique_id": "macro.spark_utils.spark__split_part", "package_name": "spark_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/dbt_utils/cross_db_utils/split_part.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/split_part.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.536255}, "macro.spark_utils.spark__get_relations_by_pattern": {"unique_id": "macro.spark_utils.spark__get_relations_by_pattern", "package_name": "spark_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "original_file_path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "name": "spark__get_relations_by_pattern", "macro_sql": "{% macro spark__get_relations_by_pattern(schema_pattern, table_pattern, exclude='', database=target.database) %}\n\n {%- call statement('get_tables', fetch_result=True) %}\n\n show table extended in {{ schema_pattern }} like '{{ table_pattern }}'\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=None,\n schema=row[0],\n identifier=row[1],\n type=('view' if 'Type: VIEW' in row[3] else 'table')\n ) -%}\n {%- do tbl_relations.append(tbl_relation) -%}\n {%- endfor -%}\n\n {{ return(tbl_relations) }}\n {%- else -%}\n {{ return([]) }}\n {%- endif -%}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5377889}, "macro.spark_utils.spark__get_relations_by_prefix": {"unique_id": "macro.spark_utils.spark__get_relations_by_prefix", "package_name": "spark_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "original_file_path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "name": "spark__get_relations_by_prefix", "macro_sql": "{% macro spark__get_relations_by_prefix(schema_pattern, table_pattern, exclude='', database=target.database) %}\n {% set table_pattern = table_pattern ~ '*' %}\n {{ return(spark_utils.spark__get_relations_by_pattern(schema_pattern, table_pattern, exclude='', database=target.database)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.spark_utils.spark__get_relations_by_pattern"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.538115}, "macro.spark_utils.spark__get_tables_by_pattern": {"unique_id": "macro.spark_utils.spark__get_tables_by_pattern", "package_name": "spark_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "original_file_path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "name": "spark__get_tables_by_pattern", "macro_sql": "{% macro spark__get_tables_by_pattern(schema_pattern, table_pattern, exclude='', database=target.database) %}\n {{ return(spark_utils.spark__get_relations_by_pattern(schema_pattern, table_pattern, exclude='', database=target.database)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.spark_utils.spark__get_relations_by_pattern"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.538384}, "macro.spark_utils.spark__get_tables_by_prefix": {"unique_id": "macro.spark_utils.spark__get_tables_by_prefix", "package_name": "spark_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "original_file_path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "name": "spark__get_tables_by_prefix", "macro_sql": "{% macro spark__get_tables_by_prefix(schema_pattern, table_pattern, exclude='', database=target.database) %}\n {{ return(spark_utils.spark__get_relations_by_prefix(schema_pattern, table_pattern, exclude='', database=target.database)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.spark_utils.spark__get_relations_by_prefix"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.53865}, "macro.spark_utils.assert_not_null": {"unique_id": "macro.spark_utils.assert_not_null", "package_name": "spark_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/etc/assert_not_null.sql", "original_file_path": "macros/etc/assert_not_null.sql", "name": "assert_not_null", "macro_sql": "{% macro assert_not_null(function, arg) -%}\n {{ return(adapter.dispatch('assert_not_null', 'spark_utils')(function, arg)) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.spark_utils.default__assert_not_null"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.539022}, "macro.spark_utils.default__assert_not_null": {"unique_id": "macro.spark_utils.default__assert_not_null", "package_name": "spark_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/etc/assert_not_null.sql", "original_file_path": "macros/etc/assert_not_null.sql", "name": "default__assert_not_null", "macro_sql": "{% macro default__assert_not_null(function, arg) %}\n\n coalesce({{function}}({{arg}}), nvl2({{function}}({{arg}}), assert_true({{function}}({{arg}}) is not null), null))\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.539218}, "macro.spark_utils.spark__convert_timezone": {"unique_id": "macro.spark_utils.spark__convert_timezone", "package_name": "spark_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/snowplow/convert_timezone.sql", "original_file_path": "macros/snowplow/convert_timezone.sql", "name": "spark__convert_timezone", "macro_sql": "{% macro spark__convert_timezone(in_tz, out_tz, in_timestamp) %}\n from_utc_timestamp(to_utc_timestamp({{in_timestamp}}, {{in_tz}}), {{out_tz}})\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.539479}, "macro.fivetran_utils.enabled_vars": {"unique_id": "macro.fivetran_utils.enabled_vars", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/enabled_vars.sql", "original_file_path": "macros/enabled_vars.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.539916}, "macro.fivetran_utils.percentile": {"unique_id": "macro.fivetran_utils.percentile", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.bigquery__percentile"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.540831}, "macro.fivetran_utils.default__percentile": {"unique_id": "macro.fivetran_utils.default__percentile", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.540993}, "macro.fivetran_utils.redshift__percentile": {"unique_id": "macro.fivetran_utils.redshift__percentile", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.541148}, "macro.fivetran_utils.bigquery__percentile": {"unique_id": "macro.fivetran_utils.bigquery__percentile", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.541304}, "macro.fivetran_utils.postgres__percentile": {"unique_id": "macro.fivetran_utils.postgres__percentile", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.541443}, "macro.fivetran_utils.spark__percentile": {"unique_id": "macro.fivetran_utils.spark__percentile", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.541595}, "macro.fivetran_utils.pivot_json_extract": {"unique_id": "macro.fivetran_utils.pivot_json_extract", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/pivot_json_extract.sql", "original_file_path": "macros/pivot_json_extract.sql", "name": "pivot_json_extract", "macro_sql": "{% macro pivot_json_extract(string, list_of_properties) %}\n\n{%- for property in list_of_properties -%}\n\nreplace( {{ fivetran_utils.json_extract(string, property) }}, '\"', '') as {{ property | replace(' ', '_') | lower }}\n\n{%- if not loop.last -%},{%- endif %}\n{% endfor -%}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.json_extract"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5420642}, "macro.fivetran_utils.persist_pass_through_columns": {"unique_id": "macro.fivetran_utils.persist_pass_through_columns", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/persist_pass_through_columns.sql", "original_file_path": "macros/persist_pass_through_columns.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.542888}, "macro.fivetran_utils.json_parse": {"unique_id": "macro.fivetran_utils.json_parse", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "name": "json_parse", "macro_sql": "{% macro json_parse(string, string_path) -%}\n\n{{ adapter.dispatch('json_parse', 'fivetran_utils') (string, string_path) }}\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.bigquery__json_parse"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.543929}, "macro.fivetran_utils.default__json_parse": {"unique_id": "macro.fivetran_utils.default__json_parse", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.544169}, "macro.fivetran_utils.redshift__json_parse": {"unique_id": "macro.fivetran_utils.redshift__json_parse", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5444071}, "macro.fivetran_utils.bigquery__json_parse": {"unique_id": "macro.fivetran_utils.bigquery__json_parse", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.544634}, "macro.fivetran_utils.postgres__json_parse": {"unique_id": "macro.fivetran_utils.postgres__json_parse", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5448651}, "macro.fivetran_utils.snowflake__json_parse": {"unique_id": "macro.fivetran_utils.snowflake__json_parse", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.545119}, "macro.fivetran_utils.spark__json_parse": {"unique_id": "macro.fivetran_utils.spark__json_parse", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.545372}, "macro.fivetran_utils.max_bool": {"unique_id": "macro.fivetran_utils.max_bool", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/max_bool.sql", "original_file_path": "macros/max_bool.sql", "name": "max_bool", "macro_sql": "{% macro max_bool(boolean_field) -%}\n\n{{ adapter.dispatch('max_bool', 'fivetran_utils') (boolean_field) }}\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.bigquery__max_bool"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.545739}, "macro.fivetran_utils.default__max_bool": {"unique_id": "macro.fivetran_utils.default__max_bool", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/max_bool.sql", "original_file_path": "macros/max_bool.sql", "name": "default__max_bool", "macro_sql": "{% macro default__max_bool(boolean_field) %}\n\n bool_or( {{ boolean_field }} )\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.545836}, "macro.fivetran_utils.snowflake__max_bool": {"unique_id": "macro.fivetran_utils.snowflake__max_bool", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/max_bool.sql", "original_file_path": "macros/max_bool.sql", "name": "snowflake__max_bool", "macro_sql": "{% macro snowflake__max_bool(boolean_field) %}\n\n max( {{ boolean_field }} )\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.54593}, "macro.fivetran_utils.bigquery__max_bool": {"unique_id": "macro.fivetran_utils.bigquery__max_bool", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/max_bool.sql", "original_file_path": "macros/max_bool.sql", "name": "bigquery__max_bool", "macro_sql": "{% macro bigquery__max_bool(boolean_field) %}\n\n max( {{ boolean_field }} )\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5460281}, "macro.fivetran_utils.calculated_fields": {"unique_id": "macro.fivetran_utils.calculated_fields", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/calculated_fields.sql", "original_file_path": "macros/calculated_fields.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.54644}, "macro.fivetran_utils.seed_data_helper": {"unique_id": "macro.fivetran_utils.seed_data_helper", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/seed_data_helper.sql", "original_file_path": "macros/seed_data_helper.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.547053}, "macro.fivetran_utils.fill_pass_through_columns": {"unique_id": "macro.fivetran_utils.fill_pass_through_columns", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/fill_pass_through_columns.sql", "original_file_path": "macros/fill_pass_through_columns.sql", "name": "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.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 {% endfor %}\n{% endif %}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5476968}, "macro.fivetran_utils.string_agg": {"unique_id": "macro.fivetran_utils.string_agg", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/string_agg.sql", "original_file_path": "macros/string_agg.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.default__string_agg"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.548197}, "macro.fivetran_utils.default__string_agg": {"unique_id": "macro.fivetran_utils.default__string_agg", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/string_agg.sql", "original_file_path": "macros/string_agg.sql", "name": "default__string_agg", "macro_sql": "{% macro default__string_agg(field_to_agg, delimiter) %}\n string_agg({{ field_to_agg }}, {{ delimiter }})\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.548327}, "macro.fivetran_utils.snowflake__string_agg": {"unique_id": "macro.fivetran_utils.snowflake__string_agg", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/string_agg.sql", "original_file_path": "macros/string_agg.sql", "name": "snowflake__string_agg", "macro_sql": "{% macro snowflake__string_agg(field_to_agg, delimiter) %}\n listagg({{ field_to_agg }}, {{ delimiter }})\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5484521}, "macro.fivetran_utils.redshift__string_agg": {"unique_id": "macro.fivetran_utils.redshift__string_agg", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/string_agg.sql", "original_file_path": "macros/string_agg.sql", "name": "redshift__string_agg", "macro_sql": "{% macro redshift__string_agg(field_to_agg, delimiter) %}\n listagg({{ field_to_agg }}, {{ delimiter }})\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.548574}, "macro.fivetran_utils.spark__string_agg": {"unique_id": "macro.fivetran_utils.spark__string_agg", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/string_agg.sql", "original_file_path": "macros/string_agg.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.548704}, "macro.fivetran_utils.timestamp_diff": {"unique_id": "macro.fivetran_utils.timestamp_diff", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/timestamp_diff.sql", "original_file_path": "macros/timestamp_diff.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.bigquery__timestamp_diff"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.551438}, "macro.fivetran_utils.default__timestamp_diff": {"unique_id": "macro.fivetran_utils.default__timestamp_diff", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/timestamp_diff.sql", "original_file_path": "macros/timestamp_diff.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.551595}, "macro.fivetran_utils.redshift__timestamp_diff": {"unique_id": "macro.fivetran_utils.redshift__timestamp_diff", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/timestamp_diff.sql", "original_file_path": "macros/timestamp_diff.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.551748}, "macro.fivetran_utils.bigquery__timestamp_diff": {"unique_id": "macro.fivetran_utils.bigquery__timestamp_diff", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/timestamp_diff.sql", "original_file_path": "macros/timestamp_diff.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.551896}, "macro.fivetran_utils.postgres__timestamp_diff": {"unique_id": "macro.fivetran_utils.postgres__timestamp_diff", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/timestamp_diff.sql", "original_file_path": "macros/timestamp_diff.sql", "name": "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_utils.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_utils.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_utils.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_utils.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_utils.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_utils.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_utils.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_utils.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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.datediff"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.553557}, "macro.fivetran_utils.try_cast": {"unique_id": "macro.fivetran_utils.try_cast", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "name": "try_cast", "macro_sql": "{% macro try_cast(field, type) %}\n {{ adapter.dispatch('try_cast', 'fivetran_utils') (field, type) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.bigquery__try_cast"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.554386}, "macro.fivetran_utils.default__safe_cast": {"unique_id": "macro.fivetran_utils.default__safe_cast", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.554522}, "macro.fivetran_utils.redshift__try_cast": {"unique_id": "macro.fivetran_utils.redshift__try_cast", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5547872}, "macro.fivetran_utils.postgres__try_cast": {"unique_id": "macro.fivetran_utils.postgres__try_cast", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.555062}, "macro.fivetran_utils.snowflake__try_cast": {"unique_id": "macro.fivetran_utils.snowflake__try_cast", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "name": "snowflake__try_cast", "macro_sql": "{% macro snowflake__try_cast(field, type) %}\n try_cast(cast({{field}} as varchar) as {{type}})\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.555188}, "macro.fivetran_utils.bigquery__try_cast": {"unique_id": "macro.fivetran_utils.bigquery__try_cast", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "name": "bigquery__try_cast", "macro_sql": "{% macro bigquery__try_cast(field, type) %}\n safe_cast({{field}} as {{type}})\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5553138}, "macro.fivetran_utils.spark__try_cast": {"unique_id": "macro.fivetran_utils.spark__try_cast", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "name": "spark__try_cast", "macro_sql": "{% macro spark__try_cast(field, type) %}\n try_cast({{field}} as {{type}})\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5554318}, "macro.fivetran_utils.source_relation": {"unique_id": "macro.fivetran_utils.source_relation", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/source_relation.sql", "original_file_path": "macros/source_relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.default__source_relation"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.555951}, "macro.fivetran_utils.default__source_relation": {"unique_id": "macro.fivetran_utils.default__source_relation", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/source_relation.sql", "original_file_path": "macros/source_relation.sql", "name": "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_utils.type_string() }}) as source_relation\n{% endif %}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5565162}, "macro.fivetran_utils.first_value": {"unique_id": "macro.fivetran_utils.first_value", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/first_value.sql", "original_file_path": "macros/first_value.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.default__first_value"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.557038}, "macro.fivetran_utils.default__first_value": {"unique_id": "macro.fivetran_utils.default__first_value", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/first_value.sql", "original_file_path": "macros/first_value.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.557235}, "macro.fivetran_utils.redshift__first_value": {"unique_id": "macro.fivetran_utils.redshift__first_value", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/first_value.sql", "original_file_path": "macros/first_value.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.557454}, "macro.fivetran_utils.add_dbt_source_relation": {"unique_id": "macro.fivetran_utils.add_dbt_source_relation", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/add_dbt_source_relation.sql", "original_file_path": "macros/add_dbt_source_relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.55776}, "macro.fivetran_utils.add_pass_through_columns": {"unique_id": "macro.fivetran_utils.add_pass_through_columns", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/add_pass_through_columns.sql", "original_file_path": "macros/add_pass_through_columns.sql", "name": "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.alias %}\n\n {% do base_columns.append({ \"name\": column.name, \"alias\": column.alias, \"datatype\": column.datatype if column.datatype else dbt_utils.type_string()}) %}\n\n {% else %}\n\n {% do base_columns.append({ \"name\": column.name, \"datatype\": column.datatype if column.datatype else dbt_utils.type_string()}) %}\n \n {% endif %}\n\n {% endfor %}\n\n {% endif %}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.558672}, "macro.fivetran_utils.union_relations": {"unique_id": "macro.fivetran_utils.union_relations", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/union_relations.sql", "original_file_path": "macros/union_relations.sql", "name": "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_utils.string_literal(relation) }} as {{ dbt_utils.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", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils.string_literal", "macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.562449}, "macro.fivetran_utils.union_tables": {"unique_id": "macro.fivetran_utils.union_tables", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/union_relations.sql", "original_file_path": "macros/union_relations.sql", "name": "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 -%}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.union_relations"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5628002}, "macro.fivetran_utils.snowflake_seed_data": {"unique_id": "macro.fivetran_utils.snowflake_seed_data", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/snowflake_seed_data.sql", "original_file_path": "macros/snowflake_seed_data.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5632262}, "macro.fivetran_utils.fill_staging_columns": {"unique_id": "macro.fivetran_utils.fill_staging_columns", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/fill_staging_columns.sql", "original_file_path": "macros/fill_staging_columns.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.quote_column"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.564744}, "macro.fivetran_utils.quote_column": {"unique_id": "macro.fivetran_utils.quote_column", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/fill_staging_columns.sql", "original_file_path": "macros/fill_staging_columns.sql", "name": "quote_column", "macro_sql": "{% macro quote_column(column) %}\n {% if 'quote' in column %}\n {% if column.quote %}\n {% if target.type in ('bigquery', 'spark') %}\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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.565286}, "macro.fivetran_utils.json_extract": {"unique_id": "macro.fivetran_utils.json_extract", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "name": "json_extract", "macro_sql": "{% macro json_extract(string, string_path) -%}\n\n{{ adapter.dispatch('json_extract', 'fivetran_utils') (string, string_path) }}\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.bigquery__json_extract"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.565878}, "macro.fivetran_utils.default__json_extract": {"unique_id": "macro.fivetran_utils.default__json_extract", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "name": "default__json_extract", "macro_sql": "{% macro default__json_extract(string, string_path) %}\n\n json_extract_path_text({{string}}, {{ \"'\" ~ string_path ~ \"'\" }} )\n \n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5660312}, "macro.fivetran_utils.snowflake__json_extract": {"unique_id": "macro.fivetran_utils.snowflake__json_extract", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.566187}, "macro.fivetran_utils.redshift__json_extract": {"unique_id": "macro.fivetran_utils.redshift__json_extract", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.566352}, "macro.fivetran_utils.bigquery__json_extract": {"unique_id": "macro.fivetran_utils.bigquery__json_extract", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "name": "bigquery__json_extract", "macro_sql": "{% macro bigquery__json_extract(string, string_path) %}\n\n json_extract_scalar({{string}}, {{ \"'$.\" ~ string_path ~ \"'\" }} )\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5665002}, "macro.fivetran_utils.postgres__json_extract": {"unique_id": "macro.fivetran_utils.postgres__json_extract", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "name": "postgres__json_extract", "macro_sql": "{% macro postgres__json_extract(string, string_path) %}\n\n {{string}}::json->>{{\"'\" ~ string_path ~ \"'\" }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.566645}, "macro.fivetran_utils.collect_freshness": {"unique_id": "macro.fivetran_utils.collect_freshness", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/collect_freshness.sql", "original_file_path": "macros/collect_freshness.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.default__collect_freshness"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5673542}, "macro.fivetran_utils.default__collect_freshness": {"unique_id": "macro.fivetran_utils.default__collect_freshness", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/collect_freshness.sql", "original_file_path": "macros/collect_freshness.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt_utils.current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.568306}, "macro.fivetran_utils.timestamp_add": {"unique_id": "macro.fivetran_utils.timestamp_add", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.bigquery__timestamp_add"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.569006}, "macro.fivetran_utils.default__timestamp_add": {"unique_id": "macro.fivetran_utils.default__timestamp_add", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.56917}, "macro.fivetran_utils.bigquery__timestamp_add": {"unique_id": "macro.fivetran_utils.bigquery__timestamp_add", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5693219}, "macro.fivetran_utils.redshift__timestamp_add": {"unique_id": "macro.fivetran_utils.redshift__timestamp_add", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.56948}, "macro.fivetran_utils.postgres__timestamp_add": {"unique_id": "macro.fivetran_utils.postgres__timestamp_add", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "name": "postgres__timestamp_add", "macro_sql": "{% macro postgres__timestamp_add(datepart, interval, from_timestamp) %}\n\n {{ from_timestamp }} + ((interval '1 {{ datepart }}') * ({{ interval }}))\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.569632}, "macro.fivetran_utils.spark__timestamp_add": {"unique_id": "macro.fivetran_utils.spark__timestamp_add", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "name": "spark__timestamp_add", "macro_sql": "{% macro spark__timestamp_add(datepart, interval, from_timestamp) %}\n\n {{ dbt_utils.dateadd(datepart, interval, from_timestamp) }}\n \n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.dateadd"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.569804}, "macro.fivetran_utils.ceiling": {"unique_id": "macro.fivetran_utils.ceiling", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/ceiling.sql", "original_file_path": "macros/ceiling.sql", "name": "ceiling", "macro_sql": "{% macro ceiling(num) -%}\n\n{{ adapter.dispatch('ceiling', 'fivetran_utils') (num) }}\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.default__ceiling"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5701}, "macro.fivetran_utils.default__ceiling": {"unique_id": "macro.fivetran_utils.default__ceiling", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/ceiling.sql", "original_file_path": "macros/ceiling.sql", "name": "default__ceiling", "macro_sql": "{% macro default__ceiling(num) %}\n ceiling({{ num }})\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.570258}, "macro.fivetran_utils.snowflake__ceiling": {"unique_id": "macro.fivetran_utils.snowflake__ceiling", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/ceiling.sql", "original_file_path": "macros/ceiling.sql", "name": "snowflake__ceiling", "macro_sql": "{% macro snowflake__ceiling(num) %}\n ceil({{ num }})\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.570357}, "macro.fivetran_utils.remove_prefix_from_columns": {"unique_id": "macro.fivetran_utils.remove_prefix_from_columns", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/remove_prefix_from_columns.sql", "original_file_path": "macros/remove_prefix_from_columns.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.571024}, "macro.fivetran_utils.union_data": {"unique_id": "macro.fivetran_utils.union_data", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/union_data.sql", "original_file_path": "macros/union_data.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.default__union_data"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.572216}, "macro.fivetran_utils.default__union_data": {"unique_id": "macro.fivetran_utils.default__union_data", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/union_data.sql", "original_file_path": "macros/union_data.sql", "name": "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\n {% set relation=adapter.get_relation(\n database=var(database_variable, default_database),\n schema=schema,\n identifier=table_identifier\n ) -%}\n \n {% set relation_exists=relation is not none %}\n\n {% if relation_exists %}\n\n {% do relations.append(relation) %}\n \n {% endif %}\n\n {% endfor %}\n\n {{ dbt_utils.union_relations(relations) }}\n\n{% elif var(union_database_variable, none) %}\n\n {% set relations = [] %}\n\n {% for database in var(union_database_variable) %}\n\n {% set relation=adapter.get_relation(\n database=database,\n schema=var(schema_variable, default_schema),\n identifier=table_identifier\n ) -%}\n\n {% set relation_exists=relation is not none %}\n\n {% if relation_exists %}\n\n {% do relations.append(relation) %}\n \n {% endif %}\n\n {% endfor %}\n\n {{ dbt_utils.union_relations(relations) }}\n\n{% else %}\n\n select * \n from {{ var(default_variable) }}\n\n{% endif %}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.union_relations"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.573956}, "macro.fivetran_utils.dummy_coalesce_value": {"unique_id": "macro.fivetran_utils.dummy_coalesce_value", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/dummy_coalesce_value.sql", "original_file_path": "macros/dummy_coalesce_value.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.575386}, "macro.fivetran_utils.array_agg": {"unique_id": "macro.fivetran_utils.array_agg", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/array_agg.sql", "original_file_path": "macros/array_agg.sql", "name": "array_agg", "macro_sql": "{% macro array_agg(field_to_agg) -%}\n\n{{ adapter.dispatch('array_agg', 'fivetran_utils') (field_to_agg) }}\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.default__array_agg"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.575706}, "macro.fivetran_utils.default__array_agg": {"unique_id": "macro.fivetran_utils.default__array_agg", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/array_agg.sql", "original_file_path": "macros/array_agg.sql", "name": "default__array_agg", "macro_sql": "{% macro default__array_agg(field_to_agg) %}\n array_agg({{ field_to_agg }})\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.575806}, "macro.fivetran_utils.redshift__array_agg": {"unique_id": "macro.fivetran_utils.redshift__array_agg", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/array_agg.sql", "original_file_path": "macros/array_agg.sql", "name": "redshift__array_agg", "macro_sql": "{% macro redshift__array_agg(field_to_agg) %}\n listagg({{ field_to_agg }}, ',')\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.575901}, "macro.fivetran_utils.empty_variable_warning": {"unique_id": "macro.fivetran_utils.empty_variable_warning", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/empty_variable_warning.sql", "original_file_path": "macros/empty_variable_warning.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5763369}, "macro.fivetran_utils.enabled_vars_one_true": {"unique_id": "macro.fivetran_utils.enabled_vars_one_true", "package_name": "fivetran_utils", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/enabled_vars_one_true.sql", "original_file_path": "macros/enabled_vars_one_true.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.57677}, "macro.marketo_source.get_activity_merge_leads_columns": {"unique_id": "macro.marketo_source.get_activity_merge_leads_columns", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "macros/get_activity_merge_leads_columns.sql", "original_file_path": "macros/get_activity_merge_leads_columns.sql", "name": "get_activity_merge_leads_columns", "macro_sql": "{% macro get_activity_merge_leads_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"activity_date\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"activity_type_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"campaign_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"id\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"lead_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"master_updated\", \"datatype\": \"boolean\"},\n {\"name\": \"merge_ids\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"merge_source\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"merged_in_sales\", \"datatype\": \"boolean\"},\n {\"name\": \"primary_attribute_value\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"primary_attribute_value_id\", \"datatype\": dbt_utils.type_int()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.type_timestamp", "macro.dbt_utils.type_int", "macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.578155}, "macro.marketo_source.get_activity_open_email_columns": {"unique_id": "macro.marketo_source.get_activity_open_email_columns", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "macros/get_activity_open_email_columns.sql", "original_file_path": "macros/get_activity_open_email_columns.sql", "name": "get_activity_open_email_columns", "macro_sql": "{% macro get_activity_open_email_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"activity_date\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"activity_type_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"campaign_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"campaign_run_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"choice_number\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"device\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"email_template_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"id\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"is_mobile_device\", \"datatype\": \"boolean\"},\n {\"name\": \"lead_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"platform\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"primary_attribute_value\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"primary_attribute_value_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"step_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"test_variant\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"user_agent\", \"datatype\": dbt_utils.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.type_timestamp", "macro.dbt_utils.type_int", "macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.580107}, "macro.marketo_source.get_email_template_history_columns": {"unique_id": "macro.marketo_source.get_email_template_history_columns", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "macros/get_email_template_history_columns.sql", "original_file_path": "macros/get_email_template_history_columns.sql", "name": "get_email_template_history_columns", "macro_sql": "{% macro get_email_template_history_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"created_at\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"description\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"folder_folder_name\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"folder_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"folder_type\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"folder_value\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"from_email\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"from_name\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"name\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"operational\", \"datatype\": \"boolean\"},\n {\"name\": \"program_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"publish_to_msi\", \"datatype\": \"boolean\"},\n {\"name\": \"reply_email\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"status\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"subject\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"template\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"text_only\", \"datatype\": \"boolean\"},\n {\"name\": \"updated_at\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"url\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"version\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"web_view\", \"datatype\": \"boolean\"},\n {\"name\": \"workspace\", \"datatype\": dbt_utils.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.type_timestamp", "macro.dbt_utils.type_string", "macro.dbt_utils.type_int"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.582691}, "macro.marketo_source.get_lead_describe_columns": {"unique_id": "macro.marketo_source.get_lead_describe_columns", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "macros/get_lead_describe_columns.sql", "original_file_path": "macros/get_lead_describe_columns.sql", "name": "get_lead_describe_columns", "macro_sql": "{% macro get_lead_describe_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"data_type\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"display_name\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"length\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"restname\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"restread_only\", \"datatype\": \"boolean\"},\n {\"name\": \"soapname\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"soapread_only\", \"datatype\": \"boolean\"}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.type_timestamp", "macro.dbt_utils.type_string", "macro.dbt_utils.type_int"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.583775}, "macro.marketo_source.get_activity_send_email_columns": {"unique_id": "macro.marketo_source.get_activity_send_email_columns", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "macros/get_activity_send_email_columns.sql", "original_file_path": "macros/get_activity_send_email_columns.sql", "name": "get_activity_send_email_columns", "macro_sql": "{% macro get_activity_send_email_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"activity_date\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"activity_type_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"campaign_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"campaign_run_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"choice_number\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"email_template_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"id\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"lead_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"primary_attribute_value\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"primary_attribute_value_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"step_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"test_variant\", \"datatype\": dbt_utils.type_int()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.type_timestamp", "macro.dbt_utils.type_int", "macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.585288}, "macro.marketo_source.get_campaign_columns": {"unique_id": "macro.marketo_source.get_campaign_columns", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "macros/get_campaign_columns.sql", "original_file_path": "macros/get_campaign_columns.sql", "name": "get_campaign_columns", "macro_sql": "{% macro get_campaign_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"active\", \"datatype\": \"boolean\"},\n {\"name\": \"created_at\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"description\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"name\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"program_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"program_name\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"type\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"updated_at\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"workspace_name\", \"datatype\": dbt_utils.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.type_timestamp", "macro.dbt_utils.type_string", "macro.dbt_utils.type_int"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.586654}, "macro.marketo_source.get_activity_delete_lead_columns": {"unique_id": "macro.marketo_source.get_activity_delete_lead_columns", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "macros/get_activity_delete_lead_columns.sql", "original_file_path": "macros/get_activity_delete_lead_columns.sql", "name": "get_activity_delete_lead_columns", "macro_sql": "{% macro get_activity_delete_lead_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"activity_date\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"activity_type_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"campaign\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"campaign_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"id\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"lead_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"primary_attribute_value\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"primary_attribute_value_id\", \"datatype\": dbt_utils.type_int()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.type_timestamp", "macro.dbt_utils.type_int", "macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.587865}, "macro.marketo_source.get_activity_unsubscribe_email_columns": {"unique_id": "macro.marketo_source.get_activity_unsubscribe_email_columns", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "macros/get_activity_unsubscribe_email_columns.sql", "original_file_path": "macros/get_activity_unsubscribe_email_columns.sql", "name": "get_activity_unsubscribe_email_columns", "macro_sql": "{% macro get_activity_unsubscribe_email_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"activity_date\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"activity_type_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"campaign_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"campaign_run_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"client_ip_address\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"email_template_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"form_fields\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"id\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"lead_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"primary_attribute_value\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"primary_attribute_value_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"query_parameters\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"referrer_url\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"test_variant\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"user_agent\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"webform_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"webpage_id\", \"datatype\": dbt_utils.type_int()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.type_timestamp", "macro.dbt_utils.type_int", "macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5899231}, "macro.marketo_source.get_program_columns": {"unique_id": "macro.marketo_source.get_program_columns", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "macros/get_program_columns.sql", "original_file_path": "macros/get_program_columns.sql", "name": "get_program_columns", "macro_sql": "{% macro get_program_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"channel\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"created_at\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"description\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"end_date\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"name\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"sfdc_id\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"sfdc_name\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"start_date\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"status\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"type\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"updated_at\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"url\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"workspace\", \"datatype\": dbt_utils.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.type_timestamp", "macro.dbt_utils.type_string", "macro.dbt_utils.type_int"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.591653}, "macro.marketo_source.get_activity_email_bounced_columns": {"unique_id": "macro.marketo_source.get_activity_email_bounced_columns", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "macros/get_activity_email_bounced_columns.sql", "original_file_path": "macros/get_activity_email_bounced_columns.sql", "name": "get_activity_email_bounced_columns", "macro_sql": "{% macro get_activity_email_bounced_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"activity_date\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"activity_type_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"campaign_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"campaign_run_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"category\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"choice_number\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"details\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"email\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"email_template_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"id\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"lead_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"primary_attribute_value\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"primary_attribute_value_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"step_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"subcategory\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"test_variant\", \"datatype\": dbt_utils.type_int()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.type_timestamp", "macro.dbt_utils.type_int", "macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.5935738}, "macro.marketo_source.get_lead_columns": {"unique_id": "macro.marketo_source.get_lead_columns", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "macros/get_lead_columns.sql", "original_file_path": "macros/get_lead_columns.sql", "name": "get_lead_columns", "macro_sql": "{% macro get_lead_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"abm_score_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"account_id_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"account_id_url_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"account_legal_name_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"account_level_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"account_notes_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"account_owner_email_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"account_owner_role_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"account_priority_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"account_signed_msa_c\", \"datatype\": \"boolean\"},\n {\"name\": \"account_source\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"account_status_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"acquisition_program_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"active_ft_accounts_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"active_in_sequence_c\", \"datatype\": \"boolean\"},\n {\"name\": \"active_relationship_c\", \"datatype\": \"boolean\"},\n {\"name\": \"actual_daily_burn_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"ad_words_action_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"address\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"address_lead\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"adgroupid_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"ae_paired_csm_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"ae_paired_csm_user_id_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"affectlayer_affect_layer_notes_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"affectlayer_affect_layer_notes_c_account\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"allbound_id_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"allbound_id_c_contact\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"allbound_partner_permissions_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"allbound_status_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"analytics_id_c_contact\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"annual_revenue\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"anonymous_ip\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"assigned_ae_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"assigned_ae_id_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"assigned_ae_is_me_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"assigned_am_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"assigned_bdr_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"assigned_bdr_id_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"assigned_se_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"assigned_se_zendesk_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"assigned_tsm_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"associated_account_exec_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"attempting_contact_date_time_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"attended_event_c\", \"datatype\": \"boolean\"},\n {\"name\": \"auto_renewal_c\", \"datatype\": \"boolean\"},\n {\"name\": \"automated_communications_suspended_c\", \"datatype\": \"boolean\"},\n {\"name\": \"automation_tracking_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"ava_blng_is_seller_importer_of_record_c\", \"datatype\": \"boolean\"},\n {\"name\": \"ava_mapper_exemption_number_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"ava_mapper_is_seller_importer_of_record_c\", \"datatype\": \"boolean\"},\n {\"name\": \"ava_sfcpq_ava_tax_message_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"ava_sfcpq_email_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"ava_sfcpq_is_seller_importer_of_record_c\", \"datatype\": \"boolean\"},\n {\"name\": \"bdr_priority_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"behavior_score_marketing\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"behavioral_score_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"behaviorally_qualified\", \"datatype\": \"boolean\"},\n {\"name\": \"bill_to_contact_hidden_c\", \"datatype\": \"boolean\"},\n {\"name\": \"billing_city\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"billing_contact_first_name_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"billing_contact_last_name_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"billing_country\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"billing_country_code\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"billing_email_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"billing_frequency_del_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"billing_postal_code\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"billing_state\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"billing_state_code\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"billing_street\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"black_listed\", \"datatype\": \"boolean\"},\n {\"name\": \"blng_bill_to_contact_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"blng_default_payment_type_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"bounce_date\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"bread_winner_bw_account_status_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"bread_winner_total_amount_credit_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"bread_winner_total_amount_due_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"bread_winner_total_amount_invoiced_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"bread_winner_total_amount_overdue_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"bread_winner_total_amount_paid_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"bread_winner_total_draft_amount_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"bread_winner_total_unallocated_credit_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"business_intelligence_tool_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"business_score_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"campaignid_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"case_study_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"case_study_marketing_use_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"cb_funding_raised_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"cbit_clearbit_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"cbit_clearbit_c_account\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"cbit_clearbit_domain_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"cbit_clearbit_ready_c\", \"datatype\": \"boolean\"},\n {\"name\": \"cbit_clearbit_ready_c_account\", \"datatype\": \"boolean\"},\n {\"name\": \"cbit_clearbit_ready_c_contact\", \"datatype\": \"boolean\"},\n {\"name\": \"cbit_created_by_clearbit_c\", \"datatype\": \"boolean\"},\n {\"name\": \"cbit_created_by_clearbit_c_account\", \"datatype\": \"boolean\"},\n {\"name\": \"cbit_facebook_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"cbit_linked_in_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"cbit_twitter_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"city\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"city_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"clarus_date_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"clarus_date_c_contact\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"clarus_editor_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"clarus_editor_c_contact\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"clarus_notes_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"clarus_notes_c_contact\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"clarus_notes_c_lead\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"clarus_project_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"clarus_project_c_contact\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"clarus_status_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"clarus_status_c_contact\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"clawback_trigger_email_alert_c\", \"datatype\": \"boolean\"},\n {\"name\": \"clearbit_alexa_rank_global_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"clearbit_alexa_rank_us_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"clearbit_billing_city_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"clearbit_billing_country_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"clearbit_billing_state_province_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"clearbit_billing_street_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"clearbit_billing_zip_postal_code_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"clearbit_company_type_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"clearbit_country_code_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"clearbit_enriched_at\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"clearbit_form_status\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"clearbit_founded_year_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"clearbit_industry_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"clearbit_industry_group_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"clearbit_province_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"clearbit_raised_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"clearbit_risk_email_valid\", \"datatype\": \"boolean\"},\n {\"name\": \"clearbit_risk_risk_level\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"clearbit_risk_risk_score\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"clearbit_role_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"clearbit_sector_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"clearbit_seniority_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"clearbit_status\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"clearbit_sub_industry_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"clearbit_tags_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"clearbit_tech_category_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"clearbit_technologies_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"clearbit_zip_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"cloudingo_agent_sas_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"company\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"company_country_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"company_postal_code_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"company_province_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"company_type_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"company_type_c_account\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"competitor_c\", \"datatype\": \"boolean\"},\n {\"name\": \"competitor_c_account\", \"datatype\": \"boolean\"},\n {\"name\": \"consumption_rate_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"contact_company\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"contact_stage_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"contact_status_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"contact_type_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"contract_renewal_45_date\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"contract_renewal_date_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"converted_date_time_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"cookies\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"count_of_accounts_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"countdown_to_end_of_contract_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"country\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"country_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"country_cc_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"country_code\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"country_code_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"created_at\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"creative_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"credits_remaining_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"csi_code_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"csi_code_c_account\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"csi_description_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"csi_description_c_account\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"csi_description_del_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"current_fortune_rank_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"current_monthly_subscription_end_date_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"current_term_customer_value_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"customer_advocate_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"customer_advocate_notes_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"customer_health_engagement_score_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"customer_lifetime_value_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"customer_type_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"daily_credit_projected_burn_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"datawarehouse_used_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"datawarehouse_used_c_lead\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"date_time_formula_fields_changed_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"days_of_credits_remaining_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"days_since_created_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"days_since_last_manual_ae_activity_date_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"days_since_last_manual_bdr_activity_date_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"days_since_last_sales_activity_date_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"days_without_activity\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"db_created_date_without_time_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"db_lead_age_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"dbt_package_run_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"delete_text_area\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"deliveries_after_bounces\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"demandbase_city_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"demandbase_country_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"demandbase_general_fit_score_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"demandbase_number_of_employees_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"demandbase_overall_score_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"demandbase_sid_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"demandbase_state_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"demandbase_zip_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"demo_interest\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"demo_scheduled_by_calenderly_c\", \"datatype\": \"boolean\"},\n {\"name\": \"demographic_score_marketing\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"demographically_qualified\", \"datatype\": \"boolean\"},\n {\"name\": \"department\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"device_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"direct_office_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"district_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"do_not_call\", \"datatype\": \"boolean\"},\n {\"name\": \"do_not_call_reason\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"do_not_route_lead_c\", \"datatype\": \"boolean\"},\n {\"name\": \"do_not_sync_marketo_c\", \"datatype\": \"boolean\"},\n {\"name\": \"do_not_sync_marketo_c_account\", \"datatype\": \"boolean\"},\n {\"name\": \"domain_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"dozisf_zoom_info_id_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"drift_content_fulfillment\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"drift_cql_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"drift_cqlscore\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"drift_email_reply_text\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"drift_email_subject_line\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"drift_email_url\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"duns_number_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"email\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"email_bounce_category\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"email_bounce_details\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"email_bounced_c\", \"datatype\": \"boolean\"},\n {\"name\": \"email_bounced_date\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"email_bounced_reason\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"email_bounces\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"email_delivered_after_bounce\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"email_domain_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"email_invalid\", \"datatype\": \"boolean\"},\n {\"name\": \"email_invalid_cause\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"email_opt_in\", \"datatype\": \"boolean\"},\n {\"name\": \"email_opt_in_date\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"email_opt_in_explicit_c\", \"datatype\": \"boolean\"},\n {\"name\": \"email_opt_in_implicit_c\", \"datatype\": \"boolean\"},\n {\"name\": \"email_quality_c\", \"datatype\": \"boolean\"},\n {\"name\": \"email_suspended\", \"datatype\": \"boolean\"},\n {\"name\": \"email_suspended_at\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"email_suspended_cause\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"email_validation_c\", \"datatype\": \"boolean\"},\n {\"name\": \"employee_range_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"employee_range_c_lead\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"end_date_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"engagement_score_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"enrichment_request_c\", \"datatype\": \"boolean\"},\n {\"name\": \"enterprise_target_account_c\", \"datatype\": \"boolean\"},\n {\"name\": \"es_app_esalexa_rank_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"es_app_esaudience_names_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"es_app_escity_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"es_app_escompany_phone_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"es_app_escountry_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"es_app_escountry_c_account\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"es_app_escreated_timestamp_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"es_app_esemployees_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"es_app_esemployees_c_account\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"es_app_esenriched_c\", \"datatype\": \"boolean\"},\n {\"name\": \"es_app_esenriched_c_contact\", \"datatype\": \"boolean\"},\n {\"name\": \"es_app_esenriched_timestamp_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"es_app_esenriched_timestamp_c_contact\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"es_app_esfacebook_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"es_app_esindustry_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"es_app_esintent_aggregate_score_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"es_app_esintent_timestamp_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"es_app_esintent_topics_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"es_app_eskeywords_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"es_app_eslinked_in_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"es_app_esrevenue_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"es_app_esrevenue_c_account\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"es_app_essource_c\", \"datatype\": \"boolean\"},\n {\"name\": \"es_app_essource_c_contact\", \"datatype\": \"boolean\"},\n {\"name\": \"es_app_esstate_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"es_app_esstreet_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"es_app_estwitter_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"es_app_eszipcode_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"es_general_fit_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"es_seniority_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"esraw_2_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"esraw_employee_size_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"estimated_annual_revenue_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"event_date_code\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"event_date_display\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"event_speaker_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"exclusive_ownership_c\", \"datatype\": \"boolean\"},\n {\"name\": \"exclusive_ownership_c_contact\", \"datatype\": \"boolean\"},\n {\"name\": \"expansion_score_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"external_id_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"fax\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"first_mql_date_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"first_name\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"first_won_date_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"fivetran_account_association_date_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"fivetran_account_id_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"fivetran_account_id_c_account\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"fivetran_account_name_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"fivetran_account_stage_c_account\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"fivetran_account_status_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"fivetran_account_user_role_s_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"fivetran_connectors_used_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"fivetran_data_warehouses_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"fivetran_first_sync_date_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"fivetran_fit_score_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"fivetran_industry_category_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"fivetran_industry_category_c_contact\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"fivetran_last_sync_date_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"fivetran_referral_id_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"fivetran_sync_status_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"fivetran_trial_begin_date_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"fivetran_trial_end_date_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"fivetran_trial_start_date_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"fivetran_user_id_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"formula_fields_updated_c\", \"datatype\": \"boolean\"},\n {\"name\": \"free_trial_email_confirmed_date\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"friction_score_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"ft_account_id_s_verified_c\", \"datatype\": \"boolean\"},\n {\"name\": \"ft_account_verification_needed_c\", \"datatype\": \"boolean\"},\n {\"name\": \"funnel_priority_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"funnel_stage_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"funnel_type_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"gclid_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"gdpr_opt_in_explicit_c\", \"datatype\": \"boolean\"},\n {\"name\": \"gender\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"geo_city_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"geo_country_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"geo_country_code_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"geo_state_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"has_fivetran_connector_c\", \"datatype\": \"boolean\"},\n {\"name\": \"has_opted_out_of_fax\", \"datatype\": \"boolean\"},\n {\"name\": \"health_score_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"hidden_company_name\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"historical_contact_status_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"hot_contact_c\", \"datatype\": \"boolean\"},\n {\"name\": \"id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"industry\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"inferred_city\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"inferred_company\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"inferred_country\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"inferred_metropolitan_area\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"inferred_phone_area_code\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"inferred_postal_code\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"inferred_state_region\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"is_anonymous\", \"datatype\": \"boolean\"},\n {\"name\": \"is_email_bounced\", \"datatype\": \"boolean\"},\n {\"name\": \"is_emea_event_routing_c\", \"datatype\": \"boolean\"},\n {\"name\": \"is_emea_event_routing_c_account\", \"datatype\": \"boolean\"},\n {\"name\": \"is_eu_resident_c\", \"datatype\": \"boolean\"},\n {\"name\": \"is_excluded_from_realign\", \"datatype\": \"boolean\"},\n {\"name\": \"is_lead\", \"datatype\": \"boolean\"},\n {\"name\": \"is_updated_superset_c\", \"datatype\": \"boolean\"},\n {\"name\": \"job_function_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"job_level_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"keyword_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"land_arr_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"land_region_2020_h_2_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"last_activity_logged_by_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"last_ae_activity_owner_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"last_bdr_activity_owner_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"last_manual_ae_activity_date_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"last_manual_bdr_activity_date_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"last_name\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"last_re_captchaserver_status\", \"datatype\": \"boolean\"},\n {\"name\": \"last_referenced_date\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"last_referenced_date_account\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"last_rep_activity_date_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"last_sales_activity_date_time_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"last_viewed_date\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"last_viewed_date_account\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"lastre_captchaerror_codes\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"lead_created_date_time_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"lead_created_date_time_reporting_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"lead_iq_country_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"lead_iq_employee_count_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"lead_iq_employee_range_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"lead_iq_state_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"lead_iq_zip_code_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"lead_number_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"lead_partition_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"lead_person\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"lead_source\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"lead_source_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"lead_status\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"lead_type_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"lean_data_ld_email_domains_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"lean_data_manual_route_trigger_c\", \"datatype\": \"boolean\"},\n {\"name\": \"lean_data_re_route_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"lean_data_reporting_customer_c\", \"datatype\": \"boolean\"},\n {\"name\": \"lean_data_reporting_has_opportunity_c\", \"datatype\": \"boolean\"},\n {\"name\": \"lean_data_reporting_matched_account_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"lean_data_reporting_target_account_c\", \"datatype\": \"boolean\"},\n {\"name\": \"lean_data_reporting_timestamp_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"lean_data_routing_action_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"lean_data_routing_action_c_contact\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"lean_data_routing_status_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"lean_data_search_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"lean_data_search_index_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"leandata_contact_owner_override_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"lid_linked_in_member_token_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"linked_in_profile_url\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"linked_in_url_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"list_import_status\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"mailing_address\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"mailing_country_code\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"mailing_state_code\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"main_phone\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"manual_override_country_code_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"manual_override_employee_count_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"manual_override_state_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"manual_override_zip_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"marketing_approval_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"marketing_behavior_score_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"marketing_connector_interest_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"marketing_prospect_routing_rules_c\", \"datatype\": \"boolean\"},\n {\"name\": \"marketing_suspended\", \"datatype\": \"boolean\"},\n {\"name\": \"marketing_suspended_reason\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"marketing_target_account_c\", \"datatype\": \"boolean\"},\n {\"name\": \"matchtype_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"mc_4_sf_mc_subscriber_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"meta_data_create_date_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"middle_name\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"mkto_acquisition_date\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"mkto_company_notes\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"mkto_is_customer\", \"datatype\": \"boolean\"},\n {\"name\": \"mkto_is_partner\", \"datatype\": \"boolean\"},\n {\"name\": \"mkto_name\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"mkto_person_notes\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"mkto_si_add_to_marketo_campaign_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"mkto_si_sales_insight_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"mobile_phone\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"mobile_phone_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"monthly_customer_no_contract_c\", \"datatype\": \"boolean\"},\n {\"name\": \"mql_date_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"mql_reason_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"msa_effective_date_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"nda_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"netsuite_conn_account_balance_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"netsuite_conn_account_overdue_balance_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"netsuite_conn_celigo_update_c\", \"datatype\": \"boolean\"},\n {\"name\": \"netsuite_conn_celigo_update_c_account\", \"datatype\": \"boolean\"},\n {\"name\": \"netsuite_conn_credit_hold_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"netsuite_conn_days_overdue_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"netsuite_conn_net_suite_customer_id_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"netsuite_conn_net_suite_id_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"netsuite_conn_net_suite_id_c_account\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"netsuite_conn_net_suite_sync_err_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"netsuite_conn_net_suite_sync_err_c_account\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"netsuite_conn_push_to_net_suite_c\", \"datatype\": \"boolean\"},\n {\"name\": \"netsuite_conn_push_to_net_suite_c_account\", \"datatype\": \"boolean\"},\n {\"name\": \"netsuite_conn_pushed_from_opportunity_c\", \"datatype\": \"boolean\"},\n {\"name\": \"netsuite_conn_pushed_from_opportunity_c_account\", \"datatype\": \"boolean\"},\n {\"name\": \"netsuite_conn_sync_in_progress_c\", \"datatype\": \"boolean\"},\n {\"name\": \"netsuite_conn_sync_in_progress_c_contact\", \"datatype\": \"boolean\"},\n {\"name\": \"netsuite_conn_unbilled_orders_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"network_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"neverbounce_email_status\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"no_longer_at_company_c\", \"datatype\": \"boolean\"},\n {\"name\": \"notes_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"notes_cs_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"nps_score_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"number_of_credits_remaining_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"number_of_employees\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"old_lead_source_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"old_lead_source_detail_c_contact\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"opp_handoff_ae_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"opportunity_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"original_referrer\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"original_search_engine\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"original_search_phrase\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"original_source_info\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"original_source_type\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"original_utm_campaign_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"original_utm_content_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"original_utm_medium_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"original_utm_source_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"original_utm_term_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"other_country_code\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"owner_id_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"partner_company_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"partner_contact_c\", \"datatype\": \"boolean\"},\n {\"name\": \"partner_owner_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"partner_rep_email_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"partner_rep_name_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"partner_territory_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"partner_tier_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"partner_type_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"partner_type_c_account\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"payment_terms_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"pbf_account_c\", \"datatype\": \"boolean\"},\n {\"name\": \"person_primary_lead_interest\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"person_time_zone\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"person_type\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"phone\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"phone_extension_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"photo_url\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"photo_url_account\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"pi_campaign_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"pi_comments_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"pi_conversion_date_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"pi_conversion_object_name_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"pi_conversion_object_type_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"pi_created_date_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"pi_first_activity_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"pi_needs_score_synced_c\", \"datatype\": \"boolean\"},\n {\"name\": \"pi_utm_campaign_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"pi_utm_content_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"pi_utm_medium_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"pi_utm_source_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"pi_utm_term_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"platform_level_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"podcast_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"postal_code\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"potential_fivetran_use_case_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"pr_opportunity_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"previouse_fortune_rank_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"primary_contact_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"priority\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"product_feedback_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"project_based_routing_c\", \"datatype\": \"boolean\"},\n {\"name\": \"promoter_score_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"promotion_id_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"quick_email_verification_accept_all\", \"datatype\": \"boolean\"},\n {\"name\": \"quick_email_verification_disposable\", \"datatype\": \"boolean\"},\n {\"name\": \"quick_email_verification_free\", \"datatype\": \"boolean\"},\n {\"name\": \"quick_email_verification_reason\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"quick_email_verification_result\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"quick_email_verification_role\", \"datatype\": \"boolean\"},\n {\"name\": \"quick_email_verification_safe_to_send\", \"datatype\": \"boolean\"},\n {\"name\": \"re_target_date_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"recent_marketing_campaign_status_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"recommended_connector_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"record_type_id\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"reference_call_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"referral_account_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"referral_account_c_account\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"referral_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"referral_contact_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"referral_contact_c_account\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"referral_contact_email_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"referral_exists_c\", \"datatype\": \"boolean\"},\n {\"name\": \"referral_firstname_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"referral_last_name_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"region_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"region_c_account\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"region_c_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"region_deprecate_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"region_terr_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"registration_source_info\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"registration_source_type\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"relative_score\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"relative_urgency\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"rh_2_formula_test_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"roll_out_group_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"rollout_group_override_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"round_robin_id_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"rybbon_campaign_key\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"sales_engineer_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"sales_loft_1_active_account_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"sales_loft_1_active_contact_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"sales_loft_1_active_lead_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"sales_loft_1_most_recent_cadence_name_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"sales_loft_1_most_recent_cadence_next_step_due_date_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"sales_loft_1_most_recent_last_completed_step_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"sales_region_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"sales_segment_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"sales_target_account_c\", \"datatype\": \"boolean\"},\n {\"name\": \"salesloft_account_name_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"salesloft_cadence_trigger_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"salutation\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"secondary_email_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"segment_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"self_service_to_annual_c\", \"datatype\": \"boolean\"},\n {\"name\": \"sfbd_collections_agent_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"sfbd_collections_plan_date_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"sfbd_collections_status_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"sfbd_dunning_method_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"sfdc_account_id\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"sfdc_contact_id\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"sfdc_lead_id\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"sfdc_lead_owner_id\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"sfdc_type\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"shipping_country_code\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"shipping_state_code\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"sic_code\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"siftrock_positive_email_reply\", \"datatype\": \"boolean\"},\n {\"name\": \"sla_c\", \"datatype\": \"boolean\"},\n {\"name\": \"source_detail_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"source_detail_c_account\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"source_every_lead_source_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"source_every_lead_source_category_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"source_every_lead_source_detail_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"source_every_utm_campaign_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"source_every_utm_content_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"source_every_utm_medium_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"source_every_utm_source_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"source_every_utm_term_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"source_first_lead_source_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"source_first_lead_source_category_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"source_first_lead_source_detail_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"source_first_utm_campaign_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"source_first_utm_content_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"source_first_utm_medium_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"source_first_utm_source_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"source_first_utm_term_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"source_last_lead_source_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"source_last_lead_source_c_contact\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"source_last_lead_source_category_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"source_last_lead_source_category_c_contact\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"source_last_lead_source_detail_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"source_last_lead_source_detail_c_contact\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"source_last_utm_campaign_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"source_last_utm_content_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"source_last_utm_medium_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"source_last_utm_source_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"source_last_utm_term_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"source_most_recent\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"start_date_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"state\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"state_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"state_code\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"stripe_customer_id_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"subscription_length_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"sum_of_future_opportunities_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"sum_of_lost_renewal_opps_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"superset_country_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"superset_country_c_account\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"superset_employee_count_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"superset_employee_count_c_contact\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"superset_state_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"superset_state_c_contact\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"superset_zip_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"superset_zip_c_contact\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"suppress_billing_c\", \"datatype\": \"boolean\"},\n {\"name\": \"survey_apps_used\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"survey_confidencein_data_analysis\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"survey_datawarehouse\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"survey_etltools\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"survey_fivetran_project\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"survey_hours_spent\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"survey_project_timeline\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"survey_what_would_you_rather_do\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"target_date_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"territory_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"territory_country_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"territory_employee_count_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"territory_state_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"territory_zip_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"test_email_ccaddress\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"third_party_payer_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"time_to_conversion_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"title\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"to_delete_c\", \"datatype\": \"boolean\"},\n {\"name\": \"total_comp_credits_this_month_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"total_credits_bought_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"total_credits_used_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"trial_contact_start_date_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"trial_end_date_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"u_fall_assets_downloaded\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"uberfliphub_116403_articlesviewed\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"uberfliphub_116403_flipbooksviewed\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"uberfliphub_116403_videosviewed\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"uf_conversion_item_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"uf_conversion_item_title\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"uf_last_visited_item_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"uf_last_visited_item_title\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"unique_email_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"unqualified_reason_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"unqualified_reason_c_contact\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"unsubscribed\", \"datatype\": \"boolean\"},\n {\"name\": \"unsubscribed_reason\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"updated_at\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"urgency\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"usage_ae_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"usage_am_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"usage_csm_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"usage_score_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"user_activity_logged_by_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"user_gems_has_a_user_gem_c\", \"datatype\": \"boolean\"},\n {\"name\": \"user_gems_has_changed_job_c\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"user_gems_is_a_user_gem_c\", \"datatype\": \"boolean\"},\n {\"name\": \"user_gems_linked_in_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"user_gems_past_account_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"user_gems_past_company_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"user_gems_past_contact_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"user_gems_past_title_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"utm_campaign_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"utm_content_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"utm_medium_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"utm_source_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"utm_term_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"verified\", \"datatype\": \"boolean\"},\n {\"name\": \"video_testimonial_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"warehouse_associated_date\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"webinar_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"website\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"won_and_future_open_opportunites_c\", \"datatype\": dbt_utils.type_float()},\n {\"name\": \"zoominfo_country_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"zoominfo_employee_count_c\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"zoominfo_state_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"zoominfo_technologies_c\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"zoominfo_technologies_c_account\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"zoominfo_zip_code_c\", \"datatype\": dbt_utils.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.type_timestamp", "macro.dbt_utils.type_float", "macro.dbt_utils.type_string", "macro.dbt_utils.type_int"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.8737888}, "macro.marketo_source.get_activity_email_delivered_columns": {"unique_id": "macro.marketo_source.get_activity_email_delivered_columns", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "macros/get_activity_email_delivered_columns.sql", "original_file_path": "macros/get_activity_email_delivered_columns.sql", "name": "get_activity_email_delivered_columns", "macro_sql": "{% macro get_activity_email_delivered_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"activity_date\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"activity_type_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"campaign_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"campaign_run_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"choice_number\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"email_template_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"id\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"lead_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"primary_attribute_value\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"primary_attribute_value_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"step_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"test_variant\", \"datatype\": dbt_utils.type_int()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.type_timestamp", "macro.dbt_utils.type_int", "macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.8755279}, "macro.marketo_source.get_activity_click_email_columns": {"unique_id": "macro.marketo_source.get_activity_click_email_columns", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "macros/get_activity_click_email_columns.sql", "original_file_path": "macros/get_activity_click_email_columns.sql", "name": "get_activity_click_email_columns", "macro_sql": "{% macro get_activity_click_email_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"activity_date\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"activity_type_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"campaign_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"campaign_run_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"choice_number\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"device\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"email_template_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"id\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"is_mobile_device\", \"datatype\": \"boolean\"},\n {\"name\": \"lead_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"link\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"link_id\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"platform\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"primary_attribute_value\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"primary_attribute_value_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"step_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"test_variant\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"user_agent\", \"datatype\": dbt_utils.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.type_timestamp", "macro.dbt_utils.type_int", "macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.8776488}, "macro.marketo_source.get_activity_change_data_value_columns": {"unique_id": "macro.marketo_source.get_activity_change_data_value_columns", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "macros/get_activity_change_data_value_columns.sql", "original_file_path": "macros/get_activity_change_data_value_columns.sql", "name": "get_activity_change_data_value_columns", "macro_sql": "{% macro get_activity_change_data_value_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"activity_date\", \"datatype\": dbt_utils.type_timestamp()},\n {\"name\": \"activity_type_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"api_method_name\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"campaign_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"id\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"lead_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"modifying_user\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"new_value\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"old_value\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"primary_attribute_value\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"primary_attribute_value_id\", \"datatype\": dbt_utils.type_int()},\n {\"name\": \"reason\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"request_id\", \"datatype\": dbt_utils.type_string()},\n {\"name\": \"source\", \"datatype\": dbt_utils.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.type_timestamp", "macro.dbt_utils.type_int", "macro.dbt_utils.type_string"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1665431414.879359}}, "docs": {"dbt.__overview__": {"unique_id": "dbt.__overview__", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-bigquery/1.2.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "overview.md", "original_file_path": "docs/overview.md", "name": "__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": {}, "selectors": {}, "disabled": {"model.marketo_source.stg_marketo__campaigns": [{"raw_sql": "{{ config(enabled=var('marketo__enable_campaigns', False)) }}\n\nwith base as (\n\n select *\n from {{ ref('stg_marketo__campaign_tmp') }}\n\n), macro as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_marketo__campaign_tmp')),\n staging_columns=get_campaign_columns()\n )\n }}\n from base\n\n), fields as (\n\n select \n active as is_active,\n created_at as created_timestamp,\n description,\n id as campaign_id,\n name as campaign_name,\n program_id,\n program_name,\n type as campaign_type,\n updated_at as updated_timestamp,\n workspace_name\n from macro\n\n)\n\nselect *\nfrom fields", "resource_type": "model", "depends_on": {"macros": ["macro.marketo_source.get_campaign_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": []}, "config": {"enabled": false, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "materialized": "table", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_marketo_source", "fqn": ["marketo_source", "stg_marketo__campaigns"], "unique_id": "model.marketo_source.stg_marketo__campaigns", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "stg_marketo__campaigns.sql", "original_file_path": "models/stg_marketo__campaigns.sql", "name": "stg_marketo__campaigns", "alias": "stg_marketo__campaigns", "checksum": {"name": "sha256", "checksum": "ec1d669162692ed43b7ec5117db8d2a23690ea225fcd46eb307b23fe57dbab73"}, "tags": [], "refs": [["stg_marketo__campaign_tmp"], ["stg_marketo__campaign_tmp"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": "marketo_source://models/stg_marketo.yml", "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "marketo_source", "enabled": false}, "created_at": 1665431415.259496, "config_call_dict": {"enabled": false}}], "model.marketo_source.stg_marketo__program": [{"raw_sql": "{{ config(enabled=var('marketo__enable_campaigns', False) and var('marketo__enable_programs', False)) }}\n\nwith base as (\n\n select *\n from {{ ref('stg_marketo__program_tmp') }}\n\n), macro as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_marketo__program_tmp')),\n staging_columns=get_program_columns()\n )\n }}\n from base\n\n), fields as (\n\n select\n id as program_id,\n channel,\n created_at as created_timestamp,\n description,\n end_date as end_timestamp,\n name as program_name,\n sfdc_id,\n sfdc_name,\n start_date as start_timestamp,\n status as program_status,\n type as program_type,\n updated_at as updated_timestamp,\n url,\n workspace\n from macro\n \n)\n\nselect *\nfrom fields", "resource_type": "model", "depends_on": {"macros": ["macro.marketo_source.get_program_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": []}, "config": {"enabled": false, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "materialized": "table", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_marketo_source", "fqn": ["marketo_source", "stg_marketo__program"], "unique_id": "model.marketo_source.stg_marketo__program", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "stg_marketo__program.sql", "original_file_path": "models/stg_marketo__program.sql", "name": "stg_marketo__program", "alias": "stg_marketo__program", "checksum": {"name": "sha256", "checksum": "39c55b07b44f6034ae22ea0575cd0b18801364c8c83e03ac894ebc4801edc96a"}, "tags": [], "refs": [["stg_marketo__program_tmp"], ["stg_marketo__program_tmp"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": "marketo_source://models/stg_marketo.yml", "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "marketo_source", "enabled": false}, "created_at": 1665431415.373503, "config_call_dict": {"enabled": false}}], "model.marketo_source.stg_marketo__campaign_tmp": [{"raw_sql": "{{ config(enabled=var('marketo__enable_campaigns', False)) }}\n\nselect *\nfrom {{ var('campaign') }}", "resource_type": "model", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": false, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "materialized": "view", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_marketo_source", "fqn": ["marketo_source", "tmp", "stg_marketo__campaign_tmp"], "unique_id": "model.marketo_source.stg_marketo__campaign_tmp", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "tmp/stg_marketo__campaign_tmp.sql", "original_file_path": "models/tmp/stg_marketo__campaign_tmp.sql", "name": "stg_marketo__campaign_tmp", "alias": "stg_marketo__campaign_tmp", "checksum": {"name": "sha256", "checksum": "983ea60ee4eb37bde14ccba759bee2aeea0b6890a735ddc79f550cb24fc0e4bb"}, "tags": [], "refs": [], "sources": [["marketo", "campaign"]], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "marketo_source", "enabled": false}, "created_at": 1665431415.4041212, "config_call_dict": {"enabled": false}}], "model.marketo_source.stg_marketo__program_tmp": [{"raw_sql": "{{ config(enabled=var('marketo__enable_campaigns', False) and var('marketo__enable_programs', False)) }}\n\nselect *\nfrom {{ var('program') }}", "resource_type": "model", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": false, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "materialized": "view", "persist_docs": {}, "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "grants": {}, "post-hook": [], "pre-hook": []}, "database": "dbt-package-testing", "schema": "marketo_source_integration_tests_marketo_source", "fqn": ["marketo_source", "tmp", "stg_marketo__program_tmp"], "unique_id": "model.marketo_source.stg_marketo__program_tmp", "package_name": "marketo_source", "root_path": "/Users/catherinefritz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "tmp/stg_marketo__program_tmp.sql", "original_file_path": "models/tmp/stg_marketo__program_tmp.sql", "name": "stg_marketo__program_tmp", "alias": "stg_marketo__program_tmp", "checksum": {"name": "sha256", "checksum": "d7480fb774342c9e892179f75754e64376da0d3eca15626fcae597600c10c4bb"}, "tags": [], "refs": [], "sources": [["marketo", "program"]], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "marketo_source", "enabled": false}, "created_at": 1665431415.42617, "config_call_dict": {"enabled": false}}]}, "parent_map": {"seed.marketo_source_integration_tests.marketo_activity_send_email_data": [], "seed.marketo_source_integration_tests.marketo_activity_change_data_value_data": [], "seed.marketo_source_integration_tests.marketo_email_template_history_data": [], "seed.marketo_source_integration_tests.marketo_activity_email_delivered_data": [], "seed.marketo_source_integration_tests.marketo_lead_describe_data": [], "seed.marketo_source_integration_tests.marketo_activity_delete_lead_data": [], "seed.marketo_source_integration_tests.marketo_activity_unsubscribe_email_data": [], "seed.marketo_source_integration_tests.marketo_campaign_data": [], "seed.marketo_source_integration_tests.marketo_program_data": [], "seed.marketo_source_integration_tests.marketo_activity_merge_leads_data": [], "seed.marketo_source_integration_tests.marketo_activity_click_email_data": [], "seed.marketo_source_integration_tests.marketo_lead_data": [], "seed.marketo_source_integration_tests.marketo_activity_open_email_data": [], "seed.marketo_source_integration_tests.marketo_activity_email_bounced_data": [], "model.marketo_source.stg_marketo__activity_merge_leads": ["model.marketo_source.stg_marketo__activity_merge_leads_tmp", "model.marketo_source.stg_marketo__activity_merge_leads_tmp"], "model.marketo_source.stg_marketo__activity_open_email": ["model.marketo_source.stg_marketo__activity_open_email_tmp", "model.marketo_source.stg_marketo__activity_open_email_tmp"], "model.marketo_source.stg_marketo__activity_send_email": ["model.marketo_source.stg_marketo__activity_send_email_tmp", "model.marketo_source.stg_marketo__activity_send_email_tmp"], "model.marketo_source.stg_marketo__email_template_history": ["model.marketo_source.stg_marketo__email_template_history_tmp", "model.marketo_source.stg_marketo__email_template_history_tmp"], "model.marketo_source.stg_marketo__activity_email_bounced": ["model.marketo_source.stg_marketo__activity_email_bounced_tmp", "model.marketo_source.stg_marketo__activity_email_bounced_tmp"], "model.marketo_source.stg_marketo__activity_change_data_value": ["model.marketo_source.stg_marketo__activity_change_data_value_tmp", "model.marketo_source.stg_marketo__activity_change_data_value_tmp"], "model.marketo_source.stg_marketo__activity_delete_lead": ["model.marketo_source.stg_marketo__activity_delete_lead_tmp", "model.marketo_source.stg_marketo__activity_delete_lead_tmp"], "model.marketo_source.stg_marketo__lead": ["model.marketo_source.stg_marketo__lead_tmp", "model.marketo_source.stg_marketo__lead_tmp"], "model.marketo_source.stg_marketo__activity_email_delivered": ["model.marketo_source.stg_marketo__activity_email_delivered_tmp", "model.marketo_source.stg_marketo__activity_email_delivered_tmp"], "model.marketo_source.stg_marketo__activity_click_email": ["model.marketo_source.stg_marketo__activity_click_email_tmp", "model.marketo_source.stg_marketo__activity_click_email_tmp"], "model.marketo_source.stg_marketo__lead_describe": ["model.marketo_source.stg_marketo__lead_describe_tmp", "model.marketo_source.stg_marketo__lead_describe_tmp"], "model.marketo_source.stg_marketo__activity_unsubscribe_email": ["model.marketo_source.stg_marketo__activity_unsubscribe_email_tmp", "model.marketo_source.stg_marketo__activity_unsubscribe_email_tmp"], "model.marketo_source.stg_marketo__activity_email_delivered_tmp": ["source.marketo_source.marketo.activity_email_delivered"], "model.marketo_source.stg_marketo__activity_click_email_tmp": ["source.marketo_source.marketo.activity_click_email"], "model.marketo_source.stg_marketo__lead_describe_tmp": ["source.marketo_source.marketo.lead_describe"], "model.marketo_source.stg_marketo__activity_delete_lead_tmp": ["source.marketo_source.marketo.activity_delete_lead"], "model.marketo_source.stg_marketo__activity_change_data_value_tmp": ["source.marketo_source.marketo.activity_change_data_value"], "model.marketo_source.stg_marketo__activity_email_bounced_tmp": ["source.marketo_source.marketo.activity_email_bounced"], "model.marketo_source.stg_marketo__activity_open_email_tmp": ["source.marketo_source.marketo.activity_open_email"], "model.marketo_source.stg_marketo__activity_merge_leads_tmp": ["source.marketo_source.marketo.activity_merge_leads"], "model.marketo_source.stg_marketo__activity_send_email_tmp": ["source.marketo_source.marketo.activity_send_email"], "model.marketo_source.stg_marketo__email_template_history_tmp": ["source.marketo_source.marketo.email_template_history"], "model.marketo_source.stg_marketo__activity_unsubscribe_email_tmp": ["source.marketo_source.marketo.activity_unsubscribe_email"], "model.marketo_source.stg_marketo__lead_tmp": ["source.marketo_source.marketo.lead"], "test.marketo_source.unique_stg_marketo__activity_change_data_value_activity_id.7c7047bbcd": ["model.marketo_source.stg_marketo__activity_change_data_value"], "test.marketo_source.not_null_stg_marketo__activity_change_data_value_activity_id.8ae060d108": ["model.marketo_source.stg_marketo__activity_change_data_value"], "test.marketo_source.unique_stg_marketo__activity_click_email_activity_id.6c599791a0": ["model.marketo_source.stg_marketo__activity_click_email"], "test.marketo_source.not_null_stg_marketo__activity_click_email_activity_id.8e4b4af9fd": ["model.marketo_source.stg_marketo__activity_click_email"], "test.marketo_source.unique_stg_marketo__activity_email_bounced_activity_id.28833155c3": ["model.marketo_source.stg_marketo__activity_email_bounced"], "test.marketo_source.not_null_stg_marketo__activity_email_bounced_activity_id.578b8cddf2": ["model.marketo_source.stg_marketo__activity_email_bounced"], "test.marketo_source.unique_stg_marketo__activity_email_delivered_activity_id.6f715c1b87": ["model.marketo_source.stg_marketo__activity_email_delivered"], "test.marketo_source.not_null_stg_marketo__activity_email_delivered_activity_id.138e450885": ["model.marketo_source.stg_marketo__activity_email_delivered"], "test.marketo_source.unique_stg_marketo__activity_open_email_activity_id.d48e7e93e6": ["model.marketo_source.stg_marketo__activity_open_email"], "test.marketo_source.not_null_stg_marketo__activity_open_email_activity_id.72e7514396": ["model.marketo_source.stg_marketo__activity_open_email"], "test.marketo_source.unique_stg_marketo__activity_send_email_activity_id.bd25ee45d1": ["model.marketo_source.stg_marketo__activity_send_email"], "test.marketo_source.not_null_stg_marketo__activity_send_email_activity_id.4eaf534bc8": ["model.marketo_source.stg_marketo__activity_send_email"], "test.marketo_source.unique_stg_marketo__activity_unsubscribe_email_activity_id.a3bca07e06": ["model.marketo_source.stg_marketo__activity_unsubscribe_email"], "test.marketo_source.not_null_stg_marketo__activity_unsubscribe_email_activity_id.a31edf42c0": ["model.marketo_source.stg_marketo__activity_unsubscribe_email"], "test.marketo_source.unique_stg_marketo__campaigns_campaign_id.58c604f925": [], "test.marketo_source.not_null_stg_marketo__campaigns_campaign_id.9599619112": [], "test.marketo_source.unique_stg_marketo__email_template_history_email_template_history_id.7e3c0524e2": ["model.marketo_source.stg_marketo__email_template_history"], "test.marketo_source.not_null_stg_marketo__email_template_history_email_template_history_id.dcab273dfa": ["model.marketo_source.stg_marketo__email_template_history"], "test.marketo_source.unique_stg_marketo__lead_describe_lead_describe_id.4f0a7f9cc1": ["model.marketo_source.stg_marketo__lead_describe"], "test.marketo_source.not_null_stg_marketo__lead_describe_lead_describe_id.37612f6879": ["model.marketo_source.stg_marketo__lead_describe"], "test.marketo_source.unique_stg_marketo__lead_lead_id.1a4c20db9f": ["model.marketo_source.stg_marketo__lead"], "test.marketo_source.not_null_stg_marketo__lead_lead_id.a539cbf055": ["model.marketo_source.stg_marketo__lead"], "test.marketo_source.unique_stg_marketo__program_program_id.20616f7b2c": [], "test.marketo_source.not_null_stg_marketo__program_program_id.882bad918f": [], "source.marketo_source.marketo.lead": [], "source.marketo_source.marketo.lead_describe": [], "source.marketo_source.marketo.activity_change_data_value": [], "source.marketo_source.marketo.campaign": [], "source.marketo_source.marketo.program": [], "source.marketo_source.marketo.email_template_history": [], "source.marketo_source.marketo.activity_click_email": [], "source.marketo_source.marketo.activity_email_delivered": [], "source.marketo_source.marketo.activity_email_bounced": [], "source.marketo_source.marketo.activity_open_email": [], "source.marketo_source.marketo.activity_unsubscribe_email": [], "source.marketo_source.marketo.activity_send_email": [], "source.marketo_source.marketo.activity_delete_lead": [], "source.marketo_source.marketo.activity_merge_leads": []}, "child_map": {"seed.marketo_source_integration_tests.marketo_activity_send_email_data": [], "seed.marketo_source_integration_tests.marketo_activity_change_data_value_data": [], "seed.marketo_source_integration_tests.marketo_email_template_history_data": [], "seed.marketo_source_integration_tests.marketo_activity_email_delivered_data": [], "seed.marketo_source_integration_tests.marketo_lead_describe_data": [], "seed.marketo_source_integration_tests.marketo_activity_delete_lead_data": [], "seed.marketo_source_integration_tests.marketo_activity_unsubscribe_email_data": [], "seed.marketo_source_integration_tests.marketo_campaign_data": [], "seed.marketo_source_integration_tests.marketo_program_data": [], "seed.marketo_source_integration_tests.marketo_activity_merge_leads_data": [], "seed.marketo_source_integration_tests.marketo_activity_click_email_data": [], "seed.marketo_source_integration_tests.marketo_lead_data": [], "seed.marketo_source_integration_tests.marketo_activity_open_email_data": [], "seed.marketo_source_integration_tests.marketo_activity_email_bounced_data": [], "model.marketo_source.stg_marketo__activity_merge_leads": [], "model.marketo_source.stg_marketo__activity_open_email": ["test.marketo_source.not_null_stg_marketo__activity_open_email_activity_id.72e7514396", "test.marketo_source.unique_stg_marketo__activity_open_email_activity_id.d48e7e93e6"], "model.marketo_source.stg_marketo__activity_send_email": ["test.marketo_source.not_null_stg_marketo__activity_send_email_activity_id.4eaf534bc8", "test.marketo_source.unique_stg_marketo__activity_send_email_activity_id.bd25ee45d1"], "model.marketo_source.stg_marketo__email_template_history": ["test.marketo_source.not_null_stg_marketo__email_template_history_email_template_history_id.dcab273dfa", "test.marketo_source.unique_stg_marketo__email_template_history_email_template_history_id.7e3c0524e2"], "model.marketo_source.stg_marketo__activity_email_bounced": ["test.marketo_source.not_null_stg_marketo__activity_email_bounced_activity_id.578b8cddf2", "test.marketo_source.unique_stg_marketo__activity_email_bounced_activity_id.28833155c3"], "model.marketo_source.stg_marketo__activity_change_data_value": ["test.marketo_source.not_null_stg_marketo__activity_change_data_value_activity_id.8ae060d108", "test.marketo_source.unique_stg_marketo__activity_change_data_value_activity_id.7c7047bbcd"], "model.marketo_source.stg_marketo__activity_delete_lead": [], "model.marketo_source.stg_marketo__lead": ["test.marketo_source.not_null_stg_marketo__lead_lead_id.a539cbf055", "test.marketo_source.unique_stg_marketo__lead_lead_id.1a4c20db9f"], "model.marketo_source.stg_marketo__activity_email_delivered": ["test.marketo_source.not_null_stg_marketo__activity_email_delivered_activity_id.138e450885", "test.marketo_source.unique_stg_marketo__activity_email_delivered_activity_id.6f715c1b87"], "model.marketo_source.stg_marketo__activity_click_email": ["test.marketo_source.not_null_stg_marketo__activity_click_email_activity_id.8e4b4af9fd", "test.marketo_source.unique_stg_marketo__activity_click_email_activity_id.6c599791a0"], "model.marketo_source.stg_marketo__lead_describe": ["test.marketo_source.not_null_stg_marketo__lead_describe_lead_describe_id.37612f6879", "test.marketo_source.unique_stg_marketo__lead_describe_lead_describe_id.4f0a7f9cc1"], "model.marketo_source.stg_marketo__activity_unsubscribe_email": ["test.marketo_source.not_null_stg_marketo__activity_unsubscribe_email_activity_id.a31edf42c0", "test.marketo_source.unique_stg_marketo__activity_unsubscribe_email_activity_id.a3bca07e06"], "model.marketo_source.stg_marketo__activity_email_delivered_tmp": ["model.marketo_source.stg_marketo__activity_email_delivered", "model.marketo_source.stg_marketo__activity_email_delivered"], "model.marketo_source.stg_marketo__activity_click_email_tmp": ["model.marketo_source.stg_marketo__activity_click_email", "model.marketo_source.stg_marketo__activity_click_email"], "model.marketo_source.stg_marketo__lead_describe_tmp": ["model.marketo_source.stg_marketo__lead_describe", "model.marketo_source.stg_marketo__lead_describe"], "model.marketo_source.stg_marketo__activity_delete_lead_tmp": ["model.marketo_source.stg_marketo__activity_delete_lead", "model.marketo_source.stg_marketo__activity_delete_lead"], "model.marketo_source.stg_marketo__activity_change_data_value_tmp": ["model.marketo_source.stg_marketo__activity_change_data_value", "model.marketo_source.stg_marketo__activity_change_data_value"], "model.marketo_source.stg_marketo__activity_email_bounced_tmp": ["model.marketo_source.stg_marketo__activity_email_bounced", "model.marketo_source.stg_marketo__activity_email_bounced"], "model.marketo_source.stg_marketo__activity_open_email_tmp": ["model.marketo_source.stg_marketo__activity_open_email", "model.marketo_source.stg_marketo__activity_open_email"], "model.marketo_source.stg_marketo__activity_merge_leads_tmp": ["model.marketo_source.stg_marketo__activity_merge_leads", "model.marketo_source.stg_marketo__activity_merge_leads"], "model.marketo_source.stg_marketo__activity_send_email_tmp": ["model.marketo_source.stg_marketo__activity_send_email", "model.marketo_source.stg_marketo__activity_send_email"], "model.marketo_source.stg_marketo__email_template_history_tmp": ["model.marketo_source.stg_marketo__email_template_history", "model.marketo_source.stg_marketo__email_template_history"], "model.marketo_source.stg_marketo__activity_unsubscribe_email_tmp": ["model.marketo_source.stg_marketo__activity_unsubscribe_email", "model.marketo_source.stg_marketo__activity_unsubscribe_email"], "model.marketo_source.stg_marketo__lead_tmp": ["model.marketo_source.stg_marketo__lead", "model.marketo_source.stg_marketo__lead"], "test.marketo_source.unique_stg_marketo__activity_change_data_value_activity_id.7c7047bbcd": [], "test.marketo_source.not_null_stg_marketo__activity_change_data_value_activity_id.8ae060d108": [], "test.marketo_source.unique_stg_marketo__activity_click_email_activity_id.6c599791a0": [], "test.marketo_source.not_null_stg_marketo__activity_click_email_activity_id.8e4b4af9fd": [], "test.marketo_source.unique_stg_marketo__activity_email_bounced_activity_id.28833155c3": [], "test.marketo_source.not_null_stg_marketo__activity_email_bounced_activity_id.578b8cddf2": [], "test.marketo_source.unique_stg_marketo__activity_email_delivered_activity_id.6f715c1b87": [], "test.marketo_source.not_null_stg_marketo__activity_email_delivered_activity_id.138e450885": [], "test.marketo_source.unique_stg_marketo__activity_open_email_activity_id.d48e7e93e6": [], "test.marketo_source.not_null_stg_marketo__activity_open_email_activity_id.72e7514396": [], "test.marketo_source.unique_stg_marketo__activity_send_email_activity_id.bd25ee45d1": [], "test.marketo_source.not_null_stg_marketo__activity_send_email_activity_id.4eaf534bc8": [], "test.marketo_source.unique_stg_marketo__activity_unsubscribe_email_activity_id.a3bca07e06": [], "test.marketo_source.not_null_stg_marketo__activity_unsubscribe_email_activity_id.a31edf42c0": [], "test.marketo_source.unique_stg_marketo__campaigns_campaign_id.58c604f925": [], "test.marketo_source.not_null_stg_marketo__campaigns_campaign_id.9599619112": [], "test.marketo_source.unique_stg_marketo__email_template_history_email_template_history_id.7e3c0524e2": [], "test.marketo_source.not_null_stg_marketo__email_template_history_email_template_history_id.dcab273dfa": [], "test.marketo_source.unique_stg_marketo__lead_describe_lead_describe_id.4f0a7f9cc1": [], "test.marketo_source.not_null_stg_marketo__lead_describe_lead_describe_id.37612f6879": [], "test.marketo_source.unique_stg_marketo__lead_lead_id.1a4c20db9f": [], "test.marketo_source.not_null_stg_marketo__lead_lead_id.a539cbf055": [], "test.marketo_source.unique_stg_marketo__program_program_id.20616f7b2c": [], "test.marketo_source.not_null_stg_marketo__program_program_id.882bad918f": [], "source.marketo_source.marketo.lead": ["model.marketo_source.stg_marketo__lead_tmp"], "source.marketo_source.marketo.lead_describe": ["model.marketo_source.stg_marketo__lead_describe_tmp"], "source.marketo_source.marketo.activity_change_data_value": ["model.marketo_source.stg_marketo__activity_change_data_value_tmp"], "source.marketo_source.marketo.campaign": [], "source.marketo_source.marketo.program": [], "source.marketo_source.marketo.email_template_history": ["model.marketo_source.stg_marketo__email_template_history_tmp"], "source.marketo_source.marketo.activity_click_email": ["model.marketo_source.stg_marketo__activity_click_email_tmp"], "source.marketo_source.marketo.activity_email_delivered": ["model.marketo_source.stg_marketo__activity_email_delivered_tmp"], "source.marketo_source.marketo.activity_email_bounced": ["model.marketo_source.stg_marketo__activity_email_bounced_tmp"], "source.marketo_source.marketo.activity_open_email": ["model.marketo_source.stg_marketo__activity_open_email_tmp"], "source.marketo_source.marketo.activity_unsubscribe_email": ["model.marketo_source.stg_marketo__activity_unsubscribe_email_tmp"], "source.marketo_source.marketo.activity_send_email": ["model.marketo_source.stg_marketo__activity_send_email_tmp"], "source.marketo_source.marketo.activity_delete_lead": ["model.marketo_source.stg_marketo__activity_delete_lead_tmp"], "source.marketo_source.marketo.activity_merge_leads": ["model.marketo_source.stg_marketo__activity_merge_leads_tmp"]}} \ No newline at end of file +{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/manifest/v7.json", "dbt_version": "1.3.0", "generated_at": "2022-12-16T16:51:15.040275Z", "invocation_id": "bd047963-2765-4b7c-8326-eefcf562f4a1", "env": {}, "project_id": "a72643f3c0e6cd4df80476b9de14c1e4", "user_id": "8929baf0-9bc1-477e-9a57-eb8b0db4da62", "send_anonymous_usage_stats": true, "adapter_type": "postgres"}, "nodes": {"seed.marketo_source_integration_tests.marketo_activity_send_email_data": {"compiled": true, "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "materialized": "seed", "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}, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7", "fqn": ["marketo_source_integration_tests", "marketo_activity_send_email_data"], "unique_id": "seed.marketo_source_integration_tests.marketo_activity_send_email_data", "raw_code": "", "language": "sql", "package_name": "marketo_source_integration_tests", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests", "path": "marketo_activity_send_email_data.csv", "original_file_path": "seeds/marketo_activity_send_email_data.csv", "name": "marketo_activity_send_email_data", "alias": "marketo_activity_send_email_data", "checksum": {"name": "sha256", "checksum": "fb2bad0f381304d118073d9983f45eb46e5febee8dca957914a648b4ddff637e"}, "tags": [], "refs": [], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.344312, "compiled_code": "", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7\".\"marketo_activity_send_email_data\""}, "seed.marketo_source_integration_tests.marketo_activity_change_data_value_data": {"compiled": true, "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "materialized": "seed", "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}, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7", "fqn": ["marketo_source_integration_tests", "marketo_activity_change_data_value_data"], "unique_id": "seed.marketo_source_integration_tests.marketo_activity_change_data_value_data", "raw_code": "", "language": "sql", "package_name": "marketo_source_integration_tests", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests", "path": "marketo_activity_change_data_value_data.csv", "original_file_path": "seeds/marketo_activity_change_data_value_data.csv", "name": "marketo_activity_change_data_value_data", "alias": "marketo_activity_change_data_value_data", "checksum": {"name": "sha256", "checksum": "50150cbdd92fde6155258db2e872f0ada8aa08c9d1d86b944e4895f9f4b457af"}, "tags": [], "refs": [], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.3507562, "compiled_code": "", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7\".\"marketo_activity_change_data_value_data\""}, "seed.marketo_source_integration_tests.marketo_email_template_history_data": {"compiled": true, "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "materialized": "seed", "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}, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7", "fqn": ["marketo_source_integration_tests", "marketo_email_template_history_data"], "unique_id": "seed.marketo_source_integration_tests.marketo_email_template_history_data", "raw_code": "", "language": "sql", "package_name": "marketo_source_integration_tests", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests", "path": "marketo_email_template_history_data.csv", "original_file_path": "seeds/marketo_email_template_history_data.csv", "name": "marketo_email_template_history_data", "alias": "marketo_email_template_history_data", "checksum": {"name": "sha256", "checksum": "88720f1d192884ba6a37ef4b5d7c6d71854d4317881e3c05527c647f3110819c"}, "tags": [], "refs": [], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.351917, "compiled_code": "", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7\".\"marketo_email_template_history_data\""}, "seed.marketo_source_integration_tests.marketo_activity_email_delivered_data": {"compiled": true, "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "materialized": "seed", "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}, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7", "fqn": ["marketo_source_integration_tests", "marketo_activity_email_delivered_data"], "unique_id": "seed.marketo_source_integration_tests.marketo_activity_email_delivered_data", "raw_code": "", "language": "sql", "package_name": "marketo_source_integration_tests", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests", "path": "marketo_activity_email_delivered_data.csv", "original_file_path": "seeds/marketo_activity_email_delivered_data.csv", "name": "marketo_activity_email_delivered_data", "alias": "marketo_activity_email_delivered_data", "checksum": {"name": "sha256", "checksum": "b2243d0565a9b1d4f98aaf79cf1ee52b48f8f2015eea1e748d126925bf15cad6"}, "tags": [], "refs": [], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.353146, "compiled_code": "", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7\".\"marketo_activity_email_delivered_data\""}, "seed.marketo_source_integration_tests.marketo_lead_describe_data": {"compiled": true, "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "materialized": "seed", "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}, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7", "fqn": ["marketo_source_integration_tests", "marketo_lead_describe_data"], "unique_id": "seed.marketo_source_integration_tests.marketo_lead_describe_data", "raw_code": "", "language": "sql", "package_name": "marketo_source_integration_tests", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests", "path": "marketo_lead_describe_data.csv", "original_file_path": "seeds/marketo_lead_describe_data.csv", "name": "marketo_lead_describe_data", "alias": "marketo_lead_describe_data", "checksum": {"name": "sha256", "checksum": "82b41788229917c7b5e11620f8093c5664ac80b42f055810c66c2c30a22dad65"}, "tags": [], "refs": [], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.354275, "compiled_code": "", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7\".\"marketo_lead_describe_data\""}, "seed.marketo_source_integration_tests.marketo_activity_delete_lead_data": {"compiled": true, "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "materialized": "seed", "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}, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7", "fqn": ["marketo_source_integration_tests", "marketo_activity_delete_lead_data"], "unique_id": "seed.marketo_source_integration_tests.marketo_activity_delete_lead_data", "raw_code": "", "language": "sql", "package_name": "marketo_source_integration_tests", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests", "path": "marketo_activity_delete_lead_data.csv", "original_file_path": "seeds/marketo_activity_delete_lead_data.csv", "name": "marketo_activity_delete_lead_data", "alias": "marketo_activity_delete_lead_data", "checksum": {"name": "sha256", "checksum": "4798018fe3ad445e062842e31f2ab12d165e11784128c0374a24622af39d9851"}, "tags": [], "refs": [], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.355372, "compiled_code": "", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7\".\"marketo_activity_delete_lead_data\""}, "seed.marketo_source_integration_tests.marketo_activity_unsubscribe_email_data": {"compiled": true, "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "materialized": "seed", "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}, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7", "fqn": ["marketo_source_integration_tests", "marketo_activity_unsubscribe_email_data"], "unique_id": "seed.marketo_source_integration_tests.marketo_activity_unsubscribe_email_data", "raw_code": "", "language": "sql", "package_name": "marketo_source_integration_tests", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests", "path": "marketo_activity_unsubscribe_email_data.csv", "original_file_path": "seeds/marketo_activity_unsubscribe_email_data.csv", "name": "marketo_activity_unsubscribe_email_data", "alias": "marketo_activity_unsubscribe_email_data", "checksum": {"name": "sha256", "checksum": "9e875888fdd08766cdd8ed980dc75c0fe6d0875af6bd9e32e31df4e1e2e6a1f8"}, "tags": [], "refs": [], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.356454, "compiled_code": "", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7\".\"marketo_activity_unsubscribe_email_data\""}, "seed.marketo_source_integration_tests.marketo_campaign_data": {"compiled": true, "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "materialized": "seed", "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}, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7", "fqn": ["marketo_source_integration_tests", "marketo_campaign_data"], "unique_id": "seed.marketo_source_integration_tests.marketo_campaign_data", "raw_code": "", "language": "sql", "package_name": "marketo_source_integration_tests", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests", "path": "marketo_campaign_data.csv", "original_file_path": "seeds/marketo_campaign_data.csv", "name": "marketo_campaign_data", "alias": "marketo_campaign_data", "checksum": {"name": "sha256", "checksum": "5658a56e719d30db12752655bb7de072d3b49ccf3a1a44003e70cd3066014f62"}, "tags": [], "refs": [], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.3576589, "compiled_code": "", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7\".\"marketo_campaign_data\""}, "seed.marketo_source_integration_tests.marketo_program_data": {"compiled": true, "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "materialized": "seed", "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}, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7", "fqn": ["marketo_source_integration_tests", "marketo_program_data"], "unique_id": "seed.marketo_source_integration_tests.marketo_program_data", "raw_code": "", "language": "sql", "package_name": "marketo_source_integration_tests", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests", "path": "marketo_program_data.csv", "original_file_path": "seeds/marketo_program_data.csv", "name": "marketo_program_data", "alias": "marketo_program_data", "checksum": {"name": "sha256", "checksum": "e6adfa2ace0559e917e95b1c141c03ee81b8a2805d28ee73e87ebde8a77770ad"}, "tags": [], "refs": [], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.358859, "compiled_code": "", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7\".\"marketo_program_data\""}, "seed.marketo_source_integration_tests.marketo_activity_merge_leads_data": {"compiled": true, "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "materialized": "seed", "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}, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7", "fqn": ["marketo_source_integration_tests", "marketo_activity_merge_leads_data"], "unique_id": "seed.marketo_source_integration_tests.marketo_activity_merge_leads_data", "raw_code": "", "language": "sql", "package_name": "marketo_source_integration_tests", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests", "path": "marketo_activity_merge_leads_data.csv", "original_file_path": "seeds/marketo_activity_merge_leads_data.csv", "name": "marketo_activity_merge_leads_data", "alias": "marketo_activity_merge_leads_data", "checksum": {"name": "sha256", "checksum": "24ad90300354e3399ee9da754c62c3d76e3d36f3d57be16c71e7734545a104a8"}, "tags": [], "refs": [], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.3600771, "compiled_code": "", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7\".\"marketo_activity_merge_leads_data\""}, "seed.marketo_source_integration_tests.marketo_activity_click_email_data": {"compiled": true, "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "materialized": "seed", "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}, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7", "fqn": ["marketo_source_integration_tests", "marketo_activity_click_email_data"], "unique_id": "seed.marketo_source_integration_tests.marketo_activity_click_email_data", "raw_code": "", "language": "sql", "package_name": "marketo_source_integration_tests", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests", "path": "marketo_activity_click_email_data.csv", "original_file_path": "seeds/marketo_activity_click_email_data.csv", "name": "marketo_activity_click_email_data", "alias": "marketo_activity_click_email_data", "checksum": {"name": "sha256", "checksum": "97c60db60ffb7cef6797417f9eeeed5c72e0f8e8a0001972911b2b74884591c5"}, "tags": [], "refs": [], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.361171, "compiled_code": "", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7\".\"marketo_activity_click_email_data\""}, "seed.marketo_source_integration_tests.marketo_lead_data": {"compiled": true, "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "materialized": "seed", "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}, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7", "fqn": ["marketo_source_integration_tests", "marketo_lead_data"], "unique_id": "seed.marketo_source_integration_tests.marketo_lead_data", "raw_code": "", "language": "sql", "package_name": "marketo_source_integration_tests", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests", "path": "marketo_lead_data.csv", "original_file_path": "seeds/marketo_lead_data.csv", "name": "marketo_lead_data", "alias": "marketo_lead_data", "checksum": {"name": "sha256", "checksum": "693ebc6df5a1c688a340d5f56081447db85fe55b0c34b1034d8be23a40b3b2ff"}, "tags": [], "refs": [], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.3623948, "compiled_code": "", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7\".\"marketo_lead_data\""}, "seed.marketo_source_integration_tests.marketo_activity_open_email_data": {"compiled": true, "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "materialized": "seed", "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}, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7", "fqn": ["marketo_source_integration_tests", "marketo_activity_open_email_data"], "unique_id": "seed.marketo_source_integration_tests.marketo_activity_open_email_data", "raw_code": "", "language": "sql", "package_name": "marketo_source_integration_tests", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests", "path": "marketo_activity_open_email_data.csv", "original_file_path": "seeds/marketo_activity_open_email_data.csv", "name": "marketo_activity_open_email_data", "alias": "marketo_activity_open_email_data", "checksum": {"name": "sha256", "checksum": "c2e6f02fb886b1acf308d01f7ac0c8123d6bf83ed235e93cf776d0b03bf48194"}, "tags": [], "refs": [], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.363455, "compiled_code": "", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7\".\"marketo_activity_open_email_data\""}, "seed.marketo_source_integration_tests.marketo_activity_email_bounced_data": {"compiled": true, "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "materialized": "seed", "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}, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7", "fqn": ["marketo_source_integration_tests", "marketo_activity_email_bounced_data"], "unique_id": "seed.marketo_source_integration_tests.marketo_activity_email_bounced_data", "raw_code": "", "language": "sql", "package_name": "marketo_source_integration_tests", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests", "path": "marketo_activity_email_bounced_data.csv", "original_file_path": "seeds/marketo_activity_email_bounced_data.csv", "name": "marketo_activity_email_bounced_data", "alias": "marketo_activity_email_bounced_data", "checksum": {"name": "sha256", "checksum": "84ad6102d1351832188e16498b2b5253479cbe9e5fd9d77ccb9f97b210af8f67"}, "tags": [], "refs": [], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.364525, "compiled_code": "", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7\".\"marketo_activity_email_bounced_data\""}, "model.marketo_source.stg_marketo__activity_merge_leads": {"compiled": true, "resource_type": "model", "depends_on": {"macros": ["macro.marketo_source.get_activity_merge_leads_columns", "macro.fivetran_utils.fill_staging_columns", "macro.dbt.type_timestamp", "macro.dbt.type_int", "macro.dbt.type_string"], "nodes": ["model.marketo_source.stg_marketo__activity_merge_leads_tmp", "model.marketo_source.stg_marketo__activity_merge_leads_tmp"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "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}, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7_marketo_source", "fqn": ["marketo_source", "stg_marketo__activity_merge_leads"], "unique_id": "model.marketo_source.stg_marketo__activity_merge_leads", "raw_code": "with base as (\n\n select *\n from {{ ref('stg_marketo__activity_merge_leads_tmp') }}\n\n), macro as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_marketo__activity_merge_leads_tmp')),\n staging_columns=get_activity_merge_leads_columns()\n )\n }}\n from base\n\n), fields as (\n\n select\n id as activity_id,\n _fivetran_synced,\n cast(activity_date as {{ dbt.type_timestamp() }}) as activity_timestamp,\n activity_type_id,\n campaign_id,\n cast(lead_id as {{ dbt.type_int() }}) as lead_id,\n master_updated,\n cast(replace(trim(trim(merge_ids,']'),'['), ',', ', ') as {{ dbt.type_string() }}) as merged_lead_id,\n merge_source,\n merged_in_sales,\n primary_attribute_value,\n primary_attribute_value_id\n from macro\n\n)\n\nselect *\nfrom fields", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "stg_marketo__activity_merge_leads.sql", "original_file_path": "models/stg_marketo__activity_merge_leads.sql", "name": "stg_marketo__activity_merge_leads", "alias": "stg_marketo__activity_merge_leads", "checksum": {"name": "sha256", "checksum": "e4f0c113dd370198f89d468b76ee08e886c776976a9dcf61a3e0ea522b356461"}, "tags": [], "refs": [["stg_marketo__activity_merge_leads_tmp"], ["stg_marketo__activity_merge_leads_tmp"]], "sources": [], "metrics": [], "description": "Table with merged lead activities", "columns": {"activity_timestamp": {"name": "activity_timestamp", "description": "The timestamp the lead was deleted.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "The ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the campaign related to the activity, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_id": {"name": "activity_id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "merged_lead_id": {"name": "merged_lead_id", "description": "ID of the lead that the lead was merged into.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "master_updated": {"name": "master_updated", "description": "Boolean if master was updated.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "merge_source": {"name": "merge_source", "description": "Source of the merge.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "merged_in_sales": {"name": "merged_in_sales", "description": "Boolean if merged in sales.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "marketo_source://models/stg_marketo.yml", "compiled_path": "target/compiled/marketo_source/models/stg_marketo__activity_merge_leads.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "marketo_source"}, "created_at": 1671209461.7068968, "compiled_code": "with base as (\n\n select *\n from \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_merge_leads_tmp\"\n\n), macro as (\n\n select\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n activity_date\n \n as \n \n activity_date\n \n, \n \n \n activity_type_id\n \n as \n \n activity_type_id\n \n, \n \n \n campaign_id\n \n as \n \n campaign_id\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n lead_id\n \n as \n \n lead_id\n \n, \n \n \n master_updated\n \n as \n \n master_updated\n \n, \n \n \n merge_ids\n \n as \n \n merge_ids\n \n, \n \n \n merge_source\n \n as \n \n merge_source\n \n, \n \n \n merged_in_sales\n \n as \n \n merged_in_sales\n \n, \n \n \n primary_attribute_value\n \n as \n \n primary_attribute_value\n \n, \n \n \n primary_attribute_value_id\n \n as \n \n primary_attribute_value_id\n \n\n\n\n from base\n\n), fields as (\n\n select\n id as activity_id,\n _fivetran_synced,\n cast(activity_date as TIMESTAMP) as activity_timestamp,\n activity_type_id,\n campaign_id,\n cast(lead_id as INT) as lead_id,\n master_updated,\n cast(replace(trim(trim(merge_ids,']'),'['), ',', ', ') as TEXT) as merged_lead_id,\n merge_source,\n merged_in_sales,\n primary_attribute_value,\n primary_attribute_value_id\n from macro\n\n)\n\nselect *\nfrom fields", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_merge_leads\""}, "model.marketo_source.stg_marketo__activity_open_email": {"compiled": true, "resource_type": "model", "depends_on": {"macros": ["macro.marketo_source.get_activity_open_email_columns", "macro.fivetran_utils.fill_staging_columns", "macro.dbt.type_timestamp", "macro.dbt_utils.generate_surrogate_key"], "nodes": ["model.marketo_source.stg_marketo__activity_open_email_tmp", "model.marketo_source.stg_marketo__activity_open_email_tmp"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "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}, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7_marketo_source", "fqn": ["marketo_source", "stg_marketo__activity_open_email"], "unique_id": "model.marketo_source.stg_marketo__activity_open_email", "raw_code": "with base as (\n\n select *\n from {{ ref('stg_marketo__activity_open_email_tmp') }}\n\n), macro as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_marketo__activity_open_email_tmp')),\n staging_columns=get_activity_open_email_columns()\n )\n }}\n from base\n\n), fields as (\n\n select \n cast(activity_date as {{ dbt.type_timestamp() }}) as activity_timestamp,\n activity_type_id,\n campaign_id,\n campaign_run_id,\n choice_number,\n device,\n email_template_id,\n id as activity_id,\n is_mobile_device,\n lead_id,\n platform,\n primary_attribute_value,\n primary_attribute_value_id,\n step_id,\n user_agent\n from macro\n\n), surrogate as (\n\n select \n *,\n {{ dbt_utils.generate_surrogate_key(['primary_attribute_value_id','campaign_id','campaign_run_id','lead_id']) }} as email_send_id\n from fields\n\n)\n\nselect *\nfrom surrogate", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "stg_marketo__activity_open_email.sql", "original_file_path": "models/stg_marketo__activity_open_email.sql", "name": "stg_marketo__activity_open_email", "alias": "stg_marketo__activity_open_email", "checksum": {"name": "sha256", "checksum": "9e3140749391c7f161909cb8df6f7f1c66c0e7ddf6d9e572f4f205aa6cb6e87f"}, "tags": [], "refs": [["stg_marketo__activity_open_email_tmp"], ["stg_marketo__activity_open_email_tmp"]], "sources": [], "metrics": [], "description": "", "columns": {"activity_id": {"name": "activity_id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_timestamp": {"name": "activity_timestamp", "description": "The timestamp the email was opened.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "The ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the email's campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_run_id": {"name": "campaign_run_id", "description": "The ID of the email's campaign run.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "choice_number": {"name": "choice_number", "description": "The choice number of the current step that triggered the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "device": {"name": "device", "description": "The device that was used to open the email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_send_id": {"name": "email_send_id", "description": "The inferred ID for the email sent. This is created by concatenating primary_attribute_value_id, campaign_id, campaign_run_id, and lead_id.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_id": {"name": "email_template_id", "description": "The ID of the email's template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "is_mobile_device": {"name": "is_mobile_device", "description": "Identifies whether a mobile device was used to open the email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "platform": {"name": "platform", "description": "The platform that was used to open the email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "step_id": {"name": "step_id", "description": "The Id of the current step in the flow.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "user_agent": {"name": "user_agent", "description": "The web browser user agent information obtained when the email was opened.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "marketo_source://models/stg_marketo.yml", "compiled_path": "target/compiled/marketo_source/models/stg_marketo__activity_open_email.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "marketo_source"}, "created_at": 1671209461.687706, "compiled_code": "with base as (\n\n select *\n from \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_open_email_tmp\"\n\n), macro as (\n\n select\n \n cast(null as TIMESTAMP) as \n \n _fivetran_synced\n \n , \n \n \n activity_date\n \n as \n \n activity_date\n \n, \n \n \n activity_type_id\n \n as \n \n activity_type_id\n \n, \n \n \n campaign_id\n \n as \n \n campaign_id\n \n, \n \n \n campaign_run_id\n \n as \n \n campaign_run_id\n \n, \n \n \n choice_number\n \n as \n \n choice_number\n \n, \n \n \n device\n \n as \n \n device\n \n, \n \n \n email_template_id\n \n as \n \n email_template_id\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n is_mobile_device\n \n as \n \n is_mobile_device\n \n, \n \n \n lead_id\n \n as \n \n lead_id\n \n, \n \n \n platform\n \n as \n \n platform\n \n, \n \n \n primary_attribute_value\n \n as \n \n primary_attribute_value\n \n, \n \n \n primary_attribute_value_id\n \n as \n \n primary_attribute_value_id\n \n, \n \n \n step_id\n \n as \n \n step_id\n \n, \n cast(null as INT) as \n \n test_variant\n \n , \n \n \n user_agent\n \n as \n \n user_agent\n \n\n\n\n from base\n\n), fields as (\n\n select \n cast(activity_date as TIMESTAMP) as activity_timestamp,\n activity_type_id,\n campaign_id,\n campaign_run_id,\n choice_number,\n device,\n email_template_id,\n id as activity_id,\n is_mobile_device,\n lead_id,\n platform,\n primary_attribute_value,\n primary_attribute_value_id,\n step_id,\n user_agent\n from macro\n\n), surrogate as (\n\n select \n *,\n \n \nmd5(cast(coalesce(cast(primary_attribute_value_id as TEXT), '_dbt_utils_surrogate_key_null_') || '-' || coalesce(cast(campaign_id as TEXT), '_dbt_utils_surrogate_key_null_') || '-' || coalesce(cast(campaign_run_id as TEXT), '_dbt_utils_surrogate_key_null_') || '-' || coalesce(cast(lead_id as TEXT), '_dbt_utils_surrogate_key_null_') as TEXT)) as email_send_id\n from fields\n\n)\n\nselect *\nfrom surrogate", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_open_email\""}, "model.marketo_source.stg_marketo__activity_send_email": {"compiled": true, "resource_type": "model", "depends_on": {"macros": ["macro.marketo_source.get_activity_send_email_columns", "macro.fivetran_utils.fill_staging_columns", "macro.dbt.type_timestamp", "macro.dbt_utils.generate_surrogate_key"], "nodes": ["model.marketo_source.stg_marketo__activity_send_email_tmp", "model.marketo_source.stg_marketo__activity_send_email_tmp"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "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}, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7_marketo_source", "fqn": ["marketo_source", "stg_marketo__activity_send_email"], "unique_id": "model.marketo_source.stg_marketo__activity_send_email", "raw_code": "with base as (\n\n select *\n from {{ ref('stg_marketo__activity_send_email_tmp') }}\n\n), macro as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_marketo__activity_send_email_tmp')),\n staging_columns=get_activity_send_email_columns()\n )\n }}\n from base\n\n), fields as (\n\n select \n cast(activity_date as {{ dbt.type_timestamp() }}) as activity_timestamp,\n activity_type_id,\n campaign_id,\n campaign_run_id,\n choice_number,\n email_template_id,\n id as activity_id,\n lead_id,\n primary_attribute_value,\n primary_attribute_value_id,\n step_id\n from macro\n\n), surrogate as (\n\n select \n *,\n {{ dbt_utils.generate_surrogate_key(['primary_attribute_value_id','campaign_id','campaign_run_id','lead_id']) }} as email_send_id\n from fields\n\n)\n\nselect *\nfrom surrogate", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "stg_marketo__activity_send_email.sql", "original_file_path": "models/stg_marketo__activity_send_email.sql", "name": "stg_marketo__activity_send_email", "alias": "stg_marketo__activity_send_email", "checksum": {"name": "sha256", "checksum": "0ddf865f570fb25373ae62c0057e052ca34a609d24c78ef0202b4c1fea3d6530"}, "tags": [], "refs": [["stg_marketo__activity_send_email_tmp"], ["stg_marketo__activity_send_email_tmp"]], "sources": [], "metrics": [], "description": "", "columns": {"activity_id": {"name": "activity_id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_timestamp": {"name": "activity_timestamp", "description": "The timestamp the email was sent.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "The ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the email's campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_run_id": {"name": "campaign_run_id", "description": "The ID of the email's campaign run.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "choice_number": {"name": "choice_number", "description": "The choice number of the current step that triggered the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_send_id": {"name": "email_send_id", "description": "The inferred ID for the email sent. This is created by concatenating primary_attribute_value_id, campaign_id, campaign_run_id, and lead_id.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_id": {"name": "email_template_id", "description": "The ID of the email's template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "step_id": {"name": "step_id", "description": "The Id of the current step in the flow.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "marketo_source://models/stg_marketo.yml", "compiled_path": "target/compiled/marketo_source/models/stg_marketo__activity_send_email.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "marketo_source"}, "created_at": 1671209461.689698, "compiled_code": "with base as (\n\n select *\n from \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_send_email_tmp\"\n\n), macro as (\n\n select\n \n cast(null as TIMESTAMP) as \n \n _fivetran_synced\n \n , \n \n \n activity_date\n \n as \n \n activity_date\n \n, \n \n \n activity_type_id\n \n as \n \n activity_type_id\n \n, \n \n \n campaign_id\n \n as \n \n campaign_id\n \n, \n \n \n campaign_run_id\n \n as \n \n campaign_run_id\n \n, \n \n \n choice_number\n \n as \n \n choice_number\n \n, \n \n \n email_template_id\n \n as \n \n email_template_id\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n lead_id\n \n as \n \n lead_id\n \n, \n \n \n primary_attribute_value\n \n as \n \n primary_attribute_value\n \n, \n \n \n primary_attribute_value_id\n \n as \n \n primary_attribute_value_id\n \n, \n \n \n step_id\n \n as \n \n step_id\n \n, \n cast(null as INT) as \n \n test_variant\n \n \n\n\n from base\n\n), fields as (\n\n select \n cast(activity_date as TIMESTAMP) as activity_timestamp,\n activity_type_id,\n campaign_id,\n campaign_run_id,\n choice_number,\n email_template_id,\n id as activity_id,\n lead_id,\n primary_attribute_value,\n primary_attribute_value_id,\n step_id\n from macro\n\n), surrogate as (\n\n select \n *,\n \n \nmd5(cast(coalesce(cast(primary_attribute_value_id as TEXT), '_dbt_utils_surrogate_key_null_') || '-' || coalesce(cast(campaign_id as TEXT), '_dbt_utils_surrogate_key_null_') || '-' || coalesce(cast(campaign_run_id as TEXT), '_dbt_utils_surrogate_key_null_') || '-' || coalesce(cast(lead_id as TEXT), '_dbt_utils_surrogate_key_null_') as TEXT)) as email_send_id\n from fields\n\n)\n\nselect *\nfrom surrogate", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_send_email\""}, "model.marketo_source.stg_marketo__email_template_history": {"compiled": true, "resource_type": "model", "depends_on": {"macros": ["macro.marketo_source.get_email_template_history_columns", "macro.fivetran_utils.fill_staging_columns", "macro.dbt_utils.generate_surrogate_key"], "nodes": ["model.marketo_source.stg_marketo__email_template_history_tmp", "model.marketo_source.stg_marketo__email_template_history_tmp"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "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}, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7_marketo_source", "fqn": ["marketo_source", "stg_marketo__email_template_history"], "unique_id": "model.marketo_source.stg_marketo__email_template_history", "raw_code": "with base as (\n\n select *\n from {{ ref('stg_marketo__email_template_history_tmp') }}\n\n), macro as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_marketo__email_template_history_tmp')),\n staging_columns=get_email_template_history_columns()\n )\n }}\n from base\n\n), fields as (\n\n select \n created_at as created_timestamp,\n description,\n folder_folder_name as folder_name,\n folder_id,\n folder_type,\n folder_value,\n from_email,\n from_name,\n id as email_template_id,\n name as email_template_name,\n operational as is_operational,\n program_id,\n publish_to_msi,\n reply_email,\n status as email_template_status,\n subject as email_subject,\n template as parent_template_id,\n text_only as is_text_only,\n updated_at as updated_timestamp,\n url as email_template_url,\n version as version_type,\n web_view as has_web_view_enabled,\n workspace as workspace_name\n from macro\n\n), versions as (\n\n select \n *,\n row_number() over (partition by email_template_id order by updated_timestamp) as inferred_version,\n count(*) over (partition by email_template_id) as total_count_of_versions\n from fields\n\n), valid as (\n\n select \n *, \n case\n when inferred_version = 1 then created_timestamp\n else updated_timestamp\n end as valid_from,\n lead(updated_timestamp) over (partition by email_template_id order by updated_timestamp) as valid_to,\n inferred_version = total_count_of_versions as is_most_recent_version\n from versions\n\n), surrogate_key as (\n\n select \n *,\n {{ dbt_utils.generate_surrogate_key(['email_template_id','inferred_version'] )}} as email_template_history_id\n from valid\n\n)\n\nselect *\nfrom surrogate_key", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "stg_marketo__email_template_history.sql", "original_file_path": "models/stg_marketo__email_template_history.sql", "name": "stg_marketo__email_template_history", "alias": "stg_marketo__email_template_history", "checksum": {"name": "sha256", "checksum": "2b34bacad103c708ce71485b21e2ba602fa83879d61e9d552a73ec888eec7e69"}, "tags": [], "refs": [["stg_marketo__email_template_history_tmp"], ["stg_marketo__email_template_history_tmp"]], "sources": [], "metrics": [], "description": "", "columns": {"email_template_history_id": {"name": "email_template_history_id", "description": "ID of the version of the email template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "created_timestamp": {"name": "created_timestamp", "description": "Timestamp the email template was created.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "description": {"name": "description", "description": "Description of the email template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_subject": {"name": "email_subject", "description": "Subject line of the email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_id": {"name": "email_template_id", "description": "ID of the email template", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_name": {"name": "email_template_name", "description": "Name of the email template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_status": {"name": "email_template_status", "description": "Status filter for draft or approved versions.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_url": {"name": "email_template_url", "description": "URL of the email template in the Marketo UI.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "folder_name": {"name": "folder_name", "description": "The name of the email template's folder.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "folder_id": {"name": "folder_id", "description": "The ID of the email template's folder.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "folder_type": {"name": "folder_type", "description": "The type of the email template's folder.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "folder_value": {"name": "folder_value", "description": "The value of the email template's folder.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "from_email": {"name": "from_email", "description": "The 'From' address of the email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "from_name": {"name": "from_name", "description": "The 'From' name of the email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "has_web_view_enabled": {"name": "has_web_view_enabled", "description": "Whether 'View as Webpage' function is enabled for the email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "inferred_version": {"name": "inferred_version", "description": "Incrementing integer version of the email template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "is_most_recent_version": {"name": "is_most_recent_version", "description": "Whether it is the most recent version of the email template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "is_operational": {"name": "is_operational", "description": "Whether the email is operational. Operational emails bypass unsubscribe status. Defaults to false.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "is_text_only": {"name": "is_text_only", "description": "Setting to include text-only version of email when sent.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "parent_template_id": {"name": "parent_template_id", "description": "ID of the parent template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "program_id": {"name": "program_id", "description": "The ID of the email template's program.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "publish_to_msi": {"name": "publish_to_msi", "description": "Whether the email is published to Marketo Sales Insight.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "reply_email": {"name": "reply_email", "description": "Reply-To address of the Email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "total_count_of_versions": {"name": "total_count_of_versions", "description": "Count of versions of the email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "updated_timestamp": {"name": "updated_timestamp", "description": "Timestamp the email template was last updated.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "valid_from": {"name": "valid_from", "description": "When the version of the email template was is valid from.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "valid_to": {"name": "valid_to", "description": "When the version of the email template was is valid to.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "version_type": {"name": "version_type", "description": "The type version of the email, either '1' or '2'.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "workspace_name": {"name": "workspace_name", "description": "Name of the workspace.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "marketo_source://models/stg_marketo.yml", "compiled_path": "target/compiled/marketo_source/models/stg_marketo__email_template_history.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "marketo_source"}, "created_at": 1671209461.698603, "compiled_code": "with base as (\n\n select *\n from \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__email_template_history_tmp\"\n\n), macro as (\n\n select\n \n cast(null as TIMESTAMP) as \n \n _fivetran_synced\n \n , \n \n \n created_at\n \n as \n \n created_at\n \n, \n \n \n description\n \n as \n \n description\n \n, \n \n \n folder_folder_name\n \n as \n \n folder_folder_name\n \n, \n \n \n folder_id\n \n as \n \n folder_id\n \n, \n \n \n folder_type\n \n as \n \n folder_type\n \n, \n \n \n folder_value\n \n as \n \n folder_value\n \n, \n \n \n from_email\n \n as \n \n from_email\n \n, \n \n \n from_name\n \n as \n \n from_name\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 operational\n \n as \n \n operational\n \n, \n \n \n program_id\n \n as \n \n program_id\n \n, \n \n \n publish_to_msi\n \n as \n \n publish_to_msi\n \n, \n \n \n reply_email\n \n as \n \n reply_email\n \n, \n \n \n status\n \n as \n \n status\n \n, \n \n \n subject\n \n as \n \n subject\n \n, \n \n \n template\n \n as \n \n template\n \n, \n \n \n text_only\n \n as \n \n text_only\n \n, \n \n \n updated_at\n \n as \n \n updated_at\n \n, \n \n \n url\n \n as \n \n url\n \n, \n \n \n version\n \n as \n \n version\n \n, \n \n \n web_view\n \n as \n \n web_view\n \n, \n \n \n workspace\n \n as \n \n workspace\n \n\n\n\n from base\n\n), fields as (\n\n select \n created_at as created_timestamp,\n description,\n folder_folder_name as folder_name,\n folder_id,\n folder_type,\n folder_value,\n from_email,\n from_name,\n id as email_template_id,\n name as email_template_name,\n operational as is_operational,\n program_id,\n publish_to_msi,\n reply_email,\n status as email_template_status,\n subject as email_subject,\n template as parent_template_id,\n text_only as is_text_only,\n updated_at as updated_timestamp,\n url as email_template_url,\n version as version_type,\n web_view as has_web_view_enabled,\n workspace as workspace_name\n from macro\n\n), versions as (\n\n select \n *,\n row_number() over (partition by email_template_id order by updated_timestamp) as inferred_version,\n count(*) over (partition by email_template_id) as total_count_of_versions\n from fields\n\n), valid as (\n\n select \n *, \n case\n when inferred_version = 1 then created_timestamp\n else updated_timestamp\n end as valid_from,\n lead(updated_timestamp) over (partition by email_template_id order by updated_timestamp) as valid_to,\n inferred_version = total_count_of_versions as is_most_recent_version\n from versions\n\n), surrogate_key as (\n\n select \n *,\n \n \nmd5(cast(coalesce(cast(email_template_id as TEXT), '_dbt_utils_surrogate_key_null_') || '-' || coalesce(cast(inferred_version as TEXT), '_dbt_utils_surrogate_key_null_') as TEXT)) as email_template_history_id\n from valid\n\n)\n\nselect *\nfrom surrogate_key", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__email_template_history\""}, "model.marketo_source.stg_marketo__activity_email_bounced": {"compiled": true, "resource_type": "model", "depends_on": {"macros": ["macro.marketo_source.get_activity_email_bounced_columns", "macro.fivetran_utils.fill_staging_columns", "macro.dbt.type_timestamp", "macro.dbt_utils.generate_surrogate_key"], "nodes": ["model.marketo_source.stg_marketo__activity_email_bounced_tmp", "model.marketo_source.stg_marketo__activity_email_bounced_tmp"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "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}, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7_marketo_source", "fqn": ["marketo_source", "stg_marketo__activity_email_bounced"], "unique_id": "model.marketo_source.stg_marketo__activity_email_bounced", "raw_code": "with base as (\n\n select *\n from {{ ref('stg_marketo__activity_email_bounced_tmp') }}\n\n), macro as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_marketo__activity_email_bounced_tmp')),\n staging_columns=get_activity_email_bounced_columns()\n )\n }}\n from base\n\n), fields as (\n\n select \t\n cast(activity_date as {{ dbt.type_timestamp() }}) as activity_timestamp,\n activity_type_id,\n campaign_id,\n campaign_run_id,\n category as bounce_category,\n choice_number,\n details,\n email as email_address,\n email_template_id,\n id as activity_id,\n lead_id,\n primary_attribute_value,\n primary_attribute_value_id,\n step_id,\n subcategory as bounce_subcategory\n from macro\n\n), surrogate as (\n\n select \n *,\n {{ dbt_utils.generate_surrogate_key(['primary_attribute_value_id','campaign_id','campaign_run_id','lead_id']) }} as email_send_id\n from fields\n\n)\n\nselect *\nfrom surrogate", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "stg_marketo__activity_email_bounced.sql", "original_file_path": "models/stg_marketo__activity_email_bounced.sql", "name": "stg_marketo__activity_email_bounced", "alias": "stg_marketo__activity_email_bounced", "checksum": {"name": "sha256", "checksum": "1d1bb3f22532780aa0698b3f8664778948f820e93af035807fb3c2cfcce6fb8c"}, "tags": [], "refs": [["stg_marketo__activity_email_bounced_tmp"], ["stg_marketo__activity_email_bounced_tmp"]], "sources": [], "metrics": [], "description": "", "columns": {"activity_id": {"name": "activity_id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_timestamp": {"name": "activity_timestamp", "description": "The timestamp the email bounced.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "The ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "bounce_category": {"name": "bounce_category", "description": "The category associated with bounced email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "bounce_subcategory": {"name": "bounce_subcategory", "description": "The subcategory associated with bounced email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the email's campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_run_id": {"name": "campaign_run_id", "description": "The ID of the email's campaign run.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "choice_number": {"name": "choice_number", "description": "The choice number of the current step that triggered the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "details": {"name": "details", "description": "Details about why the email bounced.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_address": {"name": "email_address", "description": "The email address that bounced.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_send_id": {"name": "email_send_id", "description": "The inferred ID for the email sent. This is created by concatenating primary_attribute_value_id, campaign_id, campaign_run_id, and lead_id.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_id": {"name": "email_template_id", "description": "The ID of the email's template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "step_id": {"name": "step_id", "description": "The Id of the current step in the flow.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "marketo_source://models/stg_marketo.yml", "compiled_path": "target/compiled/marketo_source/models/stg_marketo__activity_email_bounced.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "marketo_source"}, "created_at": 1671209461.683105, "compiled_code": "with base as (\n\n select *\n from \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_email_bounced_tmp\"\n\n), macro as (\n\n select\n \n cast(null as TIMESTAMP) as \n \n _fivetran_synced\n \n , \n \n \n activity_date\n \n as \n \n activity_date\n \n, \n \n \n activity_type_id\n \n as \n \n activity_type_id\n \n, \n \n \n campaign_id\n \n as \n \n campaign_id\n \n, \n \n \n campaign_run_id\n \n as \n \n campaign_run_id\n \n, \n \n \n category\n \n as \n \n category\n \n, \n \n \n choice_number\n \n as \n \n choice_number\n \n, \n \n \n details\n \n as \n \n details\n \n, \n \n \n email\n \n as \n \n email\n \n, \n \n \n email_template_id\n \n as \n \n email_template_id\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n lead_id\n \n as \n \n lead_id\n \n, \n \n \n primary_attribute_value\n \n as \n \n primary_attribute_value\n \n, \n \n \n primary_attribute_value_id\n \n as \n \n primary_attribute_value_id\n \n, \n \n \n step_id\n \n as \n \n step_id\n \n, \n \n \n subcategory\n \n as \n \n subcategory\n \n, \n cast(null as INT) as \n \n test_variant\n \n \n\n\n from base\n\n), fields as (\n\n select \t\n cast(activity_date as TIMESTAMP) as activity_timestamp,\n activity_type_id,\n campaign_id,\n campaign_run_id,\n category as bounce_category,\n choice_number,\n details,\n email as email_address,\n email_template_id,\n id as activity_id,\n lead_id,\n primary_attribute_value,\n primary_attribute_value_id,\n step_id,\n subcategory as bounce_subcategory\n from macro\n\n), surrogate as (\n\n select \n *,\n \n \nmd5(cast(coalesce(cast(primary_attribute_value_id as TEXT), '_dbt_utils_surrogate_key_null_') || '-' || coalesce(cast(campaign_id as TEXT), '_dbt_utils_surrogate_key_null_') || '-' || coalesce(cast(campaign_run_id as TEXT), '_dbt_utils_surrogate_key_null_') || '-' || coalesce(cast(lead_id as TEXT), '_dbt_utils_surrogate_key_null_') as TEXT)) as email_send_id\n from fields\n\n)\n\nselect *\nfrom surrogate", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_email_bounced\""}, "model.marketo_source.stg_marketo__activity_change_data_value": {"compiled": true, "resource_type": "model", "depends_on": {"macros": ["macro.marketo_source.get_activity_change_data_value_columns", "macro.fivetran_utils.fill_staging_columns", "macro.dbt.type_timestamp"], "nodes": ["model.marketo_source.stg_marketo__activity_change_data_value_tmp", "model.marketo_source.stg_marketo__activity_change_data_value_tmp"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "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}, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7_marketo_source", "fqn": ["marketo_source", "stg_marketo__activity_change_data_value"], "unique_id": "model.marketo_source.stg_marketo__activity_change_data_value", "raw_code": "with base as (\n\n select *\n from {{ ref('stg_marketo__activity_change_data_value_tmp') }}\n\n), macro as (\n\n select \n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_marketo__activity_change_data_value_tmp')),\n staging_columns=get_activity_change_data_value_columns()\n )\n }}\n from base\n\n), fields as (\n\n select \n cast(activity_date as {{ dbt.type_timestamp() }}) as activity_timestamp,\n activity_type_id,\n api_method_name,\n campaign_id,\n id as activity_id,\n lead_id,\n modifying_user as modifying_user_id,\n new_value,\n old_value,\n primary_attribute_value,\n primary_attribute_value_id,\n reason as change_reason,\n request_id,\n source as change_source\n from macro\n\n)\n\nselect *\nfrom fields", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "stg_marketo__activity_change_data_value.sql", "original_file_path": "models/stg_marketo__activity_change_data_value.sql", "name": "stg_marketo__activity_change_data_value", "alias": "stg_marketo__activity_change_data_value", "checksum": {"name": "sha256", "checksum": "efed9eadf657c3b27f21b042af06e2740c13d4c9a8a85068a7ab696c9b7ab788"}, "tags": [], "refs": [["stg_marketo__activity_change_data_value_tmp"], ["stg_marketo__activity_change_data_value_tmp"]], "sources": [], "metrics": [], "description": "", "columns": {"activity_id": {"name": "activity_id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_timestamp": {"name": "activity_timestamp", "description": "Timestamp of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "api_method_name": {"name": "api_method_name", "description": "API method used for change, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the related campaign, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "change_reason": {"name": "change_reason", "description": "Reason for the data change.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "change_source": {"name": "change_source", "description": "Source of the data change.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "Id of the lead associated to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "modifying_user_id": {"name": "modifying_user_id", "description": "The user who instigated the change, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "new_value": {"name": "new_value", "description": "New value after the change.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "old_value": {"name": "old_value", "description": "Old value before the change.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "Value of the primary attribute.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "ID of the primary attribute field.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "request_id": {"name": "request_id", "description": "ID of the request made.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "marketo_source://models/stg_marketo.yml", "compiled_path": "target/compiled/marketo_source/models/stg_marketo__activity_change_data_value.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "marketo_source"}, "created_at": 1671209461.677291, "compiled_code": "with base as (\n\n select *\n from \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_change_data_value_tmp\"\n\n), macro as (\n\n select \n \n cast(null as TIMESTAMP) as \n \n _fivetran_synced\n \n , \n \n \n activity_date\n \n as \n \n activity_date\n \n, \n \n \n activity_type_id\n \n as \n \n activity_type_id\n \n, \n \n \n api_method_name\n \n as \n \n api_method_name\n \n, \n \n \n campaign_id\n \n as \n \n campaign_id\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n lead_id\n \n as \n \n lead_id\n \n, \n \n \n modifying_user\n \n as \n \n modifying_user\n \n, \n \n \n new_value\n \n as \n \n new_value\n \n, \n \n \n old_value\n \n as \n \n old_value\n \n, \n \n \n primary_attribute_value\n \n as \n \n primary_attribute_value\n \n, \n \n \n primary_attribute_value_id\n \n as \n \n primary_attribute_value_id\n \n, \n \n \n reason\n \n as \n \n reason\n \n, \n \n \n request_id\n \n as \n \n request_id\n \n, \n \n \n source\n \n as \n \n source\n \n\n\n\n from base\n\n), fields as (\n\n select \n cast(activity_date as TIMESTAMP) as activity_timestamp,\n activity_type_id,\n api_method_name,\n campaign_id,\n id as activity_id,\n lead_id,\n modifying_user as modifying_user_id,\n new_value,\n old_value,\n primary_attribute_value,\n primary_attribute_value_id,\n reason as change_reason,\n request_id,\n source as change_source\n from macro\n\n)\n\nselect *\nfrom fields", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_change_data_value\""}, "model.marketo_source.stg_marketo__activity_delete_lead": {"compiled": true, "resource_type": "model", "depends_on": {"macros": ["macro.marketo_source.get_activity_delete_lead_columns", "macro.fivetran_utils.fill_staging_columns", "macro.dbt.type_timestamp"], "nodes": ["model.marketo_source.stg_marketo__activity_delete_lead_tmp", "model.marketo_source.stg_marketo__activity_delete_lead_tmp"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "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}, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7_marketo_source", "fqn": ["marketo_source", "stg_marketo__activity_delete_lead"], "unique_id": "model.marketo_source.stg_marketo__activity_delete_lead", "raw_code": "{{ config(enabled=var('marketo__activity_delete_lead_enabled', True)) }}\n\nwith base as (\n\n select *\n from {{ ref('stg_marketo__activity_delete_lead_tmp') }}\n\n), macro as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_marketo__activity_delete_lead_tmp')),\n staging_columns=get_activity_delete_lead_columns()\n )\n }}\n from base\n\n), fields as (\n\n select\n id as activity_id,\n _fivetran_synced,\n cast(activity_date as {{ dbt.type_timestamp() }}) as activity_timestamp,\n activity_type_id,\n campaign as campaign_name,\n campaign_id,\n lead_id,\n primary_attribute_value,\n primary_attribute_value_id\n from macro\n\n)\n\nselect *\nfrom fields", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "stg_marketo__activity_delete_lead.sql", "original_file_path": "models/stg_marketo__activity_delete_lead.sql", "name": "stg_marketo__activity_delete_lead", "alias": "stg_marketo__activity_delete_lead", "checksum": {"name": "sha256", "checksum": "1f06c5cb248233e1b98fac7758108471e1df50a8fb238703be1f5aa8d6842992"}, "tags": [], "refs": [["stg_marketo__activity_delete_lead_tmp"], ["stg_marketo__activity_delete_lead_tmp"]], "sources": [], "metrics": [], "description": "Table with deleted lead activities", "columns": {"activity_timestamp": {"name": "activity_timestamp", "description": "The timestamp the lead was deleted.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "The ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the campaign related to the activity, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_name": {"name": "campaign_name", "description": "The name of the campaign related to the activity, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_id": {"name": "activity_id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "marketo_source://models/stg_marketo.yml", "compiled_path": "target/compiled/marketo_source/models/stg_marketo__activity_delete_lead.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "marketo_source", "enabled": true}, "created_at": 1671209461.7051241, "compiled_code": "\n\nwith base as (\n\n select *\n from \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_delete_lead_tmp\"\n\n), macro as (\n\n select\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n activity_date\n \n as \n \n activity_date\n \n, \n \n \n activity_type_id\n \n as \n \n activity_type_id\n \n, \n \n \n campaign\n \n as \n \n campaign\n \n, \n \n \n campaign_id\n \n as \n \n campaign_id\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n lead_id\n \n as \n \n lead_id\n \n, \n \n \n primary_attribute_value\n \n as \n \n primary_attribute_value\n \n, \n \n \n primary_attribute_value_id\n \n as \n \n primary_attribute_value_id\n \n\n\n\n from base\n\n), fields as (\n\n select\n id as activity_id,\n _fivetran_synced,\n cast(activity_date as TIMESTAMP) as activity_timestamp,\n activity_type_id,\n campaign as campaign_name,\n campaign_id,\n lead_id,\n primary_attribute_value,\n primary_attribute_value_id\n from macro\n\n)\n\nselect *\nfrom fields", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_delete_lead\""}, "model.marketo_source.stg_marketo__lead": {"compiled": true, "resource_type": "model", "depends_on": {"macros": ["macro.dbt_utils.star"], "nodes": ["model.marketo_source.stg_marketo__lead_tmp", "model.marketo_source.stg_marketo__lead_tmp"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "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}, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7_marketo_source", "fqn": ["marketo_source", "stg_marketo__lead"], "unique_id": "model.marketo_source.stg_marketo__lead", "raw_code": "with base as (\n\n select *\n from {{ ref('stg_marketo__lead_tmp') }}\n\n), leads as (\n\n select\n id as lead_id,\n created_at as created_timestamp,\n updated_at as updated_timestamp,\n {{ dbt_utils.star(from=ref('stg_marketo__lead_tmp'), except=['id', 'created_at', 'updated_at']) }}\n from base\n)\n\nselect *\nfrom leads", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "stg_marketo__lead.sql", "original_file_path": "models/stg_marketo__lead.sql", "name": "stg_marketo__lead", "alias": "stg_marketo__lead", "checksum": {"name": "sha256", "checksum": "652f47bc65f7d7a426399bd15cb8c644c79e121c504c992648d44f4c9210941f"}, "tags": [], "refs": [["stg_marketo__lead_tmp"], ["stg_marketo__lead_tmp"]], "sources": [], "metrics": [], "description": "", "columns": {"lead_id": {"name": "lead_id", "description": "ID of the lead.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "created_timestamp": {"name": "created_timestamp", "description": "The timestamp at which each lead object was created.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "updated_timestamp": {"name": "updated_timestamp", "description": "The timestamp at which each lead object was last updated.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "is_deleted": {"name": "is_deleted", "description": "Whether the lead has been deleted.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "is_merged": {"name": "is_merged", "description": "Whether the lead has been merged into another lead.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "merged_into_lead_id": {"name": "merged_into_lead_id", "description": "The ID of the lead into which a lead was merged.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "website": {"name": "website", "description": "Website of the lead.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "marketo_source://models/stg_marketo.yml", "compiled_path": "target/compiled/marketo_source/models/stg_marketo__lead.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "marketo_source"}, "created_at": 1671209461.7014349, "compiled_code": "with base as (\n\n select *\n from \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__lead_tmp\"\n\n), leads as (\n\n select\n id as lead_id,\n created_at as created_timestamp,\n updated_at as updated_timestamp,\n \"website\"\n from base\n)\n\nselect *\nfrom leads", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__lead\""}, "model.marketo_source.stg_marketo__activity_email_delivered": {"compiled": true, "resource_type": "model", "depends_on": {"macros": ["macro.marketo_source.get_activity_email_delivered_columns", "macro.fivetran_utils.fill_staging_columns", "macro.dbt.type_timestamp", "macro.dbt_utils.generate_surrogate_key"], "nodes": ["model.marketo_source.stg_marketo__activity_email_delivered_tmp", "model.marketo_source.stg_marketo__activity_email_delivered_tmp"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "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}, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7_marketo_source", "fqn": ["marketo_source", "stg_marketo__activity_email_delivered"], "unique_id": "model.marketo_source.stg_marketo__activity_email_delivered", "raw_code": "with base as (\n\n select *\n from {{ ref('stg_marketo__activity_email_delivered_tmp') }}\n\n), macro as (\n\n select \n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_marketo__activity_email_delivered_tmp')),\n staging_columns=get_activity_email_delivered_columns()\n )\n }}\n from base\n\n), fields as (\n\n select \n cast(activity_date as {{ dbt.type_timestamp() }}) as activity_timestamp,\n activity_type_id,\n campaign_id,\n campaign_run_id,\n choice_number,\n email_template_id,\n id as activity_id, \n lead_id,\n primary_attribute_value,\n primary_attribute_value_id,\n step_id\n from macro\n\n), surrogate as (\n\n select \n *,\n {{ dbt_utils.generate_surrogate_key(['primary_attribute_value_id','campaign_id','campaign_run_id','lead_id']) }} as email_send_id\n from fields\n\n)\n\nselect *\nfrom surrogate", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "stg_marketo__activity_email_delivered.sql", "original_file_path": "models/stg_marketo__activity_email_delivered.sql", "name": "stg_marketo__activity_email_delivered", "alias": "stg_marketo__activity_email_delivered", "checksum": {"name": "sha256", "checksum": "f19b533dce90a25439bf2cc9da5fb9cc38bb393802d2d3c6ca0462a8a971f13d"}, "tags": [], "refs": [["stg_marketo__activity_email_delivered_tmp"], ["stg_marketo__activity_email_delivered_tmp"]], "sources": [], "metrics": [], "description": "", "columns": {"activity_id": {"name": "activity_id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_timestamp": {"name": "activity_timestamp", "description": "The timestamp the email was delivered.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "The ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the email's campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_run_id": {"name": "campaign_run_id", "description": "The ID of the email's campaign run.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "choice_number": {"name": "choice_number", "description": "The choice number of the current step that triggered the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_send_id": {"name": "email_send_id", "description": "The inferred ID for the email sent. This is created by concatenating primary_attribute_value_id, campaign_id, campaign_run_id, and lead_id.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_id": {"name": "email_template_id", "description": "The ID of the email's template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "step_id": {"name": "step_id", "description": "The Id of the current step in the flow.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "marketo_source://models/stg_marketo.yml", "compiled_path": "target/compiled/marketo_source/models/stg_marketo__activity_email_delivered.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "marketo_source"}, "created_at": 1671209461.6851368, "compiled_code": "with base as (\n\n select *\n from \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_email_delivered_tmp\"\n\n), macro as (\n\n select \n \n cast(null as TIMESTAMP) as \n \n _fivetran_synced\n \n , \n \n \n activity_date\n \n as \n \n activity_date\n \n, \n \n \n activity_type_id\n \n as \n \n activity_type_id\n \n, \n \n \n campaign_id\n \n as \n \n campaign_id\n \n, \n \n \n campaign_run_id\n \n as \n \n campaign_run_id\n \n, \n \n \n choice_number\n \n as \n \n choice_number\n \n, \n \n \n email_template_id\n \n as \n \n email_template_id\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n lead_id\n \n as \n \n lead_id\n \n, \n \n \n primary_attribute_value\n \n as \n \n primary_attribute_value\n \n, \n \n \n primary_attribute_value_id\n \n as \n \n primary_attribute_value_id\n \n, \n \n \n step_id\n \n as \n \n step_id\n \n, \n cast(null as INT) as \n \n test_variant\n \n \n\n\n from base\n\n), fields as (\n\n select \n cast(activity_date as TIMESTAMP) as activity_timestamp,\n activity_type_id,\n campaign_id,\n campaign_run_id,\n choice_number,\n email_template_id,\n id as activity_id, \n lead_id,\n primary_attribute_value,\n primary_attribute_value_id,\n step_id\n from macro\n\n), surrogate as (\n\n select \n *,\n \n \nmd5(cast(coalesce(cast(primary_attribute_value_id as TEXT), '_dbt_utils_surrogate_key_null_') || '-' || coalesce(cast(campaign_id as TEXT), '_dbt_utils_surrogate_key_null_') || '-' || coalesce(cast(campaign_run_id as TEXT), '_dbt_utils_surrogate_key_null_') || '-' || coalesce(cast(lead_id as TEXT), '_dbt_utils_surrogate_key_null_') as TEXT)) as email_send_id\n from fields\n\n)\n\nselect *\nfrom surrogate", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_email_delivered\""}, "model.marketo_source.stg_marketo__activity_click_email": {"compiled": true, "resource_type": "model", "depends_on": {"macros": ["macro.marketo_source.get_activity_click_email_columns", "macro.fivetran_utils.fill_staging_columns", "macro.dbt.type_timestamp", "macro.dbt_utils.generate_surrogate_key"], "nodes": ["model.marketo_source.stg_marketo__activity_click_email_tmp", "model.marketo_source.stg_marketo__activity_click_email_tmp"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "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}, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7_marketo_source", "fqn": ["marketo_source", "stg_marketo__activity_click_email"], "unique_id": "model.marketo_source.stg_marketo__activity_click_email", "raw_code": "with base as (\n\n select *\n from {{ ref('stg_marketo__activity_click_email_tmp') }}\n\n), macro as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_marketo__activity_click_email_tmp')),\n staging_columns=get_activity_click_email_columns()\n )\n }}\n from base\n\n), fields as (\n\n select \n cast(activity_date as {{ dbt.type_timestamp() }}) as activity_timestamp,\n activity_type_id,\n campaign_id,\n campaign_run_id,\n choice_number,\n device as click_device,\n email_template_id,\n id as activity_id,\n is_mobile_device,\n lead_id,\n link as click_link_url,\n platform as user_platform,\n primary_attribute_value,\n primary_attribute_value_id,\n step_id,\n user_agent\n from macro\n\n), surrogate as (\n\n select \n *,\n {{ dbt_utils.generate_surrogate_key(['primary_attribute_value_id','campaign_id','campaign_run_id','lead_id']) }} as email_send_id\n from fields\n\n)\n\nselect *\nfrom surrogate", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "stg_marketo__activity_click_email.sql", "original_file_path": "models/stg_marketo__activity_click_email.sql", "name": "stg_marketo__activity_click_email", "alias": "stg_marketo__activity_click_email", "checksum": {"name": "sha256", "checksum": "9ec442274f21aaac4de62d3a652dfac07bc548e12c0e6d806ecb2946ff20188f"}, "tags": [], "refs": [["stg_marketo__activity_click_email_tmp"], ["stg_marketo__activity_click_email_tmp"]], "sources": [], "metrics": [], "description": "", "columns": {"activity_id": {"name": "activity_id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_timestamp": {"name": "activity_timestamp", "description": "Timestamp of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the related campaign, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_run_id": {"name": "campaign_run_id", "description": "The ID of the email's campaign run.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "choice_number": {"name": "choice_number", "description": "The choice number of the current step that triggered the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "click_device": {"name": "click_device", "description": "The device type the activity occurred on.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "click_link_url": {"name": "click_link_url", "description": "The URL of the link clicked.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_send_id": {"name": "email_send_id", "description": "The inferred ID for the email sent. This is created by concatenating primary_attribute_value_id, campaign_id, campaign_run_id, and lead_id.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_id": {"name": "email_template_id", "description": "The ID of the email's template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "is_mobile_device": {"name": "is_mobile_device", "description": "Whether the activity occurred on a mobile device.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "step_id": {"name": "step_id", "description": "The Id of the current step in the flow.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "user_agent": {"name": "user_agent", "description": "The Web browser user agent information obtained when the lead clicked the email link.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "user_platform": {"name": "user_platform", "description": "The user's operating platform.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "marketo_source://models/stg_marketo.yml", "compiled_path": "target/compiled/marketo_source/models/stg_marketo__activity_click_email.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "marketo_source"}, "created_at": 1671209461.680321, "compiled_code": "with base as (\n\n select *\n from \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_click_email_tmp\"\n\n), macro as (\n\n select\n \n cast(null as TIMESTAMP) as \n \n _fivetran_synced\n \n , \n \n \n activity_date\n \n as \n \n activity_date\n \n, \n \n \n activity_type_id\n \n as \n \n activity_type_id\n \n, \n \n \n campaign_id\n \n as \n \n campaign_id\n \n, \n \n \n campaign_run_id\n \n as \n \n campaign_run_id\n \n, \n \n \n choice_number\n \n as \n \n choice_number\n \n, \n \n \n device\n \n as \n \n device\n \n, \n \n \n email_template_id\n \n as \n \n email_template_id\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n is_mobile_device\n \n as \n \n is_mobile_device\n \n, \n \n \n lead_id\n \n as \n \n lead_id\n \n, \n \n \n link\n \n as \n \n link\n \n, \n cast(null as TEXT) as \n \n link_id\n \n , \n \n \n platform\n \n as \n \n platform\n \n, \n \n \n primary_attribute_value\n \n as \n \n primary_attribute_value\n \n, \n \n \n primary_attribute_value_id\n \n as \n \n primary_attribute_value_id\n \n, \n \n \n step_id\n \n as \n \n step_id\n \n, \n cast(null as INT) as \n \n test_variant\n \n , \n \n \n user_agent\n \n as \n \n user_agent\n \n\n\n\n from base\n\n), fields as (\n\n select \n cast(activity_date as TIMESTAMP) as activity_timestamp,\n activity_type_id,\n campaign_id,\n campaign_run_id,\n choice_number,\n device as click_device,\n email_template_id,\n id as activity_id,\n is_mobile_device,\n lead_id,\n link as click_link_url,\n platform as user_platform,\n primary_attribute_value,\n primary_attribute_value_id,\n step_id,\n user_agent\n from macro\n\n), surrogate as (\n\n select \n *,\n \n \nmd5(cast(coalesce(cast(primary_attribute_value_id as TEXT), '_dbt_utils_surrogate_key_null_') || '-' || coalesce(cast(campaign_id as TEXT), '_dbt_utils_surrogate_key_null_') || '-' || coalesce(cast(campaign_run_id as TEXT), '_dbt_utils_surrogate_key_null_') || '-' || coalesce(cast(lead_id as TEXT), '_dbt_utils_surrogate_key_null_') as TEXT)) as email_send_id\n from fields\n\n)\n\nselect *\nfrom surrogate", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_click_email\""}, "model.marketo_source.stg_marketo__lead_describe": {"compiled": true, "resource_type": "model", "depends_on": {"macros": ["macro.marketo_source.get_lead_describe_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": ["model.marketo_source.stg_marketo__lead_describe_tmp", "model.marketo_source.stg_marketo__lead_describe_tmp"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "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}, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7_marketo_source", "fqn": ["marketo_source", "stg_marketo__lead_describe"], "unique_id": "model.marketo_source.stg_marketo__lead_describe", "raw_code": "with base as (\n\n select *\n from {{ ref('stg_marketo__lead_describe_tmp') }}\n\n), macro as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_marketo__lead_describe_tmp')),\n staging_columns=get_lead_describe_columns()\n )\n }}\n from base\n\n), fields as (\n\n select\n data_type,\n display_name,\n id as lead_describe_id,\n length as field_max_length,\n restname as rest_name,\n restread_only as is_rest_readonly,\n soapname as soap_name,\n soapread_only as is_soap_readonly\n from macro\n\n), regex as (\n\n select \n *,\n case\n when rest_name like '%\\\\_\\\\_c%' then lower(rest_name)\n else ltrim(lower(regexp_replace(rest_name, '[A-Z]','_\\\\0')),'_')\n end as rest_name_xf\n from fields\n\n)\n\nselect *\nfrom regex", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "stg_marketo__lead_describe.sql", "original_file_path": "models/stg_marketo__lead_describe.sql", "name": "stg_marketo__lead_describe", "alias": "stg_marketo__lead_describe", "checksum": {"name": "sha256", "checksum": "038705eae4a2758a0567f5478ba0f53bf323c5bddbfc4b4995df10573a29de2d"}, "tags": [], "refs": [["stg_marketo__lead_describe_tmp"], ["stg_marketo__lead_describe_tmp"]], "sources": [], "metrics": [], "description": "", "columns": {"lead_describe_id": {"name": "lead_describe_id", "description": "ID of the description.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "data_type": {"name": "data_type", "description": "Datatype of the field.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "display_name": {"name": "display_name", "description": "UI display-name of the field.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "field_max_length": {"name": "field_max_length", "description": "Max length of the field. Only applicable to text, string, and text area.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "is_rest_readonly": {"name": "is_rest_readonly", "description": "Whether the field is only available via the REST API.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "is_soap_readonly": {"name": "is_soap_readonly", "description": "Whether the field is only available via the SOAP API.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "rest_name": {"name": "rest_name", "description": "Description of REST API usage attributes in camel case.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "rest_name_xf": {"name": "rest_name_xf", "description": "Description of REST API usage attributes in snake case.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "soap_name": {"name": "soap_name", "description": "Description of SOAP API usage attributes.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "marketo_source://models/stg_marketo.yml", "compiled_path": "target/compiled/marketo_source/models/stg_marketo__lead_describe.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "marketo_source"}, "created_at": 1671209461.700214, "compiled_code": "with base as (\n\n select *\n from \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__lead_describe_tmp\"\n\n), macro as (\n\n select\n \n cast(null as TIMESTAMP) as \n \n _fivetran_synced\n \n , \n \n \n data_type\n \n as \n \n data_type\n \n, \n \n \n display_name\n \n as \n \n display_name\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n length\n \n as \n \n length\n \n, \n \n \n restname\n \n as \n \n restname\n \n, \n \n \n restread_only\n \n as \n \n restread_only\n \n, \n \n \n soapname\n \n as \n \n soapname\n \n, \n \n \n soapread_only\n \n as \n \n soapread_only\n \n\n\n\n from base\n\n), fields as (\n\n select\n data_type,\n display_name,\n id as lead_describe_id,\n length as field_max_length,\n restname as rest_name,\n restread_only as is_rest_readonly,\n soapname as soap_name,\n soapread_only as is_soap_readonly\n from macro\n\n), regex as (\n\n select \n *,\n case\n when rest_name like '%\\\\_\\\\_c%' then lower(rest_name)\n else ltrim(lower(regexp_replace(rest_name, '[A-Z]','_\\\\0')),'_')\n end as rest_name_xf\n from fields\n\n)\n\nselect *\nfrom regex", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__lead_describe\""}, "model.marketo_source.stg_marketo__activity_unsubscribe_email": {"compiled": true, "resource_type": "model", "depends_on": {"macros": ["macro.marketo_source.get_activity_unsubscribe_email_columns", "macro.fivetran_utils.fill_staging_columns", "macro.dbt.type_timestamp", "macro.dbt_utils.generate_surrogate_key"], "nodes": ["model.marketo_source.stg_marketo__activity_unsubscribe_email_tmp", "model.marketo_source.stg_marketo__activity_unsubscribe_email_tmp"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "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}, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7_marketo_source", "fqn": ["marketo_source", "stg_marketo__activity_unsubscribe_email"], "unique_id": "model.marketo_source.stg_marketo__activity_unsubscribe_email", "raw_code": "with base as (\n\n select *\n from {{ ref('stg_marketo__activity_unsubscribe_email_tmp') }}\n\n), macro as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_marketo__activity_unsubscribe_email_tmp')),\n staging_columns=get_activity_unsubscribe_email_columns()\n )\n }}\n from base\n\n), fields as (\n\n select \t\n cast(activity_date as {{ dbt.type_timestamp() }}) as activity_timestamp,\n activity_type_id,\n campaign_id,\n campaign_run_id,\n client_ip_address,\n email_template_id,\n form_fields,\n id as activity_id,\n lead_id,\n primary_attribute_value,\n primary_attribute_value_id,\n query_parameters,\n referrer_url,\n user_agent,\n webform_id,\n webpage_id\n from macro\n\n), surrogate as (\n\n select \n *,\n {{ dbt_utils.generate_surrogate_key(['primary_attribute_value_id','campaign_id','campaign_run_id','lead_id']) }} as email_send_id\n from fields\n\n)\n\nselect *\nfrom surrogate", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "stg_marketo__activity_unsubscribe_email.sql", "original_file_path": "models/stg_marketo__activity_unsubscribe_email.sql", "name": "stg_marketo__activity_unsubscribe_email", "alias": "stg_marketo__activity_unsubscribe_email", "checksum": {"name": "sha256", "checksum": "944084ece919d01aa7b95fcb8aff21d261937887241f6a2cd861677d9673772e"}, "tags": [], "refs": [["stg_marketo__activity_unsubscribe_email_tmp"], ["stg_marketo__activity_unsubscribe_email_tmp"]], "sources": [], "metrics": [], "description": "", "columns": {"activity_id": {"name": "activity_id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_timestamp": {"name": "activity_timestamp", "description": "The timestamp the lead unsubscribed.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "The ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the email's campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_run_id": {"name": "campaign_run_id", "description": "The ID of the email's campaign run.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "client_ip_address": {"name": "client_ip_address", "description": "The IP address of the client that unsubscribed.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_send_id": {"name": "email_send_id", "description": "The inferred ID for the email sent. This is created by concatenating primary_attribute_value_id, campaign_id, campaign_run_id, and lead_id.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_id": {"name": "email_template_id", "description": "The ID of the email's template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "form_fields": {"name": "form_fields", "description": "The query parameters contained within the URL.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "query_parameters": {"name": "query_parameters", "description": "The query parameters contained within the URL.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "referrer_url": {"name": "referrer_url", "description": "The URL of the referrer used to identify where the form visit originated from.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "user_agent": {"name": "user_agent", "description": "The web browser user agent information obtained when the lead unsubscribed.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "webform_id": {"name": "webform_id", "description": "The ID of the unsubscribe web page.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "webpage_id": {"name": "webpage_id", "description": "The ID of the unsubscribe web form.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "marketo_source://models/stg_marketo.yml", "compiled_path": "target/compiled/marketo_source/models/stg_marketo__activity_unsubscribe_email.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "marketo_source"}, "created_at": 1671209461.692409, "compiled_code": "with base as (\n\n select *\n from \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_unsubscribe_email_tmp\"\n\n), macro as (\n\n select\n \n cast(null as TIMESTAMP) as \n \n _fivetran_synced\n \n , \n \n \n activity_date\n \n as \n \n activity_date\n \n, \n \n \n activity_type_id\n \n as \n \n activity_type_id\n \n, \n \n \n campaign_id\n \n as \n \n campaign_id\n \n, \n \n \n campaign_run_id\n \n as \n \n campaign_run_id\n \n, \n \n \n client_ip_address\n \n as \n \n client_ip_address\n \n, \n \n \n email_template_id\n \n as \n \n email_template_id\n \n, \n \n \n form_fields\n \n as \n \n form_fields\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n lead_id\n \n as \n \n lead_id\n \n, \n \n \n primary_attribute_value\n \n as \n \n primary_attribute_value\n \n, \n \n \n primary_attribute_value_id\n \n as \n \n primary_attribute_value_id\n \n, \n \n \n query_parameters\n \n as \n \n query_parameters\n \n, \n \n \n referrer_url\n \n as \n \n referrer_url\n \n, \n cast(null as INT) as \n \n test_variant\n \n , \n \n \n user_agent\n \n as \n \n user_agent\n \n, \n \n \n webform_id\n \n as \n \n webform_id\n \n, \n \n \n webpage_id\n \n as \n \n webpage_id\n \n\n\n\n from base\n\n), fields as (\n\n select \t\n cast(activity_date as TIMESTAMP) as activity_timestamp,\n activity_type_id,\n campaign_id,\n campaign_run_id,\n client_ip_address,\n email_template_id,\n form_fields,\n id as activity_id,\n lead_id,\n primary_attribute_value,\n primary_attribute_value_id,\n query_parameters,\n referrer_url,\n user_agent,\n webform_id,\n webpage_id\n from macro\n\n), surrogate as (\n\n select \n *,\n \n \nmd5(cast(coalesce(cast(primary_attribute_value_id as TEXT), '_dbt_utils_surrogate_key_null_') || '-' || coalesce(cast(campaign_id as TEXT), '_dbt_utils_surrogate_key_null_') || '-' || coalesce(cast(campaign_run_id as TEXT), '_dbt_utils_surrogate_key_null_') || '-' || coalesce(cast(lead_id as TEXT), '_dbt_utils_surrogate_key_null_') as TEXT)) as email_send_id\n from fields\n\n)\n\nselect *\nfrom surrogate", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_unsubscribe_email\""}, "model.marketo_source.stg_marketo__activity_email_delivered_tmp": {"compiled": true, "resource_type": "model", "depends_on": {"macros": [], "nodes": ["source.marketo_source.marketo.activity_email_delivered"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "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}, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7_marketo_source", "fqn": ["marketo_source", "tmp", "stg_marketo__activity_email_delivered_tmp"], "unique_id": "model.marketo_source.stg_marketo__activity_email_delivered_tmp", "raw_code": "select *\nfrom {{ var('activity_email_delivered') }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "tmp/stg_marketo__activity_email_delivered_tmp.sql", "original_file_path": "models/tmp/stg_marketo__activity_email_delivered_tmp.sql", "name": "stg_marketo__activity_email_delivered_tmp", "alias": "stg_marketo__activity_email_delivered_tmp", "checksum": {"name": "sha256", "checksum": "619861b37833addf40ae386dea3dd084ea60309b183bad77b540df75c10b6a11"}, "tags": [], "refs": [], "sources": [["marketo", "activity_email_delivered"]], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/tmp/stg_marketo__activity_email_delivered_tmp.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "marketo_source"}, "created_at": 1671209461.5805922, "compiled_code": "select *\nfrom \"postgres\".\"marketo_source_integration_tests_7\".\"marketo_activity_email_delivered_data\"", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_email_delivered_tmp\""}, "model.marketo_source.stg_marketo__activity_click_email_tmp": {"compiled": true, "resource_type": "model", "depends_on": {"macros": [], "nodes": ["source.marketo_source.marketo.activity_click_email"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "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}, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7_marketo_source", "fqn": ["marketo_source", "tmp", "stg_marketo__activity_click_email_tmp"], "unique_id": "model.marketo_source.stg_marketo__activity_click_email_tmp", "raw_code": "select *\nfrom {{ var('activity_click_email') }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "tmp/stg_marketo__activity_click_email_tmp.sql", "original_file_path": "models/tmp/stg_marketo__activity_click_email_tmp.sql", "name": "stg_marketo__activity_click_email_tmp", "alias": "stg_marketo__activity_click_email_tmp", "checksum": {"name": "sha256", "checksum": "0e028b0617b3e65df31014efeebb7a2d87b9aab9476740575d4fe7f873a77ff4"}, "tags": [], "refs": [], "sources": [["marketo", "activity_click_email"]], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/tmp/stg_marketo__activity_click_email_tmp.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "marketo_source"}, "created_at": 1671209461.584944, "compiled_code": "select *\nfrom \"postgres\".\"marketo_source_integration_tests_7\".\"marketo_activity_click_email_data\"", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_click_email_tmp\""}, "model.marketo_source.stg_marketo__lead_describe_tmp": {"compiled": true, "resource_type": "model", "depends_on": {"macros": [], "nodes": ["source.marketo_source.marketo.lead_describe"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "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}, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7_marketo_source", "fqn": ["marketo_source", "tmp", "stg_marketo__lead_describe_tmp"], "unique_id": "model.marketo_source.stg_marketo__lead_describe_tmp", "raw_code": "select *\nfrom {{ var('lead_describe') }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "tmp/stg_marketo__lead_describe_tmp.sql", "original_file_path": "models/tmp/stg_marketo__lead_describe_tmp.sql", "name": "stg_marketo__lead_describe_tmp", "alias": "stg_marketo__lead_describe_tmp", "checksum": {"name": "sha256", "checksum": "c61773bfab28a87cda9cdeea526fd4862e1ed4e4a0b81f433f9f1a867d76c9d1"}, "tags": [], "refs": [], "sources": [["marketo", "lead_describe"]], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/tmp/stg_marketo__lead_describe_tmp.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "marketo_source"}, "created_at": 1671209461.592214, "compiled_code": "select *\nfrom \"postgres\".\"marketo_source_integration_tests_7\".\"marketo_lead_describe_data\"", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__lead_describe_tmp\""}, "model.marketo_source.stg_marketo__activity_delete_lead_tmp": {"compiled": true, "resource_type": "model", "depends_on": {"macros": [], "nodes": ["source.marketo_source.marketo.activity_delete_lead"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "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}, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7_marketo_source", "fqn": ["marketo_source", "tmp", "stg_marketo__activity_delete_lead_tmp"], "unique_id": "model.marketo_source.stg_marketo__activity_delete_lead_tmp", "raw_code": "{{ config(enabled=var('marketo__activity_delete_lead_enabled', True)) }}\n\nselect *\nfrom {{ var('activity_delete_lead') }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "tmp/stg_marketo__activity_delete_lead_tmp.sql", "original_file_path": "models/tmp/stg_marketo__activity_delete_lead_tmp.sql", "name": "stg_marketo__activity_delete_lead_tmp", "alias": "stg_marketo__activity_delete_lead_tmp", "checksum": {"name": "sha256", "checksum": "fffb76ce387a28ae21f4d7c802403c6f1c0c8d9c19f53096b02baa7a194fb8fc"}, "tags": [], "refs": [], "sources": [["marketo", "activity_delete_lead"]], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/tmp/stg_marketo__activity_delete_lead_tmp.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "marketo_source", "enabled": true}, "created_at": 1671209461.596259, "compiled_code": "\n\nselect *\nfrom \"postgres\".\"marketo_source_integration_tests_7\".\"marketo_activity_delete_lead_data\"", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_delete_lead_tmp\""}, "model.marketo_source.stg_marketo__activity_change_data_value_tmp": {"compiled": true, "resource_type": "model", "depends_on": {"macros": [], "nodes": ["source.marketo_source.marketo.activity_change_data_value"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "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}, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7_marketo_source", "fqn": ["marketo_source", "tmp", "stg_marketo__activity_change_data_value_tmp"], "unique_id": "model.marketo_source.stg_marketo__activity_change_data_value_tmp", "raw_code": "select *\nfrom {{ var('activity_change_data_value') }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "tmp/stg_marketo__activity_change_data_value_tmp.sql", "original_file_path": "models/tmp/stg_marketo__activity_change_data_value_tmp.sql", "name": "stg_marketo__activity_change_data_value_tmp", "alias": "stg_marketo__activity_change_data_value_tmp", "checksum": {"name": "sha256", "checksum": "1c0163494dff29680a332b778533c3e931ecee3b5d035e3fe0aee2e8aafea58c"}, "tags": [], "refs": [], "sources": [["marketo", "activity_change_data_value"]], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/tmp/stg_marketo__activity_change_data_value_tmp.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "marketo_source"}, "created_at": 1671209461.599883, "compiled_code": "select *\nfrom \"postgres\".\"marketo_source_integration_tests_7\".\"marketo_activity_change_data_value_data\"", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_change_data_value_tmp\""}, "model.marketo_source.stg_marketo__activity_email_bounced_tmp": {"compiled": true, "resource_type": "model", "depends_on": {"macros": [], "nodes": ["source.marketo_source.marketo.activity_email_bounced"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "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}, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7_marketo_source", "fqn": ["marketo_source", "tmp", "stg_marketo__activity_email_bounced_tmp"], "unique_id": "model.marketo_source.stg_marketo__activity_email_bounced_tmp", "raw_code": "select *\nfrom {{ var('activity_email_bounced') }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "tmp/stg_marketo__activity_email_bounced_tmp.sql", "original_file_path": "models/tmp/stg_marketo__activity_email_bounced_tmp.sql", "name": "stg_marketo__activity_email_bounced_tmp", "alias": "stg_marketo__activity_email_bounced_tmp", "checksum": {"name": "sha256", "checksum": "785d1381d31052e8bad524afaa3e48e3fb52cea207fe4830ce4f0394546961c7"}, "tags": [], "refs": [], "sources": [["marketo", "activity_email_bounced"]], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/tmp/stg_marketo__activity_email_bounced_tmp.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "marketo_source"}, "created_at": 1671209461.603185, "compiled_code": "select *\nfrom \"postgres\".\"marketo_source_integration_tests_7\".\"marketo_activity_email_bounced_data\"", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_email_bounced_tmp\""}, "model.marketo_source.stg_marketo__activity_open_email_tmp": {"compiled": true, "resource_type": "model", "depends_on": {"macros": [], "nodes": ["source.marketo_source.marketo.activity_open_email"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "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}, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7_marketo_source", "fqn": ["marketo_source", "tmp", "stg_marketo__activity_open_email_tmp"], "unique_id": "model.marketo_source.stg_marketo__activity_open_email_tmp", "raw_code": "select *\nfrom {{ var('activity_open_email') }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "tmp/stg_marketo__activity_open_email_tmp.sql", "original_file_path": "models/tmp/stg_marketo__activity_open_email_tmp.sql", "name": "stg_marketo__activity_open_email_tmp", "alias": "stg_marketo__activity_open_email_tmp", "checksum": {"name": "sha256", "checksum": "3ba57512b86948f0be15cbbaf8dd492df48e602cc92cfe971134e0c27a457b1b"}, "tags": [], "refs": [], "sources": [["marketo", "activity_open_email"]], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/tmp/stg_marketo__activity_open_email_tmp.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "marketo_source"}, "created_at": 1671209461.606505, "compiled_code": "select *\nfrom \"postgres\".\"marketo_source_integration_tests_7\".\"marketo_activity_open_email_data\"", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_open_email_tmp\""}, "model.marketo_source.stg_marketo__activity_merge_leads_tmp": {"compiled": true, "resource_type": "model", "depends_on": {"macros": [], "nodes": ["source.marketo_source.marketo.activity_merge_leads"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "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}, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7_marketo_source", "fqn": ["marketo_source", "tmp", "stg_marketo__activity_merge_leads_tmp"], "unique_id": "model.marketo_source.stg_marketo__activity_merge_leads_tmp", "raw_code": "select *\nfrom {{ var('activity_merge_leads') }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "tmp/stg_marketo__activity_merge_leads_tmp.sql", "original_file_path": "models/tmp/stg_marketo__activity_merge_leads_tmp.sql", "name": "stg_marketo__activity_merge_leads_tmp", "alias": "stg_marketo__activity_merge_leads_tmp", "checksum": {"name": "sha256", "checksum": "390ca68fd4496684358f31732a6736a812e0d5ab911ed03b55df66c037536680"}, "tags": [], "refs": [], "sources": [["marketo", "activity_merge_leads"]], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/tmp/stg_marketo__activity_merge_leads_tmp.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "marketo_source"}, "created_at": 1671209461.609775, "compiled_code": "select *\nfrom \"postgres\".\"marketo_source_integration_tests_7\".\"marketo_activity_merge_leads_data\"", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_merge_leads_tmp\""}, "model.marketo_source.stg_marketo__activity_send_email_tmp": {"compiled": true, "resource_type": "model", "depends_on": {"macros": [], "nodes": ["source.marketo_source.marketo.activity_send_email"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "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}, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7_marketo_source", "fqn": ["marketo_source", "tmp", "stg_marketo__activity_send_email_tmp"], "unique_id": "model.marketo_source.stg_marketo__activity_send_email_tmp", "raw_code": "select *\nfrom {{ var('activity_send_email') }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "tmp/stg_marketo__activity_send_email_tmp.sql", "original_file_path": "models/tmp/stg_marketo__activity_send_email_tmp.sql", "name": "stg_marketo__activity_send_email_tmp", "alias": "stg_marketo__activity_send_email_tmp", "checksum": {"name": "sha256", "checksum": "18970ad238a0307944650200bac20c3d13f8b502c79a9dfc50f4afff40aa56bf"}, "tags": [], "refs": [], "sources": [["marketo", "activity_send_email"]], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/tmp/stg_marketo__activity_send_email_tmp.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "marketo_source"}, "created_at": 1671209461.617505, "compiled_code": "select *\nfrom \"postgres\".\"marketo_source_integration_tests_7\".\"marketo_activity_send_email_data\"", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_send_email_tmp\""}, "model.marketo_source.stg_marketo__email_template_history_tmp": {"compiled": true, "resource_type": "model", "depends_on": {"macros": [], "nodes": ["source.marketo_source.marketo.email_template_history"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "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}, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7_marketo_source", "fqn": ["marketo_source", "tmp", "stg_marketo__email_template_history_tmp"], "unique_id": "model.marketo_source.stg_marketo__email_template_history_tmp", "raw_code": "select *\nfrom {{ var('email_template_history') }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "tmp/stg_marketo__email_template_history_tmp.sql", "original_file_path": "models/tmp/stg_marketo__email_template_history_tmp.sql", "name": "stg_marketo__email_template_history_tmp", "alias": "stg_marketo__email_template_history_tmp", "checksum": {"name": "sha256", "checksum": "1dd1b43a68b211cd3b47dd3281094b8896b621b70e8b2469bf184e028e0dfde9"}, "tags": [], "refs": [], "sources": [["marketo", "email_template_history"]], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/tmp/stg_marketo__email_template_history_tmp.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "marketo_source"}, "created_at": 1671209461.6207922, "compiled_code": "select *\nfrom \"postgres\".\"marketo_source_integration_tests_7\".\"marketo_email_template_history_data\"", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__email_template_history_tmp\""}, "model.marketo_source.stg_marketo__activity_unsubscribe_email_tmp": {"compiled": true, "resource_type": "model", "depends_on": {"macros": [], "nodes": ["source.marketo_source.marketo.activity_unsubscribe_email"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "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}, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7_marketo_source", "fqn": ["marketo_source", "tmp", "stg_marketo__activity_unsubscribe_email_tmp"], "unique_id": "model.marketo_source.stg_marketo__activity_unsubscribe_email_tmp", "raw_code": "select *\nfrom {{ var('activity_unsubscribe_email') }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "tmp/stg_marketo__activity_unsubscribe_email_tmp.sql", "original_file_path": "models/tmp/stg_marketo__activity_unsubscribe_email_tmp.sql", "name": "stg_marketo__activity_unsubscribe_email_tmp", "alias": "stg_marketo__activity_unsubscribe_email_tmp", "checksum": {"name": "sha256", "checksum": "b232d541f777b2cebbc95f76e491b03fed71652efb8f0723ef55d4ca74ef7778"}, "tags": [], "refs": [], "sources": [["marketo", "activity_unsubscribe_email"]], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/tmp/stg_marketo__activity_unsubscribe_email_tmp.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "marketo_source"}, "created_at": 1671209461.624029, "compiled_code": "select *\nfrom \"postgres\".\"marketo_source_integration_tests_7\".\"marketo_activity_unsubscribe_email_data\"", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_unsubscribe_email_tmp\""}, "model.marketo_source.stg_marketo__lead_tmp": {"compiled": true, "resource_type": "model", "depends_on": {"macros": [], "nodes": ["source.marketo_source.marketo.lead"]}, "config": {"enabled": true, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "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}, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7_marketo_source", "fqn": ["marketo_source", "tmp", "stg_marketo__lead_tmp"], "unique_id": "model.marketo_source.stg_marketo__lead_tmp", "raw_code": "select *\nfrom {{ var('lead') }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "tmp/stg_marketo__lead_tmp.sql", "original_file_path": "models/tmp/stg_marketo__lead_tmp.sql", "name": "stg_marketo__lead_tmp", "alias": "stg_marketo__lead_tmp", "checksum": {"name": "sha256", "checksum": "a41c8a092c451f50cf4357ec0359cb5e54dd5014e43c8635c35ae677b529be16"}, "tags": [], "refs": [], "sources": [["marketo", "lead"]], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/tmp/stg_marketo__lead_tmp.sql", "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "marketo_source"}, "created_at": 1671209461.627272, "compiled_code": "select *\nfrom \"postgres\".\"marketo_source_integration_tests_7\".\"marketo_lead_data\"", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__lead_tmp\""}, "test.marketo_source.unique_stg_marketo__activity_change_data_value_activity_id.7c7047bbcd": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "activity_id", "model": "{{ get_where_subquery(ref('stg_marketo__activity_change_data_value')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__activity_change_data_value"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "postgres", "schema": "marketo_source_integration_tests_7_dbt_test__audit", "fqn": ["marketo_source", "unique_stg_marketo__activity_change_data_value_activity_id"], "unique_id": "test.marketo_source.unique_stg_marketo__activity_change_data_value_activity_id.7c7047bbcd", "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "unique_stg_marketo__activity_change_data_value_activity_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "unique_stg_marketo__activity_change_data_value_activity_id", "alias": "unique_stg_marketo__activity_change_data_value_activity_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__activity_change_data_value"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/unique_stg_marketo__activity_change_data_value_activity_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.711287, "compiled_code": "\n \n \n\nselect\n activity_id as unique_field,\n count(*) as n_records\n\nfrom \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_change_data_value\"\nwhere activity_id is not null\ngroup by activity_id\nhaving count(*) > 1\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "activity_id", "file_key_name": "models.stg_marketo__activity_change_data_value"}, "test.marketo_source.not_null_stg_marketo__activity_change_data_value_activity_id.8ae060d108": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "activity_id", "model": "{{ get_where_subquery(ref('stg_marketo__activity_change_data_value')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__activity_change_data_value"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "postgres", "schema": "marketo_source_integration_tests_7_dbt_test__audit", "fqn": ["marketo_source", "not_null_stg_marketo__activity_change_data_value_activity_id"], "unique_id": "test.marketo_source.not_null_stg_marketo__activity_change_data_value_activity_id.8ae060d108", "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "not_null_stg_marketo__activity_change_data_value_activity_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "not_null_stg_marketo__activity_change_data_value_activity_id", "alias": "not_null_stg_marketo__activity_change_data_value_activity_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__activity_change_data_value"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/not_null_stg_marketo__activity_change_data_value_activity_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.7124841, "compiled_code": "\n \n \n\n\n\nselect activity_id\nfrom \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_change_data_value\"\nwhere activity_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "activity_id", "file_key_name": "models.stg_marketo__activity_change_data_value"}, "test.marketo_source.unique_stg_marketo__activity_click_email_activity_id.6c599791a0": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "activity_id", "model": "{{ get_where_subquery(ref('stg_marketo__activity_click_email')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__activity_click_email"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "postgres", "schema": "marketo_source_integration_tests_7_dbt_test__audit", "fqn": ["marketo_source", "unique_stg_marketo__activity_click_email_activity_id"], "unique_id": "test.marketo_source.unique_stg_marketo__activity_click_email_activity_id.6c599791a0", "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "unique_stg_marketo__activity_click_email_activity_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "unique_stg_marketo__activity_click_email_activity_id", "alias": "unique_stg_marketo__activity_click_email_activity_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__activity_click_email"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/unique_stg_marketo__activity_click_email_activity_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.7134988, "compiled_code": "\n \n \n\nselect\n activity_id as unique_field,\n count(*) as n_records\n\nfrom \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_click_email\"\nwhere activity_id is not null\ngroup by activity_id\nhaving count(*) > 1\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "activity_id", "file_key_name": "models.stg_marketo__activity_click_email"}, "test.marketo_source.not_null_stg_marketo__activity_click_email_activity_id.8e4b4af9fd": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "activity_id", "model": "{{ get_where_subquery(ref('stg_marketo__activity_click_email')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__activity_click_email"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "postgres", "schema": "marketo_source_integration_tests_7_dbt_test__audit", "fqn": ["marketo_source", "not_null_stg_marketo__activity_click_email_activity_id"], "unique_id": "test.marketo_source.not_null_stg_marketo__activity_click_email_activity_id.8e4b4af9fd", "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "not_null_stg_marketo__activity_click_email_activity_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "not_null_stg_marketo__activity_click_email_activity_id", "alias": "not_null_stg_marketo__activity_click_email_activity_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__activity_click_email"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/not_null_stg_marketo__activity_click_email_activity_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.714495, "compiled_code": "\n \n \n\n\n\nselect activity_id\nfrom \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_click_email\"\nwhere activity_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "activity_id", "file_key_name": "models.stg_marketo__activity_click_email"}, "test.marketo_source.unique_stg_marketo__activity_email_bounced_activity_id.28833155c3": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "activity_id", "model": "{{ get_where_subquery(ref('stg_marketo__activity_email_bounced')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__activity_email_bounced"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "postgres", "schema": "marketo_source_integration_tests_7_dbt_test__audit", "fqn": ["marketo_source", "unique_stg_marketo__activity_email_bounced_activity_id"], "unique_id": "test.marketo_source.unique_stg_marketo__activity_email_bounced_activity_id.28833155c3", "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "unique_stg_marketo__activity_email_bounced_activity_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "unique_stg_marketo__activity_email_bounced_activity_id", "alias": "unique_stg_marketo__activity_email_bounced_activity_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__activity_email_bounced"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/unique_stg_marketo__activity_email_bounced_activity_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.715779, "compiled_code": "\n \n \n\nselect\n activity_id as unique_field,\n count(*) as n_records\n\nfrom \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_email_bounced\"\nwhere activity_id is not null\ngroup by activity_id\nhaving count(*) > 1\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "activity_id", "file_key_name": "models.stg_marketo__activity_email_bounced"}, "test.marketo_source.not_null_stg_marketo__activity_email_bounced_activity_id.578b8cddf2": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "activity_id", "model": "{{ get_where_subquery(ref('stg_marketo__activity_email_bounced')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__activity_email_bounced"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "postgres", "schema": "marketo_source_integration_tests_7_dbt_test__audit", "fqn": ["marketo_source", "not_null_stg_marketo__activity_email_bounced_activity_id"], "unique_id": "test.marketo_source.not_null_stg_marketo__activity_email_bounced_activity_id.578b8cddf2", "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "not_null_stg_marketo__activity_email_bounced_activity_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "not_null_stg_marketo__activity_email_bounced_activity_id", "alias": "not_null_stg_marketo__activity_email_bounced_activity_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__activity_email_bounced"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/not_null_stg_marketo__activity_email_bounced_activity_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.7167518, "compiled_code": "\n \n \n\n\n\nselect activity_id\nfrom \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_email_bounced\"\nwhere activity_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "activity_id", "file_key_name": "models.stg_marketo__activity_email_bounced"}, "test.marketo_source.unique_stg_marketo__activity_email_delivered_activity_id.6f715c1b87": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "activity_id", "model": "{{ get_where_subquery(ref('stg_marketo__activity_email_delivered')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__activity_email_delivered"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "postgres", "schema": "marketo_source_integration_tests_7_dbt_test__audit", "fqn": ["marketo_source", "unique_stg_marketo__activity_email_delivered_activity_id"], "unique_id": "test.marketo_source.unique_stg_marketo__activity_email_delivered_activity_id.6f715c1b87", "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "unique_stg_marketo__activity_email_delivered_activity_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "unique_stg_marketo__activity_email_delivered_activity_id", "alias": "unique_stg_marketo__activity_email_delivered_activity_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__activity_email_delivered"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/unique_stg_marketo__activity_email_delivered_activity_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.7177029, "compiled_code": "\n \n \n\nselect\n activity_id as unique_field,\n count(*) as n_records\n\nfrom \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_email_delivered\"\nwhere activity_id is not null\ngroup by activity_id\nhaving count(*) > 1\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "activity_id", "file_key_name": "models.stg_marketo__activity_email_delivered"}, "test.marketo_source.not_null_stg_marketo__activity_email_delivered_activity_id.138e450885": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "activity_id", "model": "{{ get_where_subquery(ref('stg_marketo__activity_email_delivered')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__activity_email_delivered"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "postgres", "schema": "marketo_source_integration_tests_7_dbt_test__audit", "fqn": ["marketo_source", "not_null_stg_marketo__activity_email_delivered_activity_id"], "unique_id": "test.marketo_source.not_null_stg_marketo__activity_email_delivered_activity_id.138e450885", "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "not_null_stg_marketo__activity_email_delivered_activity_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "not_null_stg_marketo__activity_email_delivered_activity_id", "alias": "not_null_stg_marketo__activity_email_delivered_activity_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__activity_email_delivered"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/not_null_stg_marketo__activity_email_delivered_activity_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.718674, "compiled_code": "\n \n \n\n\n\nselect activity_id\nfrom \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_email_delivered\"\nwhere activity_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "activity_id", "file_key_name": "models.stg_marketo__activity_email_delivered"}, "test.marketo_source.unique_stg_marketo__activity_open_email_activity_id.d48e7e93e6": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "activity_id", "model": "{{ get_where_subquery(ref('stg_marketo__activity_open_email')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__activity_open_email"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "postgres", "schema": "marketo_source_integration_tests_7_dbt_test__audit", "fqn": ["marketo_source", "unique_stg_marketo__activity_open_email_activity_id"], "unique_id": "test.marketo_source.unique_stg_marketo__activity_open_email_activity_id.d48e7e93e6", "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "unique_stg_marketo__activity_open_email_activity_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "unique_stg_marketo__activity_open_email_activity_id", "alias": "unique_stg_marketo__activity_open_email_activity_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__activity_open_email"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/unique_stg_marketo__activity_open_email_activity_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.7198222, "compiled_code": "\n \n \n\nselect\n activity_id as unique_field,\n count(*) as n_records\n\nfrom \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_open_email\"\nwhere activity_id is not null\ngroup by activity_id\nhaving count(*) > 1\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "activity_id", "file_key_name": "models.stg_marketo__activity_open_email"}, "test.marketo_source.not_null_stg_marketo__activity_open_email_activity_id.72e7514396": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "activity_id", "model": "{{ get_where_subquery(ref('stg_marketo__activity_open_email')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__activity_open_email"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "postgres", "schema": "marketo_source_integration_tests_7_dbt_test__audit", "fqn": ["marketo_source", "not_null_stg_marketo__activity_open_email_activity_id"], "unique_id": "test.marketo_source.not_null_stg_marketo__activity_open_email_activity_id.72e7514396", "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "not_null_stg_marketo__activity_open_email_activity_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "not_null_stg_marketo__activity_open_email_activity_id", "alias": "not_null_stg_marketo__activity_open_email_activity_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__activity_open_email"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/not_null_stg_marketo__activity_open_email_activity_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.720798, "compiled_code": "\n \n \n\n\n\nselect activity_id\nfrom \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_open_email\"\nwhere activity_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "activity_id", "file_key_name": "models.stg_marketo__activity_open_email"}, "test.marketo_source.unique_stg_marketo__activity_send_email_activity_id.bd25ee45d1": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "activity_id", "model": "{{ get_where_subquery(ref('stg_marketo__activity_send_email')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__activity_send_email"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "postgres", "schema": "marketo_source_integration_tests_7_dbt_test__audit", "fqn": ["marketo_source", "unique_stg_marketo__activity_send_email_activity_id"], "unique_id": "test.marketo_source.unique_stg_marketo__activity_send_email_activity_id.bd25ee45d1", "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "unique_stg_marketo__activity_send_email_activity_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "unique_stg_marketo__activity_send_email_activity_id", "alias": "unique_stg_marketo__activity_send_email_activity_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__activity_send_email"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/unique_stg_marketo__activity_send_email_activity_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.721792, "compiled_code": "\n \n \n\nselect\n activity_id as unique_field,\n count(*) as n_records\n\nfrom \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_send_email\"\nwhere activity_id is not null\ngroup by activity_id\nhaving count(*) > 1\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "activity_id", "file_key_name": "models.stg_marketo__activity_send_email"}, "test.marketo_source.not_null_stg_marketo__activity_send_email_activity_id.4eaf534bc8": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "activity_id", "model": "{{ get_where_subquery(ref('stg_marketo__activity_send_email')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__activity_send_email"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "postgres", "schema": "marketo_source_integration_tests_7_dbt_test__audit", "fqn": ["marketo_source", "not_null_stg_marketo__activity_send_email_activity_id"], "unique_id": "test.marketo_source.not_null_stg_marketo__activity_send_email_activity_id.4eaf534bc8", "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "not_null_stg_marketo__activity_send_email_activity_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "not_null_stg_marketo__activity_send_email_activity_id", "alias": "not_null_stg_marketo__activity_send_email_activity_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__activity_send_email"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/not_null_stg_marketo__activity_send_email_activity_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.722757, "compiled_code": "\n \n \n\n\n\nselect activity_id\nfrom \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_send_email\"\nwhere activity_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "activity_id", "file_key_name": "models.stg_marketo__activity_send_email"}, "test.marketo_source.unique_stg_marketo__activity_unsubscribe_email_activity_id.a3bca07e06": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "activity_id", "model": "{{ get_where_subquery(ref('stg_marketo__activity_unsubscribe_email')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__activity_unsubscribe_email"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "postgres", "schema": "marketo_source_integration_tests_7_dbt_test__audit", "fqn": ["marketo_source", "unique_stg_marketo__activity_unsubscribe_email_activity_id"], "unique_id": "test.marketo_source.unique_stg_marketo__activity_unsubscribe_email_activity_id.a3bca07e06", "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "unique_stg_marketo__activity_unsubscribe_email_activity_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "unique_stg_marketo__activity_unsubscribe_email_activity_id", "alias": "unique_stg_marketo__activity_unsubscribe_email_activity_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__activity_unsubscribe_email"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/unique_stg_marketo__activity_unsubscribe_email_activity_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.723849, "compiled_code": "\n \n \n\nselect\n activity_id as unique_field,\n count(*) as n_records\n\nfrom \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_unsubscribe_email\"\nwhere activity_id is not null\ngroup by activity_id\nhaving count(*) > 1\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "activity_id", "file_key_name": "models.stg_marketo__activity_unsubscribe_email"}, "test.marketo_source.not_null_stg_marketo__activity_unsubscribe_email_activity_id.a31edf42c0": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "activity_id", "model": "{{ get_where_subquery(ref('stg_marketo__activity_unsubscribe_email')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__activity_unsubscribe_email"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "postgres", "schema": "marketo_source_integration_tests_7_dbt_test__audit", "fqn": ["marketo_source", "not_null_stg_marketo__activity_unsubscribe_email_activity_id"], "unique_id": "test.marketo_source.not_null_stg_marketo__activity_unsubscribe_email_activity_id.a31edf42c0", "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "not_null_stg_marketo__activity_unsubscribe_email_activity_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "not_null_stg_marketo__activity_unsubscribe_email_activity_id", "alias": "not_null_stg_marketo__activity_unsubscribe_email_activity_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__activity_unsubscribe_email"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/not_null_stg_marketo__activity_unsubscribe_email_activity_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.724941, "compiled_code": "\n \n \n\n\n\nselect activity_id\nfrom \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__activity_unsubscribe_email\"\nwhere activity_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "activity_id", "file_key_name": "models.stg_marketo__activity_unsubscribe_email"}, "test.marketo_source.unique_stg_marketo__campaigns_campaign_id.58c604f925": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "campaign_id", "model": "{{ get_where_subquery(ref('stg_marketo__campaigns')) }}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique"], "nodes": []}, "config": {"enabled": false, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "postgres", "schema": "marketo_source_integration_tests_7_dbt_test__audit", "fqn": ["marketo_source", "unique_stg_marketo__campaigns_campaign_id"], "unique_id": "test.marketo_source.unique_stg_marketo__campaigns_campaign_id.58c604f925", "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "unique_stg_marketo__campaigns_campaign_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "unique_stg_marketo__campaigns_campaign_id", "alias": "unique_stg_marketo__campaigns_campaign_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__campaigns"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.725973, "column_name": "campaign_id", "file_key_name": "models.stg_marketo__campaigns"}, "test.marketo_source.not_null_stg_marketo__campaigns_campaign_id.9599619112": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "campaign_id", "model": "{{ get_where_subquery(ref('stg_marketo__campaigns')) }}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": []}, "config": {"enabled": false, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "postgres", "schema": "marketo_source_integration_tests_7_dbt_test__audit", "fqn": ["marketo_source", "not_null_stg_marketo__campaigns_campaign_id"], "unique_id": "test.marketo_source.not_null_stg_marketo__campaigns_campaign_id.9599619112", "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "not_null_stg_marketo__campaigns_campaign_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "not_null_stg_marketo__campaigns_campaign_id", "alias": "not_null_stg_marketo__campaigns_campaign_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__campaigns"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.726979, "column_name": "campaign_id", "file_key_name": "models.stg_marketo__campaigns"}, "test.marketo_source.unique_stg_marketo__email_template_history_email_template_history_id.7e3c0524e2": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "email_template_history_id", "model": "{{ get_where_subquery(ref('stg_marketo__email_template_history')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__email_template_history"]}, "config": {"enabled": true, "alias": "unique_stg_marketo__email_temp_c5e4520ae792d796c7a93ad4ff601e7e", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "postgres", "schema": "marketo_source_integration_tests_7_dbt_test__audit", "fqn": ["marketo_source", "unique_stg_marketo__email_template_history_email_template_history_id"], "unique_id": "test.marketo_source.unique_stg_marketo__email_template_history_email_template_history_id.7e3c0524e2", "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}{{ config(alias=\"unique_stg_marketo__email_temp_c5e4520ae792d796c7a93ad4ff601e7e\") }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "unique_stg_marketo__email_temp_c5e4520ae792d796c7a93ad4ff601e7e.sql", "original_file_path": "models/stg_marketo.yml", "name": "unique_stg_marketo__email_template_history_email_template_history_id", "alias": "unique_stg_marketo__email_temp_c5e4520ae792d796c7a93ad4ff601e7e", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__email_template_history"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/unique_stg_marketo__email_temp_c5e4520ae792d796c7a93ad4ff601e7e.sql", "build_path": null, "deferred": false, "unrendered_config": {"alias": "unique_stg_marketo__email_temp_c5e4520ae792d796c7a93ad4ff601e7e"}, "created_at": 1671209461.728145, "compiled_code": "\n \n \n\nselect\n email_template_history_id as unique_field,\n count(*) as n_records\n\nfrom \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__email_template_history\"\nwhere email_template_history_id is not null\ngroup by email_template_history_id\nhaving count(*) > 1\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "email_template_history_id", "file_key_name": "models.stg_marketo__email_template_history"}, "test.marketo_source.not_null_stg_marketo__email_template_history_email_template_history_id.dcab273dfa": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "email_template_history_id", "model": "{{ get_where_subquery(ref('stg_marketo__email_template_history')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__email_template_history"]}, "config": {"enabled": true, "alias": "not_null_stg_marketo__email_te_80ee2025020122dcfd13af1d9e7d57cd", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "postgres", "schema": "marketo_source_integration_tests_7_dbt_test__audit", "fqn": ["marketo_source", "not_null_stg_marketo__email_template_history_email_template_history_id"], "unique_id": "test.marketo_source.not_null_stg_marketo__email_template_history_email_template_history_id.dcab273dfa", "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_stg_marketo__email_te_80ee2025020122dcfd13af1d9e7d57cd\") }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "not_null_stg_marketo__email_te_80ee2025020122dcfd13af1d9e7d57cd.sql", "original_file_path": "models/stg_marketo.yml", "name": "not_null_stg_marketo__email_template_history_email_template_history_id", "alias": "not_null_stg_marketo__email_te_80ee2025020122dcfd13af1d9e7d57cd", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__email_template_history"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/not_null_stg_marketo__email_te_80ee2025020122dcfd13af1d9e7d57cd.sql", "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_stg_marketo__email_te_80ee2025020122dcfd13af1d9e7d57cd"}, "created_at": 1671209461.7291598, "compiled_code": "\n \n \n\n\n\nselect email_template_history_id\nfrom \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__email_template_history\"\nwhere email_template_history_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "email_template_history_id", "file_key_name": "models.stg_marketo__email_template_history"}, "test.marketo_source.unique_stg_marketo__lead_describe_lead_describe_id.4f0a7f9cc1": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "lead_describe_id", "model": "{{ get_where_subquery(ref('stg_marketo__lead_describe')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__lead_describe"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "postgres", "schema": "marketo_source_integration_tests_7_dbt_test__audit", "fqn": ["marketo_source", "unique_stg_marketo__lead_describe_lead_describe_id"], "unique_id": "test.marketo_source.unique_stg_marketo__lead_describe_lead_describe_id.4f0a7f9cc1", "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "unique_stg_marketo__lead_describe_lead_describe_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "unique_stg_marketo__lead_describe_lead_describe_id", "alias": "unique_stg_marketo__lead_describe_lead_describe_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__lead_describe"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/unique_stg_marketo__lead_describe_lead_describe_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.7301629, "compiled_code": "\n \n \n\nselect\n lead_describe_id as unique_field,\n count(*) as n_records\n\nfrom \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__lead_describe\"\nwhere lead_describe_id is not null\ngroup by lead_describe_id\nhaving count(*) > 1\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "lead_describe_id", "file_key_name": "models.stg_marketo__lead_describe"}, "test.marketo_source.not_null_stg_marketo__lead_describe_lead_describe_id.37612f6879": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "lead_describe_id", "model": "{{ get_where_subquery(ref('stg_marketo__lead_describe')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__lead_describe"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "postgres", "schema": "marketo_source_integration_tests_7_dbt_test__audit", "fqn": ["marketo_source", "not_null_stg_marketo__lead_describe_lead_describe_id"], "unique_id": "test.marketo_source.not_null_stg_marketo__lead_describe_lead_describe_id.37612f6879", "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "not_null_stg_marketo__lead_describe_lead_describe_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "not_null_stg_marketo__lead_describe_lead_describe_id", "alias": "not_null_stg_marketo__lead_describe_lead_describe_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__lead_describe"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/not_null_stg_marketo__lead_describe_lead_describe_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.731146, "compiled_code": "\n \n \n\n\n\nselect lead_describe_id\nfrom \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__lead_describe\"\nwhere lead_describe_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "lead_describe_id", "file_key_name": "models.stg_marketo__lead_describe"}, "test.marketo_source.unique_stg_marketo__lead_lead_id.1a4c20db9f": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "lead_id", "model": "{{ get_where_subquery(ref('stg_marketo__lead')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__lead"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "postgres", "schema": "marketo_source_integration_tests_7_dbt_test__audit", "fqn": ["marketo_source", "unique_stg_marketo__lead_lead_id"], "unique_id": "test.marketo_source.unique_stg_marketo__lead_lead_id.1a4c20db9f", "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "unique_stg_marketo__lead_lead_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "unique_stg_marketo__lead_lead_id", "alias": "unique_stg_marketo__lead_lead_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__lead"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/unique_stg_marketo__lead_lead_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.73227, "compiled_code": "\n \n \n\nselect\n lead_id as unique_field,\n count(*) as n_records\n\nfrom \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__lead\"\nwhere lead_id is not null\ngroup by lead_id\nhaving count(*) > 1\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "lead_id", "file_key_name": "models.stg_marketo__lead"}, "test.marketo_source.not_null_stg_marketo__lead_lead_id.a539cbf055": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "lead_id", "model": "{{ get_where_subquery(ref('stg_marketo__lead')) }}"}, "namespace": null}, "compiled": true, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.marketo_source.stg_marketo__lead"]}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "postgres", "schema": "marketo_source_integration_tests_7_dbt_test__audit", "fqn": ["marketo_source", "not_null_stg_marketo__lead_lead_id"], "unique_id": "test.marketo_source.not_null_stg_marketo__lead_lead_id.a539cbf055", "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "not_null_stg_marketo__lead_lead_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "not_null_stg_marketo__lead_lead_id", "alias": "not_null_stg_marketo__lead_lead_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__lead"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": "target/compiled/marketo_source/models/stg_marketo.yml/not_null_stg_marketo__lead_lead_id.sql", "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.733265, "compiled_code": "\n \n \n\n\n\nselect lead_id\nfrom \"postgres\".\"marketo_source_integration_tests_7_marketo_source\".\"stg_marketo__lead\"\nwhere lead_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": null, "column_name": "lead_id", "file_key_name": "models.stg_marketo__lead"}, "test.marketo_source.unique_stg_marketo__program_program_id.20616f7b2c": {"test_metadata": {"name": "unique", "kwargs": {"column_name": "program_id", "model": "{{ get_where_subquery(ref('stg_marketo__program')) }}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique"], "nodes": []}, "config": {"enabled": false, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "postgres", "schema": "marketo_source_integration_tests_7_dbt_test__audit", "fqn": ["marketo_source", "unique_stg_marketo__program_program_id"], "unique_id": "test.marketo_source.unique_stg_marketo__program_program_id.20616f7b2c", "raw_code": "{{ test_unique(**_dbt_generic_test_kwargs) }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "unique_stg_marketo__program_program_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "unique_stg_marketo__program_program_id", "alias": "unique_stg_marketo__program_program_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__program"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.734256, "column_name": "program_id", "file_key_name": "models.stg_marketo__program"}, "test.marketo_source.not_null_stg_marketo__program_program_id.882bad918f": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "program_id", "model": "{{ get_where_subquery(ref('stg_marketo__program')) }}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": []}, "config": {"enabled": false, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "materialized": "test", "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "database": "postgres", "schema": "marketo_source_integration_tests_7_dbt_test__audit", "fqn": ["marketo_source", "not_null_stg_marketo__program_program_id"], "unique_id": "test.marketo_source.not_null_stg_marketo__program_program_id.882bad918f", "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "not_null_stg_marketo__program_program_id.sql", "original_file_path": "models/stg_marketo.yml", "name": "not_null_stg_marketo__program_program_id", "alias": "not_null_stg_marketo__program_program_id", "checksum": {"name": "none", "checksum": ""}, "tags": [], "refs": [["stg_marketo__program"]], "sources": [], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1671209461.735245, "column_name": "program_id", "file_key_name": "models.stg_marketo__program"}}, "sources": {"source.marketo_source.marketo.lead": {"fqn": ["marketo_source", "marketo", "lead"], "database": "postgres", "schema": "marketo_source_integration_tests_7", "unique_id": "source.marketo_source.marketo.lead", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "models/src_marketo.yml", "original_file_path": "models/src_marketo.yml", "name": "lead", "source_name": "marketo", "source_description": "", "loader": "", "identifier": "marketo_lead_data", "resource_type": "source", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table with all Marketo leads.", "columns": {"id": {"name": "id", "description": "Unique integer id of a lead record.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "The timestamp each lead object was last updated at.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"marketo_source_integration_tests_7\".\"marketo_lead_data\"", "created_at": 1671209461.736774}, "source.marketo_source.marketo.lead_describe": {"fqn": ["marketo_source", "marketo", "lead_describe"], "database": "postgres", "schema": "marketo_source_integration_tests_7", "unique_id": "source.marketo_source.marketo.lead_describe", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "models/src_marketo.yml", "original_file_path": "models/src_marketo.yml", "name": "lead_describe", "source_name": "marketo", "source_description": "", "loader": "", "identifier": "marketo_lead_describe_data", "resource_type": "source", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table with metadata about lead object columns", "columns": {"data_type": {"name": "data_type", "description": "Datatype of the field.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "display_name": {"name": "display_name", "description": "UI display-name of the field.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "id": {"name": "id", "description": "Unique integer id of the field.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "length": {"name": "length", "description": "Max length of the field. Only applicable to text, string, and text area.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "restname": {"name": "restname", "description": "Description of REST API usage attributes.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "restread_only": {"name": "restread_only", "description": "Whether the field is only available via the REST API.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "soapname": {"name": "soapname", "description": "Description of SOAP API usage attributes.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "soapread_only": {"name": "soapread_only", "description": "Whether the field is only available via the SOAP API.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"marketo_source_integration_tests_7\".\"marketo_lead_describe_data\"", "created_at": 1671209461.73688}, "source.marketo_source.marketo.activity_change_data_value": {"fqn": ["marketo_source", "marketo", "activity_change_data_value"], "database": "postgres", "schema": "marketo_source_integration_tests_7", "unique_id": "source.marketo_source.marketo.activity_change_data_value", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "models/src_marketo.yml", "original_file_path": "models/src_marketo.yml", "name": "activity_change_data_value", "source_name": "marketo", "source_description": "", "loader": "", "identifier": "marketo_activity_change_data_value_data", "resource_type": "source", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table with data value changes from the leads object.", "columns": {"api_method_name": {"name": "api_method_name", "description": "API method used for change, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_date": {"name": "activity_date", "description": "Timestamp of the actvity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the related campaign, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "id": {"name": "id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "Id of the lead associated to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "modifying_user": {"name": "modifying_user", "description": "The user who instigated the change, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "new_value": {"name": "new_value", "description": "New value after the change.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "old_value": {"name": "old_value", "description": "Old value before the change.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "Value of the primary attribute.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "ID of the primary attribute field.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "reason": {"name": "reason", "description": "Reason for the data change.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "request_id": {"name": "request_id", "description": "ID of the request made.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"marketo_source_integration_tests_7\".\"marketo_activity_change_data_value_data\"", "created_at": 1671209461.7369611}, "source.marketo_source.marketo.campaign": {"fqn": ["marketo_source", "marketo", "campaign"], "database": "postgres", "schema": "marketo_source_integration_tests_7", "unique_id": "source.marketo_source.marketo.campaign", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "models/src_marketo.yml", "original_file_path": "models/src_marketo.yml", "name": "campaign", "source_name": "marketo", "source_description": "", "loader": "", "identifier": "marketo_campaign_data", "resource_type": "source", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table with all Marketo campaigns.", "columns": {"active": {"name": "active", "description": "Whether the campaign is active. Only applicable to trigger campaigns.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "Timestamp when the campaign was created.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "description": {"name": "description", "description": "Description of the campaign", "meta": {}, "data_type": null, "quote": null, "tags": []}, "id": {"name": "id", "description": "Unique integer ID of the campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "name": {"name": "name", "description": "Name of the campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "program_id": {"name": "program_id", "description": "ID of the parent program, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "program_name": {"name": "program_name", "description": "Name of the parent program, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "type": {"name": "type", "description": "Type of campaign, either 'batch' or 'trigger'.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Timestamp when the campaign was most recently updated.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "workspace_name": {"name": "workspace_name", "description": "Name of the parent workspace, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"marketo_source_integration_tests_7\".\"marketo_campaign_data\"", "created_at": 1671209461.737032}, "source.marketo_source.marketo.program": {"fqn": ["marketo_source", "marketo", "program"], "database": "postgres", "schema": "marketo_source_integration_tests_7", "unique_id": "source.marketo_source.marketo.program", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "models/src_marketo.yml", "original_file_path": "models/src_marketo.yml", "name": "program", "source_name": "marketo", "source_description": "", "loader": "", "identifier": "marketo_program_data", "resource_type": "source", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table with all Marketo programs.", "columns": {"channel": {"name": "channel", "description": "Channel of the program.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "Timestamp the program was created at", "meta": {}, "data_type": null, "quote": null, "tags": []}, "description": {"name": "description", "description": "Description of the program.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "end_date": {"name": "end_date", "description": "End date of the program. Applicable to event, email, and webinar type programs.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "id": {"name": "id", "description": "ID of the program.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "name": {"name": "name", "description": "Name of the program.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "sfdc_id": {"name": "sfdc_id", "description": "SFDC id of the program if linked to an SFDC campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "sfdc_name": {"name": "sfdc_name", "description": "Name of the linked SFDC campaign if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "start_date": {"name": "start_date", "description": "Start date of program. Applicable to event, email and webinar type programs.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "status": {"name": "status", "description": "Status of the program. Only valid for Email and engagement program types.\nAllowed values: locked, unlocked, on, off\n", "meta": {}, "data_type": null, "quote": null, "tags": []}, "type": {"name": "type", "description": "Type of the program. Allowed values: program, event, webinar, nurture\n", "meta": {}, "data_type": null, "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Timestamp the program was most recently updated.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "url": {"name": "url", "description": "URL of the program in the Marketo UI.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "workspace": {"name": "workspace", "description": "Name of the workspace.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"marketo_source_integration_tests_7\".\"marketo_program_data\"", "created_at": 1671209461.737107}, "source.marketo_source.marketo.email_template_history": {"fqn": ["marketo_source", "marketo", "email_template_history"], "database": "postgres", "schema": "marketo_source_integration_tests_7", "unique_id": "source.marketo_source.marketo.email_template_history", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "models/src_marketo.yml", "original_file_path": "models/src_marketo.yml", "name": "email_template_history", "source_name": "marketo", "source_description": "", "loader": "", "identifier": "marketo_email_template_history_data", "resource_type": "source", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table with a history of email template versions.", "columns": {"created_at": {"name": "created_at", "description": "Timestamp the email template was created.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "description": {"name": "description", "description": "Description of the email template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "folder_folder_name": {"name": "folder_folder_name", "description": "The name of the email template's folder.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "folder_id": {"name": "folder_id", "description": "The ID of the email template's folder.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "folder_type": {"name": "folder_type", "description": "The type of the email template's folder.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "folder_value": {"name": "folder_value", "description": "The value of the email template's folder.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "from_email": {"name": "from_email", "description": "The 'From' address of the email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "from_name": {"name": "from_name", "description": "The 'From' name of the email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "id": {"name": "id", "description": "ID of the email template", "meta": {}, "data_type": null, "quote": null, "tags": []}, "name": {"name": "name", "description": "Name of the email template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "operational": {"name": "operational", "description": "Whether the email is operational. Operational emails bypass unsubscribe status. Defaults to false.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "program_id": {"name": "program_id", "description": "The ID of the email template's program.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "publish_to_msi": {"name": "publish_to_msi", "description": "Whether the email is published to Marketo Sales Insight.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "reply_email": {"name": "reply_email", "description": "Reply-To address of the Email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "status": {"name": "status", "description": "Status filter for draft or approved versions.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "subject": {"name": "subject", "description": "Subject line of the email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "template": {"name": "template", "description": "ID of the parent template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "text_only": {"name": "text_only", "description": "Setting to include text-only version of email when sent.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "updated_at": {"name": "updated_at", "description": "Timestamp the email template was last updated.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "url": {"name": "url", "description": "URL of the email template in the Marketo UI.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "version": {"name": "version", "description": "The type version of the email, either '1' or '2'.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "web_view": {"name": "web_view", "description": "Whether 'View as Webpage' function is enabled for the email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "workspace": {"name": "workspace", "description": "Name of the workspace.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"marketo_source_integration_tests_7\".\"marketo_email_template_history_data\"", "created_at": 1671209461.737194}, "source.marketo_source.marketo.activity_click_email": {"fqn": ["marketo_source", "marketo", "activity_click_email"], "database": "postgres", "schema": "marketo_source_integration_tests_7", "unique_id": "source.marketo_source.marketo.activity_click_email", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "models/src_marketo.yml", "original_file_path": "models/src_marketo.yml", "name": "activity_click_email", "source_name": "marketo", "source_description": "", "loader": "", "identifier": "marketo_activity_click_email_data", "resource_type": "source", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table with email click activities.", "columns": {"activity_date": {"name": "activity_date", "description": "The date of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "The ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the email's campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_run_id": {"name": "campaign_run_id", "description": "The ID of the email's campaign run.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "choice_number": {"name": "choice_number", "description": "The choice number of the current step that triggered the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "device": {"name": "device", "description": "The device type the activity occurred on.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_id": {"name": "email_template_id", "description": "The ID of the email's template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "id": {"name": "id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "is_mobile_device": {"name": "is_mobile_device", "description": "Whether the activity occurred on a mobile device.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "link": {"name": "link", "description": "The URL of the link clicked.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "step_id": {"name": "step_id", "description": "The Id of the current step in the flow.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "user_agent": {"name": "user_agent", "description": "The Web browser user agent information obtained when the lead clicked the email link.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"marketo_source_integration_tests_7\".\"marketo_activity_click_email_data\"", "created_at": 1671209461.73727}, "source.marketo_source.marketo.activity_email_delivered": {"fqn": ["marketo_source", "marketo", "activity_email_delivered"], "database": "postgres", "schema": "marketo_source_integration_tests_7", "unique_id": "source.marketo_source.marketo.activity_email_delivered", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "models/src_marketo.yml", "original_file_path": "models/src_marketo.yml", "name": "activity_email_delivered", "source_name": "marketo", "source_description": "", "loader": "", "identifier": "marketo_activity_email_delivered_data", "resource_type": "source", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table with email delivery activities.", "columns": {"activity_date": {"name": "activity_date", "description": "The timestamp the email was delivered.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "The ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the email's campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_run_id": {"name": "campaign_run_id", "description": "The ID of the email's campaign run.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "choice_number": {"name": "choice_number", "description": "The choice number of the current step that triggered the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_id": {"name": "email_template_id", "description": "The ID of the email's template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "id": {"name": "id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "step_id": {"name": "step_id", "description": "The Id of the current step in the flow.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"marketo_source_integration_tests_7\".\"marketo_activity_email_delivered_data\"", "created_at": 1671209461.73734}, "source.marketo_source.marketo.activity_email_bounced": {"fqn": ["marketo_source", "marketo", "activity_email_bounced"], "database": "postgres", "schema": "marketo_source_integration_tests_7", "unique_id": "source.marketo_source.marketo.activity_email_bounced", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "models/src_marketo.yml", "original_file_path": "models/src_marketo.yml", "name": "activity_email_bounced", "source_name": "marketo", "source_description": "", "loader": "", "identifier": "marketo_activity_email_bounced_data", "resource_type": "source", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table with email bounce activities.", "columns": {"activity_date": {"name": "activity_date", "description": "The timestamp the email bounced.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "The ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the email's campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_run_id": {"name": "campaign_run_id", "description": "The ID of the email's campaign run.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "category": {"name": "category", "description": "The category associated with bounced email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "choice_number": {"name": "choice_number", "description": "The choice number of the current step that triggered the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "details": {"name": "details", "description": "Details about why the email bounced.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email": {"name": "email", "description": "The email address that bounced.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_id": {"name": "email_template_id", "description": "The ID of the email's template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "id": {"name": "id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "step_id": {"name": "step_id", "description": "The Id of the current step in the flow.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "subcategory": {"name": "subcategory", "description": "The subcategory associated with bounced email.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"marketo_source_integration_tests_7\".\"marketo_activity_email_bounced_data\"", "created_at": 1671209461.737416}, "source.marketo_source.marketo.activity_open_email": {"fqn": ["marketo_source", "marketo", "activity_open_email"], "database": "postgres", "schema": "marketo_source_integration_tests_7", "unique_id": "source.marketo_source.marketo.activity_open_email", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "models/src_marketo.yml", "original_file_path": "models/src_marketo.yml", "name": "activity_open_email", "source_name": "marketo", "source_description": "", "loader": "", "identifier": "marketo_activity_open_email_data", "resource_type": "source", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table with email bounce activities.", "columns": {"activity_date": {"name": "activity_date", "description": "The timestamp the email was opened.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "The ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the email's campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_run_id": {"name": "campaign_run_id", "description": "The ID of the email's campaign run.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "choice_number": {"name": "choice_number", "description": "The choice number of the current step that triggered the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "device": {"name": "device", "description": "The device that was used to open the email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_id": {"name": "email_template_id", "description": "The ID of the email's template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "id": {"name": "id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "is_mobile_device": {"name": "is_mobile_device", "description": "Identifies whether a mobile device was used to open the email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "platform": {"name": "platform", "description": "The platform that was used to open the email.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "step_id": {"name": "step_id", "description": "The Id of the current step in the flow.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "user_agent": {"name": "user_agent", "description": "The web browser user agent information obtained when the email was opened.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"marketo_source_integration_tests_7\".\"marketo_activity_open_email_data\"", "created_at": 1671209461.737491}, "source.marketo_source.marketo.activity_unsubscribe_email": {"fqn": ["marketo_source", "marketo", "activity_unsubscribe_email"], "database": "postgres", "schema": "marketo_source_integration_tests_7", "unique_id": "source.marketo_source.marketo.activity_unsubscribe_email", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "models/src_marketo.yml", "original_file_path": "models/src_marketo.yml", "name": "activity_unsubscribe_email", "source_name": "marketo", "source_description": "", "loader": "", "identifier": "marketo_activity_unsubscribe_email_data", "resource_type": "source", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table with email unsusbscribe activities.", "columns": {"activity_date": {"name": "activity_date", "description": "The timestamp the lead unsubscribed.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "The ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the email's campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_run_id": {"name": "campaign_run_id", "description": "The ID of the email's campaign run.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "client_ip_address": {"name": "client_ip_address", "description": "The IP address of the client that unsubscribed.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_id": {"name": "email_template_id", "description": "The ID of the email's template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "form_fields": {"name": "form_fields", "description": "The query parameters contained within the URL.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "id": {"name": "id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "query_parameters": {"name": "query_parameters", "description": "The query parameters contained within the URL.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "referrer_url": {"name": "referrer_url", "description": "The URL of the referrer used to identify where the form visit originated from.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "user_agent": {"name": "user_agent", "description": "The web browser user agent information obtained when the lead unsubscribed.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "webform_id": {"name": "webform_id", "description": "The ID of the unsubscribe web page.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "webpage_id": {"name": "webpage_id", "description": "The ID of the unsubscribe web form.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"marketo_source_integration_tests_7\".\"marketo_activity_unsubscribe_email_data\"", "created_at": 1671209461.737567}, "source.marketo_source.marketo.activity_send_email": {"fqn": ["marketo_source", "marketo", "activity_send_email"], "database": "postgres", "schema": "marketo_source_integration_tests_7", "unique_id": "source.marketo_source.marketo.activity_send_email", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "models/src_marketo.yml", "original_file_path": "models/src_marketo.yml", "name": "activity_send_email", "source_name": "marketo", "source_description": "", "loader": "", "identifier": "marketo_activity_send_email_data", "resource_type": "source", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table with email send activities.", "columns": {"activity_date": {"name": "activity_date", "description": "The timestamp the email was sent.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "The ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the email's campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_run_id": {"name": "campaign_run_id", "description": "The ID of the email's campaign run.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "choice_number": {"name": "choice_number", "description": "The choice number of the current step that triggered the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "email_template_id": {"name": "email_template_id", "description": "The ID of the email's template.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "id": {"name": "id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "step_id": {"name": "step_id", "description": "The Id of the current step in the flow.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"marketo_source_integration_tests_7\".\"marketo_activity_send_email_data\"", "created_at": 1671209461.737637}, "source.marketo_source.marketo.activity_delete_lead": {"fqn": ["marketo_source", "marketo", "activity_delete_lead"], "database": "postgres", "schema": "marketo_source_integration_tests_7", "unique_id": "source.marketo_source.marketo.activity_delete_lead", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "models/src_marketo.yml", "original_file_path": "models/src_marketo.yml", "name": "activity_delete_lead", "source_name": "marketo", "source_description": "", "loader": "", "identifier": "marketo_activity_delete_lead_data", "resource_type": "source", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table with deleted lead activities", "columns": {"activity_date": {"name": "activity_date", "description": "The timestamp the lead was deleted.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "The ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the campaign related to the activity, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign": {"name": "campaign", "description": "The name of the campaign related to the activity, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "id": {"name": "id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"marketo_source_integration_tests_7\".\"marketo_activity_delete_lead_data\"", "created_at": 1671209461.737702}, "source.marketo_source.marketo.activity_merge_leads": {"fqn": ["marketo_source", "marketo", "activity_merge_leads"], "database": "postgres", "schema": "marketo_source_integration_tests_7", "unique_id": "source.marketo_source.marketo.activity_merge_leads", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "models/src_marketo.yml", "original_file_path": "models/src_marketo.yml", "name": "activity_merge_leads", "source_name": "marketo", "source_description": "", "loader": "", "identifier": "marketo_activity_merge_leads_data", "resource_type": "source", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table with merged lead activities", "columns": {"activity_date": {"name": "activity_date", "description": "The timestamp the lead was deleted.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "activity_type_id": {"name": "activity_type_id", "description": "The ID of the activity type.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_id": {"name": "campaign_id", "description": "The ID of the campaign related to the activity, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "id": {"name": "id", "description": "ID of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "lead_id": {"name": "lead_id", "description": "The ID of the lead related to the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value": {"name": "primary_attribute_value", "description": "The primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "primary_attribute_value_id": {"name": "primary_attribute_value_id", "description": "The ID of the primary attribute of the activity.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "merge_ids": {"name": "merge_ids", "description": "ID of the lead that the lead was merged into.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"marketo_source_integration_tests_7\".\"marketo_activity_merge_leads_data\"", "created_at": 1671209461.737809}}, "macros": {"macro.dbt_postgres.postgres__current_timestamp": {"unique_id": "macro.dbt_postgres.postgres__current_timestamp", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/timestamps.sql", "original_file_path": "macros/timestamps.sql", "name": "postgres__current_timestamp", "macro_sql": "{% macro postgres__current_timestamp() -%}\n now()\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.347489, "supported_languages": null}, "macro.dbt_postgres.postgres__snapshot_string_as_time": {"unique_id": "macro.dbt_postgres.postgres__snapshot_string_as_time", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/timestamps.sql", "original_file_path": "macros/timestamps.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.348254, "supported_languages": null}, "macro.dbt_postgres.postgres__snapshot_get_time": {"unique_id": "macro.dbt_postgres.postgres__snapshot_get_time", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/timestamps.sql", "original_file_path": "macros/timestamps.sql", "name": "postgres__snapshot_get_time", "macro_sql": "{% macro postgres__snapshot_get_time() -%}\n {{ current_timestamp() }}::timestamp without time zone\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.3483882, "supported_languages": null}, "macro.dbt_postgres.postgres__current_timestamp_backcompat": {"unique_id": "macro.dbt_postgres.postgres__current_timestamp_backcompat", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/timestamps.sql", "original_file_path": "macros/timestamps.sql", "name": "postgres__current_timestamp_backcompat", "macro_sql": "{% macro postgres__current_timestamp_backcompat() %}\n current_timestamp::{{ type_timestamp() }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.348505, "supported_languages": null}, "macro.dbt_postgres.postgres__current_timestamp_in_utc_backcompat": {"unique_id": "macro.dbt_postgres.postgres__current_timestamp_in_utc_backcompat", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/timestamps.sql", "original_file_path": "macros/timestamps.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.348623, "supported_languages": null}, "macro.dbt_postgres.postgres__get_catalog": {"unique_id": "macro.dbt_postgres.postgres__get_catalog", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/catalog.sql", "original_file_path": "macros/catalog.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.349932, "supported_languages": null}, "macro.dbt_postgres.postgres_get_relations": {"unique_id": "macro.dbt_postgres.postgres_get_relations", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/relations.sql", "original_file_path": "macros/relations.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.350697, "supported_languages": null}, "macro.dbt_postgres.postgres__create_table_as": {"unique_id": "macro.dbt_postgres.postgres__create_table_as", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "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 as (\n {{ sql }}\n );\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.3566191, "supported_languages": null}, "macro.dbt_postgres.postgres__get_create_index_sql": {"unique_id": "macro.dbt_postgres.postgres__get_create_index_sql", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.357313, "supported_languages": null}, "macro.dbt_postgres.postgres__create_schema": {"unique_id": "macro.dbt_postgres.postgres__create_schema", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.357704, "supported_languages": null}, "macro.dbt_postgres.postgres__drop_schema": {"unique_id": "macro.dbt_postgres.postgres__drop_schema", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.3580532, "supported_languages": null}, "macro.dbt_postgres.postgres__get_columns_in_relation": {"unique_id": "macro.dbt_postgres.postgres__get_columns_in_relation", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.358575, "supported_languages": null}, "macro.dbt_postgres.postgres__list_relations_without_caching": {"unique_id": "macro.dbt_postgres.postgres__list_relations_without_caching", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.3589818, "supported_languages": null}, "macro.dbt_postgres.postgres__information_schema_name": {"unique_id": "macro.dbt_postgres.postgres__information_schema_name", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.359166, "supported_languages": null}, "macro.dbt_postgres.postgres__list_schemas": {"unique_id": "macro.dbt_postgres.postgres__list_schemas", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.359532, "supported_languages": null}, "macro.dbt_postgres.postgres__check_schema_exists": {"unique_id": "macro.dbt_postgres.postgres__check_schema_exists", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.3600378, "supported_languages": null}, "macro.dbt_postgres.postgres__make_relation_with_suffix": {"unique_id": "macro.dbt_postgres.postgres__make_relation_with_suffix", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.361042, "supported_languages": null}, "macro.dbt_postgres.postgres__make_intermediate_relation": {"unique_id": "macro.dbt_postgres.postgres__make_intermediate_relation", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.361374, "supported_languages": null}, "macro.dbt_postgres.postgres__make_temp_relation": {"unique_id": "macro.dbt_postgres.postgres__make_temp_relation", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.3617651, "supported_languages": null}, "macro.dbt_postgres.postgres__make_backup_relation": {"unique_id": "macro.dbt_postgres.postgres__make_backup_relation", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.362081, "supported_languages": null}, "macro.dbt_postgres.postgres_escape_comment": {"unique_id": "macro.dbt_postgres.postgres_escape_comment", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.362657, "supported_languages": null}, "macro.dbt_postgres.postgres__alter_relation_comment": {"unique_id": "macro.dbt_postgres.postgres__alter_relation_comment", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres_escape_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.362925, "supported_languages": null}, "macro.dbt_postgres.postgres__alter_column_comment": {"unique_id": "macro.dbt_postgres.postgres__alter_column_comment", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres_escape_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.363615, "supported_languages": null}, "macro.dbt_postgres.postgres__get_show_grant_sql": {"unique_id": "macro.dbt_postgres.postgres__get_show_grant_sql", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "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", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.363888, "supported_languages": null}, "macro.dbt_postgres.postgres__copy_grants": {"unique_id": "macro.dbt_postgres.postgres__copy_grants", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "name": "postgres__copy_grants", "macro_sql": "{% macro postgres__copy_grants() %}\n {{ return(False) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.3640268, "supported_languages": null}, "macro.dbt_postgres.postgres__get_incremental_default_sql": {"unique_id": "macro.dbt_postgres.postgres__get_incremental_default_sql", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/materializations/incremental_strategies.sql", "original_file_path": "macros/materializations/incremental_strategies.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.364664, "supported_languages": null}, "macro.dbt_postgres.postgres__snapshot_merge_sql": {"unique_id": "macro.dbt_postgres.postgres__snapshot_merge_sql", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/materializations/snapshot_merge.sql", "original_file_path": "macros/materializations/snapshot_merge.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.365519, "supported_languages": null}, "macro.dbt_postgres.postgres__dateadd": {"unique_id": "macro.dbt_postgres.postgres__dateadd", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/utils/dateadd.sql", "original_file_path": "macros/utils/dateadd.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.365834, "supported_languages": null}, "macro.dbt_postgres.postgres__listagg": {"unique_id": "macro.dbt_postgres.postgres__listagg", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/utils/listagg.sql", "original_file_path": "macros/utils/listagg.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.366621, "supported_languages": null}, "macro.dbt_postgres.postgres__datediff": {"unique_id": "macro.dbt_postgres.postgres__datediff", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/utils/datediff.sql", "original_file_path": "macros/utils/datediff.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.datediff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.370189, "supported_languages": null}, "macro.dbt_postgres.postgres__any_value": {"unique_id": "macro.dbt_postgres.postgres__any_value", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/utils/any_value.sql", "original_file_path": "macros/utils/any_value.sql", "name": "postgres__any_value", "macro_sql": "{% macro postgres__any_value(expression) -%}\n\n min({{ expression }})\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.370543, "supported_languages": null}, "macro.dbt_postgres.postgres__last_day": {"unique_id": "macro.dbt_postgres.postgres__last_day", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/utils/last_day.sql", "original_file_path": "macros/utils/last_day.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.371228, "supported_languages": null}, "macro.dbt_postgres.postgres__split_part": {"unique_id": "macro.dbt_postgres.postgres__split_part", "package_name": "dbt_postgres", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/postgres", "path": "macros/utils/split_part.sql", "original_file_path": "macros/utils/split_part.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.371797, "supported_languages": null}, "macro.dbt.run_hooks": {"unique_id": "macro.dbt.run_hooks", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.373114, "supported_languages": null}, "macro.dbt.make_hook_config": {"unique_id": "macro.dbt.make_hook_config", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "name": "make_hook_config", "macro_sql": "{% macro make_hook_config(sql, inside_transaction) %}\n {{ tojson({\"sql\": sql, \"transaction\": inside_transaction}) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.373337, "supported_languages": null}, "macro.dbt.before_begin": {"unique_id": "macro.dbt.before_begin", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "name": "before_begin", "macro_sql": "{% macro before_begin(sql) %}\n {{ make_hook_config(sql, inside_transaction=False) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.make_hook_config"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.373491, "supported_languages": null}, "macro.dbt.in_transaction": {"unique_id": "macro.dbt.in_transaction", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "name": "in_transaction", "macro_sql": "{% macro in_transaction(sql) %}\n {{ make_hook_config(sql, inside_transaction=True) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.make_hook_config"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.373641, "supported_languages": null}, "macro.dbt.after_commit": {"unique_id": "macro.dbt.after_commit", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "name": "after_commit", "macro_sql": "{% macro after_commit(sql) %}\n {{ make_hook_config(sql, inside_transaction=False) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.make_hook_config"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.373785, "supported_languages": null}, "macro.dbt.set_sql_header": {"unique_id": "macro.dbt.set_sql_header", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/configs.sql", "original_file_path": "macros/materializations/configs.sql", "name": "set_sql_header", "macro_sql": "{% macro set_sql_header(config) -%}\n {{ config.set('sql_header', caller()) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.37428, "supported_languages": null}, "macro.dbt.should_full_refresh": {"unique_id": "macro.dbt.should_full_refresh", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/configs.sql", "original_file_path": "macros/materializations/configs.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.374603, "supported_languages": null}, "macro.dbt.should_store_failures": {"unique_id": "macro.dbt.should_store_failures", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/configs.sql", "original_file_path": "macros/materializations/configs.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.374933, "supported_languages": null}, "macro.dbt.snapshot_merge_sql": {"unique_id": "macro.dbt.snapshot_merge_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/snapshot_merge.sql", "original_file_path": "macros/materializations/snapshots/snapshot_merge.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__snapshot_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.375469, "supported_languages": null}, "macro.dbt.default__snapshot_merge_sql": {"unique_id": "macro.dbt.default__snapshot_merge_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/snapshot_merge.sql", "original_file_path": "macros/materializations/snapshots/snapshot_merge.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.3757582, "supported_languages": null}, "macro.dbt.strategy_dispatch": {"unique_id": "macro.dbt.strategy_dispatch", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.3796868, "supported_languages": null}, "macro.dbt.snapshot_hash_arguments": {"unique_id": "macro.dbt.snapshot_hash_arguments", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "name": "snapshot_hash_arguments", "macro_sql": "{% macro snapshot_hash_arguments(args) -%}\n {{ adapter.dispatch('snapshot_hash_arguments', 'dbt')(args) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__snapshot_hash_arguments"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.37994, "supported_languages": null}, "macro.dbt.default__snapshot_hash_arguments": {"unique_id": "macro.dbt.default__snapshot_hash_arguments", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.3802, "supported_languages": null}, "macro.dbt.snapshot_timestamp_strategy": {"unique_id": "macro.dbt.snapshot_timestamp_strategy", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.snapshot_hash_arguments"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.3810098, "supported_languages": null}, "macro.dbt.snapshot_string_as_time": {"unique_id": "macro.dbt.snapshot_string_as_time", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "name": "snapshot_string_as_time", "macro_sql": "{% macro snapshot_string_as_time(timestamp) -%}\n {{ adapter.dispatch('snapshot_string_as_time', 'dbt')(timestamp) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "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": 1671209460.381196, "supported_languages": null}, "macro.dbt.default__snapshot_string_as_time": {"unique_id": "macro.dbt.default__snapshot_string_as_time", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.3814662, "supported_languages": null}, "macro.dbt.snapshot_check_all_get_existing_columns": {"unique_id": "macro.dbt.snapshot_check_all_get_existing_columns", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "name": "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 select {{ check_cols_config | join(', ') }} from ({{ node['compiled_code'] }}) 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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.get_columns_in_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.3831098, "supported_languages": null}, "macro.dbt.snapshot_check_strategy": {"unique_id": "macro.dbt.snapshot_check_strategy", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.408834, "supported_languages": null}, "macro.dbt.create_columns": {"unique_id": "macro.dbt.create_columns", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "name": "create_columns", "macro_sql": "{% macro create_columns(relation, columns) %}\n {{ adapter.dispatch('create_columns', 'dbt')(relation, columns) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__create_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.413276, "supported_languages": null}, "macro.dbt.default__create_columns": {"unique_id": "macro.dbt.default__create_columns", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.4137092, "supported_languages": null}, "macro.dbt.post_snapshot": {"unique_id": "macro.dbt.post_snapshot", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "name": "post_snapshot", "macro_sql": "{% macro post_snapshot(staging_relation) %}\n {{ adapter.dispatch('post_snapshot', 'dbt')(staging_relation) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__post_snapshot"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.413943, "supported_languages": null}, "macro.dbt.default__post_snapshot": {"unique_id": "macro.dbt.default__post_snapshot", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "name": "default__post_snapshot", "macro_sql": "{% macro default__post_snapshot(staging_relation) %}\n {# no-op #}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.414044, "supported_languages": null}, "macro.dbt.get_true_sql": {"unique_id": "macro.dbt.get_true_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "name": "get_true_sql", "macro_sql": "{% macro get_true_sql() %}\n {{ adapter.dispatch('get_true_sql', 'dbt')() }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__get_true_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.414204, "supported_languages": null}, "macro.dbt.default__get_true_sql": {"unique_id": "macro.dbt.default__get_true_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "name": "default__get_true_sql", "macro_sql": "{% macro default__get_true_sql() %}\n {{ return('TRUE') }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.414328, "supported_languages": null}, "macro.dbt.snapshot_staging_table": {"unique_id": "macro.dbt.snapshot_staging_table", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__snapshot_staging_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.414554, "supported_languages": null}, "macro.dbt.default__snapshot_staging_table": {"unique_id": "macro.dbt.default__snapshot_staging_table", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.snapshot_get_time"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.4154801, "supported_languages": null}, "macro.dbt.build_snapshot_table": {"unique_id": "macro.dbt.build_snapshot_table", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "name": "build_snapshot_table", "macro_sql": "{% macro build_snapshot_table(strategy, sql) -%}\n {{ adapter.dispatch('build_snapshot_table', 'dbt')(strategy, sql) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__build_snapshot_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.415686, "supported_languages": null}, "macro.dbt.default__build_snapshot_table": {"unique_id": "macro.dbt.default__build_snapshot_table", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.415951, "supported_languages": null}, "macro.dbt.build_snapshot_staging_table": {"unique_id": "macro.dbt.build_snapshot_staging_table", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.4164102, "supported_languages": null}, "macro.dbt.materialization_snapshot_default": {"unique_id": "macro.dbt.materialization_snapshot_default", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/snapshots/snapshot.sql", "original_file_path": "macros/materializations/snapshots/snapshot.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.422913, "supported_languages": ["sql"]}, "macro.dbt.materialization_test_default": {"unique_id": "macro.dbt.materialization_test_default", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/tests/test.sql", "original_file_path": "macros/materializations/tests/test.sql", "name": "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 -%}", "resource_type": "macro", "tags": [], "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": 1671209460.425323, "supported_languages": ["sql"]}, "macro.dbt.get_test_sql": {"unique_id": "macro.dbt.get_test_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/tests/helpers.sql", "original_file_path": "macros/materializations/tests/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__get_test_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.425919, "supported_languages": null}, "macro.dbt.default__get_test_sql": {"unique_id": "macro.dbt.default__get_test_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/tests/helpers.sql", "original_file_path": "macros/materializations/tests/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.426254, "supported_languages": null}, "macro.dbt.get_where_subquery": {"unique_id": "macro.dbt.get_where_subquery", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/tests/where_subquery.sql", "original_file_path": "macros/materializations/tests/where_subquery.sql", "name": "get_where_subquery", "macro_sql": "{% macro get_where_subquery(relation) -%}\n {% do return(adapter.dispatch('get_where_subquery', 'dbt')(relation)) %}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__get_where_subquery"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.426738, "supported_languages": null}, "macro.dbt.default__get_where_subquery": {"unique_id": "macro.dbt.default__get_where_subquery", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/tests/where_subquery.sql", "original_file_path": "macros/materializations/tests/where_subquery.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.427146, "supported_languages": null}, "macro.dbt.get_quoted_csv": {"unique_id": "macro.dbt.get_quoted_csv", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.428824, "supported_languages": null}, "macro.dbt.diff_columns": {"unique_id": "macro.dbt.diff_columns", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.429415, "supported_languages": null}, "macro.dbt.diff_column_data_types": {"unique_id": "macro.dbt.diff_column_data_types", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.430134, "supported_languages": null}, "macro.dbt.get_merge_update_columns": {"unique_id": "macro.dbt.get_merge_update_columns", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__get_merge_update_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.430391, "supported_languages": null}, "macro.dbt.default__get_merge_update_columns": {"unique_id": "macro.dbt.default__get_merge_update_columns", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.4311612, "supported_languages": null}, "macro.dbt.get_merge_sql": {"unique_id": "macro.dbt.get_merge_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "name": "get_merge_sql", "macro_sql": "{% macro get_merge_sql(target, source, unique_key, dest_columns, predicates=none) -%}\n {{ adapter.dispatch('get_merge_sql', 'dbt')(target, source, unique_key, dest_columns, predicates) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__get_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.4358, "supported_languages": null}, "macro.dbt.default__get_merge_sql": {"unique_id": "macro.dbt.default__get_merge_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "name": "default__get_merge_sql", "macro_sql": "{% macro default__get_merge_sql(target, source, unique_key, dest_columns, predicates) -%}\n {%- set predicates = [] if predicates is none else [] + 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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.4376152, "supported_languages": null}, "macro.dbt.get_delete_insert_merge_sql": {"unique_id": "macro.dbt.get_delete_insert_merge_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "name": "get_delete_insert_merge_sql", "macro_sql": "{% macro get_delete_insert_merge_sql(target, source, unique_key, dest_columns) -%}\n {{ adapter.dispatch('get_delete_insert_merge_sql', 'dbt')(target, source, unique_key, dest_columns) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "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": 1671209460.4378922, "supported_languages": null}, "macro.dbt.default__get_delete_insert_merge_sql": {"unique_id": "macro.dbt.default__get_delete_insert_merge_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "name": "default__get_delete_insert_merge_sql", "macro_sql": "{% macro default__get_delete_insert_merge_sql(target, source, unique_key, dest_columns) -%}\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 );\n {% else %}\n delete from {{ target }}\n where (\n {{ unique_key }}) in (\n select ({{ unique_key }})\n from {{ source }}\n );\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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.get_quoted_csv"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.4386828, "supported_languages": null}, "macro.dbt.get_insert_overwrite_merge_sql": {"unique_id": "macro.dbt.get_insert_overwrite_merge_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.438978, "supported_languages": null}, "macro.dbt.default__get_insert_overwrite_merge_sql": {"unique_id": "macro.dbt.default__get_insert_overwrite_merge_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.get_quoted_csv"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.4396741, "supported_languages": null}, "macro.dbt.is_incremental": {"unique_id": "macro.dbt.is_incremental", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/is_incremental.sql", "original_file_path": "macros/materializations/models/incremental/is_incremental.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.should_full_refresh"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.4405482, "supported_languages": null}, "macro.dbt.get_incremental_append_sql": {"unique_id": "macro.dbt.get_incremental_append_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__get_incremental_append_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.4586828, "supported_languages": null}, "macro.dbt.default__get_incremental_append_sql": {"unique_id": "macro.dbt.default__get_incremental_append_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.get_insert_into_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.458966, "supported_languages": null}, "macro.dbt.get_incremental_delete_insert_sql": {"unique_id": "macro.dbt.get_incremental_delete_insert_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.4591832, "supported_languages": null}, "macro.dbt.default__get_incremental_delete_insert_sql": {"unique_id": "macro.dbt.default__get_incremental_delete_insert_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "name": "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\"])) %}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.get_delete_insert_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.459466, "supported_languages": null}, "macro.dbt.get_incremental_merge_sql": {"unique_id": "macro.dbt.get_incremental_merge_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__get_incremental_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.459667, "supported_languages": null}, "macro.dbt.default__get_incremental_merge_sql": {"unique_id": "macro.dbt.default__get_incremental_merge_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "name": "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\"])) %}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.get_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.459946, "supported_languages": null}, "macro.dbt.get_incremental_insert_overwrite_sql": {"unique_id": "macro.dbt.get_incremental_insert_overwrite_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.460143, "supported_languages": null}, "macro.dbt.default__get_incremental_insert_overwrite_sql": {"unique_id": "macro.dbt.default__get_incremental_insert_overwrite_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "name": "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[\"predicates\"])) %}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.get_insert_overwrite_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.460414, "supported_languages": null}, "macro.dbt.get_incremental_default_sql": {"unique_id": "macro.dbt.get_incremental_default_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.460609, "supported_languages": null}, "macro.dbt.default__get_incremental_default_sql": {"unique_id": "macro.dbt.default__get_incremental_default_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.get_incremental_append_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.460768, "supported_languages": null}, "macro.dbt.get_insert_into_sql": {"unique_id": "macro.dbt.get_insert_into_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.get_quoted_csv"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.461078, "supported_languages": null}, "macro.dbt.materialization_incremental_default": {"unique_id": "macro.dbt.materialization_incremental_default", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/incremental.sql", "original_file_path": "macros/materializations/models/incremental/incremental.sql", "name": "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('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, '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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.466409, "supported_languages": ["sql"]}, "macro.dbt.incremental_validate_on_schema_change": {"unique_id": "macro.dbt.incremental_validate_on_schema_change", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/on_schema_change.sql", "original_file_path": "macros/materializations/models/incremental/on_schema_change.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.472403, "supported_languages": null}, "macro.dbt.check_for_schema_changes": {"unique_id": "macro.dbt.check_for_schema_changes", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/on_schema_change.sql", "original_file_path": "macros/materializations/models/incremental/on_schema_change.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.4737039, "supported_languages": null}, "macro.dbt.sync_column_schemas": {"unique_id": "macro.dbt.sync_column_schemas", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/on_schema_change.sql", "original_file_path": "macros/materializations/models/incremental/on_schema_change.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.4749901, "supported_languages": null}, "macro.dbt.process_schema_changes": {"unique_id": "macro.dbt.process_schema_changes", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/incremental/on_schema_change.sql", "original_file_path": "macros/materializations/models/incremental/on_schema_change.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.475907, "supported_languages": null}, "macro.dbt.materialization_table_default": {"unique_id": "macro.dbt.materialization_table_default", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/table/table.sql", "original_file_path": "macros/materializations/models/table/table.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.478992, "supported_languages": ["sql"]}, "macro.dbt.get_create_table_as_sql": {"unique_id": "macro.dbt.get_create_table_as_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/table/create_table_as.sql", "original_file_path": "macros/materializations/models/table/create_table_as.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.479685, "supported_languages": null}, "macro.dbt.default__get_create_table_as_sql": {"unique_id": "macro.dbt.default__get_create_table_as_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/table/create_table_as.sql", "original_file_path": "macros/materializations/models/table/create_table_as.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.create_table_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.479897, "supported_languages": null}, "macro.dbt.create_table_as": {"unique_id": "macro.dbt.create_table_as", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/table/create_table_as.sql", "original_file_path": "macros/materializations/models/table/create_table_as.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__create_table_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.4803672, "supported_languages": null}, "macro.dbt.default__create_table_as": {"unique_id": "macro.dbt.default__create_table_as", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/table/create_table_as.sql", "original_file_path": "macros/materializations/models/table/create_table_as.sql", "name": "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 as (\n {{ sql }}\n );\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.480819, "supported_languages": null}, "macro.dbt.materialization_view_default": {"unique_id": "macro.dbt.materialization_view_default", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/view/view.sql", "original_file_path": "macros/materializations/models/view/view.sql", "name": "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 -%}", "resource_type": "macro", "tags": [], "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": 1671209460.483566, "supported_languages": ["sql"]}, "macro.dbt.handle_existing_table": {"unique_id": "macro.dbt.handle_existing_table", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/view/helpers.sql", "original_file_path": "macros/materializations/models/view/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__handle_existing_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.48401, "supported_languages": null}, "macro.dbt.default__handle_existing_table": {"unique_id": "macro.dbt.default__handle_existing_table", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/view/helpers.sql", "original_file_path": "macros/materializations/models/view/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.484255, "supported_languages": null}, "macro.dbt.create_or_replace_view": {"unique_id": "macro.dbt.create_or_replace_view", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/view/create_or_replace_view.sql", "original_file_path": "macros/materializations/models/view/create_or_replace_view.sql", "name": "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=True) %}\n\n {{ run_hooks(post_hooks) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "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": 1671209460.4859111, "supported_languages": null}, "macro.dbt.get_create_view_as_sql": {"unique_id": "macro.dbt.get_create_view_as_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/view/create_view_as.sql", "original_file_path": "macros/materializations/models/view/create_view_as.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.486379, "supported_languages": null}, "macro.dbt.default__get_create_view_as_sql": {"unique_id": "macro.dbt.default__get_create_view_as_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/view/create_view_as.sql", "original_file_path": "macros/materializations/models/view/create_view_as.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.create_view_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.4865448, "supported_languages": null}, "macro.dbt.create_view_as": {"unique_id": "macro.dbt.create_view_as", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/view/create_view_as.sql", "original_file_path": "macros/materializations/models/view/create_view_as.sql", "name": "create_view_as", "macro_sql": "{% macro create_view_as(relation, sql) -%}\n {{ adapter.dispatch('create_view_as', 'dbt')(relation, sql) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__create_view_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.486731, "supported_languages": null}, "macro.dbt.default__create_view_as": {"unique_id": "macro.dbt.default__create_view_as", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/models/view/create_view_as.sql", "original_file_path": "macros/materializations/models/view/create_view_as.sql", "name": "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 }} as (\n {{ sql }}\n );\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.486999, "supported_languages": null}, "macro.dbt.materialization_seed_default": {"unique_id": "macro.dbt.materialization_seed_default", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/seeds/seed.sql", "original_file_path": "macros/materializations/seeds/seed.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.490698, "supported_languages": ["sql"]}, "macro.dbt.create_csv_table": {"unique_id": "macro.dbt.create_csv_table", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "name": "create_csv_table", "macro_sql": "{% macro create_csv_table(model, agate_table) -%}\n {{ adapter.dispatch('create_csv_table', 'dbt')(model, agate_table) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__create_csv_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.495598, "supported_languages": null}, "macro.dbt.default__create_csv_table": {"unique_id": "macro.dbt.default__create_csv_table", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.496593, "supported_languages": null}, "macro.dbt.reset_csv_table": {"unique_id": "macro.dbt.reset_csv_table", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__reset_csv_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.496851, "supported_languages": null}, "macro.dbt.default__reset_csv_table": {"unique_id": "macro.dbt.default__reset_csv_table", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.create_csv_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.49736, "supported_languages": null}, "macro.dbt.get_csv_sql": {"unique_id": "macro.dbt.get_csv_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__get_csv_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.497568, "supported_languages": null}, "macro.dbt.default__get_csv_sql": {"unique_id": "macro.dbt.default__get_csv_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.4977112, "supported_languages": null}, "macro.dbt.get_binding_char": {"unique_id": "macro.dbt.get_binding_char", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "name": "get_binding_char", "macro_sql": "{% macro get_binding_char() -%}\n {{ adapter.dispatch('get_binding_char', 'dbt')() }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__get_binding_char"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.49787, "supported_languages": null}, "macro.dbt.default__get_binding_char": {"unique_id": "macro.dbt.default__get_binding_char", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "name": "default__get_binding_char", "macro_sql": "{% macro default__get_binding_char() %}\n {{ return('%s') }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.498098, "supported_languages": null}, "macro.dbt.get_batch_size": {"unique_id": "macro.dbt.get_batch_size", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "name": "get_batch_size", "macro_sql": "{% macro get_batch_size() -%}\n {{ return(adapter.dispatch('get_batch_size', 'dbt')()) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__get_batch_size"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.498316, "supported_languages": null}, "macro.dbt.default__get_batch_size": {"unique_id": "macro.dbt.default__get_batch_size", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "name": "default__get_batch_size", "macro_sql": "{% macro default__get_batch_size() %}\n {{ return(10000) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.4984498, "supported_languages": null}, "macro.dbt.get_seed_column_quoted_csv": {"unique_id": "macro.dbt.get_seed_column_quoted_csv", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.498976, "supported_languages": null}, "macro.dbt.load_csv_rows": {"unique_id": "macro.dbt.load_csv_rows", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "name": "load_csv_rows", "macro_sql": "{% macro load_csv_rows(model, agate_table) -%}\n {{ adapter.dispatch('load_csv_rows', 'dbt')(model, agate_table) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__load_csv_rows"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.4991832, "supported_languages": null}, "macro.dbt.default__load_csv_rows": {"unique_id": "macro.dbt.default__load_csv_rows", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.5005598, "supported_languages": null}, "macro.dbt.generate_alias_name": {"unique_id": "macro.dbt.generate_alias_name", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/get_custom_name/get_custom_alias.sql", "original_file_path": "macros/get_custom_name/get_custom_alias.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__generate_alias_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.501146, "supported_languages": null}, "macro.dbt.default__generate_alias_name": {"unique_id": "macro.dbt.default__generate_alias_name", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/get_custom_name/get_custom_alias.sql", "original_file_path": "macros/get_custom_name/get_custom_alias.sql", "name": "default__generate_alias_name", "macro_sql": "{% macro default__generate_alias_name(custom_alias_name=none, node=none) -%}\n\n {%- if custom_alias_name is none -%}\n\n {{ node.name }}\n\n {%- else -%}\n\n {{ custom_alias_name | trim }}\n\n {%- endif -%}\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.501384, "supported_languages": null}, "macro.dbt.generate_schema_name": {"unique_id": "macro.dbt.generate_schema_name", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/get_custom_name/get_custom_schema.sql", "original_file_path": "macros/get_custom_name/get_custom_schema.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__generate_schema_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.501983, "supported_languages": null}, "macro.dbt.default__generate_schema_name": {"unique_id": "macro.dbt.default__generate_schema_name", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/get_custom_name/get_custom_schema.sql", "original_file_path": "macros/get_custom_name/get_custom_schema.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.502264, "supported_languages": null}, "macro.dbt.generate_schema_name_for_env": {"unique_id": "macro.dbt.generate_schema_name_for_env", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/get_custom_name/get_custom_schema.sql", "original_file_path": "macros/get_custom_name/get_custom_schema.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.502583, "supported_languages": null}, "macro.dbt.generate_database_name": {"unique_id": "macro.dbt.generate_database_name", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/get_custom_name/get_custom_database.sql", "original_file_path": "macros/get_custom_name/get_custom_database.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__generate_database_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.503083, "supported_languages": null}, "macro.dbt.default__generate_database_name": {"unique_id": "macro.dbt.default__generate_database_name", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/get_custom_name/get_custom_database.sql", "original_file_path": "macros/get_custom_name/get_custom_database.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5033548, "supported_languages": null}, "macro.dbt.default__test_relationships": {"unique_id": "macro.dbt.default__test_relationships", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/generic_test_sql/relationships.sql", "original_file_path": "macros/generic_test_sql/relationships.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5038028, "supported_languages": null}, "macro.dbt.default__test_not_null": {"unique_id": "macro.dbt.default__test_not_null", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/generic_test_sql/not_null.sql", "original_file_path": "macros/generic_test_sql/not_null.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.should_store_failures"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.504203, "supported_languages": null}, "macro.dbt.default__test_unique": {"unique_id": "macro.dbt.default__test_unique", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/generic_test_sql/unique.sql", "original_file_path": "macros/generic_test_sql/unique.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.504533, "supported_languages": null}, "macro.dbt.default__test_accepted_values": {"unique_id": "macro.dbt.default__test_accepted_values", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/generic_test_sql/accepted_values.sql", "original_file_path": "macros/generic_test_sql/accepted_values.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.505196, "supported_languages": null}, "macro.dbt.statement": {"unique_id": "macro.dbt.statement", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/etc/statement.sql", "original_file_path": "macros/etc/statement.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.506805, "supported_languages": null}, "macro.dbt.noop_statement": {"unique_id": "macro.dbt.noop_statement", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/etc/statement.sql", "original_file_path": "macros/etc/statement.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.507487, "supported_languages": null}, "macro.dbt.run_query": {"unique_id": "macro.dbt.run_query", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/etc/statement.sql", "original_file_path": "macros/etc/statement.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.507803, "supported_languages": null}, "macro.dbt.convert_datetime": {"unique_id": "macro.dbt.convert_datetime", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/etc/datetime.sql", "original_file_path": "macros/etc/datetime.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.509929, "supported_languages": null}, "macro.dbt.dates_in_range": {"unique_id": "macro.dbt.dates_in_range", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/etc/datetime.sql", "original_file_path": "macros/etc/datetime.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.convert_datetime"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5112472, "supported_languages": null}, "macro.dbt.partition_range": {"unique_id": "macro.dbt.partition_range", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/etc/datetime.sql", "original_file_path": "macros/etc/datetime.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.dates_in_range"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.512065, "supported_languages": null}, "macro.dbt.py_current_timestring": {"unique_id": "macro.dbt.py_current_timestring", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/etc/datetime.sql", "original_file_path": "macros/etc/datetime.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5123131, "supported_languages": null}, "macro.dbt.except": {"unique_id": "macro.dbt.except", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/except.sql", "original_file_path": "macros/utils/except.sql", "name": "except", "macro_sql": "{% macro except() %}\n {{ return(adapter.dispatch('except', 'dbt')()) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__except"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5127208, "supported_languages": null}, "macro.dbt.default__except": {"unique_id": "macro.dbt.default__except", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/except.sql", "original_file_path": "macros/utils/except.sql", "name": "default__except", "macro_sql": "{% macro default__except() %}\n\n except\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.512804, "supported_languages": null}, "macro.dbt.replace": {"unique_id": "macro.dbt.replace", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/replace.sql", "original_file_path": "macros/utils/replace.sql", "name": "replace", "macro_sql": "{% macro replace(field, old_chars, new_chars) -%}\n {{ return(adapter.dispatch('replace', 'dbt') (field, old_chars, new_chars)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__replace"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.513244, "supported_languages": null}, "macro.dbt.default__replace": {"unique_id": "macro.dbt.default__replace", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/replace.sql", "original_file_path": "macros/utils/replace.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.513422, "supported_languages": null}, "macro.dbt.concat": {"unique_id": "macro.dbt.concat", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/concat.sql", "original_file_path": "macros/utils/concat.sql", "name": "concat", "macro_sql": "{% macro concat(fields) -%}\n {{ return(adapter.dispatch('concat', 'dbt')(fields)) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__concat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.51376, "supported_languages": null}, "macro.dbt.default__concat": {"unique_id": "macro.dbt.default__concat", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/concat.sql", "original_file_path": "macros/utils/concat.sql", "name": "default__concat", "macro_sql": "{% macro default__concat(fields) -%}\n {{ fields|join(' || ') }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5138922, "supported_languages": null}, "macro.dbt.length": {"unique_id": "macro.dbt.length", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/length.sql", "original_file_path": "macros/utils/length.sql", "name": "length", "macro_sql": "{% macro length(expression) -%}\n {{ return(adapter.dispatch('length', 'dbt') (expression)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__length"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.514233, "supported_languages": null}, "macro.dbt.default__length": {"unique_id": "macro.dbt.default__length", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/length.sql", "original_file_path": "macros/utils/length.sql", "name": "default__length", "macro_sql": "{% macro default__length(expression) %}\n\n length(\n {{ expression }}\n )\n\n{%- endmacro -%}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.514346, "supported_languages": null}, "macro.dbt.dateadd": {"unique_id": "macro.dbt.dateadd", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/dateadd.sql", "original_file_path": "macros/utils/dateadd.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.514772, "supported_languages": null}, "macro.dbt.default__dateadd": {"unique_id": "macro.dbt.default__dateadd", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/dateadd.sql", "original_file_path": "macros/utils/dateadd.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.514946, "supported_languages": null}, "macro.dbt.intersect": {"unique_id": "macro.dbt.intersect", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/intersect.sql", "original_file_path": "macros/utils/intersect.sql", "name": "intersect", "macro_sql": "{% macro intersect() %}\n {{ return(adapter.dispatch('intersect', 'dbt')()) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__intersect"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.515264, "supported_languages": null}, "macro.dbt.default__intersect": {"unique_id": "macro.dbt.default__intersect", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/intersect.sql", "original_file_path": "macros/utils/intersect.sql", "name": "default__intersect", "macro_sql": "{% macro default__intersect() %}\n\n intersect\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5153432, "supported_languages": null}, "macro.dbt.escape_single_quotes": {"unique_id": "macro.dbt.escape_single_quotes", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/escape_single_quotes.sql", "original_file_path": "macros/utils/escape_single_quotes.sql", "name": "escape_single_quotes", "macro_sql": "{% macro escape_single_quotes(expression) %}\n {{ return(adapter.dispatch('escape_single_quotes', 'dbt') (expression)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__escape_single_quotes"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.515696, "supported_languages": null}, "macro.dbt.default__escape_single_quotes": {"unique_id": "macro.dbt.default__escape_single_quotes", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/escape_single_quotes.sql", "original_file_path": "macros/utils/escape_single_quotes.sql", "name": "default__escape_single_quotes", "macro_sql": "{% macro default__escape_single_quotes(expression) -%}\n{{ expression | replace(\"'\",\"''\") }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.515842, "supported_languages": null}, "macro.dbt.right": {"unique_id": "macro.dbt.right", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/right.sql", "original_file_path": "macros/utils/right.sql", "name": "right", "macro_sql": "{% macro right(string_text, length_expression) -%}\n {{ return(adapter.dispatch('right', 'dbt') (string_text, length_expression)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__right"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.516219, "supported_languages": null}, "macro.dbt.default__right": {"unique_id": "macro.dbt.default__right", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/right.sql", "original_file_path": "macros/utils/right.sql", "name": "default__right", "macro_sql": "{% macro default__right(string_text, length_expression) %}\n\n right(\n {{ string_text }},\n {{ length_expression }}\n )\n\n{%- endmacro -%}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5164511, "supported_languages": null}, "macro.dbt.listagg": {"unique_id": "macro.dbt.listagg", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/listagg.sql", "original_file_path": "macros/utils/listagg.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__listagg"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.517177, "supported_languages": null}, "macro.dbt.default__listagg": {"unique_id": "macro.dbt.default__listagg", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/listagg.sql", "original_file_path": "macros/utils/listagg.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.517601, "supported_languages": null}, "macro.dbt.datediff": {"unique_id": "macro.dbt.datediff", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/datediff.sql", "original_file_path": "macros/utils/datediff.sql", "name": "datediff", "macro_sql": "{% macro datediff(first_date, second_date, datepart) %}\n {{ return(adapter.dispatch('datediff', 'dbt')(first_date, second_date, datepart)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__datediff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.518144, "supported_languages": null}, "macro.dbt.default__datediff": {"unique_id": "macro.dbt.default__datediff", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/datediff.sql", "original_file_path": "macros/utils/datediff.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.518399, "supported_languages": null}, "macro.dbt.safe_cast": {"unique_id": "macro.dbt.safe_cast", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/safe_cast.sql", "original_file_path": "macros/utils/safe_cast.sql", "name": "safe_cast", "macro_sql": "{% macro safe_cast(field, type) %}\n {{ return(adapter.dispatch('safe_cast', 'dbt') (field, type)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__safe_cast"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5189161, "supported_languages": null}, "macro.dbt.default__safe_cast": {"unique_id": "macro.dbt.default__safe_cast", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/safe_cast.sql", "original_file_path": "macros/utils/safe_cast.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.519073, "supported_languages": null}, "macro.dbt.hash": {"unique_id": "macro.dbt.hash", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/hash.sql", "original_file_path": "macros/utils/hash.sql", "name": "hash", "macro_sql": "{% macro hash(field) -%}\n {{ return(adapter.dispatch('hash', 'dbt') (field)) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__hash"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.519466, "supported_languages": null}, "macro.dbt.default__hash": {"unique_id": "macro.dbt.default__hash", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/hash.sql", "original_file_path": "macros/utils/hash.sql", "name": "default__hash", "macro_sql": "{% macro default__hash(field) -%}\n md5(cast({{ field }} as {{ api.Column.translate_type('string') }}))\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.519639, "supported_languages": null}, "macro.dbt.cast_bool_to_text": {"unique_id": "macro.dbt.cast_bool_to_text", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/cast_bool_to_text.sql", "original_file_path": "macros/utils/cast_bool_to_text.sql", "name": "cast_bool_to_text", "macro_sql": "{% macro cast_bool_to_text(field) %}\n {{ adapter.dispatch('cast_bool_to_text', 'dbt') (field) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__cast_bool_to_text"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.520006, "supported_languages": null}, "macro.dbt.default__cast_bool_to_text": {"unique_id": "macro.dbt.default__cast_bool_to_text", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/cast_bool_to_text.sql", "original_file_path": "macros/utils/cast_bool_to_text.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.520173, "supported_languages": null}, "macro.dbt.any_value": {"unique_id": "macro.dbt.any_value", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/any_value.sql", "original_file_path": "macros/utils/any_value.sql", "name": "any_value", "macro_sql": "{% macro any_value(expression) -%}\n {{ return(adapter.dispatch('any_value', 'dbt') (expression)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__any_value"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.520525, "supported_languages": null}, "macro.dbt.default__any_value": {"unique_id": "macro.dbt.default__any_value", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/any_value.sql", "original_file_path": "macros/utils/any_value.sql", "name": "default__any_value", "macro_sql": "{% macro default__any_value(expression) -%}\n\n any_value({{ expression }})\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.520639, "supported_languages": null}, "macro.dbt.position": {"unique_id": "macro.dbt.position", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/position.sql", "original_file_path": "macros/utils/position.sql", "name": "position", "macro_sql": "{% macro position(substring_text, string_text) -%}\n {{ return(adapter.dispatch('position', 'dbt') (substring_text, string_text)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__position"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.521027, "supported_languages": null}, "macro.dbt.default__position": {"unique_id": "macro.dbt.default__position", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/position.sql", "original_file_path": "macros/utils/position.sql", "name": "default__position", "macro_sql": "{% macro default__position(substring_text, string_text) %}\n\n position(\n {{ substring_text }} in {{ string_text }}\n )\n\n{%- endmacro -%}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.521174, "supported_languages": null}, "macro.dbt.string_literal": {"unique_id": "macro.dbt.string_literal", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/literal.sql", "original_file_path": "macros/utils/literal.sql", "name": "string_literal", "macro_sql": "{%- macro string_literal(value) -%}\n {{ return(adapter.dispatch('string_literal', 'dbt') (value)) }}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__string_literal"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.521513, "supported_languages": null}, "macro.dbt.default__string_literal": {"unique_id": "macro.dbt.default__string_literal", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/literal.sql", "original_file_path": "macros/utils/literal.sql", "name": "default__string_literal", "macro_sql": "{% macro default__string_literal(value) -%}\n '{{ value }}'\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.521622, "supported_languages": null}, "macro.dbt.type_string": {"unique_id": "macro.dbt.type_string", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "name": "type_string", "macro_sql": "\n\n{%- macro type_string() -%}\n {{ return(adapter.dispatch('type_string', 'dbt')()) }}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.522625, "supported_languages": null}, "macro.dbt.default__type_string": {"unique_id": "macro.dbt.default__type_string", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "name": "default__type_string", "macro_sql": "{% macro default__type_string() %}\n {{ return(api.Column.translate_type(\"string\")) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5227861, "supported_languages": null}, "macro.dbt.type_timestamp": {"unique_id": "macro.dbt.type_timestamp", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "name": "type_timestamp", "macro_sql": "\n\n{%- macro type_timestamp() -%}\n {{ return(adapter.dispatch('type_timestamp', 'dbt')()) }}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.52304, "supported_languages": null}, "macro.dbt.default__type_timestamp": {"unique_id": "macro.dbt.default__type_timestamp", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "name": "default__type_timestamp", "macro_sql": "{% macro default__type_timestamp() %}\n {{ return(api.Column.translate_type(\"timestamp\")) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.523198, "supported_languages": null}, "macro.dbt.type_float": {"unique_id": "macro.dbt.type_float", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "name": "type_float", "macro_sql": "\n\n{%- macro type_float() -%}\n {{ return(adapter.dispatch('type_float', 'dbt')()) }}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__type_float"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.523365, "supported_languages": null}, "macro.dbt.default__type_float": {"unique_id": "macro.dbt.default__type_float", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "name": "default__type_float", "macro_sql": "{% macro default__type_float() %}\n {{ return(api.Column.translate_type(\"float\")) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5235221, "supported_languages": null}, "macro.dbt.type_numeric": {"unique_id": "macro.dbt.type_numeric", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "name": "type_numeric", "macro_sql": "\n\n{%- macro type_numeric() -%}\n {{ return(adapter.dispatch('type_numeric', 'dbt')()) }}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__type_numeric"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.523687, "supported_languages": null}, "macro.dbt.default__type_numeric": {"unique_id": "macro.dbt.default__type_numeric", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "name": "default__type_numeric", "macro_sql": "{% macro default__type_numeric() %}\n {{ return(api.Column.numeric_type(\"numeric\", 28, 6)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.523875, "supported_languages": null}, "macro.dbt.type_bigint": {"unique_id": "macro.dbt.type_bigint", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "name": "type_bigint", "macro_sql": "\n\n{%- macro type_bigint() -%}\n {{ return(adapter.dispatch('type_bigint', 'dbt')()) }}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__type_bigint"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.524043, "supported_languages": null}, "macro.dbt.default__type_bigint": {"unique_id": "macro.dbt.default__type_bigint", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "name": "default__type_bigint", "macro_sql": "{% macro default__type_bigint() %}\n {{ return(api.Column.translate_type(\"bigint\")) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.524207, "supported_languages": null}, "macro.dbt.type_int": {"unique_id": "macro.dbt.type_int", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "name": "type_int", "macro_sql": "\n\n{%- macro type_int() -%}\n {{ return(adapter.dispatch('type_int', 'dbt')()) }}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__type_int"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.524373, "supported_languages": null}, "macro.dbt.default__type_int": {"unique_id": "macro.dbt.default__type_int", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "name": "default__type_int", "macro_sql": "{%- macro default__type_int() -%}\n {{ return(api.Column.translate_type(\"integer\")) }}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.52452, "supported_languages": null}, "macro.dbt.type_boolean": {"unique_id": "macro.dbt.type_boolean", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "name": "type_boolean", "macro_sql": "\n\n{%- macro type_boolean() -%}\n {{ return(adapter.dispatch('type_boolean', 'dbt')()) }}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__type_boolean"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.524694, "supported_languages": null}, "macro.dbt.default__type_boolean": {"unique_id": "macro.dbt.default__type_boolean", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "name": "default__type_boolean", "macro_sql": "{%- macro default__type_boolean() -%}\n {{ return(api.Column.translate_type(\"boolean\")) }}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.524843, "supported_languages": null}, "macro.dbt.array_concat": {"unique_id": "macro.dbt.array_concat", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/array_concat.sql", "original_file_path": "macros/utils/array_concat.sql", "name": "array_concat", "macro_sql": "{% macro array_concat(array_1, array_2) -%}\n {{ return(adapter.dispatch('array_concat', 'dbt')(array_1, array_2)) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__array_concat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.525228, "supported_languages": null}, "macro.dbt.default__array_concat": {"unique_id": "macro.dbt.default__array_concat", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/array_concat.sql", "original_file_path": "macros/utils/array_concat.sql", "name": "default__array_concat", "macro_sql": "{% macro default__array_concat(array_1, array_2) -%}\n array_cat({{ array_1 }}, {{ array_2 }})\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5253701, "supported_languages": null}, "macro.dbt.bool_or": {"unique_id": "macro.dbt.bool_or", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/bool_or.sql", "original_file_path": "macros/utils/bool_or.sql", "name": "bool_or", "macro_sql": "{% macro bool_or(expression) -%}\n {{ return(adapter.dispatch('bool_or', 'dbt') (expression)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__bool_or"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.525706, "supported_languages": null}, "macro.dbt.default__bool_or": {"unique_id": "macro.dbt.default__bool_or", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/bool_or.sql", "original_file_path": "macros/utils/bool_or.sql", "name": "default__bool_or", "macro_sql": "{% macro default__bool_or(expression) -%}\n\n bool_or({{ expression }})\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.525814, "supported_languages": null}, "macro.dbt.last_day": {"unique_id": "macro.dbt.last_day", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/last_day.sql", "original_file_path": "macros/utils/last_day.sql", "name": "last_day", "macro_sql": "{% macro last_day(date, datepart) %}\n {{ return(adapter.dispatch('last_day', 'dbt') (date, datepart)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__last_day"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5262458, "supported_languages": null}, "macro.dbt.default_last_day": {"unique_id": "macro.dbt.default_last_day", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/last_day.sql", "original_file_path": "macros/utils/last_day.sql", "name": "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", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.dateadd", "macro.dbt.date_trunc"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.526526, "supported_languages": null}, "macro.dbt.default__last_day": {"unique_id": "macro.dbt.default__last_day", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/last_day.sql", "original_file_path": "macros/utils/last_day.sql", "name": "default__last_day", "macro_sql": "{% macro default__last_day(date, datepart) -%}\n {{dbt.default_last_day(date, datepart)}}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default_last_day"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5266821, "supported_languages": null}, "macro.dbt.split_part": {"unique_id": "macro.dbt.split_part", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/split_part.sql", "original_file_path": "macros/utils/split_part.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__split_part"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5272691, "supported_languages": null}, "macro.dbt.default__split_part": {"unique_id": "macro.dbt.default__split_part", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/split_part.sql", "original_file_path": "macros/utils/split_part.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5274408, "supported_languages": null}, "macro.dbt._split_part_negative": {"unique_id": "macro.dbt._split_part_negative", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/split_part.sql", "original_file_path": "macros/utils/split_part.sql", "name": "_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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5277429, "supported_languages": null}, "macro.dbt.date_trunc": {"unique_id": "macro.dbt.date_trunc", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/date_trunc.sql", "original_file_path": "macros/utils/date_trunc.sql", "name": "date_trunc", "macro_sql": "{% macro date_trunc(datepart, date) -%}\n {{ return(adapter.dispatch('date_trunc', 'dbt') (datepart, date)) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__date_trunc"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.528106, "supported_languages": null}, "macro.dbt.default__date_trunc": {"unique_id": "macro.dbt.default__date_trunc", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/date_trunc.sql", "original_file_path": "macros/utils/date_trunc.sql", "name": "default__date_trunc", "macro_sql": "{% macro default__date_trunc(datepart, date) -%}\n date_trunc('{{datepart}}', {{date}})\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5282419, "supported_languages": null}, "macro.dbt.array_construct": {"unique_id": "macro.dbt.array_construct", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/array_construct.sql", "original_file_path": "macros/utils/array_construct.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__array_construct"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.528712, "supported_languages": null}, "macro.dbt.default__array_construct": {"unique_id": "macro.dbt.default__array_construct", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/array_construct.sql", "original_file_path": "macros/utils/array_construct.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.529079, "supported_languages": null}, "macro.dbt.array_append": {"unique_id": "macro.dbt.array_append", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/array_append.sql", "original_file_path": "macros/utils/array_append.sql", "name": "array_append", "macro_sql": "{% macro array_append(array, new_element) -%}\n {{ return(adapter.dispatch('array_append', 'dbt')(array, new_element)) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__array_append"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.529591, "supported_languages": null}, "macro.dbt.default__array_append": {"unique_id": "macro.dbt.default__array_append", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/utils/array_append.sql", "original_file_path": "macros/utils/array_append.sql", "name": "default__array_append", "macro_sql": "{% macro default__array_append(array, new_element) -%}\n array_append({{ array }}, {{ new_element }})\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5297458, "supported_languages": null}, "macro.dbt.create_schema": {"unique_id": "macro.dbt.create_schema", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/schema.sql", "original_file_path": "macros/adapters/schema.sql", "name": "create_schema", "macro_sql": "{% macro create_schema(relation) -%}\n {{ adapter.dispatch('create_schema', 'dbt')(relation) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__create_schema"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.530238, "supported_languages": null}, "macro.dbt.default__create_schema": {"unique_id": "macro.dbt.default__create_schema", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/schema.sql", "original_file_path": "macros/adapters/schema.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5304441, "supported_languages": null}, "macro.dbt.drop_schema": {"unique_id": "macro.dbt.drop_schema", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/schema.sql", "original_file_path": "macros/adapters/schema.sql", "name": "drop_schema", "macro_sql": "{% macro drop_schema(relation) -%}\n {{ adapter.dispatch('drop_schema', 'dbt')(relation) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__drop_schema"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.530626, "supported_languages": null}, "macro.dbt.default__drop_schema": {"unique_id": "macro.dbt.default__drop_schema", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/schema.sql", "original_file_path": "macros/adapters/schema.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.530825, "supported_languages": null}, "macro.dbt.current_timestamp": {"unique_id": "macro.dbt.current_timestamp", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "name": "current_timestamp", "macro_sql": "{%- macro current_timestamp() -%}\n {{ adapter.dispatch('current_timestamp', 'dbt')() }}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5314062, "supported_languages": null}, "macro.dbt.default__current_timestamp": {"unique_id": "macro.dbt.default__current_timestamp", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.531568, "supported_languages": null}, "macro.dbt.snapshot_get_time": {"unique_id": "macro.dbt.snapshot_get_time", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "name": "snapshot_get_time", "macro_sql": "\n\n{%- macro snapshot_get_time() -%}\n {{ adapter.dispatch('snapshot_get_time', 'dbt')() }}\n{%- endmacro -%}\n\n", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__snapshot_get_time"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.53172, "supported_languages": null}, "macro.dbt.default__snapshot_get_time": {"unique_id": "macro.dbt.default__snapshot_get_time", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "name": "default__snapshot_get_time", "macro_sql": "{% macro default__snapshot_get_time() %}\n {{ current_timestamp() }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5318332, "supported_languages": null}, "macro.dbt.current_timestamp_backcompat": {"unique_id": "macro.dbt.current_timestamp_backcompat", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "name": "current_timestamp_backcompat", "macro_sql": "{% macro current_timestamp_backcompat() %}\n {{ return(adapter.dispatch('current_timestamp_backcompat', 'dbt')()) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__current_timestamp_backcompat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.532007, "supported_languages": null}, "macro.dbt.default__current_timestamp_backcompat": {"unique_id": "macro.dbt.default__current_timestamp_backcompat", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "name": "default__current_timestamp_backcompat", "macro_sql": "{% macro default__current_timestamp_backcompat() %}\n current_timestamp::timestamp\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.532089, "supported_languages": null}, "macro.dbt.current_timestamp_in_utc_backcompat": {"unique_id": "macro.dbt.current_timestamp_in_utc_backcompat", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.5322628, "supported_languages": null}, "macro.dbt.default__current_timestamp_in_utc_backcompat": {"unique_id": "macro.dbt.default__current_timestamp_in_utc_backcompat", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.532434, "supported_languages": null}, "macro.dbt.get_create_index_sql": {"unique_id": "macro.dbt.get_create_index_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.532985, "supported_languages": null}, "macro.dbt.default__get_create_index_sql": {"unique_id": "macro.dbt.default__get_create_index_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "name": "default__get_create_index_sql", "macro_sql": "{% macro default__get_create_index_sql(relation, index_dict) -%}\n {% do return(None) %}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.533216, "supported_languages": null}, "macro.dbt.create_indexes": {"unique_id": "macro.dbt.create_indexes", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "name": "create_indexes", "macro_sql": "{% macro create_indexes(relation) -%}\n {{ adapter.dispatch('create_indexes', 'dbt')(relation) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__create_indexes"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.533382, "supported_languages": null}, "macro.dbt.default__create_indexes": {"unique_id": "macro.dbt.default__create_indexes", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.533819, "supported_languages": null}, "macro.dbt.make_intermediate_relation": {"unique_id": "macro.dbt.make_intermediate_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__make_intermediate_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.537042, "supported_languages": null}, "macro.dbt.default__make_intermediate_relation": {"unique_id": "macro.dbt.default__make_intermediate_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__make_temp_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.537224, "supported_languages": null}, "macro.dbt.make_temp_relation": {"unique_id": "macro.dbt.make_temp_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__make_temp_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.537456, "supported_languages": null}, "macro.dbt.default__make_temp_relation": {"unique_id": "macro.dbt.default__make_temp_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.537766, "supported_languages": null}, "macro.dbt.make_backup_relation": {"unique_id": "macro.dbt.make_backup_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__make_backup_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.538027, "supported_languages": null}, "macro.dbt.default__make_backup_relation": {"unique_id": "macro.dbt.default__make_backup_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.538362, "supported_languages": null}, "macro.dbt.drop_relation": {"unique_id": "macro.dbt.drop_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "drop_relation", "macro_sql": "{% macro drop_relation(relation) -%}\n {{ return(adapter.dispatch('drop_relation', 'dbt')(relation)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__drop_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5385559, "supported_languages": null}, "macro.dbt.default__drop_relation": {"unique_id": "macro.dbt.default__drop_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.538777, "supported_languages": null}, "macro.dbt.truncate_relation": {"unique_id": "macro.dbt.truncate_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "truncate_relation", "macro_sql": "{% macro truncate_relation(relation) -%}\n {{ return(adapter.dispatch('truncate_relation', 'dbt')(relation)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__truncate_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.539052, "supported_languages": null}, "macro.dbt.default__truncate_relation": {"unique_id": "macro.dbt.default__truncate_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "default__truncate_relation", "macro_sql": "{% macro default__truncate_relation(relation) -%}\n {% call statement('truncate_relation') -%}\n truncate table {{ relation }}\n {%- endcall %}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.539273, "supported_languages": null}, "macro.dbt.rename_relation": {"unique_id": "macro.dbt.rename_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "rename_relation", "macro_sql": "{% macro rename_relation(from_relation, to_relation) -%}\n {{ return(adapter.dispatch('rename_relation', 'dbt')(from_relation, to_relation)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__rename_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.539501, "supported_languages": null}, "macro.dbt.default__rename_relation": {"unique_id": "macro.dbt.default__rename_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.539798, "supported_languages": null}, "macro.dbt.get_or_create_relation": {"unique_id": "macro.dbt.get_or_create_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__get_or_create_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.540065, "supported_languages": null}, "macro.dbt.default__get_or_create_relation": {"unique_id": "macro.dbt.default__get_or_create_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.540651, "supported_languages": null}, "macro.dbt.load_cached_relation": {"unique_id": "macro.dbt.load_cached_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.540989, "supported_languages": null}, "macro.dbt.load_relation": {"unique_id": "macro.dbt.load_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "load_relation", "macro_sql": "{% macro load_relation(relation) %}\n {{ return(load_cached_relation(relation)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.load_cached_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.541141, "supported_languages": null}, "macro.dbt.drop_relation_if_exists": {"unique_id": "macro.dbt.drop_relation_if_exists", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.541344, "supported_languages": null}, "macro.dbt.collect_freshness": {"unique_id": "macro.dbt.collect_freshness", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/freshness.sql", "original_file_path": "macros/adapters/freshness.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__collect_freshness"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.541982, "supported_languages": null}, "macro.dbt.default__collect_freshness": {"unique_id": "macro.dbt.default__collect_freshness", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/freshness.sql", "original_file_path": "macros/adapters/freshness.sql", "name": "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').table) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt.current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.542421, "supported_languages": null}, "macro.dbt.copy_grants": {"unique_id": "macro.dbt.copy_grants", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "copy_grants", "macro_sql": "{% macro copy_grants() %}\n {{ return(adapter.dispatch('copy_grants', 'dbt')()) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__copy_grants"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5442078, "supported_languages": null}, "macro.dbt.default__copy_grants": {"unique_id": "macro.dbt.default__copy_grants", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "default__copy_grants", "macro_sql": "{% macro default__copy_grants() %}\n {{ return(True) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5443368, "supported_languages": null}, "macro.dbt.support_multiple_grantees_per_dcl_statement": {"unique_id": "macro.dbt.support_multiple_grantees_per_dcl_statement", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.544516, "supported_languages": null}, "macro.dbt.default__support_multiple_grantees_per_dcl_statement": {"unique_id": "macro.dbt.default__support_multiple_grantees_per_dcl_statement", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "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", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5446389, "supported_languages": null}, "macro.dbt.should_revoke": {"unique_id": "macro.dbt.should_revoke", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.copy_grants"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.545011, "supported_languages": null}, "macro.dbt.get_show_grant_sql": {"unique_id": "macro.dbt.get_show_grant_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "get_show_grant_sql", "macro_sql": "{% macro get_show_grant_sql(relation) %}\n {{ return(adapter.dispatch(\"get_show_grant_sql\", \"dbt\")(relation)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "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": 1671209460.545218, "supported_languages": null}, "macro.dbt.default__get_show_grant_sql": {"unique_id": "macro.dbt.default__get_show_grant_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "default__get_show_grant_sql", "macro_sql": "{% macro default__get_show_grant_sql(relation) %}\n show grants on {{ relation }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.545325, "supported_languages": null}, "macro.dbt.get_grant_sql": {"unique_id": "macro.dbt.get_grant_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__get_grant_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.545569, "supported_languages": null}, "macro.dbt.default__get_grant_sql": {"unique_id": "macro.dbt.default__get_grant_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "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", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.545773, "supported_languages": null}, "macro.dbt.get_revoke_sql": {"unique_id": "macro.dbt.get_revoke_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__get_revoke_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.546012, "supported_languages": null}, "macro.dbt.default__get_revoke_sql": {"unique_id": "macro.dbt.default__get_revoke_sql", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "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", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5462132, "supported_languages": null}, "macro.dbt.get_dcl_statement_list": {"unique_id": "macro.dbt.get_dcl_statement_list", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__get_dcl_statement_list"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.546459, "supported_languages": null}, "macro.dbt.default__get_dcl_statement_list": {"unique_id": "macro.dbt.default__get_dcl_statement_list", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.547177, "supported_languages": null}, "macro.dbt.call_dcl_statements": {"unique_id": "macro.dbt.call_dcl_statements", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__call_dcl_statements"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.547709, "supported_languages": null}, "macro.dbt.default__call_dcl_statements": {"unique_id": "macro.dbt.default__call_dcl_statements", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.54798, "supported_languages": null}, "macro.dbt.apply_grants": {"unique_id": "macro.dbt.apply_grants", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__apply_grants"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5482292, "supported_languages": null}, "macro.dbt.default__apply_grants": {"unique_id": "macro.dbt.default__apply_grants", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.549643, "supported_languages": null}, "macro.dbt.alter_column_comment": {"unique_id": "macro.dbt.alter_column_comment", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__alter_column_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5505018, "supported_languages": null}, "macro.dbt.default__alter_column_comment": {"unique_id": "macro.dbt.default__alter_column_comment", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.55069, "supported_languages": null}, "macro.dbt.alter_relation_comment": {"unique_id": "macro.dbt.alter_relation_comment", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__alter_relation_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5509062, "supported_languages": null}, "macro.dbt.default__alter_relation_comment": {"unique_id": "macro.dbt.default__alter_relation_comment", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.551085, "supported_languages": null}, "macro.dbt.persist_docs": {"unique_id": "macro.dbt.persist_docs", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__persist_docs"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.551372, "supported_languages": null}, "macro.dbt.default__persist_docs": {"unique_id": "macro.dbt.default__persist_docs", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.551994, "supported_languages": null}, "macro.dbt.get_catalog": {"unique_id": "macro.dbt.get_catalog", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "name": "get_catalog", "macro_sql": "{% macro get_catalog(information_schema, schemas) -%}\n {{ return(adapter.dispatch('get_catalog', 'dbt')(information_schema, schemas)) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_catalog"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.553663, "supported_languages": null}, "macro.dbt.default__get_catalog": {"unique_id": "macro.dbt.default__get_catalog", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.553959, "supported_languages": null}, "macro.dbt.information_schema_name": {"unique_id": "macro.dbt.information_schema_name", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "name": "information_schema_name", "macro_sql": "{% macro information_schema_name(database) %}\n {{ return(adapter.dispatch('information_schema_name', 'dbt')(database)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__information_schema_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5541701, "supported_languages": null}, "macro.dbt.default__information_schema_name": {"unique_id": "macro.dbt.default__information_schema_name", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5543349, "supported_languages": null}, "macro.dbt.list_schemas": {"unique_id": "macro.dbt.list_schemas", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "name": "list_schemas", "macro_sql": "{% macro list_schemas(database) -%}\n {{ return(adapter.dispatch('list_schemas', 'dbt')(database)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__list_schemas"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.554534, "supported_languages": null}, "macro.dbt.default__list_schemas": {"unique_id": "macro.dbt.default__list_schemas", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.5548081, "supported_languages": null}, "macro.dbt.check_schema_exists": {"unique_id": "macro.dbt.check_schema_exists", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__check_schema_exists"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.555032, "supported_languages": null}, "macro.dbt.default__check_schema_exists": {"unique_id": "macro.dbt.default__check_schema_exists", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.replace", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.555359, "supported_languages": null}, "macro.dbt.list_relations_without_caching": {"unique_id": "macro.dbt.list_relations_without_caching", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.555572, "supported_languages": null}, "macro.dbt.default__list_relations_without_caching": {"unique_id": "macro.dbt.default__list_relations_without_caching", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.555747, "supported_languages": null}, "macro.dbt.get_columns_in_relation": {"unique_id": "macro.dbt.get_columns_in_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "name": "get_columns_in_relation", "macro_sql": "{% macro get_columns_in_relation(relation) -%}\n {{ return(adapter.dispatch('get_columns_in_relation', 'dbt')(relation)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "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": 1671209460.557515, "supported_languages": null}, "macro.dbt.default__get_columns_in_relation": {"unique_id": "macro.dbt.default__get_columns_in_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.557777, "supported_languages": null}, "macro.dbt.sql_convert_columns_in_relation": {"unique_id": "macro.dbt.sql_convert_columns_in_relation", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5581172, "supported_languages": null}, "macro.dbt.get_columns_in_query": {"unique_id": "macro.dbt.get_columns_in_query", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__get_columns_in_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.558317, "supported_languages": null}, "macro.dbt.default__get_columns_in_query": {"unique_id": "macro.dbt.default__get_columns_in_query", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "name": "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 select * from (\n {{ select_sql }}\n ) as __dbt_sbq\n where false\n limit 0\n {% endcall %}\n\n {{ return(load_result('get_columns_in_query').table.columns | map(attribute='name') | list) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.558683, "supported_languages": null}, "macro.dbt.alter_column_type": {"unique_id": "macro.dbt.alter_column_type", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__alter_column_type"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.558932, "supported_languages": null}, "macro.dbt.default__alter_column_type": {"unique_id": "macro.dbt.default__alter_column_type", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.559695, "supported_languages": null}, "macro.dbt.alter_relation_add_remove_columns": {"unique_id": "macro.dbt.alter_relation_add_remove_columns", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.560004, "supported_languages": null}, "macro.dbt.default__alter_relation_add_remove_columns": {"unique_id": "macro.dbt.default__alter_relation_add_remove_columns", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.560846, "supported_languages": null}, "macro.dbt.build_ref_function": {"unique_id": "macro.dbt.build_ref_function", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "name": "build_ref_function", "macro_sql": "{% macro build_ref_function(model) %}\n\n {%- set ref_dict = {} -%}\n {%- for _ref in model.refs -%}\n {%- set resolved = ref(*_ref) -%}\n {%- do ref_dict.update({_ref | join(\".\"): resolved.quote(database=False, schema=False, identifier=False) | string}) -%}\n {%- endfor -%}\n\ndef ref(*args,dbt_load_df_function):\n refs = {{ ref_dict | tojson }}\n key = \".\".join(args)\n return dbt_load_df_function(refs[key])\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.562625, "supported_languages": null}, "macro.dbt.build_source_function": {"unique_id": "macro.dbt.build_source_function", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "name": "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(\".\"): resolved.quote(database=False, schema=False, identifier=False) | string}) -%}\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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.563148, "supported_languages": null}, "macro.dbt.build_config_dict": {"unique_id": "macro.dbt.build_config_dict", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "name": "build_config_dict", "macro_sql": "{% macro build_config_dict(model) %}\n {%- set config_dict = {} -%}\n {%- for key in model.config.config_keys_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[key] -%}\n {%- do config_dict.update({key: value}) -%}\n {%- endfor -%}\nconfig_dict = {{ config_dict }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5636292, "supported_languages": null}, "macro.dbt.py_script_postfix": {"unique_id": "macro.dbt.py_script_postfix", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "name": "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 def __repr__(self):\n return '{{ this }}'\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: ref(*args, 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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.build_ref_function", "macro.dbt.build_source_function", "macro.dbt.build_config_dict", "macro.dbt.is_incremental", "macro.dbt.py_script_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.564071, "supported_languages": null}, "macro.dbt.py_script_comment": {"unique_id": "macro.dbt.py_script_comment", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "name": "py_script_comment", "macro_sql": "{%macro py_script_comment()%}\n{%endmacro%}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.564151, "supported_languages": null}, "macro.dbt.test_unique": {"unique_id": "macro.dbt.test_unique", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "tests/generic/builtin.sql", "original_file_path": "tests/generic/builtin.sql", "name": "test_unique", "macro_sql": "{% test unique(model, column_name) %}\n {% set macro = adapter.dispatch('test_unique', 'dbt') %}\n {{ macro(model, column_name) }}\n{% endtest %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__test_unique"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.564811, "supported_languages": null}, "macro.dbt.test_not_null": {"unique_id": "macro.dbt.test_not_null", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "tests/generic/builtin.sql", "original_file_path": "tests/generic/builtin.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__test_not_null"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.565055, "supported_languages": null}, "macro.dbt.test_accepted_values": {"unique_id": "macro.dbt.test_accepted_values", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "tests/generic/builtin.sql", "original_file_path": "tests/generic/builtin.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__test_accepted_values"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.56536, "supported_languages": null}, "macro.dbt.test_relationships": {"unique_id": "macro.dbt.test_relationships", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "tests/generic/builtin.sql", "original_file_path": "tests/generic/builtin.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__test_relationships"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.565651, "supported_languages": null}, "macro.dbt_utils.get_url_host": {"unique_id": "macro.dbt_utils.get_url_host", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/web/get_url_host.sql", "original_file_path": "macros/web/get_url_host.sql", "name": "get_url_host", "macro_sql": "{% macro get_url_host(field) -%}\n {{ return(adapter.dispatch('get_url_host', 'dbt_utils')(field)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__get_url_host"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5661151, "supported_languages": null}, "macro.dbt_utils.default__get_url_host": {"unique_id": "macro.dbt_utils.default__get_url_host", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/web/get_url_host.sql", "original_file_path": "macros/web/get_url_host.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.5667179, "supported_languages": null}, "macro.dbt_utils.get_url_path": {"unique_id": "macro.dbt_utils.get_url_path", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/web/get_url_path.sql", "original_file_path": "macros/web/get_url_path.sql", "name": "get_url_path", "macro_sql": "{% macro get_url_path(field) -%}\n {{ return(adapter.dispatch('get_url_path', 'dbt_utils')(field)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__get_url_path"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.567306, "supported_languages": null}, "macro.dbt_utils.default__get_url_path": {"unique_id": "macro.dbt_utils.default__get_url_path", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/web/get_url_path.sql", "original_file_path": "macros/web/get_url_path.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.568005, "supported_languages": null}, "macro.dbt_utils.get_url_parameter": {"unique_id": "macro.dbt_utils.get_url_parameter", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/web/get_url_parameter.sql", "original_file_path": "macros/web/get_url_parameter.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__get_url_parameter"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.568418, "supported_languages": null}, "macro.dbt_utils.default__get_url_parameter": {"unique_id": "macro.dbt_utils.default__get_url_parameter", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/web/get_url_parameter.sql", "original_file_path": "macros/web/get_url_parameter.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.split_part"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5687602, "supported_languages": null}, "macro.dbt_utils.test_fewer_rows_than": {"unique_id": "macro.dbt_utils.test_fewer_rows_than", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/fewer_rows_than.sql", "original_file_path": "macros/generic_tests/fewer_rows_than.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.5700731, "supported_languages": null}, "macro.dbt_utils.default__test_fewer_rows_than": {"unique_id": "macro.dbt_utils.default__test_fewer_rows_than", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/fewer_rows_than.sql", "original_file_path": "macros/generic_tests/fewer_rows_than.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.571254, "supported_languages": null}, "macro.dbt_utils.test_equal_rowcount": {"unique_id": "macro.dbt_utils.test_equal_rowcount", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/equal_rowcount.sql", "original_file_path": "macros/generic_tests/equal_rowcount.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__test_equal_rowcount"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.572261, "supported_languages": null}, "macro.dbt_utils.default__test_equal_rowcount": {"unique_id": "macro.dbt_utils.default__test_equal_rowcount", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/equal_rowcount.sql", "original_file_path": "macros/generic_tests/equal_rowcount.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.573418, "supported_languages": null}, "macro.dbt_utils.test_relationships_where": {"unique_id": "macro.dbt_utils.test_relationships_where", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/relationships_where.sql", "original_file_path": "macros/generic_tests/relationships_where.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__test_relationships_where"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.574192, "supported_languages": null}, "macro.dbt_utils.default__test_relationships_where": {"unique_id": "macro.dbt_utils.default__test_relationships_where", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/relationships_where.sql", "original_file_path": "macros/generic_tests/relationships_where.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.574559, "supported_languages": null}, "macro.dbt_utils.test_recency": {"unique_id": "macro.dbt_utils.test_recency", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/recency.sql", "original_file_path": "macros/generic_tests/recency.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__test_recency"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.575382, "supported_languages": null}, "macro.dbt_utils.default__test_recency": {"unique_id": "macro.dbt_utils.default__test_recency", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/recency.sql", "original_file_path": "macros/generic_tests/recency.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.5762749, "supported_languages": null}, "macro.dbt_utils.test_not_constant": {"unique_id": "macro.dbt_utils.test_not_constant", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/not_constant.sql", "original_file_path": "macros/generic_tests/not_constant.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__test_not_constant"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.576826, "supported_languages": null}, "macro.dbt_utils.default__test_not_constant": {"unique_id": "macro.dbt_utils.default__test_not_constant", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/not_constant.sql", "original_file_path": "macros/generic_tests/not_constant.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.577319, "supported_languages": null}, "macro.dbt_utils.test_accepted_range": {"unique_id": "macro.dbt_utils.test_accepted_range", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/accepted_range.sql", "original_file_path": "macros/generic_tests/accepted_range.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__test_accepted_range"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.578023, "supported_languages": null}, "macro.dbt_utils.default__test_accepted_range": {"unique_id": "macro.dbt_utils.default__test_accepted_range", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/accepted_range.sql", "original_file_path": "macros/generic_tests/accepted_range.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.57852, "supported_languages": null}, "macro.dbt_utils.test_not_accepted_values": {"unique_id": "macro.dbt_utils.test_not_accepted_values", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/not_accepted_values.sql", "original_file_path": "macros/generic_tests/not_accepted_values.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.5792708, "supported_languages": null}, "macro.dbt_utils.default__test_not_accepted_values": {"unique_id": "macro.dbt_utils.default__test_not_accepted_values", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/not_accepted_values.sql", "original_file_path": "macros/generic_tests/not_accepted_values.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5798368, "supported_languages": null}, "macro.dbt_utils.test_at_least_one": {"unique_id": "macro.dbt_utils.test_at_least_one", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/at_least_one.sql", "original_file_path": "macros/generic_tests/at_least_one.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.5805178, "supported_languages": null}, "macro.dbt_utils.default__test_at_least_one": {"unique_id": "macro.dbt_utils.default__test_at_least_one", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/at_least_one.sql", "original_file_path": "macros/generic_tests/at_least_one.sql", "name": "default__test_at_least_one", "macro_sql": "{% macro default__test_at_least_one(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\nselect *\nfrom (\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 {{ model }}\n\n {{groupby_gb_cols}}\n\n having count({{ column_name }}) = 0\n\n) validation_errors\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.581028, "supported_languages": null}, "macro.dbt_utils.test_unique_combination_of_columns": {"unique_id": "macro.dbt_utils.test_unique_combination_of_columns", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/unique_combination_of_columns.sql", "original_file_path": "macros/generic_tests/unique_combination_of_columns.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.581763, "supported_languages": null}, "macro.dbt_utils.default__test_unique_combination_of_columns": {"unique_id": "macro.dbt_utils.default__test_unique_combination_of_columns", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/unique_combination_of_columns.sql", "original_file_path": "macros/generic_tests/unique_combination_of_columns.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5825322, "supported_languages": null}, "macro.dbt_utils.test_cardinality_equality": {"unique_id": "macro.dbt_utils.test_cardinality_equality", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/cardinality_equality.sql", "original_file_path": "macros/generic_tests/cardinality_equality.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__test_cardinality_equality"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.583266, "supported_languages": null}, "macro.dbt_utils.default__test_cardinality_equality": {"unique_id": "macro.dbt_utils.default__test_cardinality_equality", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/cardinality_equality.sql", "original_file_path": "macros/generic_tests/cardinality_equality.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.except"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.583643, "supported_languages": null}, "macro.dbt_utils.test_expression_is_true": {"unique_id": "macro.dbt_utils.test_expression_is_true", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/expression_is_true.sql", "original_file_path": "macros/generic_tests/expression_is_true.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.584148, "supported_languages": null}, "macro.dbt_utils.default__test_expression_is_true": {"unique_id": "macro.dbt_utils.default__test_expression_is_true", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/expression_is_true.sql", "original_file_path": "macros/generic_tests/expression_is_true.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.should_store_failures"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5845408, "supported_languages": null}, "macro.dbt_utils.test_not_null_proportion": {"unique_id": "macro.dbt_utils.test_not_null_proportion", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/not_null_proportion.sql", "original_file_path": "macros/generic_tests/not_null_proportion.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.5852869, "supported_languages": null}, "macro.dbt_utils.default__test_not_null_proportion": {"unique_id": "macro.dbt_utils.default__test_not_null_proportion", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/not_null_proportion.sql", "original_file_path": "macros/generic_tests/not_null_proportion.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.586163, "supported_languages": null}, "macro.dbt_utils.test_sequential_values": {"unique_id": "macro.dbt_utils.test_sequential_values", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/sequential_values.sql", "original_file_path": "macros/generic_tests/sequential_values.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__test_sequential_values"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.587153, "supported_languages": null}, "macro.dbt_utils.default__test_sequential_values": {"unique_id": "macro.dbt_utils.default__test_sequential_values", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/sequential_values.sql", "original_file_path": "macros/generic_tests/sequential_values.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.588114, "supported_languages": null}, "macro.dbt_utils.test_equality": {"unique_id": "macro.dbt_utils.test_equality", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/equality.sql", "original_file_path": "macros/generic_tests/equality.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__test_equality"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5889668, "supported_languages": null}, "macro.dbt_utils.default__test_equality": {"unique_id": "macro.dbt_utils.default__test_equality", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/equality.sql", "original_file_path": "macros/generic_tests/equality.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.5900538, "supported_languages": null}, "macro.dbt_utils.test_not_empty_string": {"unique_id": "macro.dbt_utils.test_not_empty_string", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/not_empty_string.sql", "original_file_path": "macros/generic_tests/not_empty_string.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.590705, "supported_languages": null}, "macro.dbt_utils.default__test_not_empty_string": {"unique_id": "macro.dbt_utils.default__test_not_empty_string", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/not_empty_string.sql", "original_file_path": "macros/generic_tests/not_empty_string.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.591019, "supported_languages": null}, "macro.dbt_utils.test_mutually_exclusive_ranges": {"unique_id": "macro.dbt_utils.test_mutually_exclusive_ranges", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/mutually_exclusive_ranges.sql", "original_file_path": "macros/generic_tests/mutually_exclusive_ranges.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.5943701, "supported_languages": null}, "macro.dbt_utils.default__test_mutually_exclusive_ranges": {"unique_id": "macro.dbt_utils.default__test_mutually_exclusive_ranges", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/generic_tests/mutually_exclusive_ranges.sql", "original_file_path": "macros/generic_tests/mutually_exclusive_ranges.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.596055, "supported_languages": null}, "macro.dbt_utils.pretty_log_format": {"unique_id": "macro.dbt_utils.pretty_log_format", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/jinja_helpers/pretty_log_format.sql", "original_file_path": "macros/jinja_helpers/pretty_log_format.sql", "name": "pretty_log_format", "macro_sql": "{% macro pretty_log_format(message) %}\n {{ return(adapter.dispatch('pretty_log_format', 'dbt_utils')(message)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__pretty_log_format"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.596492, "supported_languages": null}, "macro.dbt_utils.default__pretty_log_format": {"unique_id": "macro.dbt_utils.default__pretty_log_format", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/jinja_helpers/pretty_log_format.sql", "original_file_path": "macros/jinja_helpers/pretty_log_format.sql", "name": "default__pretty_log_format", "macro_sql": "{% macro default__pretty_log_format(message) %}\n {{ return( dbt_utils.pretty_time() ~ ' + ' ~ message) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.pretty_time"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.596674, "supported_languages": null}, "macro.dbt_utils._is_relation": {"unique_id": "macro.dbt_utils._is_relation", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/jinja_helpers/_is_relation.sql", "original_file_path": "macros/jinja_helpers/_is_relation.sql", "name": "_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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5972412, "supported_languages": null}, "macro.dbt_utils.pretty_time": {"unique_id": "macro.dbt_utils.pretty_time", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/jinja_helpers/pretty_time.sql", "original_file_path": "macros/jinja_helpers/pretty_time.sql", "name": "pretty_time", "macro_sql": "{% macro pretty_time(format='%H:%M:%S') %}\n {{ return(adapter.dispatch('pretty_time', 'dbt_utils')(format)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__pretty_time"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.597611, "supported_languages": null}, "macro.dbt_utils.default__pretty_time": {"unique_id": "macro.dbt_utils.default__pretty_time", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/jinja_helpers/pretty_time.sql", "original_file_path": "macros/jinja_helpers/pretty_time.sql", "name": "default__pretty_time", "macro_sql": "{% macro default__pretty_time(format='%H:%M:%S') %}\n {{ return(modules.datetime.datetime.now().strftime(format)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.597824, "supported_languages": null}, "macro.dbt_utils.log_info": {"unique_id": "macro.dbt_utils.log_info", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/jinja_helpers/log_info.sql", "original_file_path": "macros/jinja_helpers/log_info.sql", "name": "log_info", "macro_sql": "{% macro log_info(message) %}\n {{ return(adapter.dispatch('log_info', 'dbt_utils')(message)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__log_info"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.598165, "supported_languages": null}, "macro.dbt_utils.default__log_info": {"unique_id": "macro.dbt_utils.default__log_info", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/jinja_helpers/log_info.sql", "original_file_path": "macros/jinja_helpers/log_info.sql", "name": "default__log_info", "macro_sql": "{% macro default__log_info(message) %}\n {{ log(dbt_utils.pretty_log_format(message), info=True) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.pretty_log_format"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5983539, "supported_languages": null}, "macro.dbt_utils.slugify": {"unique_id": "macro.dbt_utils.slugify", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/jinja_helpers/slugify.sql", "original_file_path": "macros/jinja_helpers/slugify.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.5990798, "supported_languages": null}, "macro.dbt_utils._is_ephemeral": {"unique_id": "macro.dbt_utils._is_ephemeral", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/jinja_helpers/_is_ephemeral.sql", "original_file_path": "macros/jinja_helpers/_is_ephemeral.sql", "name": "_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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.600217, "supported_languages": null}, "macro.dbt_utils.get_intervals_between": {"unique_id": "macro.dbt_utils.get_intervals_between", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/date_spine.sql", "original_file_path": "macros/sql/date_spine.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__get_intervals_between"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.601072, "supported_languages": null}, "macro.dbt_utils.default__get_intervals_between": {"unique_id": "macro.dbt_utils.default__get_intervals_between", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/date_spine.sql", "original_file_path": "macros/sql/date_spine.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt.datediff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.60172, "supported_languages": null}, "macro.dbt_utils.date_spine": {"unique_id": "macro.dbt_utils.date_spine", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/date_spine.sql", "original_file_path": "macros/sql/date_spine.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__date_spine"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.6019762, "supported_languages": null}, "macro.dbt_utils.default__date_spine": {"unique_id": "macro.dbt_utils.default__date_spine", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/date_spine.sql", "original_file_path": "macros/sql/date_spine.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.602439, "supported_languages": null}, "macro.dbt_utils.nullcheck_table": {"unique_id": "macro.dbt_utils.nullcheck_table", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/nullcheck_table.sql", "original_file_path": "macros/sql/nullcheck_table.sql", "name": "nullcheck_table", "macro_sql": "{% macro nullcheck_table(relation) %}\n {{ return(adapter.dispatch('nullcheck_table', 'dbt_utils')(relation)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__nullcheck_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.602895, "supported_languages": null}, "macro.dbt_utils.default__nullcheck_table": {"unique_id": "macro.dbt_utils.default__nullcheck_table", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/nullcheck_table.sql", "original_file_path": "macros/sql/nullcheck_table.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.603271, "supported_languages": null}, "macro.dbt_utils.get_relations_by_pattern": {"unique_id": "macro.dbt_utils.get_relations_by_pattern", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_relations_by_pattern.sql", "original_file_path": "macros/sql/get_relations_by_pattern.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.604022, "supported_languages": null}, "macro.dbt_utils.default__get_relations_by_pattern": {"unique_id": "macro.dbt_utils.default__get_relations_by_pattern", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_relations_by_pattern.sql", "original_file_path": "macros/sql/get_relations_by_pattern.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.605024, "supported_languages": null}, "macro.dbt_utils.get_powers_of_two": {"unique_id": "macro.dbt_utils.get_powers_of_two", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/generate_series.sql", "original_file_path": "macros/sql/generate_series.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.605917, "supported_languages": null}, "macro.dbt_utils.default__get_powers_of_two": {"unique_id": "macro.dbt_utils.default__get_powers_of_two", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/generate_series.sql", "original_file_path": "macros/sql/generate_series.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.606357, "supported_languages": null}, "macro.dbt_utils.generate_series": {"unique_id": "macro.dbt_utils.generate_series", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/generate_series.sql", "original_file_path": "macros/sql/generate_series.sql", "name": "generate_series", "macro_sql": "{% macro generate_series(upper_bound) %}\n {{ return(adapter.dispatch('generate_series', 'dbt_utils')(upper_bound)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__generate_series"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.606557, "supported_languages": null}, "macro.dbt_utils.default__generate_series": {"unique_id": "macro.dbt_utils.default__generate_series", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/generate_series.sql", "original_file_path": "macros/sql/generate_series.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.get_powers_of_two"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.6071072, "supported_languages": null}, "macro.dbt_utils.get_relations_by_prefix": {"unique_id": "macro.dbt_utils.get_relations_by_prefix", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_relations_by_prefix.sql", "original_file_path": "macros/sql/get_relations_by_prefix.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.6078742, "supported_languages": null}, "macro.dbt_utils.default__get_relations_by_prefix": {"unique_id": "macro.dbt_utils.default__get_relations_by_prefix", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_relations_by_prefix.sql", "original_file_path": "macros/sql/get_relations_by_prefix.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.608799, "supported_languages": null}, "macro.dbt_utils.get_tables_by_prefix_sql": {"unique_id": "macro.dbt_utils.get_tables_by_prefix_sql", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_tables_by_prefix_sql.sql", "original_file_path": "macros/sql/get_tables_by_prefix_sql.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.6094809, "supported_languages": null}, "macro.dbt_utils.default__get_tables_by_prefix_sql": {"unique_id": "macro.dbt_utils.default__get_tables_by_prefix_sql", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_tables_by_prefix_sql.sql", "original_file_path": "macros/sql/get_tables_by_prefix_sql.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.6098628, "supported_languages": null}, "macro.dbt_utils.star": {"unique_id": "macro.dbt_utils.star", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/star.sql", "original_file_path": "macros/sql/star.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__star"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.611326, "supported_languages": null}, "macro.dbt_utils.default__star": {"unique_id": "macro.dbt_utils.default__star", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/star.sql", "original_file_path": "macros/sql/star.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.612881, "supported_languages": null}, "macro.dbt_utils.unpivot": {"unique_id": "macro.dbt_utils.unpivot", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/unpivot.sql", "original_file_path": "macros/sql/unpivot.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__unpivot"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.614358, "supported_languages": null}, "macro.dbt_utils.default__unpivot": {"unique_id": "macro.dbt_utils.default__unpivot", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/unpivot.sql", "original_file_path": "macros/sql/unpivot.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.616117, "supported_languages": null}, "macro.dbt_utils.safe_divide": {"unique_id": "macro.dbt_utils.safe_divide", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/safe_divide.sql", "original_file_path": "macros/sql/safe_divide.sql", "name": "safe_divide", "macro_sql": "{% macro safe_divide(numerator, denominator) -%}\n {{ return(adapter.dispatch('safe_divide', 'dbt_utils')(numerator, denominator)) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__safe_divide"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.6165628, "supported_languages": null}, "macro.dbt_utils.default__safe_divide": {"unique_id": "macro.dbt_utils.default__safe_divide", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/safe_divide.sql", "original_file_path": "macros/sql/safe_divide.sql", "name": "default__safe_divide", "macro_sql": "{% macro default__safe_divide(numerator, denominator) %}\n ( {{ numerator }} ) / nullif( ( {{ denominator }} ), 0)\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.616713, "supported_languages": null}, "macro.dbt_utils.union_relations": {"unique_id": "macro.dbt_utils.union_relations", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/union.sql", "original_file_path": "macros/sql/union.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__union_relations"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.61987, "supported_languages": null}, "macro.dbt_utils.default__union_relations": {"unique_id": "macro.dbt_utils.default__union_relations", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/union.sql", "original_file_path": "macros/sql/union.sql", "name": "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 -%}", "resource_type": "macro", "tags": [], "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": 1671209460.6235, "supported_languages": null}, "macro.dbt_utils.group_by": {"unique_id": "macro.dbt_utils.group_by", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/groupby.sql", "original_file_path": "macros/sql/groupby.sql", "name": "group_by", "macro_sql": "{%- macro group_by(n) -%}\n {{ return(adapter.dispatch('group_by', 'dbt_utils')(n)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__group_by"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.623969, "supported_languages": null}, "macro.dbt_utils.default__group_by": {"unique_id": "macro.dbt_utils.default__group_by", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/groupby.sql", "original_file_path": "macros/sql/groupby.sql", "name": "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 -%}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.624371, "supported_languages": null}, "macro.dbt_utils.deduplicate": {"unique_id": "macro.dbt_utils.deduplicate", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "name": "deduplicate", "macro_sql": "{%- macro deduplicate(relation, partition_by, order_by) -%}\n {{ return(adapter.dispatch('deduplicate', 'dbt_utils')(relation, partition_by, order_by)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.postgres__deduplicate"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.6253388, "supported_languages": null}, "macro.dbt_utils.default__deduplicate": {"unique_id": "macro.dbt_utils.default__deduplicate", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "name": "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", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.625579, "supported_languages": null}, "macro.dbt_utils.redshift__deduplicate": {"unique_id": "macro.dbt_utils.redshift__deduplicate", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__deduplicate"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.6258008, "supported_languages": null}, "macro.dbt_utils.postgres__deduplicate": {"unique_id": "macro.dbt_utils.postgres__deduplicate", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "name": "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", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.626003, "supported_languages": null}, "macro.dbt_utils.snowflake__deduplicate": {"unique_id": "macro.dbt_utils.snowflake__deduplicate", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "name": "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", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.626184, "supported_languages": null}, "macro.dbt_utils.bigquery__deduplicate": {"unique_id": "macro.dbt_utils.bigquery__deduplicate", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "name": "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 -%}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.626364, "supported_languages": null}, "macro.dbt_utils.surrogate_key": {"unique_id": "macro.dbt_utils.surrogate_key", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/surrogate_key.sql", "original_file_path": "macros/sql/surrogate_key.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__surrogate_key"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.6268852, "supported_languages": null}, "macro.dbt_utils.default__surrogate_key": {"unique_id": "macro.dbt_utils.default__surrogate_key", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/surrogate_key.sql", "original_file_path": "macros/sql/surrogate_key.sql", "name": "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 -%}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.627137, "supported_languages": null}, "macro.dbt_utils.safe_add": {"unique_id": "macro.dbt_utils.safe_add", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/safe_add.sql", "original_file_path": "macros/sql/safe_add.sql", "name": "safe_add", "macro_sql": "{%- macro safe_add(field_list) -%}\n {{ return(adapter.dispatch('safe_add', 'dbt_utils')(field_list)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__safe_add"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.62762, "supported_languages": null}, "macro.dbt_utils.default__safe_add": {"unique_id": "macro.dbt_utils.default__safe_add", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/safe_add.sql", "original_file_path": "macros/sql/safe_add.sql", "name": "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 -%}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.6282, "supported_languages": null}, "macro.dbt_utils.nullcheck": {"unique_id": "macro.dbt_utils.nullcheck", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/nullcheck.sql", "original_file_path": "macros/sql/nullcheck.sql", "name": "nullcheck", "macro_sql": "{% macro nullcheck(cols) %}\n {{ return(adapter.dispatch('nullcheck', 'dbt_utils')(cols)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__nullcheck"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.628642, "supported_languages": null}, "macro.dbt_utils.default__nullcheck": {"unique_id": "macro.dbt_utils.default__nullcheck", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/nullcheck.sql", "original_file_path": "macros/sql/nullcheck.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.628997, "supported_languages": null}, "macro.dbt_utils.get_tables_by_pattern_sql": {"unique_id": "macro.dbt_utils.get_tables_by_pattern_sql", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_tables_by_pattern_sql.sql", "original_file_path": "macros/sql/get_tables_by_pattern_sql.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.630805, "supported_languages": null}, "macro.dbt_utils.default__get_tables_by_pattern_sql": {"unique_id": "macro.dbt_utils.default__get_tables_by_pattern_sql", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_tables_by_pattern_sql.sql", "original_file_path": "macros/sql/get_tables_by_pattern_sql.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.get_table_types_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.6312032, "supported_languages": null}, "macro.dbt_utils.bigquery__get_tables_by_pattern_sql": {"unique_id": "macro.dbt_utils.bigquery__get_tables_by_pattern_sql", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_tables_by_pattern_sql.sql", "original_file_path": "macros/sql/get_tables_by_pattern_sql.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.632148, "supported_languages": null}, "macro.dbt_utils._bigquery__get_matching_schemata": {"unique_id": "macro.dbt_utils._bigquery__get_matching_schemata", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_tables_by_pattern_sql.sql", "original_file_path": "macros/sql/get_tables_by_pattern_sql.sql", "name": "_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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.632721, "supported_languages": null}, "macro.dbt_utils.get_column_values": {"unique_id": "macro.dbt_utils.get_column_values", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_column_values.sql", "original_file_path": "macros/sql/get_column_values.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__get_column_values"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.634254, "supported_languages": null}, "macro.dbt_utils.default__get_column_values": {"unique_id": "macro.dbt_utils.default__get_column_values", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_column_values.sql", "original_file_path": "macros/sql/get_column_values.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.63583, "supported_languages": null}, "macro.dbt_utils.pivot": {"unique_id": "macro.dbt_utils.pivot", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/pivot.sql", "original_file_path": "macros/sql/pivot.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__pivot"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.64814, "supported_languages": null}, "macro.dbt_utils.default__pivot": {"unique_id": "macro.dbt_utils.default__pivot", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/pivot.sql", "original_file_path": "macros/sql/pivot.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.6490738, "supported_languages": null}, "macro.dbt_utils.get_filtered_columns_in_relation": {"unique_id": "macro.dbt_utils.get_filtered_columns_in_relation", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_filtered_columns_in_relation.sql", "original_file_path": "macros/sql/get_filtered_columns_in_relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.6516821, "supported_languages": null}, "macro.dbt_utils.default__get_filtered_columns_in_relation": {"unique_id": "macro.dbt_utils.default__get_filtered_columns_in_relation", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_filtered_columns_in_relation.sql", "original_file_path": "macros/sql/get_filtered_columns_in_relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.652488, "supported_languages": null}, "macro.dbt_utils.width_bucket": {"unique_id": "macro.dbt_utils.width_bucket", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/width_bucket.sql", "original_file_path": "macros/sql/width_bucket.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__width_bucket"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.662462, "supported_languages": null}, "macro.dbt_utils.default__width_bucket": {"unique_id": "macro.dbt_utils.default__width_bucket", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/width_bucket.sql", "original_file_path": "macros/sql/width_bucket.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.66297, "supported_languages": null}, "macro.dbt_utils.redshift__width_bucket": {"unique_id": "macro.dbt_utils.redshift__width_bucket", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/width_bucket.sql", "original_file_path": "macros/sql/width_bucket.sql", "name": "redshift__width_bucket", "macro_sql": "{% macro redshift__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 exactly at the bucket edge\n case\n when\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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.663448, "supported_languages": null}, "macro.dbt_utils.snowflake__width_bucket": {"unique_id": "macro.dbt_utils.snowflake__width_bucket", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/width_bucket.sql", "original_file_path": "macros/sql/width_bucket.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.663648, "supported_languages": null}, "macro.dbt_utils.get_query_results_as_dict": {"unique_id": "macro.dbt_utils.get_query_results_as_dict", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_query_results_as_dict.sql", "original_file_path": "macros/sql/get_query_results_as_dict.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "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": 1671209460.664635, "supported_languages": null}, "macro.dbt_utils.default__get_query_results_as_dict": {"unique_id": "macro.dbt_utils.default__get_query_results_as_dict", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_query_results_as_dict.sql", "original_file_path": "macros/sql/get_query_results_as_dict.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.665407, "supported_languages": null}, "macro.dbt_utils.generate_surrogate_key": {"unique_id": "macro.dbt_utils.generate_surrogate_key", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/generate_surrogate_key.sql", "original_file_path": "macros/sql/generate_surrogate_key.sql", "name": "generate_surrogate_key", "macro_sql": "{%- macro generate_surrogate_key(field_list) -%}\n {{ return(adapter.dispatch('generate_surrogate_key', 'dbt_utils')(field_list)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__generate_surrogate_key"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.669749, "supported_languages": null}, "macro.dbt_utils.default__generate_surrogate_key": {"unique_id": "macro.dbt_utils.default__generate_surrogate_key", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/generate_surrogate_key.sql", "original_file_path": "macros/sql/generate_surrogate_key.sql", "name": "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 -%}", "resource_type": "macro", "tags": [], "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": 1671209460.670482, "supported_languages": null}, "macro.dbt_utils.get_table_types_sql": {"unique_id": "macro.dbt_utils.get_table_types_sql", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_table_types_sql.sql", "original_file_path": "macros/sql/get_table_types_sql.sql", "name": "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", "resource_type": "macro", "tags": [], "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": 1671209460.6710331, "supported_languages": null}, "macro.dbt_utils.default__get_table_types_sql": {"unique_id": "macro.dbt_utils.default__get_table_types_sql", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_table_types_sql.sql", "original_file_path": "macros/sql/get_table_types_sql.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.6711879, "supported_languages": null}, "macro.dbt_utils.postgres__get_table_types_sql": {"unique_id": "macro.dbt_utils.postgres__get_table_types_sql", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_table_types_sql.sql", "original_file_path": "macros/sql/get_table_types_sql.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.6713312, "supported_languages": null}, "macro.dbt_utils.get_single_value": {"unique_id": "macro.dbt_utils.get_single_value", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_single_value.sql", "original_file_path": "macros/sql/get_single_value.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__get_single_value"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.671943, "supported_languages": null}, "macro.dbt_utils.default__get_single_value": {"unique_id": "macro.dbt_utils.default__get_single_value", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/get_single_value.sql", "original_file_path": "macros/sql/get_single_value.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.6728451, "supported_languages": null}, "macro.dbt_utils.degrees_to_radians": {"unique_id": "macro.dbt_utils.degrees_to_radians", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/haversine_distance.sql", "original_file_path": "macros/sql/haversine_distance.sql", "name": "degrees_to_radians", "macro_sql": "{% macro degrees_to_radians(degrees) -%}\n acos(-1) * {{degrees}} / 180\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.674005, "supported_languages": null}, "macro.dbt_utils.haversine_distance": {"unique_id": "macro.dbt_utils.haversine_distance", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/haversine_distance.sql", "original_file_path": "macros/sql/haversine_distance.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.default__haversine_distance"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.6743, "supported_languages": null}, "macro.dbt_utils.default__haversine_distance": {"unique_id": "macro.dbt_utils.default__haversine_distance", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/haversine_distance.sql", "original_file_path": "macros/sql/haversine_distance.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.6748888, "supported_languages": null}, "macro.dbt_utils.bigquery__haversine_distance": {"unique_id": "macro.dbt_utils.bigquery__haversine_distance", "package_name": "dbt_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/dbt_utils", "path": "macros/sql/haversine_distance.sql", "original_file_path": "macros/sql/haversine_distance.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.degrees_to_radians"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.675717, "supported_languages": null}, "macro.spark_utils.get_tables": {"unique_id": "macro.spark_utils.get_tables", "package_name": "spark_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/maintenance_operation.sql", "original_file_path": "macros/maintenance_operation.sql", "name": "get_tables", "macro_sql": "{% macro get_tables(table_regex_pattern='.*') %}\n\n {% set tables = [] %}\n {% for database in spark__list_schemas('not_used') %}\n {% for table in spark__list_relations_without_caching(database[0]) %}\n {% set db_tablename = database[0] ~ \".\" ~ table[1] %}\n {% set is_match = modules.re.match(table_regex_pattern, db_tablename) %}\n {% if is_match %}\n {% call statement('table_detail', fetch_result=True) -%}\n describe extended {{ db_tablename }}\n {% endcall %}\n\n {% set table_type = load_result('table_detail').table|reverse|selectattr(0, 'in', ('type', 'TYPE', 'Type'))|first %}\n {% if table_type[1]|lower != 'view' %}\n {{ tables.append(db_tablename) }}\n {% endif %}\n {% endif %}\n {% endfor %}\n {% endfor %}\n {{ return(tables) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.681031, "supported_languages": null}, "macro.spark_utils.get_delta_tables": {"unique_id": "macro.spark_utils.get_delta_tables", "package_name": "spark_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/maintenance_operation.sql", "original_file_path": "macros/maintenance_operation.sql", "name": "get_delta_tables", "macro_sql": "{% macro get_delta_tables(table_regex_pattern='.*') %}\n\n {% set delta_tables = [] %}\n {% for db_tablename in get_tables(table_regex_pattern) %}\n {% call statement('table_detail', fetch_result=True) -%}\n describe extended {{ db_tablename }}\n {% endcall %}\n\n {% set table_type = load_result('table_detail').table|reverse|selectattr(0, 'in', ('provider', 'PROVIDER', 'Provider'))|first %}\n {% if table_type[1]|lower == 'delta' %}\n {{ delta_tables.append(db_tablename) }}\n {% endif %}\n {% endfor %}\n {{ return(delta_tables) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.spark_utils.get_tables", "macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.681851, "supported_languages": null}, "macro.spark_utils.get_statistic_columns": {"unique_id": "macro.spark_utils.get_statistic_columns", "package_name": "spark_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/maintenance_operation.sql", "original_file_path": "macros/maintenance_operation.sql", "name": "get_statistic_columns", "macro_sql": "{% macro get_statistic_columns(table) %}\n\n {% call statement('input_columns', fetch_result=True) %}\n SHOW COLUMNS IN {{ table }}\n {% endcall %}\n {% set input_columns = load_result('input_columns').table %}\n\n {% set output_columns = [] %}\n {% for column in input_columns %}\n {% call statement('column_information', fetch_result=True) %}\n DESCRIBE TABLE {{ table }} `{{ column[0] }}`\n {% endcall %}\n {% if not load_result('column_information').table[1][1].startswith('struct') and not load_result('column_information').table[1][1].startswith('array') %}\n {{ output_columns.append('`' ~ column[0] ~ '`') }}\n {% endif %}\n {% endfor %}\n {{ return(output_columns) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.6828082, "supported_languages": null}, "macro.spark_utils.spark_optimize_delta_tables": {"unique_id": "macro.spark_utils.spark_optimize_delta_tables", "package_name": "spark_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/maintenance_operation.sql", "original_file_path": "macros/maintenance_operation.sql", "name": "spark_optimize_delta_tables", "macro_sql": "{% macro spark_optimize_delta_tables(table_regex_pattern='.*') %}\n\n {% for table in get_delta_tables(table_regex_pattern) %}\n {% set start=modules.datetime.datetime.now() %}\n {% set message_prefix=loop.index ~ \" of \" ~ loop.length %}\n {{ dbt_utils.log_info(message_prefix ~ \" Optimizing \" ~ table) }}\n {% do run_query(\"optimize \" ~ table) %}\n {% set end=modules.datetime.datetime.now() %}\n {% set total_seconds = (end - start).total_seconds() | round(2) %}\n {{ dbt_utils.log_info(message_prefix ~ \" Finished \" ~ table ~ \" in \" ~ total_seconds ~ \"s\") }}\n {% endfor %}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.spark_utils.get_delta_tables", "macro.dbt_utils.log_info", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.683597, "supported_languages": null}, "macro.spark_utils.spark_vacuum_delta_tables": {"unique_id": "macro.spark_utils.spark_vacuum_delta_tables", "package_name": "spark_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/maintenance_operation.sql", "original_file_path": "macros/maintenance_operation.sql", "name": "spark_vacuum_delta_tables", "macro_sql": "{% macro spark_vacuum_delta_tables(table_regex_pattern='.*') %}\n\n {% for table in get_delta_tables(table_regex_pattern) %}\n {% set start=modules.datetime.datetime.now() %}\n {% set message_prefix=loop.index ~ \" of \" ~ loop.length %}\n {{ dbt_utils.log_info(message_prefix ~ \" Vacuuming \" ~ table) }}\n {% do run_query(\"vacuum \" ~ table) %}\n {% set end=modules.datetime.datetime.now() %}\n {% set total_seconds = (end - start).total_seconds() | round(2) %}\n {{ dbt_utils.log_info(message_prefix ~ \" Finished \" ~ table ~ \" in \" ~ total_seconds ~ \"s\") }}\n {% endfor %}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.spark_utils.get_delta_tables", "macro.dbt_utils.log_info", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.684371, "supported_languages": null}, "macro.spark_utils.spark_analyze_tables": {"unique_id": "macro.spark_utils.spark_analyze_tables", "package_name": "spark_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/maintenance_operation.sql", "original_file_path": "macros/maintenance_operation.sql", "name": "spark_analyze_tables", "macro_sql": "{% macro spark_analyze_tables(table_regex_pattern='.*') %}\n\n {% for table in get_tables(table_regex_pattern) %}\n {% set start=modules.datetime.datetime.now() %}\n {% set columns = get_statistic_columns(table) | join(',') %}\n {% set message_prefix=loop.index ~ \" of \" ~ loop.length %}\n {{ dbt_utils.log_info(message_prefix ~ \" Analyzing \" ~ table) }}\n {% if columns != '' %}\n {% do run_query(\"analyze table \" ~ table ~ \" compute statistics for columns \" ~ columns) %}\n {% endif %}\n {% set end=modules.datetime.datetime.now() %}\n {% set total_seconds = (end - start).total_seconds() | round(2) %}\n {{ dbt_utils.log_info(message_prefix ~ \" Finished \" ~ table ~ \" in \" ~ total_seconds ~ \"s\") }}\n {% endfor %}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.spark_utils.get_tables", "macro.spark_utils.get_statistic_columns", "macro.dbt_utils.log_info", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.6853929, "supported_languages": null}, "macro.spark_utils.spark__concat": {"unique_id": "macro.spark_utils.spark__concat", "package_name": "spark_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/dbt_utils/cross_db_utils/concat.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/concat.sql", "name": "spark__concat", "macro_sql": "{% macro spark__concat(fields) -%}\n concat({{ fields|join(', ') }})\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.6857128, "supported_languages": null}, "macro.spark_utils.spark__type_numeric": {"unique_id": "macro.spark_utils.spark__type_numeric", "package_name": "spark_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/dbt_utils/cross_db_utils/datatypes.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/datatypes.sql", "name": "spark__type_numeric", "macro_sql": "{% macro spark__type_numeric() %}\n decimal(28, 6)\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.685921, "supported_languages": null}, "macro.spark_utils.spark__dateadd": {"unique_id": "macro.spark_utils.spark__dateadd", "package_name": "spark_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/dbt_utils/cross_db_utils/dateadd.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/dateadd.sql", "name": "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({{ spark_utils.assert_not_null('to_timestamp', from_date_or_timestamp) }})\n - to_unix_timestamp({{ spark_utils.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 {{ spark_utils.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 {{ spark_utils.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 {{ spark_utils.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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.spark_utils.assert_not_null"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.688761, "supported_languages": null}, "macro.spark_utils.spark__datediff": {"unique_id": "macro.spark_utils.spark__datediff", "package_name": "spark_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/dbt_utils/cross_db_utils/datediff.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/datediff.sql", "name": "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 = spark_utils.assert_not_null('date', first_date) %}\n {% set second_date = spark_utils.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 {{ spark_utils.assert_not_null('to_unix_timestamp', spark_utils.assert_not_null('to_timestamp', second_date)) }}\n - {{ spark_utils.assert_not_null('to_unix_timestamp', spark_utils.assert_not_null('to_timestamp', first_date)) }}\n ) / {{divisor}})\n else floor((\n {{ spark_utils.assert_not_null('to_unix_timestamp', spark_utils.assert_not_null('to_timestamp', second_date)) }}\n - {{ spark_utils.assert_not_null('to_unix_timestamp', spark_utils.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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.spark_utils.assert_not_null"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.696495, "supported_languages": null}, "macro.spark_utils.spark__current_timestamp": {"unique_id": "macro.spark_utils.spark__current_timestamp", "package_name": "spark_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/dbt_utils/cross_db_utils/current_timestamp.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/current_timestamp.sql", "name": "spark__current_timestamp", "macro_sql": "{% macro spark__current_timestamp() %}\n current_timestamp()\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.696841, "supported_languages": null}, "macro.spark_utils.spark__current_timestamp_in_utc": {"unique_id": "macro.spark_utils.spark__current_timestamp_in_utc", "package_name": "spark_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/dbt_utils/cross_db_utils/current_timestamp.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/current_timestamp.sql", "name": "spark__current_timestamp_in_utc", "macro_sql": "{% macro spark__current_timestamp_in_utc() %}\n unix_timestamp()\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.696922, "supported_languages": null}, "macro.spark_utils.spark__split_part": {"unique_id": "macro.spark_utils.spark__split_part", "package_name": "spark_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/dbt_utils/cross_db_utils/split_part.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/split_part.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.6976159, "supported_languages": null}, "macro.spark_utils.spark__get_relations_by_pattern": {"unique_id": "macro.spark_utils.spark__get_relations_by_pattern", "package_name": "spark_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "original_file_path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "name": "spark__get_relations_by_pattern", "macro_sql": "{% macro spark__get_relations_by_pattern(schema_pattern, table_pattern, exclude='', database=target.database) %}\n\n {%- call statement('get_tables', fetch_result=True) %}\n\n show table extended in {{ schema_pattern }} like '{{ table_pattern }}'\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=None,\n schema=row[0],\n identifier=row[1],\n type=('view' if 'Type: VIEW' in row[3] else 'table')\n ) -%}\n {%- do tbl_relations.append(tbl_relation) -%}\n {%- endfor -%}\n\n {{ return(tbl_relations) }}\n {%- else -%}\n {{ return([]) }}\n {%- endif -%}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.699307, "supported_languages": null}, "macro.spark_utils.spark__get_relations_by_prefix": {"unique_id": "macro.spark_utils.spark__get_relations_by_prefix", "package_name": "spark_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "original_file_path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "name": "spark__get_relations_by_prefix", "macro_sql": "{% macro spark__get_relations_by_prefix(schema_pattern, table_pattern, exclude='', database=target.database) %}\n {% set table_pattern = table_pattern ~ '*' %}\n {{ return(spark_utils.spark__get_relations_by_pattern(schema_pattern, table_pattern, exclude='', database=target.database)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.spark_utils.spark__get_relations_by_pattern"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.699668, "supported_languages": null}, "macro.spark_utils.spark__get_tables_by_pattern": {"unique_id": "macro.spark_utils.spark__get_tables_by_pattern", "package_name": "spark_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "original_file_path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "name": "spark__get_tables_by_pattern", "macro_sql": "{% macro spark__get_tables_by_pattern(schema_pattern, table_pattern, exclude='', database=target.database) %}\n {{ return(spark_utils.spark__get_relations_by_pattern(schema_pattern, table_pattern, exclude='', database=target.database)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.spark_utils.spark__get_relations_by_pattern"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.69996, "supported_languages": null}, "macro.spark_utils.spark__get_tables_by_prefix": {"unique_id": "macro.spark_utils.spark__get_tables_by_prefix", "package_name": "spark_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "original_file_path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "name": "spark__get_tables_by_prefix", "macro_sql": "{% macro spark__get_tables_by_prefix(schema_pattern, table_pattern, exclude='', database=target.database) %}\n {{ return(spark_utils.spark__get_relations_by_prefix(schema_pattern, table_pattern, exclude='', database=target.database)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.spark_utils.spark__get_relations_by_prefix"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.7002492, "supported_languages": null}, "macro.spark_utils.assert_not_null": {"unique_id": "macro.spark_utils.assert_not_null", "package_name": "spark_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/etc/assert_not_null.sql", "original_file_path": "macros/etc/assert_not_null.sql", "name": "assert_not_null", "macro_sql": "{% macro assert_not_null(function, arg) -%}\n {{ return(adapter.dispatch('assert_not_null', 'spark_utils')(function, arg)) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.spark_utils.default__assert_not_null"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.70068, "supported_languages": null}, "macro.spark_utils.default__assert_not_null": {"unique_id": "macro.spark_utils.default__assert_not_null", "package_name": "spark_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/etc/assert_not_null.sql", "original_file_path": "macros/etc/assert_not_null.sql", "name": "default__assert_not_null", "macro_sql": "{% macro default__assert_not_null(function, arg) %}\n\n coalesce({{function}}({{arg}}), nvl2({{function}}({{arg}}), assert_true({{function}}({{arg}}) is not null), null))\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.700893, "supported_languages": null}, "macro.spark_utils.spark__convert_timezone": {"unique_id": "macro.spark_utils.spark__convert_timezone", "package_name": "spark_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/spark_utils", "path": "macros/snowplow/convert_timezone.sql", "original_file_path": "macros/snowplow/convert_timezone.sql", "name": "spark__convert_timezone", "macro_sql": "{% macro spark__convert_timezone(in_tz, out_tz, in_timestamp) %}\n from_utc_timestamp(to_utc_timestamp({{in_timestamp}}, {{in_tz}}), {{out_tz}})\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.7012742, "supported_languages": null}, "macro.fivetran_utils.enabled_vars": {"unique_id": "macro.fivetran_utils.enabled_vars", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/enabled_vars.sql", "original_file_path": "macros/enabled_vars.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.701888, "supported_languages": null}, "macro.fivetran_utils.percentile": {"unique_id": "macro.fivetran_utils.percentile", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.postgres__percentile"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.702889, "supported_languages": null}, "macro.fivetran_utils.default__percentile": {"unique_id": "macro.fivetran_utils.default__percentile", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.703068, "supported_languages": null}, "macro.fivetran_utils.redshift__percentile": {"unique_id": "macro.fivetran_utils.redshift__percentile", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.7032351, "supported_languages": null}, "macro.fivetran_utils.bigquery__percentile": {"unique_id": "macro.fivetran_utils.bigquery__percentile", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.7034051, "supported_languages": null}, "macro.fivetran_utils.postgres__percentile": {"unique_id": "macro.fivetran_utils.postgres__percentile", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.7035542, "supported_languages": null}, "macro.fivetran_utils.spark__percentile": {"unique_id": "macro.fivetran_utils.spark__percentile", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.703723, "supported_languages": null}, "macro.fivetran_utils.pivot_json_extract": {"unique_id": "macro.fivetran_utils.pivot_json_extract", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/pivot_json_extract.sql", "original_file_path": "macros/pivot_json_extract.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.json_extract"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.704996, "supported_languages": null}, "macro.fivetran_utils.persist_pass_through_columns": {"unique_id": "macro.fivetran_utils.persist_pass_through_columns", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/persist_pass_through_columns.sql", "original_file_path": "macros/persist_pass_through_columns.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.70576, "supported_languages": null}, "macro.fivetran_utils.json_parse": {"unique_id": "macro.fivetran_utils.json_parse", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "name": "json_parse", "macro_sql": "{% macro json_parse(string, string_path) -%}\n\n{{ adapter.dispatch('json_parse', 'fivetran_utils') (string, string_path) }}\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.postgres__json_parse"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.706934, "supported_languages": null}, "macro.fivetran_utils.default__json_parse": {"unique_id": "macro.fivetran_utils.default__json_parse", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.707196, "supported_languages": null}, "macro.fivetran_utils.redshift__json_parse": {"unique_id": "macro.fivetran_utils.redshift__json_parse", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.707456, "supported_languages": null}, "macro.fivetran_utils.bigquery__json_parse": {"unique_id": "macro.fivetran_utils.bigquery__json_parse", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.707705, "supported_languages": null}, "macro.fivetran_utils.postgres__json_parse": {"unique_id": "macro.fivetran_utils.postgres__json_parse", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.707959, "supported_languages": null}, "macro.fivetran_utils.snowflake__json_parse": {"unique_id": "macro.fivetran_utils.snowflake__json_parse", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.708228, "supported_languages": null}, "macro.fivetran_utils.spark__json_parse": {"unique_id": "macro.fivetran_utils.spark__json_parse", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.7084951, "supported_languages": null}, "macro.fivetran_utils.max_bool": {"unique_id": "macro.fivetran_utils.max_bool", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/max_bool.sql", "original_file_path": "macros/max_bool.sql", "name": "max_bool", "macro_sql": "{% macro max_bool(boolean_field) -%}\n\n{{ adapter.dispatch('max_bool', 'fivetran_utils') (boolean_field) }}\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.default__max_bool"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.70891, "supported_languages": null}, "macro.fivetran_utils.default__max_bool": {"unique_id": "macro.fivetran_utils.default__max_bool", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/max_bool.sql", "original_file_path": "macros/max_bool.sql", "name": "default__max_bool", "macro_sql": "{% macro default__max_bool(boolean_field) %}\n\n bool_or( {{ boolean_field }} )\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.709014, "supported_languages": null}, "macro.fivetran_utils.snowflake__max_bool": {"unique_id": "macro.fivetran_utils.snowflake__max_bool", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/max_bool.sql", "original_file_path": "macros/max_bool.sql", "name": "snowflake__max_bool", "macro_sql": "{% macro snowflake__max_bool(boolean_field) %}\n\n max( {{ boolean_field }} )\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.709118, "supported_languages": null}, "macro.fivetran_utils.bigquery__max_bool": {"unique_id": "macro.fivetran_utils.bigquery__max_bool", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/max_bool.sql", "original_file_path": "macros/max_bool.sql", "name": "bigquery__max_bool", "macro_sql": "{% macro bigquery__max_bool(boolean_field) %}\n\n max( {{ boolean_field }} )\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.709225, "supported_languages": null}, "macro.fivetran_utils.calculated_fields": {"unique_id": "macro.fivetran_utils.calculated_fields", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/calculated_fields.sql", "original_file_path": "macros/calculated_fields.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.709677, "supported_languages": null}, "macro.fivetran_utils.seed_data_helper": {"unique_id": "macro.fivetran_utils.seed_data_helper", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/seed_data_helper.sql", "original_file_path": "macros/seed_data_helper.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.710339, "supported_languages": null}, "macro.fivetran_utils.fill_pass_through_columns": {"unique_id": "macro.fivetran_utils.fill_pass_through_columns", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/fill_pass_through_columns.sql", "original_file_path": "macros/fill_pass_through_columns.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.711274, "supported_languages": null}, "macro.fivetran_utils.string_agg": {"unique_id": "macro.fivetran_utils.string_agg", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/string_agg.sql", "original_file_path": "macros/string_agg.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.default__string_agg"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.712048, "supported_languages": null}, "macro.fivetran_utils.default__string_agg": {"unique_id": "macro.fivetran_utils.default__string_agg", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/string_agg.sql", "original_file_path": "macros/string_agg.sql", "name": "default__string_agg", "macro_sql": "{% macro default__string_agg(field_to_agg, delimiter) %}\n string_agg({{ field_to_agg }}, {{ delimiter }})\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.7122061, "supported_languages": null}, "macro.fivetran_utils.snowflake__string_agg": {"unique_id": "macro.fivetran_utils.snowflake__string_agg", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/string_agg.sql", "original_file_path": "macros/string_agg.sql", "name": "snowflake__string_agg", "macro_sql": "{% macro snowflake__string_agg(field_to_agg, delimiter) %}\n listagg({{ field_to_agg }}, {{ delimiter }})\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.712351, "supported_languages": null}, "macro.fivetran_utils.redshift__string_agg": {"unique_id": "macro.fivetran_utils.redshift__string_agg", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/string_agg.sql", "original_file_path": "macros/string_agg.sql", "name": "redshift__string_agg", "macro_sql": "{% macro redshift__string_agg(field_to_agg, delimiter) %}\n listagg({{ field_to_agg }}, {{ delimiter }})\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.7124841, "supported_languages": null}, "macro.fivetran_utils.spark__string_agg": {"unique_id": "macro.fivetran_utils.spark__string_agg", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/string_agg.sql", "original_file_path": "macros/string_agg.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.7127209, "supported_languages": null}, "macro.fivetran_utils.timestamp_diff": {"unique_id": "macro.fivetran_utils.timestamp_diff", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/timestamp_diff.sql", "original_file_path": "macros/timestamp_diff.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.postgres__timestamp_diff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.715658, "supported_languages": null}, "macro.fivetran_utils.default__timestamp_diff": {"unique_id": "macro.fivetran_utils.default__timestamp_diff", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/timestamp_diff.sql", "original_file_path": "macros/timestamp_diff.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.715832, "supported_languages": null}, "macro.fivetran_utils.redshift__timestamp_diff": {"unique_id": "macro.fivetran_utils.redshift__timestamp_diff", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/timestamp_diff.sql", "original_file_path": "macros/timestamp_diff.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.716032, "supported_languages": null}, "macro.fivetran_utils.bigquery__timestamp_diff": {"unique_id": "macro.fivetran_utils.bigquery__timestamp_diff", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/timestamp_diff.sql", "original_file_path": "macros/timestamp_diff.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.716218, "supported_languages": null}, "macro.fivetran_utils.postgres__timestamp_diff": {"unique_id": "macro.fivetran_utils.postgres__timestamp_diff", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/timestamp_diff.sql", "original_file_path": "macros/timestamp_diff.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.datediff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.718009, "supported_languages": null}, "macro.fivetran_utils.try_cast": {"unique_id": "macro.fivetran_utils.try_cast", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "name": "try_cast", "macro_sql": "{% macro try_cast(field, type) %}\n {{ adapter.dispatch('try_cast', 'fivetran_utils') (field, type) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.postgres__try_cast"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.718994, "supported_languages": null}, "macro.fivetran_utils.default__safe_cast": {"unique_id": "macro.fivetran_utils.default__safe_cast", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.719149, "supported_languages": null}, "macro.fivetran_utils.redshift__try_cast": {"unique_id": "macro.fivetran_utils.redshift__try_cast", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.719444, "supported_languages": null}, "macro.fivetran_utils.postgres__try_cast": {"unique_id": "macro.fivetran_utils.postgres__try_cast", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.719754, "supported_languages": null}, "macro.fivetran_utils.snowflake__try_cast": {"unique_id": "macro.fivetran_utils.snowflake__try_cast", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "name": "snowflake__try_cast", "macro_sql": "{% macro snowflake__try_cast(field, type) %}\n try_cast(cast({{field}} as varchar) as {{type}})\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.719896, "supported_languages": null}, "macro.fivetran_utils.bigquery__try_cast": {"unique_id": "macro.fivetran_utils.bigquery__try_cast", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "name": "bigquery__try_cast", "macro_sql": "{% macro bigquery__try_cast(field, type) %}\n safe_cast({{field}} as {{type}})\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.72003, "supported_languages": null}, "macro.fivetran_utils.spark__try_cast": {"unique_id": "macro.fivetran_utils.spark__try_cast", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "name": "spark__try_cast", "macro_sql": "{% macro spark__try_cast(field, type) %}\n try_cast({{field}} as {{type}})\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.720225, "supported_languages": null}, "macro.fivetran_utils.source_relation": {"unique_id": "macro.fivetran_utils.source_relation", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/source_relation.sql", "original_file_path": "macros/source_relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.default__source_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.720899, "supported_languages": null}, "macro.fivetran_utils.default__source_relation": {"unique_id": "macro.fivetran_utils.default__source_relation", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/source_relation.sql", "original_file_path": "macros/source_relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.7216089, "supported_languages": null}, "macro.fivetran_utils.first_value": {"unique_id": "macro.fivetran_utils.first_value", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/first_value.sql", "original_file_path": "macros/first_value.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.default__first_value"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.722295, "supported_languages": null}, "macro.fivetran_utils.default__first_value": {"unique_id": "macro.fivetran_utils.default__first_value", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/first_value.sql", "original_file_path": "macros/first_value.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.7225091, "supported_languages": null}, "macro.fivetran_utils.redshift__first_value": {"unique_id": "macro.fivetran_utils.redshift__first_value", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/first_value.sql", "original_file_path": "macros/first_value.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.722741, "supported_languages": null}, "macro.fivetran_utils.add_dbt_source_relation": {"unique_id": "macro.fivetran_utils.add_dbt_source_relation", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/add_dbt_source_relation.sql", "original_file_path": "macros/add_dbt_source_relation.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.723115, "supported_languages": null}, "macro.fivetran_utils.add_pass_through_columns": {"unique_id": "macro.fivetran_utils.add_pass_through_columns", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/add_pass_through_columns.sql", "original_file_path": "macros/add_pass_through_columns.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.7245288, "supported_languages": null}, "macro.fivetran_utils.union_relations": {"unique_id": "macro.fivetran_utils.union_relations", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/union_relations.sql", "original_file_path": "macros/union_relations.sql", "name": "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", "resource_type": "macro", "tags": [], "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": 1671209460.728815, "supported_languages": null}, "macro.fivetran_utils.union_tables": {"unique_id": "macro.fivetran_utils.union_tables", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/union_relations.sql", "original_file_path": "macros/union_relations.sql", "name": "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 -%}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.union_relations"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.729218, "supported_languages": null}, "macro.fivetran_utils.snowflake_seed_data": {"unique_id": "macro.fivetran_utils.snowflake_seed_data", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/snowflake_seed_data.sql", "original_file_path": "macros/snowflake_seed_data.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.729804, "supported_languages": null}, "macro.fivetran_utils.fill_staging_columns": {"unique_id": "macro.fivetran_utils.fill_staging_columns", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/fill_staging_columns.sql", "original_file_path": "macros/fill_staging_columns.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.quote_column"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.7316182, "supported_languages": null}, "macro.fivetran_utils.quote_column": {"unique_id": "macro.fivetran_utils.quote_column", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/fill_staging_columns.sql", "original_file_path": "macros/fill_staging_columns.sql", "name": "quote_column", "macro_sql": "{% macro quote_column(column) %}\n {% if 'quote' in column %}\n {% if column.quote %}\n {% if target.type in ('bigquery', 'spark') %}\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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.732333, "supported_languages": null}, "macro.fivetran_utils.json_extract": {"unique_id": "macro.fivetran_utils.json_extract", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "name": "json_extract", "macro_sql": "{% macro json_extract(string, string_path) -%}\n\n{{ adapter.dispatch('json_extract', 'fivetran_utils') (string, string_path) }}\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.postgres__json_extract"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.7331798, "supported_languages": null}, "macro.fivetran_utils.default__json_extract": {"unique_id": "macro.fivetran_utils.default__json_extract", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "name": "default__json_extract", "macro_sql": "{% macro default__json_extract(string, string_path) %}\n\n json_extract_path_text({{string}}, {{ \"'\" ~ string_path ~ \"'\" }} )\n \n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.733363, "supported_languages": null}, "macro.fivetran_utils.snowflake__json_extract": {"unique_id": "macro.fivetran_utils.snowflake__json_extract", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.733537, "supported_languages": null}, "macro.fivetran_utils.redshift__json_extract": {"unique_id": "macro.fivetran_utils.redshift__json_extract", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.7337248, "supported_languages": null}, "macro.fivetran_utils.bigquery__json_extract": {"unique_id": "macro.fivetran_utils.bigquery__json_extract", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "name": "bigquery__json_extract", "macro_sql": "{% macro bigquery__json_extract(string, string_path) %}\n\n json_extract_scalar({{string}}, {{ \"'$.\" ~ string_path ~ \"'\" }} )\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.733891, "supported_languages": null}, "macro.fivetran_utils.postgres__json_extract": {"unique_id": "macro.fivetran_utils.postgres__json_extract", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "name": "postgres__json_extract", "macro_sql": "{% macro postgres__json_extract(string, string_path) %}\n\n {{string}}::json->>{{\"'\" ~ string_path ~ \"'\" }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.7340531, "supported_languages": null}, "macro.fivetran_utils.collect_freshness": {"unique_id": "macro.fivetran_utils.collect_freshness", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/collect_freshness.sql", "original_file_path": "macros/collect_freshness.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.default__collect_freshness"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.734946, "supported_languages": null}, "macro.fivetran_utils.default__collect_freshness": {"unique_id": "macro.fivetran_utils.default__collect_freshness", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/collect_freshness.sql", "original_file_path": "macros/collect_freshness.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt.current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.7359538, "supported_languages": null}, "macro.fivetran_utils.timestamp_add": {"unique_id": "macro.fivetran_utils.timestamp_add", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.postgres__timestamp_add"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.7367492, "supported_languages": null}, "macro.fivetran_utils.default__timestamp_add": {"unique_id": "macro.fivetran_utils.default__timestamp_add", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.736928, "supported_languages": null}, "macro.fivetran_utils.bigquery__timestamp_add": {"unique_id": "macro.fivetran_utils.bigquery__timestamp_add", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.7370949, "supported_languages": null}, "macro.fivetran_utils.redshift__timestamp_add": {"unique_id": "macro.fivetran_utils.redshift__timestamp_add", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.737267, "supported_languages": null}, "macro.fivetran_utils.postgres__timestamp_add": {"unique_id": "macro.fivetran_utils.postgres__timestamp_add", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "name": "postgres__timestamp_add", "macro_sql": "{% macro postgres__timestamp_add(datepart, interval, from_timestamp) %}\n\n {{ from_timestamp }} + ((interval '1 {{ datepart }}') * ({{ interval }}))\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.7374358, "supported_languages": null}, "macro.fivetran_utils.spark__timestamp_add": {"unique_id": "macro.fivetran_utils.spark__timestamp_add", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "name": "spark__timestamp_add", "macro_sql": "{% macro spark__timestamp_add(datepart, interval, from_timestamp) %}\n\n {{ dbt.dateadd(datepart, interval, from_timestamp) }}\n \n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.737709, "supported_languages": null}, "macro.fivetran_utils.ceiling": {"unique_id": "macro.fivetran_utils.ceiling", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/ceiling.sql", "original_file_path": "macros/ceiling.sql", "name": "ceiling", "macro_sql": "{% macro ceiling(num) -%}\n\n{{ adapter.dispatch('ceiling', 'fivetran_utils') (num) }}\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.default__ceiling"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.738071, "supported_languages": null}, "macro.fivetran_utils.default__ceiling": {"unique_id": "macro.fivetran_utils.default__ceiling", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/ceiling.sql", "original_file_path": "macros/ceiling.sql", "name": "default__ceiling", "macro_sql": "{% macro default__ceiling(num) %}\n ceiling({{ num }})\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.738177, "supported_languages": null}, "macro.fivetran_utils.snowflake__ceiling": {"unique_id": "macro.fivetran_utils.snowflake__ceiling", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/ceiling.sql", "original_file_path": "macros/ceiling.sql", "name": "snowflake__ceiling", "macro_sql": "{% macro snowflake__ceiling(num) %}\n ceil({{ num }})\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.738281, "supported_languages": null}, "macro.fivetran_utils.remove_prefix_from_columns": {"unique_id": "macro.fivetran_utils.remove_prefix_from_columns", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/remove_prefix_from_columns.sql", "original_file_path": "macros/remove_prefix_from_columns.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.739022, "supported_languages": null}, "macro.fivetran_utils.union_data": {"unique_id": "macro.fivetran_utils.union_data", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/union_data.sql", "original_file_path": "macros/union_data.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.default__union_data"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.740428, "supported_languages": null}, "macro.fivetran_utils.default__union_data": {"unique_id": "macro.fivetran_utils.default__union_data", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/union_data.sql", "original_file_path": "macros/union_data.sql", "name": "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\n {% do relations.append(relation) %}\n \n {% endif %}\n\n {% endfor %}\n\n {{ dbt_utils.union_relations(relations) }}\n\n{% elif var(union_database_variable, none) %}\n\n {% set relations = [] %}\n\n {% for database in var(union_database_variable) %}\n\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\n {% do relations.append(relation) %}\n \n {% endif %}\n\n {% endfor %}\n\n {{ dbt_utils.union_relations(relations) }}\n\n{% else %}\n\n select * \n from {{ var(default_variable) }}\n\n{% endif %}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_utils.union_relations"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.743171, "supported_languages": null}, "macro.fivetran_utils.dummy_coalesce_value": {"unique_id": "macro.fivetran_utils.dummy_coalesce_value", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/dummy_coalesce_value.sql", "original_file_path": "macros/dummy_coalesce_value.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.744883, "supported_languages": null}, "macro.fivetran_utils.array_agg": {"unique_id": "macro.fivetran_utils.array_agg", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/array_agg.sql", "original_file_path": "macros/array_agg.sql", "name": "array_agg", "macro_sql": "{% macro array_agg(field_to_agg) -%}\n\n{{ adapter.dispatch('array_agg', 'fivetran_utils') (field_to_agg) }}\n\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.fivetran_utils.default__array_agg"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.745273, "supported_languages": null}, "macro.fivetran_utils.default__array_agg": {"unique_id": "macro.fivetran_utils.default__array_agg", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/array_agg.sql", "original_file_path": "macros/array_agg.sql", "name": "default__array_agg", "macro_sql": "{% macro default__array_agg(field_to_agg) %}\n array_agg({{ field_to_agg }})\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.745386, "supported_languages": null}, "macro.fivetran_utils.redshift__array_agg": {"unique_id": "macro.fivetran_utils.redshift__array_agg", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/array_agg.sql", "original_file_path": "macros/array_agg.sql", "name": "redshift__array_agg", "macro_sql": "{% macro redshift__array_agg(field_to_agg) %}\n listagg({{ field_to_agg }}, ',')\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.745489, "supported_languages": null}, "macro.fivetran_utils.empty_variable_warning": {"unique_id": "macro.fivetran_utils.empty_variable_warning", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/empty_variable_warning.sql", "original_file_path": "macros/empty_variable_warning.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.745983, "supported_languages": null}, "macro.fivetran_utils.enabled_vars_one_true": {"unique_id": "macro.fivetran_utils.enabled_vars_one_true", "package_name": "fivetran_utils", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/fivetran_utils", "path": "macros/enabled_vars_one_true.sql", "original_file_path": "macros/enabled_vars_one_true.sql", "name": "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 %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209460.746473, "supported_languages": null}, "macro.marketo_source.get_activity_merge_leads_columns": {"unique_id": "macro.marketo_source.get_activity_merge_leads_columns", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "macros/get_activity_merge_leads_columns.sql", "original_file_path": "macros/get_activity_merge_leads_columns.sql", "name": "get_activity_merge_leads_columns", "macro_sql": "{% macro get_activity_merge_leads_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"activity_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"activity_type_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"campaign_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"lead_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"master_updated\", \"datatype\": \"boolean\"},\n {\"name\": \"merge_ids\", \"datatype\": dbt.type_string()},\n {\"name\": \"merge_source\", \"datatype\": dbt.type_string()},\n {\"name\": \"merged_in_sales\", \"datatype\": \"boolean\"},\n {\"name\": \"primary_attribute_value\", \"datatype\": dbt.type_string()},\n {\"name\": \"primary_attribute_value_id\", \"datatype\": dbt.type_int()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "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": 1671209460.748008, "supported_languages": null}, "macro.marketo_source.get_activity_open_email_columns": {"unique_id": "macro.marketo_source.get_activity_open_email_columns", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "macros/get_activity_open_email_columns.sql", "original_file_path": "macros/get_activity_open_email_columns.sql", "name": "get_activity_open_email_columns", "macro_sql": "{% macro get_activity_open_email_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"activity_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"activity_type_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"campaign_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"campaign_run_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"choice_number\", \"datatype\": dbt.type_int()},\n {\"name\": \"device\", \"datatype\": dbt.type_string()},\n {\"name\": \"email_template_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"is_mobile_device\", \"datatype\": \"boolean\"},\n {\"name\": \"lead_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"platform\", \"datatype\": dbt.type_string()},\n {\"name\": \"primary_attribute_value\", \"datatype\": dbt.type_string()},\n {\"name\": \"primary_attribute_value_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"step_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"test_variant\", \"datatype\": dbt.type_int()},\n {\"name\": \"user_agent\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "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": 1671209460.7501922, "supported_languages": null}, "macro.marketo_source.get_email_template_history_columns": {"unique_id": "macro.marketo_source.get_email_template_history_columns", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "macros/get_email_template_history_columns.sql", "original_file_path": "macros/get_email_template_history_columns.sql", "name": "get_email_template_history_columns", "macro_sql": "{% macro get_email_template_history_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"created_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"description\", \"datatype\": dbt.type_string()},\n {\"name\": \"folder_folder_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"folder_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"folder_type\", \"datatype\": dbt.type_string()},\n {\"name\": \"folder_value\", \"datatype\": dbt.type_int()},\n {\"name\": \"from_email\", \"datatype\": dbt.type_string()},\n {\"name\": \"from_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"id\", \"datatype\": dbt.type_int()},\n {\"name\": \"name\", \"datatype\": dbt.type_string()},\n {\"name\": \"operational\", \"datatype\": \"boolean\"},\n {\"name\": \"program_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"publish_to_msi\", \"datatype\": \"boolean\"},\n {\"name\": \"reply_email\", \"datatype\": dbt.type_string()},\n {\"name\": \"status\", \"datatype\": dbt.type_string()},\n {\"name\": \"subject\", \"datatype\": dbt.type_string()},\n {\"name\": \"template\", \"datatype\": dbt.type_int()},\n {\"name\": \"text_only\", \"datatype\": \"boolean\"},\n {\"name\": \"updated_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"url\", \"datatype\": dbt.type_string()},\n {\"name\": \"version\", \"datatype\": dbt.type_int()},\n {\"name\": \"web_view\", \"datatype\": \"boolean\"},\n {\"name\": \"workspace\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "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": 1671209460.753161, "supported_languages": null}, "macro.marketo_source.get_lead_describe_columns": {"unique_id": "macro.marketo_source.get_lead_describe_columns", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "macros/get_lead_describe_columns.sql", "original_file_path": "macros/get_lead_describe_columns.sql", "name": "get_lead_describe_columns", "macro_sql": "{% macro get_lead_describe_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"data_type\", \"datatype\": dbt.type_string()},\n {\"name\": \"display_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"id\", \"datatype\": dbt.type_int()},\n {\"name\": \"length\", \"datatype\": dbt.type_int()},\n {\"name\": \"restname\", \"datatype\": dbt.type_string()},\n {\"name\": \"restread_only\", \"datatype\": \"boolean\"},\n {\"name\": \"soapname\", \"datatype\": dbt.type_string()},\n {\"name\": \"soapread_only\", \"datatype\": \"boolean\"}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "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": 1671209460.754457, "supported_languages": null}, "macro.marketo_source.get_activity_send_email_columns": {"unique_id": "macro.marketo_source.get_activity_send_email_columns", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "macros/get_activity_send_email_columns.sql", "original_file_path": "macros/get_activity_send_email_columns.sql", "name": "get_activity_send_email_columns", "macro_sql": "{% macro get_activity_send_email_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"activity_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"activity_type_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"campaign_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"campaign_run_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"choice_number\", \"datatype\": dbt.type_int()},\n {\"name\": \"email_template_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"lead_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"primary_attribute_value\", \"datatype\": dbt.type_string()},\n {\"name\": \"primary_attribute_value_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"step_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"test_variant\", \"datatype\": dbt.type_int()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "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": 1671209460.756172, "supported_languages": null}, "macro.marketo_source.get_campaign_columns": {"unique_id": "macro.marketo_source.get_campaign_columns", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "macros/get_campaign_columns.sql", "original_file_path": "macros/get_campaign_columns.sql", "name": "get_campaign_columns", "macro_sql": "{% macro get_campaign_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"active\", \"datatype\": \"boolean\"},\n {\"name\": \"created_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"description\", \"datatype\": dbt.type_string()},\n {\"name\": \"id\", \"datatype\": dbt.type_int()},\n {\"name\": \"name\", \"datatype\": dbt.type_string()},\n {\"name\": \"program_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"program_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"type\", \"datatype\": dbt.type_string()},\n {\"name\": \"updated_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"workspace_name\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "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": 1671209460.757667, "supported_languages": null}, "macro.marketo_source.get_activity_delete_lead_columns": {"unique_id": "macro.marketo_source.get_activity_delete_lead_columns", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "macros/get_activity_delete_lead_columns.sql", "original_file_path": "macros/get_activity_delete_lead_columns.sql", "name": "get_activity_delete_lead_columns", "macro_sql": "{% macro get_activity_delete_lead_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"activity_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"activity_type_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"campaign\", \"datatype\": dbt.type_string()},\n {\"name\": \"campaign_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"lead_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"primary_attribute_value\", \"datatype\": dbt.type_string()},\n {\"name\": \"primary_attribute_value_id\", \"datatype\": dbt.type_int()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "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": 1671209460.758922, "supported_languages": null}, "macro.marketo_source.get_activity_unsubscribe_email_columns": {"unique_id": "macro.marketo_source.get_activity_unsubscribe_email_columns", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "macros/get_activity_unsubscribe_email_columns.sql", "original_file_path": "macros/get_activity_unsubscribe_email_columns.sql", "name": "get_activity_unsubscribe_email_columns", "macro_sql": "{% macro get_activity_unsubscribe_email_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"activity_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"activity_type_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"campaign_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"campaign_run_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"client_ip_address\", \"datatype\": dbt.type_string()},\n {\"name\": \"email_template_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"form_fields\", \"datatype\": dbt.type_string()},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"lead_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"primary_attribute_value\", \"datatype\": dbt.type_string()},\n {\"name\": \"primary_attribute_value_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"query_parameters\", \"datatype\": dbt.type_string()},\n {\"name\": \"referrer_url\", \"datatype\": dbt.type_string()},\n {\"name\": \"test_variant\", \"datatype\": dbt.type_int()},\n {\"name\": \"user_agent\", \"datatype\": dbt.type_string()},\n {\"name\": \"webform_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"webpage_id\", \"datatype\": dbt.type_int()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "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": 1671209460.761044, "supported_languages": null}, "macro.marketo_source.get_program_columns": {"unique_id": "macro.marketo_source.get_program_columns", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "macros/get_program_columns.sql", "original_file_path": "macros/get_program_columns.sql", "name": "get_program_columns", "macro_sql": "{% macro get_program_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"channel\", \"datatype\": dbt.type_string()},\n {\"name\": \"created_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"description\", \"datatype\": dbt.type_string()},\n {\"name\": \"end_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"id\", \"datatype\": dbt.type_int()},\n {\"name\": \"name\", \"datatype\": dbt.type_string()},\n {\"name\": \"sfdc_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"sfdc_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"start_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"status\", \"datatype\": dbt.type_string()},\n {\"name\": \"type\", \"datatype\": dbt.type_string()},\n {\"name\": \"updated_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"url\", \"datatype\": dbt.type_string()},\n {\"name\": \"workspace\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "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": 1671209460.763084, "supported_languages": null}, "macro.marketo_source.get_activity_email_bounced_columns": {"unique_id": "macro.marketo_source.get_activity_email_bounced_columns", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "macros/get_activity_email_bounced_columns.sql", "original_file_path": "macros/get_activity_email_bounced_columns.sql", "name": "get_activity_email_bounced_columns", "macro_sql": "{% macro get_activity_email_bounced_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"activity_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"activity_type_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"campaign_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"campaign_run_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"category\", \"datatype\": dbt.type_int()},\n {\"name\": \"choice_number\", \"datatype\": dbt.type_int()},\n {\"name\": \"details\", \"datatype\": dbt.type_string()},\n {\"name\": \"email\", \"datatype\": dbt.type_string()},\n {\"name\": \"email_template_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"lead_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"primary_attribute_value\", \"datatype\": dbt.type_string()},\n {\"name\": \"primary_attribute_value_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"step_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"subcategory\", \"datatype\": dbt.type_int()},\n {\"name\": \"test_variant\", \"datatype\": dbt.type_int()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "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": 1671209460.765291, "supported_languages": null}, "macro.marketo_source.get_lead_columns": {"unique_id": "macro.marketo_source.get_lead_columns", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "macros/get_lead_columns.sql", "original_file_path": "macros/get_lead_columns.sql", "name": "get_lead_columns", "macro_sql": "{% macro get_lead_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"abm_score_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"account_id_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"account_id_url_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"account_legal_name_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"account_level_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"account_notes_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"account_owner_email_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"account_owner_role_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"account_priority_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"account_signed_msa_c\", \"datatype\": \"boolean\"},\n {\"name\": \"account_source\", \"datatype\": dbt.type_string()},\n {\"name\": \"account_status_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"acquisition_program_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"active_ft_accounts_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"active_in_sequence_c\", \"datatype\": \"boolean\"},\n {\"name\": \"active_relationship_c\", \"datatype\": \"boolean\"},\n {\"name\": \"actual_daily_burn_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"ad_words_action_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"address\", \"datatype\": dbt.type_string()},\n {\"name\": \"address_lead\", \"datatype\": dbt.type_string()},\n {\"name\": \"adgroupid_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"ae_paired_csm_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"ae_paired_csm_user_id_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"affectlayer_affect_layer_notes_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"affectlayer_affect_layer_notes_c_account\", \"datatype\": dbt.type_string()},\n {\"name\": \"allbound_id_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"allbound_id_c_contact\", \"datatype\": dbt.type_int()},\n {\"name\": \"allbound_partner_permissions_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"allbound_status_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"analytics_id_c_contact\", \"datatype\": dbt.type_string()},\n {\"name\": \"annual_revenue\", \"datatype\": dbt.type_float()},\n {\"name\": \"anonymous_ip\", \"datatype\": dbt.type_string()},\n {\"name\": \"assigned_ae_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"assigned_ae_id_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"assigned_ae_is_me_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"assigned_am_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"assigned_bdr_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"assigned_bdr_id_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"assigned_se_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"assigned_se_zendesk_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"assigned_tsm_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"associated_account_exec_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"attempting_contact_date_time_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"attended_event_c\", \"datatype\": \"boolean\"},\n {\"name\": \"auto_renewal_c\", \"datatype\": \"boolean\"},\n {\"name\": \"automated_communications_suspended_c\", \"datatype\": \"boolean\"},\n {\"name\": \"automation_tracking_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"ava_blng_is_seller_importer_of_record_c\", \"datatype\": \"boolean\"},\n {\"name\": \"ava_mapper_exemption_number_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"ava_mapper_is_seller_importer_of_record_c\", \"datatype\": \"boolean\"},\n {\"name\": \"ava_sfcpq_ava_tax_message_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"ava_sfcpq_email_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"ava_sfcpq_is_seller_importer_of_record_c\", \"datatype\": \"boolean\"},\n {\"name\": \"bdr_priority_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"behavior_score_marketing\", \"datatype\": dbt.type_int()},\n {\"name\": \"behavioral_score_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"behaviorally_qualified\", \"datatype\": \"boolean\"},\n {\"name\": \"bill_to_contact_hidden_c\", \"datatype\": \"boolean\"},\n {\"name\": \"billing_city\", \"datatype\": dbt.type_string()},\n {\"name\": \"billing_contact_first_name_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"billing_contact_last_name_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"billing_country\", \"datatype\": dbt.type_string()},\n {\"name\": \"billing_country_code\", \"datatype\": dbt.type_string()},\n {\"name\": \"billing_email_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"billing_frequency_del_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"billing_postal_code\", \"datatype\": dbt.type_string()},\n {\"name\": \"billing_state\", \"datatype\": dbt.type_string()},\n {\"name\": \"billing_state_code\", \"datatype\": dbt.type_string()},\n {\"name\": \"billing_street\", \"datatype\": dbt.type_string()},\n {\"name\": \"black_listed\", \"datatype\": \"boolean\"},\n {\"name\": \"blng_bill_to_contact_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"blng_default_payment_type_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"bounce_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"bread_winner_bw_account_status_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"bread_winner_total_amount_credit_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"bread_winner_total_amount_due_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"bread_winner_total_amount_invoiced_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"bread_winner_total_amount_overdue_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"bread_winner_total_amount_paid_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"bread_winner_total_draft_amount_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"bread_winner_total_unallocated_credit_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"business_intelligence_tool_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"business_score_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"campaignid_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"case_study_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"case_study_marketing_use_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"cb_funding_raised_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"cbit_clearbit_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"cbit_clearbit_c_account\", \"datatype\": dbt.type_string()},\n {\"name\": \"cbit_clearbit_domain_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"cbit_clearbit_ready_c\", \"datatype\": \"boolean\"},\n {\"name\": \"cbit_clearbit_ready_c_account\", \"datatype\": \"boolean\"},\n {\"name\": \"cbit_clearbit_ready_c_contact\", \"datatype\": \"boolean\"},\n {\"name\": \"cbit_created_by_clearbit_c\", \"datatype\": \"boolean\"},\n {\"name\": \"cbit_created_by_clearbit_c_account\", \"datatype\": \"boolean\"},\n {\"name\": \"cbit_facebook_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"cbit_linked_in_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"cbit_twitter_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"city\", \"datatype\": dbt.type_string()},\n {\"name\": \"city_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"clarus_date_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"clarus_date_c_contact\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"clarus_editor_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"clarus_editor_c_contact\", \"datatype\": dbt.type_string()},\n {\"name\": \"clarus_notes_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"clarus_notes_c_contact\", \"datatype\": dbt.type_string()},\n {\"name\": \"clarus_notes_c_lead\", \"datatype\": dbt.type_string()},\n {\"name\": \"clarus_project_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"clarus_project_c_contact\", \"datatype\": dbt.type_string()},\n {\"name\": \"clarus_status_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"clarus_status_c_contact\", \"datatype\": dbt.type_string()},\n {\"name\": \"clawback_trigger_email_alert_c\", \"datatype\": \"boolean\"},\n {\"name\": \"clearbit_alexa_rank_global_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"clearbit_alexa_rank_us_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"clearbit_billing_city_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"clearbit_billing_country_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"clearbit_billing_state_province_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"clearbit_billing_street_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"clearbit_billing_zip_postal_code_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"clearbit_company_type_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"clearbit_country_code_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"clearbit_enriched_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"clearbit_form_status\", \"datatype\": dbt.type_string()},\n {\"name\": \"clearbit_founded_year_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"clearbit_industry_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"clearbit_industry_group_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"clearbit_province_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"clearbit_raised_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"clearbit_risk_email_valid\", \"datatype\": \"boolean\"},\n {\"name\": \"clearbit_risk_risk_level\", \"datatype\": dbt.type_string()},\n {\"name\": \"clearbit_risk_risk_score\", \"datatype\": dbt.type_int()},\n {\"name\": \"clearbit_role_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"clearbit_sector_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"clearbit_seniority_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"clearbit_status\", \"datatype\": dbt.type_int()},\n {\"name\": \"clearbit_sub_industry_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"clearbit_tags_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"clearbit_tech_category_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"clearbit_technologies_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"clearbit_zip_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"cloudingo_agent_sas_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"company\", \"datatype\": dbt.type_string()},\n {\"name\": \"company_country_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"company_postal_code_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"company_province_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"company_type_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"company_type_c_account\", \"datatype\": dbt.type_string()},\n {\"name\": \"competitor_c\", \"datatype\": \"boolean\"},\n {\"name\": \"competitor_c_account\", \"datatype\": \"boolean\"},\n {\"name\": \"consumption_rate_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"contact_company\", \"datatype\": dbt.type_int()},\n {\"name\": \"contact_stage_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"contact_status_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"contact_type_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"contract_renewal_45_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"contract_renewal_date_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"converted_date_time_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"cookies\", \"datatype\": dbt.type_string()},\n {\"name\": \"count_of_accounts_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"countdown_to_end_of_contract_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"country\", \"datatype\": dbt.type_string()},\n {\"name\": \"country_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"country_cc_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"country_code\", \"datatype\": dbt.type_string()},\n {\"name\": \"country_code_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"created_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"creative_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"credits_remaining_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"csi_code_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"csi_code_c_account\", \"datatype\": dbt.type_int()},\n {\"name\": \"csi_description_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"csi_description_c_account\", \"datatype\": dbt.type_string()},\n {\"name\": \"csi_description_del_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"current_fortune_rank_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"current_monthly_subscription_end_date_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"current_term_customer_value_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"customer_advocate_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"customer_advocate_notes_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"customer_health_engagement_score_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"customer_lifetime_value_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"customer_type_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"daily_credit_projected_burn_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"datawarehouse_used_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"datawarehouse_used_c_lead\", \"datatype\": dbt.type_string()},\n {\"name\": \"date_time_formula_fields_changed_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"days_of_credits_remaining_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"days_since_created_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"days_since_last_manual_ae_activity_date_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"days_since_last_manual_bdr_activity_date_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"days_since_last_sales_activity_date_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"days_without_activity\", \"datatype\": dbt.type_int()},\n {\"name\": \"db_created_date_without_time_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"db_lead_age_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"dbt_package_run_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"delete_text_area\", \"datatype\": dbt.type_string()},\n {\"name\": \"deliveries_after_bounces\", \"datatype\": dbt.type_int()},\n {\"name\": \"demandbase_city_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"demandbase_country_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"demandbase_general_fit_score_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"demandbase_number_of_employees_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"demandbase_overall_score_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"demandbase_sid_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"demandbase_state_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"demandbase_zip_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"demo_interest\", \"datatype\": dbt.type_string()},\n {\"name\": \"demo_scheduled_by_calenderly_c\", \"datatype\": \"boolean\"},\n {\"name\": \"demographic_score_marketing\", \"datatype\": dbt.type_int()},\n {\"name\": \"demographically_qualified\", \"datatype\": \"boolean\"},\n {\"name\": \"department\", \"datatype\": dbt.type_string()},\n {\"name\": \"device_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"direct_office_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"district_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"do_not_call\", \"datatype\": \"boolean\"},\n {\"name\": \"do_not_call_reason\", \"datatype\": dbt.type_string()},\n {\"name\": \"do_not_route_lead_c\", \"datatype\": \"boolean\"},\n {\"name\": \"do_not_sync_marketo_c\", \"datatype\": \"boolean\"},\n {\"name\": \"do_not_sync_marketo_c_account\", \"datatype\": \"boolean\"},\n {\"name\": \"domain_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"dozisf_zoom_info_id_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"drift_content_fulfillment\", \"datatype\": dbt.type_string()},\n {\"name\": \"drift_cql_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"drift_cqlscore\", \"datatype\": dbt.type_float()},\n {\"name\": \"drift_email_reply_text\", \"datatype\": dbt.type_string()},\n {\"name\": \"drift_email_subject_line\", \"datatype\": dbt.type_string()},\n {\"name\": \"drift_email_url\", \"datatype\": dbt.type_string()},\n {\"name\": \"duns_number_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"email\", \"datatype\": dbt.type_string()},\n {\"name\": \"email_bounce_category\", \"datatype\": dbt.type_int()},\n {\"name\": \"email_bounce_details\", \"datatype\": dbt.type_string()},\n {\"name\": \"email_bounced_c\", \"datatype\": \"boolean\"},\n {\"name\": \"email_bounced_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"email_bounced_reason\", \"datatype\": dbt.type_string()},\n {\"name\": \"email_bounces\", \"datatype\": dbt.type_int()},\n {\"name\": \"email_delivered_after_bounce\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"email_domain_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"email_invalid\", \"datatype\": \"boolean\"},\n {\"name\": \"email_invalid_cause\", \"datatype\": dbt.type_string()},\n {\"name\": \"email_opt_in\", \"datatype\": \"boolean\"},\n {\"name\": \"email_opt_in_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"email_opt_in_explicit_c\", \"datatype\": \"boolean\"},\n {\"name\": \"email_opt_in_implicit_c\", \"datatype\": \"boolean\"},\n {\"name\": \"email_quality_c\", \"datatype\": \"boolean\"},\n {\"name\": \"email_suspended\", \"datatype\": \"boolean\"},\n {\"name\": \"email_suspended_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"email_suspended_cause\", \"datatype\": dbt.type_string()},\n {\"name\": \"email_validation_c\", \"datatype\": \"boolean\"},\n {\"name\": \"employee_range_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"employee_range_c_lead\", \"datatype\": dbt.type_string()},\n {\"name\": \"end_date_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"engagement_score_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"enrichment_request_c\", \"datatype\": \"boolean\"},\n {\"name\": \"enterprise_target_account_c\", \"datatype\": \"boolean\"},\n {\"name\": \"es_app_esalexa_rank_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"es_app_esaudience_names_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"es_app_escity_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"es_app_escompany_phone_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"es_app_escountry_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"es_app_escountry_c_account\", \"datatype\": dbt.type_string()},\n {\"name\": \"es_app_escreated_timestamp_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"es_app_esemployees_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"es_app_esemployees_c_account\", \"datatype\": dbt.type_string()},\n {\"name\": \"es_app_esenriched_c\", \"datatype\": \"boolean\"},\n {\"name\": \"es_app_esenriched_c_contact\", \"datatype\": \"boolean\"},\n {\"name\": \"es_app_esenriched_timestamp_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"es_app_esenriched_timestamp_c_contact\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"es_app_esfacebook_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"es_app_esindustry_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"es_app_esintent_aggregate_score_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"es_app_esintent_timestamp_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"es_app_esintent_topics_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"es_app_eskeywords_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"es_app_eslinked_in_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"es_app_esrevenue_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"es_app_esrevenue_c_account\", \"datatype\": dbt.type_string()},\n {\"name\": \"es_app_essource_c\", \"datatype\": \"boolean\"},\n {\"name\": \"es_app_essource_c_contact\", \"datatype\": \"boolean\"},\n {\"name\": \"es_app_esstate_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"es_app_esstreet_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"es_app_estwitter_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"es_app_eszipcode_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"es_general_fit_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"es_seniority_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"esraw_2_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"esraw_employee_size_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"estimated_annual_revenue_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"event_date_code\", \"datatype\": dbt.type_string()},\n {\"name\": \"event_date_display\", \"datatype\": dbt.type_string()},\n {\"name\": \"event_speaker_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"exclusive_ownership_c\", \"datatype\": \"boolean\"},\n {\"name\": \"exclusive_ownership_c_contact\", \"datatype\": \"boolean\"},\n {\"name\": \"expansion_score_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"external_id_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"fax\", \"datatype\": dbt.type_string()},\n {\"name\": \"first_mql_date_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"first_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"first_won_date_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"fivetran_account_association_date_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"fivetran_account_id_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"fivetran_account_id_c_account\", \"datatype\": dbt.type_string()},\n {\"name\": \"fivetran_account_name_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"fivetran_account_stage_c_account\", \"datatype\": dbt.type_string()},\n {\"name\": \"fivetran_account_status_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"fivetran_account_user_role_s_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"fivetran_connectors_used_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"fivetran_data_warehouses_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"fivetran_first_sync_date_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"fivetran_fit_score_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"fivetran_industry_category_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"fivetran_industry_category_c_contact\", \"datatype\": dbt.type_string()},\n {\"name\": \"fivetran_last_sync_date_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"fivetran_referral_id_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"fivetran_sync_status_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"fivetran_trial_begin_date_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"fivetran_trial_end_date_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"fivetran_trial_start_date_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"fivetran_user_id_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"formula_fields_updated_c\", \"datatype\": \"boolean\"},\n {\"name\": \"free_trial_email_confirmed_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"friction_score_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"ft_account_id_s_verified_c\", \"datatype\": \"boolean\"},\n {\"name\": \"ft_account_verification_needed_c\", \"datatype\": \"boolean\"},\n {\"name\": \"funnel_priority_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"funnel_stage_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"funnel_type_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"gclid_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"gdpr_opt_in_explicit_c\", \"datatype\": \"boolean\"},\n {\"name\": \"gender\", \"datatype\": dbt.type_string()},\n {\"name\": \"geo_city_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"geo_country_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"geo_country_code_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"geo_state_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"has_fivetran_connector_c\", \"datatype\": \"boolean\"},\n {\"name\": \"has_opted_out_of_fax\", \"datatype\": \"boolean\"},\n {\"name\": \"health_score_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"hidden_company_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"historical_contact_status_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"hot_contact_c\", \"datatype\": \"boolean\"},\n {\"name\": \"id\", \"datatype\": dbt.type_int()},\n {\"name\": \"industry\", \"datatype\": dbt.type_string()},\n {\"name\": \"inferred_city\", \"datatype\": dbt.type_string()},\n {\"name\": \"inferred_company\", \"datatype\": dbt.type_string()},\n {\"name\": \"inferred_country\", \"datatype\": dbt.type_string()},\n {\"name\": \"inferred_metropolitan_area\", \"datatype\": dbt.type_string()},\n {\"name\": \"inferred_phone_area_code\", \"datatype\": dbt.type_string()},\n {\"name\": \"inferred_postal_code\", \"datatype\": dbt.type_string()},\n {\"name\": \"inferred_state_region\", \"datatype\": dbt.type_string()},\n {\"name\": \"is_anonymous\", \"datatype\": \"boolean\"},\n {\"name\": \"is_email_bounced\", \"datatype\": \"boolean\"},\n {\"name\": \"is_emea_event_routing_c\", \"datatype\": \"boolean\"},\n {\"name\": \"is_emea_event_routing_c_account\", \"datatype\": \"boolean\"},\n {\"name\": \"is_eu_resident_c\", \"datatype\": \"boolean\"},\n {\"name\": \"is_excluded_from_realign\", \"datatype\": \"boolean\"},\n {\"name\": \"is_lead\", \"datatype\": \"boolean\"},\n {\"name\": \"is_updated_superset_c\", \"datatype\": \"boolean\"},\n {\"name\": \"job_function_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"job_level_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"keyword_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"land_arr_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"land_region_2020_h_2_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"last_activity_logged_by_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"last_ae_activity_owner_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"last_bdr_activity_owner_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"last_manual_ae_activity_date_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"last_manual_bdr_activity_date_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"last_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"last_re_captchaserver_status\", \"datatype\": \"boolean\"},\n {\"name\": \"last_referenced_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"last_referenced_date_account\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"last_rep_activity_date_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"last_sales_activity_date_time_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"last_viewed_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"last_viewed_date_account\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"lastre_captchaerror_codes\", \"datatype\": dbt.type_string()},\n {\"name\": \"lead_created_date_time_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"lead_created_date_time_reporting_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"lead_iq_country_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"lead_iq_employee_count_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"lead_iq_employee_range_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"lead_iq_state_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"lead_iq_zip_code_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"lead_number_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"lead_partition_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"lead_person\", \"datatype\": dbt.type_int()},\n {\"name\": \"lead_source\", \"datatype\": dbt.type_string()},\n {\"name\": \"lead_source_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"lead_status\", \"datatype\": dbt.type_string()},\n {\"name\": \"lead_type_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"lean_data_ld_email_domains_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"lean_data_manual_route_trigger_c\", \"datatype\": \"boolean\"},\n {\"name\": \"lean_data_re_route_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"lean_data_reporting_customer_c\", \"datatype\": \"boolean\"},\n {\"name\": \"lean_data_reporting_has_opportunity_c\", \"datatype\": \"boolean\"},\n {\"name\": \"lean_data_reporting_matched_account_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"lean_data_reporting_target_account_c\", \"datatype\": \"boolean\"},\n {\"name\": \"lean_data_reporting_timestamp_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"lean_data_routing_action_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"lean_data_routing_action_c_contact\", \"datatype\": dbt.type_string()},\n {\"name\": \"lean_data_routing_status_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"lean_data_search_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"lean_data_search_index_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"leandata_contact_owner_override_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"lid_linked_in_member_token_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"linked_in_profile_url\", \"datatype\": dbt.type_string()},\n {\"name\": \"linked_in_url_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"list_import_status\", \"datatype\": dbt.type_string()},\n {\"name\": \"mailing_address\", \"datatype\": dbt.type_string()},\n {\"name\": \"mailing_country_code\", \"datatype\": dbt.type_string()},\n {\"name\": \"mailing_state_code\", \"datatype\": dbt.type_string()},\n {\"name\": \"main_phone\", \"datatype\": dbt.type_string()},\n {\"name\": \"manual_override_country_code_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"manual_override_employee_count_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"manual_override_state_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"manual_override_zip_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"marketing_approval_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"marketing_behavior_score_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"marketing_connector_interest_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"marketing_prospect_routing_rules_c\", \"datatype\": \"boolean\"},\n {\"name\": \"marketing_suspended\", \"datatype\": \"boolean\"},\n {\"name\": \"marketing_suspended_reason\", \"datatype\": dbt.type_string()},\n {\"name\": \"marketing_target_account_c\", \"datatype\": \"boolean\"},\n {\"name\": \"matchtype_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"mc_4_sf_mc_subscriber_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"meta_data_create_date_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"middle_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"mkto_acquisition_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"mkto_company_notes\", \"datatype\": dbt.type_string()},\n {\"name\": \"mkto_is_customer\", \"datatype\": \"boolean\"},\n {\"name\": \"mkto_is_partner\", \"datatype\": \"boolean\"},\n {\"name\": \"mkto_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"mkto_person_notes\", \"datatype\": dbt.type_string()},\n {\"name\": \"mkto_si_add_to_marketo_campaign_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"mkto_si_sales_insight_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"mobile_phone\", \"datatype\": dbt.type_string()},\n {\"name\": \"mobile_phone_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"monthly_customer_no_contract_c\", \"datatype\": \"boolean\"},\n {\"name\": \"mql_date_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"mql_reason_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"msa_effective_date_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"nda_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"netsuite_conn_account_balance_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"netsuite_conn_account_overdue_balance_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"netsuite_conn_celigo_update_c\", \"datatype\": \"boolean\"},\n {\"name\": \"netsuite_conn_celigo_update_c_account\", \"datatype\": \"boolean\"},\n {\"name\": \"netsuite_conn_credit_hold_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"netsuite_conn_days_overdue_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"netsuite_conn_net_suite_customer_id_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"netsuite_conn_net_suite_id_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"netsuite_conn_net_suite_id_c_account\", \"datatype\": dbt.type_int()},\n {\"name\": \"netsuite_conn_net_suite_sync_err_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"netsuite_conn_net_suite_sync_err_c_account\", \"datatype\": dbt.type_string()},\n {\"name\": \"netsuite_conn_push_to_net_suite_c\", \"datatype\": \"boolean\"},\n {\"name\": \"netsuite_conn_push_to_net_suite_c_account\", \"datatype\": \"boolean\"},\n {\"name\": \"netsuite_conn_pushed_from_opportunity_c\", \"datatype\": \"boolean\"},\n {\"name\": \"netsuite_conn_pushed_from_opportunity_c_account\", \"datatype\": \"boolean\"},\n {\"name\": \"netsuite_conn_sync_in_progress_c\", \"datatype\": \"boolean\"},\n {\"name\": \"netsuite_conn_sync_in_progress_c_contact\", \"datatype\": \"boolean\"},\n {\"name\": \"netsuite_conn_unbilled_orders_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"network_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"neverbounce_email_status\", \"datatype\": dbt.type_string()},\n {\"name\": \"no_longer_at_company_c\", \"datatype\": \"boolean\"},\n {\"name\": \"notes_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"notes_cs_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"nps_score_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"number_of_credits_remaining_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"number_of_employees\", \"datatype\": dbt.type_int()},\n {\"name\": \"old_lead_source_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"old_lead_source_detail_c_contact\", \"datatype\": dbt.type_string()},\n {\"name\": \"opp_handoff_ae_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"opportunity_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"original_referrer\", \"datatype\": dbt.type_string()},\n {\"name\": \"original_search_engine\", \"datatype\": dbt.type_string()},\n {\"name\": \"original_search_phrase\", \"datatype\": dbt.type_string()},\n {\"name\": \"original_source_info\", \"datatype\": dbt.type_string()},\n {\"name\": \"original_source_type\", \"datatype\": dbt.type_string()},\n {\"name\": \"original_utm_campaign_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"original_utm_content_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"original_utm_medium_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"original_utm_source_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"original_utm_term_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"other_country_code\", \"datatype\": dbt.type_string()},\n {\"name\": \"owner_id_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"partner_company_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"partner_contact_c\", \"datatype\": \"boolean\"},\n {\"name\": \"partner_owner_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"partner_rep_email_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"partner_rep_name_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"partner_territory_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"partner_tier_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"partner_type_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"partner_type_c_account\", \"datatype\": dbt.type_string()},\n {\"name\": \"payment_terms_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"pbf_account_c\", \"datatype\": \"boolean\"},\n {\"name\": \"person_primary_lead_interest\", \"datatype\": dbt.type_int()},\n {\"name\": \"person_time_zone\", \"datatype\": dbt.type_string()},\n {\"name\": \"person_type\", \"datatype\": dbt.type_string()},\n {\"name\": \"phone\", \"datatype\": dbt.type_string()},\n {\"name\": \"phone_extension_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"photo_url\", \"datatype\": dbt.type_string()},\n {\"name\": \"photo_url_account\", \"datatype\": dbt.type_string()},\n {\"name\": \"pi_campaign_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"pi_comments_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"pi_conversion_date_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"pi_conversion_object_name_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"pi_conversion_object_type_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"pi_created_date_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"pi_first_activity_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"pi_needs_score_synced_c\", \"datatype\": \"boolean\"},\n {\"name\": \"pi_utm_campaign_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"pi_utm_content_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"pi_utm_medium_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"pi_utm_source_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"pi_utm_term_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"platform_level_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"podcast_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"postal_code\", \"datatype\": dbt.type_string()},\n {\"name\": \"potential_fivetran_use_case_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"pr_opportunity_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"previouse_fortune_rank_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"primary_contact_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"priority\", \"datatype\": dbt.type_int()},\n {\"name\": \"product_feedback_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"project_based_routing_c\", \"datatype\": \"boolean\"},\n {\"name\": \"promoter_score_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"promotion_id_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"quick_email_verification_accept_all\", \"datatype\": \"boolean\"},\n {\"name\": \"quick_email_verification_disposable\", \"datatype\": \"boolean\"},\n {\"name\": \"quick_email_verification_free\", \"datatype\": \"boolean\"},\n {\"name\": \"quick_email_verification_reason\", \"datatype\": dbt.type_string()},\n {\"name\": \"quick_email_verification_result\", \"datatype\": dbt.type_string()},\n {\"name\": \"quick_email_verification_role\", \"datatype\": \"boolean\"},\n {\"name\": \"quick_email_verification_safe_to_send\", \"datatype\": \"boolean\"},\n {\"name\": \"re_target_date_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"recent_marketing_campaign_status_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"recommended_connector_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"record_type_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"reference_call_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"referral_account_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"referral_account_c_account\", \"datatype\": dbt.type_string()},\n {\"name\": \"referral_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"referral_contact_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"referral_contact_c_account\", \"datatype\": dbt.type_string()},\n {\"name\": \"referral_contact_email_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"referral_exists_c\", \"datatype\": \"boolean\"},\n {\"name\": \"referral_firstname_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"referral_last_name_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"region_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"region_c_account\", \"datatype\": dbt.type_string()},\n {\"name\": \"region_c_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"region_deprecate_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"region_terr_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"registration_source_info\", \"datatype\": dbt.type_string()},\n {\"name\": \"registration_source_type\", \"datatype\": dbt.type_string()},\n {\"name\": \"relative_score\", \"datatype\": dbt.type_int()},\n {\"name\": \"relative_urgency\", \"datatype\": dbt.type_int()},\n {\"name\": \"rh_2_formula_test_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"roll_out_group_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"rollout_group_override_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"round_robin_id_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"rybbon_campaign_key\", \"datatype\": dbt.type_string()},\n {\"name\": \"sales_engineer_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"sales_loft_1_active_account_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"sales_loft_1_active_contact_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"sales_loft_1_active_lead_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"sales_loft_1_most_recent_cadence_name_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"sales_loft_1_most_recent_cadence_next_step_due_date_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"sales_loft_1_most_recent_last_completed_step_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"sales_region_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"sales_segment_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"sales_target_account_c\", \"datatype\": \"boolean\"},\n {\"name\": \"salesloft_account_name_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"salesloft_cadence_trigger_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"salutation\", \"datatype\": dbt.type_string()},\n {\"name\": \"secondary_email_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"segment_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"self_service_to_annual_c\", \"datatype\": \"boolean\"},\n {\"name\": \"sfbd_collections_agent_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"sfbd_collections_plan_date_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"sfbd_collections_status_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"sfbd_dunning_method_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"sfdc_account_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"sfdc_contact_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"sfdc_lead_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"sfdc_lead_owner_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"sfdc_type\", \"datatype\": dbt.type_string()},\n {\"name\": \"shipping_country_code\", \"datatype\": dbt.type_string()},\n {\"name\": \"shipping_state_code\", \"datatype\": dbt.type_string()},\n {\"name\": \"sic_code\", \"datatype\": dbt.type_string()},\n {\"name\": \"siftrock_positive_email_reply\", \"datatype\": \"boolean\"},\n {\"name\": \"sla_c\", \"datatype\": \"boolean\"},\n {\"name\": \"source_detail_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"source_detail_c_account\", \"datatype\": dbt.type_string()},\n {\"name\": \"source_every_lead_source_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"source_every_lead_source_category_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"source_every_lead_source_detail_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"source_every_utm_campaign_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"source_every_utm_content_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"source_every_utm_medium_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"source_every_utm_source_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"source_every_utm_term_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"source_first_lead_source_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"source_first_lead_source_category_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"source_first_lead_source_detail_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"source_first_utm_campaign_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"source_first_utm_content_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"source_first_utm_medium_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"source_first_utm_source_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"source_first_utm_term_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"source_last_lead_source_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"source_last_lead_source_c_contact\", \"datatype\": dbt.type_string()},\n {\"name\": \"source_last_lead_source_category_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"source_last_lead_source_category_c_contact\", \"datatype\": dbt.type_string()},\n {\"name\": \"source_last_lead_source_detail_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"source_last_lead_source_detail_c_contact\", \"datatype\": dbt.type_string()},\n {\"name\": \"source_last_utm_campaign_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"source_last_utm_content_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"source_last_utm_medium_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"source_last_utm_source_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"source_last_utm_term_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"source_most_recent\", \"datatype\": dbt.type_string()},\n {\"name\": \"start_date_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"state\", \"datatype\": dbt.type_string()},\n {\"name\": \"state_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"state_code\", \"datatype\": dbt.type_string()},\n {\"name\": \"stripe_customer_id_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"subscription_length_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"sum_of_future_opportunities_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"sum_of_lost_renewal_opps_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"superset_country_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"superset_country_c_account\", \"datatype\": dbt.type_string()},\n {\"name\": \"superset_employee_count_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"superset_employee_count_c_contact\", \"datatype\": dbt.type_int()},\n {\"name\": \"superset_state_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"superset_state_c_contact\", \"datatype\": dbt.type_string()},\n {\"name\": \"superset_zip_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"superset_zip_c_contact\", \"datatype\": dbt.type_string()},\n {\"name\": \"suppress_billing_c\", \"datatype\": \"boolean\"},\n {\"name\": \"survey_apps_used\", \"datatype\": dbt.type_string()},\n {\"name\": \"survey_confidencein_data_analysis\", \"datatype\": dbt.type_string()},\n {\"name\": \"survey_datawarehouse\", \"datatype\": dbt.type_string()},\n {\"name\": \"survey_etltools\", \"datatype\": dbt.type_string()},\n {\"name\": \"survey_fivetran_project\", \"datatype\": dbt.type_string()},\n {\"name\": \"survey_hours_spent\", \"datatype\": dbt.type_string()},\n {\"name\": \"survey_project_timeline\", \"datatype\": dbt.type_string()},\n {\"name\": \"survey_what_would_you_rather_do\", \"datatype\": dbt.type_string()},\n {\"name\": \"target_date_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"territory_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"territory_country_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"territory_employee_count_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"territory_state_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"territory_zip_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"test_email_ccaddress\", \"datatype\": dbt.type_string()},\n {\"name\": \"third_party_payer_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"time_to_conversion_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"title\", \"datatype\": dbt.type_string()},\n {\"name\": \"to_delete_c\", \"datatype\": \"boolean\"},\n {\"name\": \"total_comp_credits_this_month_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"total_credits_bought_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"total_credits_used_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"trial_contact_start_date_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"trial_end_date_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"u_fall_assets_downloaded\", \"datatype\": dbt.type_string()},\n {\"name\": \"uberfliphub_116403_articlesviewed\", \"datatype\": dbt.type_int()},\n {\"name\": \"uberfliphub_116403_flipbooksviewed\", \"datatype\": dbt.type_int()},\n {\"name\": \"uberfliphub_116403_videosviewed\", \"datatype\": dbt.type_int()},\n {\"name\": \"uf_conversion_item_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"uf_conversion_item_title\", \"datatype\": dbt.type_string()},\n {\"name\": \"uf_last_visited_item_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"uf_last_visited_item_title\", \"datatype\": dbt.type_string()},\n {\"name\": \"unique_email_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"unqualified_reason_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"unqualified_reason_c_contact\", \"datatype\": dbt.type_string()},\n {\"name\": \"unsubscribed\", \"datatype\": \"boolean\"},\n {\"name\": \"unsubscribed_reason\", \"datatype\": dbt.type_string()},\n {\"name\": \"updated_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"urgency\", \"datatype\": dbt.type_float()},\n {\"name\": \"usage_ae_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"usage_am_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"usage_csm_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"usage_score_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"user_activity_logged_by_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"user_gems_has_a_user_gem_c\", \"datatype\": \"boolean\"},\n {\"name\": \"user_gems_has_changed_job_c\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"user_gems_is_a_user_gem_c\", \"datatype\": \"boolean\"},\n {\"name\": \"user_gems_linked_in_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"user_gems_past_account_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"user_gems_past_company_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"user_gems_past_contact_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"user_gems_past_title_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"utm_campaign_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"utm_content_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"utm_medium_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"utm_source_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"utm_term_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"verified\", \"datatype\": \"boolean\"},\n {\"name\": \"video_testimonial_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"warehouse_associated_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"webinar_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"website\", \"datatype\": dbt.type_string()},\n {\"name\": \"won_and_future_open_opportunites_c\", \"datatype\": dbt.type_float()},\n {\"name\": \"zoominfo_country_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"zoominfo_employee_count_c\", \"datatype\": dbt.type_int()},\n {\"name\": \"zoominfo_state_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"zoominfo_technologies_c\", \"datatype\": dbt.type_string()},\n {\"name\": \"zoominfo_technologies_c_account\", \"datatype\": dbt.type_string()},\n {\"name\": \"zoominfo_zip_code_c\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_float", "macro.dbt.type_string", "macro.dbt.type_int"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1671209461.045501, "supported_languages": null}, "macro.marketo_source.get_activity_email_delivered_columns": {"unique_id": "macro.marketo_source.get_activity_email_delivered_columns", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "macros/get_activity_email_delivered_columns.sql", "original_file_path": "macros/get_activity_email_delivered_columns.sql", "name": "get_activity_email_delivered_columns", "macro_sql": "{% macro get_activity_email_delivered_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"activity_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"activity_type_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"campaign_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"campaign_run_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"choice_number\", \"datatype\": dbt.type_int()},\n {\"name\": \"email_template_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"lead_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"primary_attribute_value\", \"datatype\": dbt.type_string()},\n {\"name\": \"primary_attribute_value_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"step_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"test_variant\", \"datatype\": dbt.type_int()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "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": 1671209461.047662, "supported_languages": null}, "macro.marketo_source.get_activity_click_email_columns": {"unique_id": "macro.marketo_source.get_activity_click_email_columns", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "macros/get_activity_click_email_columns.sql", "original_file_path": "macros/get_activity_click_email_columns.sql", "name": "get_activity_click_email_columns", "macro_sql": "{% macro get_activity_click_email_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"activity_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"activity_type_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"campaign_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"campaign_run_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"choice_number\", \"datatype\": dbt.type_int()},\n {\"name\": \"device\", \"datatype\": dbt.type_string()},\n {\"name\": \"email_template_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"is_mobile_device\", \"datatype\": \"boolean\"},\n {\"name\": \"lead_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"link\", \"datatype\": dbt.type_string()},\n {\"name\": \"link_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"platform\", \"datatype\": dbt.type_string()},\n {\"name\": \"primary_attribute_value\", \"datatype\": dbt.type_string()},\n {\"name\": \"primary_attribute_value_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"step_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"test_variant\", \"datatype\": dbt.type_int()},\n {\"name\": \"user_agent\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "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": 1671209461.04992, "supported_languages": null}, "macro.marketo_source.get_activity_change_data_value_columns": {"unique_id": "macro.marketo_source.get_activity_change_data_value_columns", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "macros/get_activity_change_data_value_columns.sql", "original_file_path": "macros/get_activity_change_data_value_columns.sql", "name": "get_activity_change_data_value_columns", "macro_sql": "{% macro get_activity_change_data_value_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"activity_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"activity_type_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"api_method_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"campaign_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"lead_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"modifying_user\", \"datatype\": dbt.type_string()},\n {\"name\": \"new_value\", \"datatype\": dbt.type_string()},\n {\"name\": \"old_value\", \"datatype\": dbt.type_string()},\n {\"name\": \"primary_attribute_value\", \"datatype\": dbt.type_string()},\n {\"name\": \"primary_attribute_value_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"reason\", \"datatype\": dbt.type_string()},\n {\"name\": \"request_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"source\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "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": 1671209461.051733, "supported_languages": null}}, "docs": {"dbt.__overview__": {"unique_id": "dbt.__overview__", "package_name": "dbt", "root_path": "/opt/homebrew/Cellar/dbt-postgres/1.3.0/libexec/lib/python3.9/site-packages/dbt/include/global_project", "path": "overview.md", "original_file_path": "docs/overview.md", "name": "__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": {}, "selectors": {}, "disabled": {"model.marketo_source.stg_marketo__campaigns": [{"resource_type": "model", "depends_on": {"macros": ["macro.marketo_source.get_campaign_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": []}, "config": {"enabled": false, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "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}, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7_marketo_source", "fqn": ["marketo_source", "stg_marketo__campaigns"], "unique_id": "model.marketo_source.stg_marketo__campaigns", "raw_code": "{{ config(enabled=var('marketo__enable_campaigns', False)) }}\n\nwith base as (\n\n select *\n from {{ ref('stg_marketo__campaign_tmp') }}\n\n), macro as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_marketo__campaign_tmp')),\n staging_columns=get_campaign_columns()\n )\n }}\n from base\n\n), fields as (\n\n select \n active as is_active,\n created_at as created_timestamp,\n description,\n id as campaign_id,\n name as campaign_name,\n program_id,\n program_name,\n type as campaign_type,\n updated_at as updated_timestamp,\n workspace_name\n from macro\n\n)\n\nselect *\nfrom fields", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "stg_marketo__campaigns.sql", "original_file_path": "models/stg_marketo__campaigns.sql", "name": "stg_marketo__campaigns", "alias": "stg_marketo__campaigns", "checksum": {"name": "sha256", "checksum": "ec1d669162692ed43b7ec5117db8d2a23690ea225fcd46eb307b23fe57dbab73"}, "tags": [], "refs": [["stg_marketo__campaign_tmp"], ["stg_marketo__campaign_tmp"]], "sources": [], "metrics": [], "description": "", "columns": {"campaign_id": {"name": "campaign_id", "description": "ID of the campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_name": {"name": "campaign_name", "description": "Name of the campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "campaign_type": {"name": "campaign_type", "description": "Type of campaign, either 'batch' or 'trigger'.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "created_timestamp": {"name": "created_timestamp", "description": "Timestamp when the campaign was created.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "description": {"name": "description", "description": "Description of the campaign", "meta": {}, "data_type": null, "quote": null, "tags": []}, "is_active": {"name": "is_active", "description": "Whether the campaign is active. Only applicable to trigger campaigns.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "program_id": {"name": "program_id", "description": "ID of the parent program, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "program_name": {"name": "program_name", "description": "Name of the parent program, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "updated_timestamp": {"name": "updated_timestamp", "description": "Timestamp when the campaign was most recently updated.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "workspace_name": {"name": "workspace_name", "description": "Name of the parent workspace, if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "marketo_source://models/stg_marketo.yml", "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "marketo_source", "enabled": false}, "created_at": 1671209461.6940532, "config_call_dict": {"enabled": false}}], "model.marketo_source.stg_marketo__program": [{"resource_type": "model", "depends_on": {"macros": ["macro.marketo_source.get_program_columns", "macro.fivetran_utils.fill_staging_columns"], "nodes": []}, "config": {"enabled": false, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "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}, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7_marketo_source", "fqn": ["marketo_source", "stg_marketo__program"], "unique_id": "model.marketo_source.stg_marketo__program", "raw_code": "{{ config(enabled=var('marketo__enable_campaigns', False) and var('marketo__enable_programs', False)) }}\n\nwith base as (\n\n select *\n from {{ ref('stg_marketo__program_tmp') }}\n\n), macro as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_marketo__program_tmp')),\n staging_columns=get_program_columns()\n )\n }}\n from base\n\n), fields as (\n\n select\n id as program_id,\n channel,\n created_at as created_timestamp,\n description,\n end_date as end_timestamp,\n name as program_name,\n sfdc_id,\n sfdc_name,\n start_date as start_timestamp,\n status as program_status,\n type as program_type,\n updated_at as updated_timestamp,\n url,\n workspace\n from macro\n \n)\n\nselect *\nfrom fields", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "stg_marketo__program.sql", "original_file_path": "models/stg_marketo__program.sql", "name": "stg_marketo__program", "alias": "stg_marketo__program", "checksum": {"name": "sha256", "checksum": "39c55b07b44f6034ae22ea0575cd0b18801364c8c83e03ac894ebc4801edc96a"}, "tags": [], "refs": [["stg_marketo__program_tmp"], ["stg_marketo__program_tmp"]], "sources": [], "metrics": [], "description": "", "columns": {"program_id": {"name": "program_id", "description": "ID of the program.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "channel": {"name": "channel", "description": "Channel of the program.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "created_timestamp": {"name": "created_timestamp", "description": "Timestamp the program was created at", "meta": {}, "data_type": null, "quote": null, "tags": []}, "description": {"name": "description", "description": "Description of the program.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "end_timestamp": {"name": "end_timestamp", "description": "End date of the program. Applicable to event, email, and webinar type programs.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "program_name": {"name": "program_name", "description": "Name of the program.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "program_status": {"name": "program_status", "description": "Status of the program. Only valid for Email and engagement program types.\nAllowed values: locked, unlocked, on, off\n", "meta": {}, "data_type": null, "quote": null, "tags": []}, "program_type": {"name": "program_type", "description": "Type of the program. Allowed values: program, event, webinar, nurture\n", "meta": {}, "data_type": null, "quote": null, "tags": []}, "sfdc_id": {"name": "sfdc_id", "description": "SFDC id of the program if linked to an SFDC campaign.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "sfdc_name": {"name": "sfdc_name", "description": "Name of the linked SFDC campaign if applicable.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "start_timestamp": {"name": "start_timestamp", "description": "Start date of program. Applicable to event, email and webinar type programs.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "updated_timestamp": {"name": "updated_timestamp", "description": "Timestamp the program was most recently updated.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "url": {"name": "url", "description": "URL of the program in the Marketo UI.", "meta": {}, "data_type": null, "quote": null, "tags": []}, "workspace": {"name": "workspace", "description": "Name of the workspace.", "meta": {}, "data_type": null, "quote": null, "tags": []}}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": "marketo_source://models/stg_marketo.yml", "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "table", "schema": "marketo_source", "enabled": false}, "created_at": 1671209461.703708, "config_call_dict": {"enabled": false}}], "model.marketo_source.stg_marketo__campaign_tmp": [{"resource_type": "model", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": false, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "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}, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7_marketo_source", "fqn": ["marketo_source", "tmp", "stg_marketo__campaign_tmp"], "unique_id": "model.marketo_source.stg_marketo__campaign_tmp", "raw_code": "{{ config(enabled=var('marketo__enable_campaigns', False)) }}\n\nselect *\nfrom {{ var('campaign') }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "tmp/stg_marketo__campaign_tmp.sql", "original_file_path": "models/tmp/stg_marketo__campaign_tmp.sql", "name": "stg_marketo__campaign_tmp", "alias": "stg_marketo__campaign_tmp", "checksum": {"name": "sha256", "checksum": "983ea60ee4eb37bde14ccba759bee2aeea0b6890a735ddc79f550cb24fc0e4bb"}, "tags": [], "refs": [], "sources": [["marketo", "campaign"]], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "marketo_source", "enabled": false}, "created_at": 1671209461.588387, "config_call_dict": {"enabled": false}}], "model.marketo_source.stg_marketo__program_tmp": [{"resource_type": "model", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": false, "alias": null, "schema": "marketo_source", "database": null, "tags": [], "meta": {}, "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}, "post-hook": [], "pre-hook": []}, "database": "postgres", "schema": "marketo_source_integration_tests_7_marketo_source", "fqn": ["marketo_source", "tmp", "stg_marketo__program_tmp"], "unique_id": "model.marketo_source.stg_marketo__program_tmp", "raw_code": "{{ config(enabled=var('marketo__enable_campaigns', False) and var('marketo__enable_programs', False)) }}\n\nselect *\nfrom {{ var('program') }}", "language": "sql", "package_name": "marketo_source", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/marketo/dbt_marketo_source/integration_tests/dbt_packages/marketo_source", "path": "tmp/stg_marketo__program_tmp.sql", "original_file_path": "models/tmp/stg_marketo__program_tmp.sql", "name": "stg_marketo__program_tmp", "alias": "stg_marketo__program_tmp", "checksum": {"name": "sha256", "checksum": "d7480fb774342c9e892179f75754e64376da0d3eca15626fcae597600c10c4bb"}, "tags": [], "refs": [], "sources": [["marketo", "program"]], "metrics": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {"materialized": "view", "schema": "marketo_source", "enabled": false}, "created_at": 1671209461.613049, "config_call_dict": {"enabled": false}}]}, "parent_map": {"seed.marketo_source_integration_tests.marketo_activity_send_email_data": [], "seed.marketo_source_integration_tests.marketo_activity_change_data_value_data": [], "seed.marketo_source_integration_tests.marketo_email_template_history_data": [], "seed.marketo_source_integration_tests.marketo_activity_email_delivered_data": [], "seed.marketo_source_integration_tests.marketo_lead_describe_data": [], "seed.marketo_source_integration_tests.marketo_activity_delete_lead_data": [], "seed.marketo_source_integration_tests.marketo_activity_unsubscribe_email_data": [], "seed.marketo_source_integration_tests.marketo_campaign_data": [], "seed.marketo_source_integration_tests.marketo_program_data": [], "seed.marketo_source_integration_tests.marketo_activity_merge_leads_data": [], "seed.marketo_source_integration_tests.marketo_activity_click_email_data": [], "seed.marketo_source_integration_tests.marketo_lead_data": [], "seed.marketo_source_integration_tests.marketo_activity_open_email_data": [], "seed.marketo_source_integration_tests.marketo_activity_email_bounced_data": [], "model.marketo_source.stg_marketo__activity_merge_leads": ["model.marketo_source.stg_marketo__activity_merge_leads_tmp", "model.marketo_source.stg_marketo__activity_merge_leads_tmp"], "model.marketo_source.stg_marketo__activity_open_email": ["model.marketo_source.stg_marketo__activity_open_email_tmp", "model.marketo_source.stg_marketo__activity_open_email_tmp"], "model.marketo_source.stg_marketo__activity_send_email": ["model.marketo_source.stg_marketo__activity_send_email_tmp", "model.marketo_source.stg_marketo__activity_send_email_tmp"], "model.marketo_source.stg_marketo__email_template_history": ["model.marketo_source.stg_marketo__email_template_history_tmp", "model.marketo_source.stg_marketo__email_template_history_tmp"], "model.marketo_source.stg_marketo__activity_email_bounced": ["model.marketo_source.stg_marketo__activity_email_bounced_tmp", "model.marketo_source.stg_marketo__activity_email_bounced_tmp"], "model.marketo_source.stg_marketo__activity_change_data_value": ["model.marketo_source.stg_marketo__activity_change_data_value_tmp", "model.marketo_source.stg_marketo__activity_change_data_value_tmp"], "model.marketo_source.stg_marketo__activity_delete_lead": ["model.marketo_source.stg_marketo__activity_delete_lead_tmp", "model.marketo_source.stg_marketo__activity_delete_lead_tmp"], "model.marketo_source.stg_marketo__lead": ["model.marketo_source.stg_marketo__lead_tmp", "model.marketo_source.stg_marketo__lead_tmp"], "model.marketo_source.stg_marketo__activity_email_delivered": ["model.marketo_source.stg_marketo__activity_email_delivered_tmp", "model.marketo_source.stg_marketo__activity_email_delivered_tmp"], "model.marketo_source.stg_marketo__activity_click_email": ["model.marketo_source.stg_marketo__activity_click_email_tmp", "model.marketo_source.stg_marketo__activity_click_email_tmp"], "model.marketo_source.stg_marketo__lead_describe": ["model.marketo_source.stg_marketo__lead_describe_tmp", "model.marketo_source.stg_marketo__lead_describe_tmp"], "model.marketo_source.stg_marketo__activity_unsubscribe_email": ["model.marketo_source.stg_marketo__activity_unsubscribe_email_tmp", "model.marketo_source.stg_marketo__activity_unsubscribe_email_tmp"], "model.marketo_source.stg_marketo__activity_email_delivered_tmp": ["source.marketo_source.marketo.activity_email_delivered"], "model.marketo_source.stg_marketo__activity_click_email_tmp": ["source.marketo_source.marketo.activity_click_email"], "model.marketo_source.stg_marketo__lead_describe_tmp": ["source.marketo_source.marketo.lead_describe"], "model.marketo_source.stg_marketo__activity_delete_lead_tmp": ["source.marketo_source.marketo.activity_delete_lead"], "model.marketo_source.stg_marketo__activity_change_data_value_tmp": ["source.marketo_source.marketo.activity_change_data_value"], "model.marketo_source.stg_marketo__activity_email_bounced_tmp": ["source.marketo_source.marketo.activity_email_bounced"], "model.marketo_source.stg_marketo__activity_open_email_tmp": ["source.marketo_source.marketo.activity_open_email"], "model.marketo_source.stg_marketo__activity_merge_leads_tmp": ["source.marketo_source.marketo.activity_merge_leads"], "model.marketo_source.stg_marketo__activity_send_email_tmp": ["source.marketo_source.marketo.activity_send_email"], "model.marketo_source.stg_marketo__email_template_history_tmp": ["source.marketo_source.marketo.email_template_history"], "model.marketo_source.stg_marketo__activity_unsubscribe_email_tmp": ["source.marketo_source.marketo.activity_unsubscribe_email"], "model.marketo_source.stg_marketo__lead_tmp": ["source.marketo_source.marketo.lead"], "test.marketo_source.unique_stg_marketo__activity_change_data_value_activity_id.7c7047bbcd": ["model.marketo_source.stg_marketo__activity_change_data_value"], "test.marketo_source.not_null_stg_marketo__activity_change_data_value_activity_id.8ae060d108": ["model.marketo_source.stg_marketo__activity_change_data_value"], "test.marketo_source.unique_stg_marketo__activity_click_email_activity_id.6c599791a0": ["model.marketo_source.stg_marketo__activity_click_email"], "test.marketo_source.not_null_stg_marketo__activity_click_email_activity_id.8e4b4af9fd": ["model.marketo_source.stg_marketo__activity_click_email"], "test.marketo_source.unique_stg_marketo__activity_email_bounced_activity_id.28833155c3": ["model.marketo_source.stg_marketo__activity_email_bounced"], "test.marketo_source.not_null_stg_marketo__activity_email_bounced_activity_id.578b8cddf2": ["model.marketo_source.stg_marketo__activity_email_bounced"], "test.marketo_source.unique_stg_marketo__activity_email_delivered_activity_id.6f715c1b87": ["model.marketo_source.stg_marketo__activity_email_delivered"], "test.marketo_source.not_null_stg_marketo__activity_email_delivered_activity_id.138e450885": ["model.marketo_source.stg_marketo__activity_email_delivered"], "test.marketo_source.unique_stg_marketo__activity_open_email_activity_id.d48e7e93e6": ["model.marketo_source.stg_marketo__activity_open_email"], "test.marketo_source.not_null_stg_marketo__activity_open_email_activity_id.72e7514396": ["model.marketo_source.stg_marketo__activity_open_email"], "test.marketo_source.unique_stg_marketo__activity_send_email_activity_id.bd25ee45d1": ["model.marketo_source.stg_marketo__activity_send_email"], "test.marketo_source.not_null_stg_marketo__activity_send_email_activity_id.4eaf534bc8": ["model.marketo_source.stg_marketo__activity_send_email"], "test.marketo_source.unique_stg_marketo__activity_unsubscribe_email_activity_id.a3bca07e06": ["model.marketo_source.stg_marketo__activity_unsubscribe_email"], "test.marketo_source.not_null_stg_marketo__activity_unsubscribe_email_activity_id.a31edf42c0": ["model.marketo_source.stg_marketo__activity_unsubscribe_email"], "test.marketo_source.unique_stg_marketo__campaigns_campaign_id.58c604f925": [], "test.marketo_source.not_null_stg_marketo__campaigns_campaign_id.9599619112": [], "test.marketo_source.unique_stg_marketo__email_template_history_email_template_history_id.7e3c0524e2": ["model.marketo_source.stg_marketo__email_template_history"], "test.marketo_source.not_null_stg_marketo__email_template_history_email_template_history_id.dcab273dfa": ["model.marketo_source.stg_marketo__email_template_history"], "test.marketo_source.unique_stg_marketo__lead_describe_lead_describe_id.4f0a7f9cc1": ["model.marketo_source.stg_marketo__lead_describe"], "test.marketo_source.not_null_stg_marketo__lead_describe_lead_describe_id.37612f6879": ["model.marketo_source.stg_marketo__lead_describe"], "test.marketo_source.unique_stg_marketo__lead_lead_id.1a4c20db9f": ["model.marketo_source.stg_marketo__lead"], "test.marketo_source.not_null_stg_marketo__lead_lead_id.a539cbf055": ["model.marketo_source.stg_marketo__lead"], "test.marketo_source.unique_stg_marketo__program_program_id.20616f7b2c": [], "test.marketo_source.not_null_stg_marketo__program_program_id.882bad918f": [], "source.marketo_source.marketo.lead": [], "source.marketo_source.marketo.lead_describe": [], "source.marketo_source.marketo.activity_change_data_value": [], "source.marketo_source.marketo.campaign": [], "source.marketo_source.marketo.program": [], "source.marketo_source.marketo.email_template_history": [], "source.marketo_source.marketo.activity_click_email": [], "source.marketo_source.marketo.activity_email_delivered": [], "source.marketo_source.marketo.activity_email_bounced": [], "source.marketo_source.marketo.activity_open_email": [], "source.marketo_source.marketo.activity_unsubscribe_email": [], "source.marketo_source.marketo.activity_send_email": [], "source.marketo_source.marketo.activity_delete_lead": [], "source.marketo_source.marketo.activity_merge_leads": []}, "child_map": {"seed.marketo_source_integration_tests.marketo_activity_send_email_data": [], "seed.marketo_source_integration_tests.marketo_activity_change_data_value_data": [], "seed.marketo_source_integration_tests.marketo_email_template_history_data": [], "seed.marketo_source_integration_tests.marketo_activity_email_delivered_data": [], "seed.marketo_source_integration_tests.marketo_lead_describe_data": [], "seed.marketo_source_integration_tests.marketo_activity_delete_lead_data": [], "seed.marketo_source_integration_tests.marketo_activity_unsubscribe_email_data": [], "seed.marketo_source_integration_tests.marketo_campaign_data": [], "seed.marketo_source_integration_tests.marketo_program_data": [], "seed.marketo_source_integration_tests.marketo_activity_merge_leads_data": [], "seed.marketo_source_integration_tests.marketo_activity_click_email_data": [], "seed.marketo_source_integration_tests.marketo_lead_data": [], "seed.marketo_source_integration_tests.marketo_activity_open_email_data": [], "seed.marketo_source_integration_tests.marketo_activity_email_bounced_data": [], "model.marketo_source.stg_marketo__activity_merge_leads": [], "model.marketo_source.stg_marketo__activity_open_email": ["test.marketo_source.not_null_stg_marketo__activity_open_email_activity_id.72e7514396", "test.marketo_source.unique_stg_marketo__activity_open_email_activity_id.d48e7e93e6"], "model.marketo_source.stg_marketo__activity_send_email": ["test.marketo_source.not_null_stg_marketo__activity_send_email_activity_id.4eaf534bc8", "test.marketo_source.unique_stg_marketo__activity_send_email_activity_id.bd25ee45d1"], "model.marketo_source.stg_marketo__email_template_history": ["test.marketo_source.not_null_stg_marketo__email_template_history_email_template_history_id.dcab273dfa", "test.marketo_source.unique_stg_marketo__email_template_history_email_template_history_id.7e3c0524e2"], "model.marketo_source.stg_marketo__activity_email_bounced": ["test.marketo_source.not_null_stg_marketo__activity_email_bounced_activity_id.578b8cddf2", "test.marketo_source.unique_stg_marketo__activity_email_bounced_activity_id.28833155c3"], "model.marketo_source.stg_marketo__activity_change_data_value": ["test.marketo_source.not_null_stg_marketo__activity_change_data_value_activity_id.8ae060d108", "test.marketo_source.unique_stg_marketo__activity_change_data_value_activity_id.7c7047bbcd"], "model.marketo_source.stg_marketo__activity_delete_lead": [], "model.marketo_source.stg_marketo__lead": ["test.marketo_source.not_null_stg_marketo__lead_lead_id.a539cbf055", "test.marketo_source.unique_stg_marketo__lead_lead_id.1a4c20db9f"], "model.marketo_source.stg_marketo__activity_email_delivered": ["test.marketo_source.not_null_stg_marketo__activity_email_delivered_activity_id.138e450885", "test.marketo_source.unique_stg_marketo__activity_email_delivered_activity_id.6f715c1b87"], "model.marketo_source.stg_marketo__activity_click_email": ["test.marketo_source.not_null_stg_marketo__activity_click_email_activity_id.8e4b4af9fd", "test.marketo_source.unique_stg_marketo__activity_click_email_activity_id.6c599791a0"], "model.marketo_source.stg_marketo__lead_describe": ["test.marketo_source.not_null_stg_marketo__lead_describe_lead_describe_id.37612f6879", "test.marketo_source.unique_stg_marketo__lead_describe_lead_describe_id.4f0a7f9cc1"], "model.marketo_source.stg_marketo__activity_unsubscribe_email": ["test.marketo_source.not_null_stg_marketo__activity_unsubscribe_email_activity_id.a31edf42c0", "test.marketo_source.unique_stg_marketo__activity_unsubscribe_email_activity_id.a3bca07e06"], "model.marketo_source.stg_marketo__activity_email_delivered_tmp": ["model.marketo_source.stg_marketo__activity_email_delivered", "model.marketo_source.stg_marketo__activity_email_delivered"], "model.marketo_source.stg_marketo__activity_click_email_tmp": ["model.marketo_source.stg_marketo__activity_click_email", "model.marketo_source.stg_marketo__activity_click_email"], "model.marketo_source.stg_marketo__lead_describe_tmp": ["model.marketo_source.stg_marketo__lead_describe", "model.marketo_source.stg_marketo__lead_describe"], "model.marketo_source.stg_marketo__activity_delete_lead_tmp": ["model.marketo_source.stg_marketo__activity_delete_lead", "model.marketo_source.stg_marketo__activity_delete_lead"], "model.marketo_source.stg_marketo__activity_change_data_value_tmp": ["model.marketo_source.stg_marketo__activity_change_data_value", "model.marketo_source.stg_marketo__activity_change_data_value"], "model.marketo_source.stg_marketo__activity_email_bounced_tmp": ["model.marketo_source.stg_marketo__activity_email_bounced", "model.marketo_source.stg_marketo__activity_email_bounced"], "model.marketo_source.stg_marketo__activity_open_email_tmp": ["model.marketo_source.stg_marketo__activity_open_email", "model.marketo_source.stg_marketo__activity_open_email"], "model.marketo_source.stg_marketo__activity_merge_leads_tmp": ["model.marketo_source.stg_marketo__activity_merge_leads", "model.marketo_source.stg_marketo__activity_merge_leads"], "model.marketo_source.stg_marketo__activity_send_email_tmp": ["model.marketo_source.stg_marketo__activity_send_email", "model.marketo_source.stg_marketo__activity_send_email"], "model.marketo_source.stg_marketo__email_template_history_tmp": ["model.marketo_source.stg_marketo__email_template_history", "model.marketo_source.stg_marketo__email_template_history"], "model.marketo_source.stg_marketo__activity_unsubscribe_email_tmp": ["model.marketo_source.stg_marketo__activity_unsubscribe_email", "model.marketo_source.stg_marketo__activity_unsubscribe_email"], "model.marketo_source.stg_marketo__lead_tmp": ["model.marketo_source.stg_marketo__lead", "model.marketo_source.stg_marketo__lead"], "test.marketo_source.unique_stg_marketo__activity_change_data_value_activity_id.7c7047bbcd": [], "test.marketo_source.not_null_stg_marketo__activity_change_data_value_activity_id.8ae060d108": [], "test.marketo_source.unique_stg_marketo__activity_click_email_activity_id.6c599791a0": [], "test.marketo_source.not_null_stg_marketo__activity_click_email_activity_id.8e4b4af9fd": [], "test.marketo_source.unique_stg_marketo__activity_email_bounced_activity_id.28833155c3": [], "test.marketo_source.not_null_stg_marketo__activity_email_bounced_activity_id.578b8cddf2": [], "test.marketo_source.unique_stg_marketo__activity_email_delivered_activity_id.6f715c1b87": [], "test.marketo_source.not_null_stg_marketo__activity_email_delivered_activity_id.138e450885": [], "test.marketo_source.unique_stg_marketo__activity_open_email_activity_id.d48e7e93e6": [], "test.marketo_source.not_null_stg_marketo__activity_open_email_activity_id.72e7514396": [], "test.marketo_source.unique_stg_marketo__activity_send_email_activity_id.bd25ee45d1": [], "test.marketo_source.not_null_stg_marketo__activity_send_email_activity_id.4eaf534bc8": [], "test.marketo_source.unique_stg_marketo__activity_unsubscribe_email_activity_id.a3bca07e06": [], "test.marketo_source.not_null_stg_marketo__activity_unsubscribe_email_activity_id.a31edf42c0": [], "test.marketo_source.unique_stg_marketo__campaigns_campaign_id.58c604f925": [], "test.marketo_source.not_null_stg_marketo__campaigns_campaign_id.9599619112": [], "test.marketo_source.unique_stg_marketo__email_template_history_email_template_history_id.7e3c0524e2": [], "test.marketo_source.not_null_stg_marketo__email_template_history_email_template_history_id.dcab273dfa": [], "test.marketo_source.unique_stg_marketo__lead_describe_lead_describe_id.4f0a7f9cc1": [], "test.marketo_source.not_null_stg_marketo__lead_describe_lead_describe_id.37612f6879": [], "test.marketo_source.unique_stg_marketo__lead_lead_id.1a4c20db9f": [], "test.marketo_source.not_null_stg_marketo__lead_lead_id.a539cbf055": [], "test.marketo_source.unique_stg_marketo__program_program_id.20616f7b2c": [], "test.marketo_source.not_null_stg_marketo__program_program_id.882bad918f": [], "source.marketo_source.marketo.lead": ["model.marketo_source.stg_marketo__lead_tmp"], "source.marketo_source.marketo.lead_describe": ["model.marketo_source.stg_marketo__lead_describe_tmp"], "source.marketo_source.marketo.activity_change_data_value": ["model.marketo_source.stg_marketo__activity_change_data_value_tmp"], "source.marketo_source.marketo.campaign": [], "source.marketo_source.marketo.program": [], "source.marketo_source.marketo.email_template_history": ["model.marketo_source.stg_marketo__email_template_history_tmp"], "source.marketo_source.marketo.activity_click_email": ["model.marketo_source.stg_marketo__activity_click_email_tmp"], "source.marketo_source.marketo.activity_email_delivered": ["model.marketo_source.stg_marketo__activity_email_delivered_tmp"], "source.marketo_source.marketo.activity_email_bounced": ["model.marketo_source.stg_marketo__activity_email_bounced_tmp"], "source.marketo_source.marketo.activity_open_email": ["model.marketo_source.stg_marketo__activity_open_email_tmp"], "source.marketo_source.marketo.activity_unsubscribe_email": ["model.marketo_source.stg_marketo__activity_unsubscribe_email_tmp"], "source.marketo_source.marketo.activity_send_email": ["model.marketo_source.stg_marketo__activity_send_email_tmp"], "source.marketo_source.marketo.activity_delete_lead": ["model.marketo_source.stg_marketo__activity_delete_lead_tmp"], "source.marketo_source.marketo.activity_merge_leads": ["model.marketo_source.stg_marketo__activity_merge_leads_tmp"]}} \ No newline at end of file diff --git a/docs/run_results.json b/docs/run_results.json index e6e1805..16ed835 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.2.0", "generated_at": "2022-10-10T19:53:58.383932Z", "invocation_id": "ac505354-f0c8-488c-a952-87195fbb1845", "env": {}}, "results": [{"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:53.366430Z", "completed_at": "2022-10-10T19:53:53.373323Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:53.373572Z", "completed_at": "2022-10-10T19:53:53.373592Z"}], "thread_id": "Thread-1", "execution_time": 0.008083820343017578, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_change_data_value_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:53.375021Z", "completed_at": "2022-10-10T19:53:53.381615Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:53.381845Z", "completed_at": "2022-10-10T19:53:53.381854Z"}], "thread_id": "Thread-1", "execution_time": 0.00780487060546875, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_click_email_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:53.383015Z", "completed_at": "2022-10-10T19:53:53.389745Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:53.389958Z", "completed_at": "2022-10-10T19:53:53.389966Z"}], "thread_id": "Thread-1", "execution_time": 0.007784843444824219, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_delete_lead_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:53.390756Z", "completed_at": "2022-10-10T19:53:53.394201Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:53.394408Z", "completed_at": "2022-10-10T19:53:53.394414Z"}], "thread_id": "Thread-1", "execution_time": 0.004138946533203125, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_email_bounced_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:53.395218Z", "completed_at": "2022-10-10T19:53:53.397961Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:53.398131Z", "completed_at": "2022-10-10T19:53:53.398136Z"}], "thread_id": "Thread-1", "execution_time": 0.003341197967529297, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_email_delivered_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:53.398935Z", "completed_at": "2022-10-10T19:53:53.401688Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:53.401874Z", "completed_at": "2022-10-10T19:53:53.401881Z"}], "thread_id": "Thread-1", "execution_time": 0.003448009490966797, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_merge_leads_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:53.402725Z", "completed_at": "2022-10-10T19:53:53.405449Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:53.405620Z", "completed_at": "2022-10-10T19:53:53.405626Z"}], "thread_id": "Thread-1", "execution_time": 0.0033538341522216797, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_open_email_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:53.406298Z", "completed_at": "2022-10-10T19:53:53.409382Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:53.409535Z", "completed_at": "2022-10-10T19:53:53.409540Z"}], "thread_id": "Thread-1", "execution_time": 0.0036230087280273438, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_send_email_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:53.410222Z", "completed_at": "2022-10-10T19:53:53.412533Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:53.412692Z", "completed_at": "2022-10-10T19:53:53.412696Z"}], "thread_id": "Thread-1", "execution_time": 0.0028662681579589844, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_unsubscribe_email_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:53.413325Z", "completed_at": "2022-10-10T19:53:53.415658Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:53.415819Z", "completed_at": "2022-10-10T19:53:53.415825Z"}], "thread_id": "Thread-1", "execution_time": 0.0028831958770751953, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__email_template_history_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:53.416565Z", "completed_at": "2022-10-10T19:53:53.418761Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:53.418904Z", "completed_at": "2022-10-10T19:53:53.418908Z"}], "thread_id": "Thread-1", "execution_time": 0.0027320384979248047, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__lead_describe_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:53.419477Z", "completed_at": "2022-10-10T19:53:53.421482Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:53.421622Z", "completed_at": "2022-10-10T19:53:53.421626Z"}], "thread_id": "Thread-1", "execution_time": 0.002471923828125, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__lead_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:53.422171Z", "completed_at": "2022-10-10T19:53:53.424073Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:53.424199Z", "completed_at": "2022-10-10T19:53:53.424203Z"}], "thread_id": "Thread-1", "execution_time": 0.0023419857025146484, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.marketo_source_integration_tests.marketo_activity_change_data_value_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:53.424723Z", "completed_at": "2022-10-10T19:53:53.425833Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:53.425954Z", "completed_at": "2022-10-10T19:53:53.425957Z"}], "thread_id": "Thread-1", "execution_time": 0.0015480518341064453, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.marketo_source_integration_tests.marketo_activity_click_email_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:53.426465Z", "completed_at": "2022-10-10T19:53:53.427613Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:53.427728Z", "completed_at": "2022-10-10T19:53:53.427731Z"}], "thread_id": "Thread-1", "execution_time": 0.0015659332275390625, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.marketo_source_integration_tests.marketo_activity_delete_lead_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:53.428205Z", "completed_at": "2022-10-10T19:53:53.429245Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:53.429357Z", "completed_at": "2022-10-10T19:53:53.429360Z"}], "thread_id": "Thread-1", "execution_time": 0.0014429092407226562, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.marketo_source_integration_tests.marketo_activity_email_bounced_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:53.429836Z", "completed_at": "2022-10-10T19:53:53.430888Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:53.431005Z", "completed_at": "2022-10-10T19:53:53.431008Z"}], "thread_id": "Thread-1", "execution_time": 0.0014526844024658203, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.marketo_source_integration_tests.marketo_activity_email_delivered_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:53.431479Z", "completed_at": "2022-10-10T19:53:53.432597Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:53.432708Z", "completed_at": "2022-10-10T19:53:53.432711Z"}], "thread_id": "Thread-1", "execution_time": 0.0015192031860351562, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.marketo_source_integration_tests.marketo_activity_merge_leads_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:53.433171Z", "completed_at": "2022-10-10T19:53:53.434824Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:53.434937Z", "completed_at": "2022-10-10T19:53:53.434940Z"}], "thread_id": "Thread-1", "execution_time": 0.002051115036010742, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.marketo_source_integration_tests.marketo_activity_open_email_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:53.435418Z", "completed_at": "2022-10-10T19:53:53.436412Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:53.436522Z", "completed_at": "2022-10-10T19:53:53.436524Z"}], "thread_id": "Thread-1", "execution_time": 0.0013842582702636719, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.marketo_source_integration_tests.marketo_activity_send_email_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:53.437021Z", "completed_at": "2022-10-10T19:53:53.438084Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:53.438200Z", "completed_at": "2022-10-10T19:53:53.438203Z"}], "thread_id": "Thread-1", "execution_time": 0.0015108585357666016, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.marketo_source_integration_tests.marketo_activity_unsubscribe_email_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:53.438684Z", "completed_at": "2022-10-10T19:53:53.439711Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:53.439829Z", "completed_at": "2022-10-10T19:53:53.439832Z"}], "thread_id": "Thread-1", "execution_time": 0.0014340877532958984, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.marketo_source_integration_tests.marketo_campaign_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:53.440272Z", "completed_at": "2022-10-10T19:53:53.441266Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:53.441377Z", "completed_at": "2022-10-10T19:53:53.441379Z"}], "thread_id": "Thread-1", "execution_time": 0.001383066177368164, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.marketo_source_integration_tests.marketo_email_template_history_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:53.441807Z", "completed_at": "2022-10-10T19:53:53.443371Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:53.443484Z", "completed_at": "2022-10-10T19:53:53.443487Z"}], "thread_id": "Thread-1", "execution_time": 0.001954793930053711, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.marketo_source_integration_tests.marketo_lead_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:53.443914Z", "completed_at": "2022-10-10T19:53:53.444892Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:53.445001Z", "completed_at": "2022-10-10T19:53:53.445004Z"}], "thread_id": "Thread-1", "execution_time": 0.001360177993774414, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.marketo_source_integration_tests.marketo_lead_describe_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:53.445456Z", "completed_at": "2022-10-10T19:53:53.446436Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:53.446548Z", "completed_at": "2022-10-10T19:53:53.446550Z"}], "thread_id": "Thread-1", "execution_time": 0.0013911724090576172, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.marketo_source_integration_tests.marketo_program_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:53.446978Z", "completed_at": "2022-10-10T19:53:53.749450Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:53.749619Z", "completed_at": "2022-10-10T19:53:53.749626Z"}], "thread_id": "Thread-1", "execution_time": 0.3029930591583252, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_change_data_value"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:53.750441Z", "completed_at": "2022-10-10T19:53:54.058365Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:54.058623Z", "completed_at": "2022-10-10T19:53:54.058641Z"}], "thread_id": "Thread-1", "execution_time": 0.3087911605834961, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_click_email"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:54.059907Z", "completed_at": "2022-10-10T19:53:54.381269Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:54.381552Z", "completed_at": "2022-10-10T19:53:54.381570Z"}], "thread_id": "Thread-1", "execution_time": 0.3224308490753174, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_delete_lead"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:54.382837Z", "completed_at": "2022-10-10T19:53:54.640164Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:54.640398Z", "completed_at": "2022-10-10T19:53:54.640409Z"}], "thread_id": "Thread-1", "execution_time": 0.25820207595825195, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_email_bounced"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:54.641591Z", "completed_at": "2022-10-10T19:53:54.951011Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:54.951181Z", "completed_at": "2022-10-10T19:53:54.951190Z"}], "thread_id": "Thread-1", "execution_time": 0.3101511001586914, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_email_delivered"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:54.952027Z", "completed_at": "2022-10-10T19:53:56.365342Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:56.365668Z", "completed_at": "2022-10-10T19:53:56.365687Z"}], "thread_id": "Thread-1", "execution_time": 1.4143249988555908, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_merge_leads"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:56.366944Z", "completed_at": "2022-10-10T19:53:56.678655Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:56.678822Z", "completed_at": "2022-10-10T19:53:56.678830Z"}], "thread_id": "Thread-1", "execution_time": 0.312406063079834, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_open_email"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:56.679651Z", "completed_at": "2022-10-10T19:53:56.969680Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:56.969890Z", "completed_at": "2022-10-10T19:53:56.969899Z"}], "thread_id": "Thread-1", "execution_time": 0.2907991409301758, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_send_email"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:56.970871Z", "completed_at": "2022-10-10T19:53:57.283003Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:57.283299Z", "completed_at": "2022-10-10T19:53:57.283317Z"}], "thread_id": "Thread-1", "execution_time": 0.3130679130554199, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_unsubscribe_email"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:57.284704Z", "completed_at": "2022-10-10T19:53:57.659971Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:57.660143Z", "completed_at": "2022-10-10T19:53:57.660151Z"}], "thread_id": "Thread-1", "execution_time": 0.37608790397644043, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__email_template_history"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:57.660968Z", "completed_at": "2022-10-10T19:53:57.995527Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:57.995856Z", "completed_at": "2022-10-10T19:53:57.995878Z"}], "thread_id": "Thread-1", "execution_time": 0.3355062007904053, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__lead_describe"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:57.997150Z", "completed_at": "2022-10-10T19:53:58.290568Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:58.291459Z", "completed_at": "2022-10-10T19:53:58.291512Z"}], "thread_id": "Thread-1", "execution_time": 0.296053409576416, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__lead"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:58.295319Z", "completed_at": "2022-10-10T19:53:58.318191Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:58.318424Z", "completed_at": "2022-10-10T19:53:58.318434Z"}], "thread_id": "Thread-1", "execution_time": 0.024031877517700195, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.not_null_stg_marketo__activity_change_data_value_activity_id.8ae060d108"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:58.319341Z", "completed_at": "2022-10-10T19:53:58.324485Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:58.324686Z", "completed_at": "2022-10-10T19:53:58.324691Z"}], "thread_id": "Thread-1", "execution_time": 0.005910634994506836, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.unique_stg_marketo__activity_change_data_value_activity_id.7c7047bbcd"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:58.325429Z", "completed_at": "2022-10-10T19:53:58.328558Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:58.328739Z", "completed_at": "2022-10-10T19:53:58.328745Z"}], "thread_id": "Thread-1", "execution_time": 0.0037419795989990234, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.not_null_stg_marketo__activity_click_email_activity_id.8e4b4af9fd"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:58.329431Z", "completed_at": "2022-10-10T19:53:58.332399Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:58.332555Z", "completed_at": "2022-10-10T19:53:58.332560Z"}], "thread_id": "Thread-1", "execution_time": 0.0035271644592285156, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.unique_stg_marketo__activity_click_email_activity_id.6c599791a0"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:58.333257Z", "completed_at": "2022-10-10T19:53:58.336017Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:58.336178Z", "completed_at": "2022-10-10T19:53:58.336182Z"}], "thread_id": "Thread-1", "execution_time": 0.0033769607543945312, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.not_null_stg_marketo__activity_email_bounced_activity_id.578b8cddf2"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:58.336794Z", "completed_at": "2022-10-10T19:53:58.340331Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:58.340497Z", "completed_at": "2022-10-10T19:53:58.340501Z"}], "thread_id": "Thread-1", "execution_time": 0.0040819644927978516, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.unique_stg_marketo__activity_email_bounced_activity_id.28833155c3"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:58.341131Z", "completed_at": "2022-10-10T19:53:58.343760Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:58.343916Z", "completed_at": "2022-10-10T19:53:58.343920Z"}], "thread_id": "Thread-1", "execution_time": 0.003158092498779297, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.not_null_stg_marketo__activity_email_delivered_activity_id.138e450885"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:58.344482Z", "completed_at": "2022-10-10T19:53:58.347064Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:58.347212Z", "completed_at": "2022-10-10T19:53:58.347216Z"}], "thread_id": "Thread-1", "execution_time": 0.003075838088989258, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.unique_stg_marketo__activity_email_delivered_activity_id.6f715c1b87"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:58.347774Z", "completed_at": "2022-10-10T19:53:58.350330Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:58.350470Z", "completed_at": "2022-10-10T19:53:58.350474Z"}], "thread_id": "Thread-1", "execution_time": 0.0030400753021240234, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.not_null_stg_marketo__activity_open_email_activity_id.72e7514396"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:58.351027Z", "completed_at": "2022-10-10T19:53:58.353325Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:58.353466Z", "completed_at": "2022-10-10T19:53:58.353470Z"}], "thread_id": "Thread-1", "execution_time": 0.002766847610473633, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.unique_stg_marketo__activity_open_email_activity_id.d48e7e93e6"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:58.353977Z", "completed_at": "2022-10-10T19:53:58.357011Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:58.357148Z", "completed_at": "2022-10-10T19:53:58.357152Z"}], "thread_id": "Thread-1", "execution_time": 0.003492116928100586, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.not_null_stg_marketo__activity_send_email_activity_id.4eaf534bc8"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:58.357669Z", "completed_at": "2022-10-10T19:53:58.360023Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:58.360155Z", "completed_at": "2022-10-10T19:53:58.360159Z"}], "thread_id": "Thread-1", "execution_time": 0.002798795700073242, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.unique_stg_marketo__activity_send_email_activity_id.bd25ee45d1"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:58.360662Z", "completed_at": "2022-10-10T19:53:58.362889Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:58.363022Z", "completed_at": "2022-10-10T19:53:58.363025Z"}], "thread_id": "Thread-1", "execution_time": 0.0026640892028808594, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.not_null_stg_marketo__activity_unsubscribe_email_activity_id.a31edf42c0"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:58.363506Z", "completed_at": "2022-10-10T19:53:58.365679Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:58.365805Z", "completed_at": "2022-10-10T19:53:58.365809Z"}], "thread_id": "Thread-1", "execution_time": 0.0025980472564697266, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.unique_stg_marketo__activity_unsubscribe_email_activity_id.a3bca07e06"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:58.366296Z", "completed_at": "2022-10-10T19:53:58.368737Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:58.368864Z", "completed_at": "2022-10-10T19:53:58.368867Z"}], "thread_id": "Thread-1", "execution_time": 0.0028710365295410156, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.not_null_stg_marketo__email_template_history_email_template_history_id.dcab273dfa"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:58.369350Z", "completed_at": "2022-10-10T19:53:58.372201Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:58.372328Z", "completed_at": "2022-10-10T19:53:58.372332Z"}], "thread_id": "Thread-1", "execution_time": 0.0032749176025390625, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.unique_stg_marketo__email_template_history_email_template_history_id.7e3c0524e2"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:58.372811Z", "completed_at": "2022-10-10T19:53:58.374946Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:58.375067Z", "completed_at": "2022-10-10T19:53:58.375070Z"}], "thread_id": "Thread-1", "execution_time": 0.0025479793548583984, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.not_null_stg_marketo__lead_describe_lead_describe_id.37612f6879"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:58.375533Z", "completed_at": "2022-10-10T19:53:58.377642Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:58.377763Z", "completed_at": "2022-10-10T19:53:58.377766Z"}], "thread_id": "Thread-1", "execution_time": 0.002521038055419922, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.unique_stg_marketo__lead_describe_lead_describe_id.4f0a7f9cc1"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:58.378237Z", "completed_at": "2022-10-10T19:53:58.380409Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:58.380542Z", "completed_at": "2022-10-10T19:53:58.380546Z"}], "thread_id": "Thread-1", "execution_time": 0.0026102066040039062, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.not_null_stg_marketo__lead_lead_id.a539cbf055"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-10-10T19:53:58.381035Z", "completed_at": "2022-10-10T19:53:58.383111Z"}, {"name": "execute", "started_at": "2022-10-10T19:53:58.383233Z", "completed_at": "2022-10-10T19:53:58.383236Z"}], "thread_id": "Thread-1", "execution_time": 0.00251007080078125, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.unique_stg_marketo__lead_lead_id.1a4c20db9f"}], "elapsed_time": 7.164470911026001, "args": {"write_json": true, "use_colors": true, "printer_width": 80, "version_check": true, "partial_parse": true, "static_parser": true, "profiles_dir": "/Users/catherinefritz/.dbt", "send_anonymous_usage_stats": true, "event_buffer_size": 100000, "quiet": false, "no_print": false, "compile": true, "which": "generate", "rpc_method": "docs.generate", "indirect_selection": "eager"}} \ No newline at end of file +{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/run-results/v4.json", "dbt_version": "1.3.0", "generated_at": "2022-12-16T16:51:17.116584Z", "invocation_id": "bd047963-2765-4b7c-8326-eefcf562f4a1", "env": {}}, "results": [{"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:15.958971Z", "completed_at": "2022-12-16T16:51:15.968490Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:15.968924Z", "completed_at": "2022-12-16T16:51:15.968935Z"}], "thread_id": "Thread-1", "execution_time": 0.011950254440307617, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_change_data_value_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:15.959098Z", "completed_at": "2022-12-16T16:51:15.968600Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:15.969133Z", "completed_at": "2022-12-16T16:51:15.969136Z"}], "thread_id": "Thread-2", "execution_time": 0.012041091918945312, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_click_email_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:15.959249Z", "completed_at": "2022-12-16T16:51:15.968739Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:15.969601Z", "completed_at": "2022-12-16T16:51:15.969604Z"}], "thread_id": "Thread-3", "execution_time": 0.012372255325317383, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_delete_lead_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:15.959361Z", "completed_at": "2022-12-16T16:51:15.968989Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:15.970019Z", "completed_at": "2022-12-16T16:51:15.970025Z"}], "thread_id": "Thread-4", "execution_time": 0.012867212295532227, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_email_bounced_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:15.973095Z", "completed_at": "2022-12-16T16:51:15.982014Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:15.982782Z", "completed_at": "2022-12-16T16:51:15.982788Z"}], "thread_id": "Thread-1", "execution_time": 0.012601137161254883, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_email_delivered_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:15.973500Z", "completed_at": "2022-12-16T16:51:15.982266Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:15.982954Z", "completed_at": "2022-12-16T16:51:15.982957Z"}], "thread_id": "Thread-2", "execution_time": 0.012249946594238281, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_merge_leads_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:15.975758Z", "completed_at": "2022-12-16T16:51:15.982518Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:15.983422Z", "completed_at": "2022-12-16T16:51:15.983425Z"}], "thread_id": "Thread-3", "execution_time": 0.012288093566894531, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_open_email_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:15.977862Z", "completed_at": "2022-12-16T16:51:15.982702Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:15.983753Z", "completed_at": "2022-12-16T16:51:15.983756Z"}], "thread_id": "Thread-4", "execution_time": 0.011423110961914062, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_send_email_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:15.986095Z", "completed_at": "2022-12-16T16:51:15.995637Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:15.996275Z", "completed_at": "2022-12-16T16:51:15.996281Z"}], "thread_id": "Thread-1", "execution_time": 0.012089967727661133, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_unsubscribe_email_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:15.986259Z", "completed_at": "2022-12-16T16:51:15.995810Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:15.996544Z", "completed_at": "2022-12-16T16:51:15.996546Z"}], "thread_id": "Thread-2", "execution_time": 0.012279033660888672, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__email_template_history_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:15.988612Z", "completed_at": "2022-12-16T16:51:15.996040Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:15.996956Z", "completed_at": "2022-12-16T16:51:15.996959Z"}], "thread_id": "Thread-3", "execution_time": 0.012270212173461914, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__lead_describe_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:15.990747Z", "completed_at": "2022-12-16T16:51:15.996099Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:15.997047Z", "completed_at": "2022-12-16T16:51:15.997050Z"}], "thread_id": "Thread-4", "execution_time": 0.012221097946166992, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__lead_tmp"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:15.999825Z", "completed_at": "2022-12-16T16:51:16.002486Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:16.004979Z", "completed_at": "2022-12-16T16:51:16.004985Z"}], "thread_id": "Thread-1", "execution_time": 0.007042884826660156, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.marketo_source_integration_tests.marketo_activity_change_data_value_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:16.000046Z", "completed_at": "2022-12-16T16:51:16.004543Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:16.005206Z", "completed_at": "2022-12-16T16:51:16.005209Z"}], "thread_id": "Thread-2", "execution_time": 0.006972312927246094, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.marketo_source_integration_tests.marketo_activity_click_email_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:16.001308Z", "completed_at": "2022-12-16T16:51:16.004723Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:16.005591Z", "completed_at": "2022-12-16T16:51:16.005595Z"}], "thread_id": "Thread-3", "execution_time": 0.007084846496582031, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.marketo_source_integration_tests.marketo_activity_delete_lead_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:16.001400Z", "completed_at": "2022-12-16T16:51:16.004806Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:16.005671Z", "completed_at": "2022-12-16T16:51:16.005674Z"}], "thread_id": "Thread-4", "execution_time": 0.007122039794921875, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.marketo_source_integration_tests.marketo_activity_email_bounced_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:16.008103Z", "completed_at": "2022-12-16T16:51:16.011251Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:16.013529Z", "completed_at": "2022-12-16T16:51:16.013534Z"}], "thread_id": "Thread-1", "execution_time": 0.007096052169799805, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.marketo_source_integration_tests.marketo_activity_email_delivered_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:16.008330Z", "completed_at": "2022-12-16T16:51:16.013190Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:16.013725Z", "completed_at": "2022-12-16T16:51:16.013727Z"}], "thread_id": "Thread-2", "execution_time": 0.007042884826660156, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.marketo_source_integration_tests.marketo_activity_merge_leads_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:16.010121Z", "completed_at": "2022-12-16T16:51:16.013332Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:16.014083Z", "completed_at": "2022-12-16T16:51:16.014086Z"}], "thread_id": "Thread-3", "execution_time": 0.007148027420043945, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.marketo_source_integration_tests.marketo_activity_open_email_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:16.010195Z", "completed_at": "2022-12-16T16:51:16.013398Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:16.014153Z", "completed_at": "2022-12-16T16:51:16.014155Z"}], "thread_id": "Thread-4", "execution_time": 0.00722503662109375, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.marketo_source_integration_tests.marketo_activity_send_email_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:16.016437Z", "completed_at": "2022-12-16T16:51:16.018996Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:16.022115Z", "completed_at": "2022-12-16T16:51:16.022120Z"}], "thread_id": "Thread-1", "execution_time": 0.007297992706298828, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.marketo_source_integration_tests.marketo_activity_unsubscribe_email_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:16.016671Z", "completed_at": "2022-12-16T16:51:16.021782Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:16.022305Z", "completed_at": "2022-12-16T16:51:16.022308Z"}], "thread_id": "Thread-2", "execution_time": 0.007220029830932617, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.marketo_source_integration_tests.marketo_campaign_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:16.017879Z", "completed_at": "2022-12-16T16:51:16.021925Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:16.022653Z", "completed_at": "2022-12-16T16:51:16.022655Z"}], "thread_id": "Thread-3", "execution_time": 0.007291078567504883, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.marketo_source_integration_tests.marketo_email_template_history_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:16.017954Z", "completed_at": "2022-12-16T16:51:16.021988Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:16.022720Z", "completed_at": "2022-12-16T16:51:16.022722Z"}], "thread_id": "Thread-4", "execution_time": 0.007439136505126953, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.marketo_source_integration_tests.marketo_lead_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:16.025376Z", "completed_at": "2022-12-16T16:51:16.027842Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:16.038371Z", "completed_at": "2022-12-16T16:51:16.038377Z"}], "thread_id": "Thread-1", "execution_time": 0.014986991882324219, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.marketo_source_integration_tests.marketo_lead_describe_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:16.025610Z", "completed_at": "2022-12-16T16:51:16.037968Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:16.038601Z", "completed_at": "2022-12-16T16:51:16.038603Z"}], "thread_id": "Thread-2", "execution_time": 0.015053987503051758, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.marketo_source_integration_tests.marketo_program_data"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:16.026712Z", "completed_at": "2022-12-16T16:51:16.289801Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:16.289990Z", "completed_at": "2022-12-16T16:51:16.289998Z"}], "thread_id": "Thread-3", "execution_time": 0.31119394302368164, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_change_data_value"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:16.040578Z", "completed_at": "2022-12-16T16:51:16.336669Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:16.337593Z", "completed_at": "2022-12-16T16:51:16.337595Z"}], "thread_id": "Thread-2", "execution_time": 0.3355519771575928, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_email_bounced"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:16.040508Z", "completed_at": "2022-12-16T16:51:16.336800Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:16.337668Z", "completed_at": "2022-12-16T16:51:16.337670Z"}], "thread_id": "Thread-1", "execution_time": 0.3370199203491211, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_delete_lead"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:16.026780Z", "completed_at": "2022-12-16T16:51:16.336292Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:16.337425Z", "completed_at": "2022-12-16T16:51:16.337430Z"}], "thread_id": "Thread-4", "execution_time": 0.35213804244995117, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_click_email"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:16.337821Z", "completed_at": "2022-12-16T16:51:16.616804Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:16.616972Z", "completed_at": "2022-12-16T16:51:16.616979Z"}], "thread_id": "Thread-3", "execution_time": 0.30726003646850586, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_email_delivered"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:16.376651Z", "completed_at": "2022-12-16T16:51:16.662893Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:16.663064Z", "completed_at": "2022-12-16T16:51:16.663071Z"}], "thread_id": "Thread-2", "execution_time": 0.3131899833679199, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_merge_leads"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:16.407369Z", "completed_at": "2022-12-16T16:51:16.711873Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:16.712209Z", "completed_at": "2022-12-16T16:51:16.712216Z"}], "thread_id": "Thread-4", "execution_time": 0.3318002223968506, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_send_email"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:16.407279Z", "completed_at": "2022-12-16T16:51:16.711968Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:16.712287Z", "completed_at": "2022-12-16T16:51:16.712290Z"}], "thread_id": "Thread-1", "execution_time": 0.33249902725219727, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_open_email"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:16.644936Z", "completed_at": "2022-12-16T16:51:16.933318Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:16.933482Z", "completed_at": "2022-12-16T16:51:16.933490Z"}], "thread_id": "Thread-3", "execution_time": 0.31494998931884766, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__activity_unsubscribe_email"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:16.960114Z", "completed_at": "2022-12-16T16:51:16.970227Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:16.970470Z", "completed_at": "2022-12-16T16:51:16.970476Z"}], "thread_id": "Thread-3", "execution_time": 0.010987997055053711, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.not_null_stg_marketo__activity_change_data_value_activity_id.8ae060d108"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:16.971588Z", "completed_at": "2022-12-16T16:51:16.987196Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:16.987388Z", "completed_at": "2022-12-16T16:51:16.987396Z"}], "thread_id": "Thread-3", "execution_time": 0.01648998260498047, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.unique_stg_marketo__activity_change_data_value_activity_id.7c7047bbcd"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:16.988318Z", "completed_at": "2022-12-16T16:51:16.992059Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:16.992210Z", "completed_at": "2022-12-16T16:51:16.992215Z"}], "thread_id": "Thread-3", "execution_time": 0.004504680633544922, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.not_null_stg_marketo__activity_email_bounced_activity_id.578b8cddf2"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:16.993366Z", "completed_at": "2022-12-16T16:51:16.996281Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:16.996430Z", "completed_at": "2022-12-16T16:51:16.996435Z"}], "thread_id": "Thread-3", "execution_time": 0.003760814666748047, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.unique_stg_marketo__activity_email_bounced_activity_id.28833155c3"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:16.997171Z", "completed_at": "2022-12-16T16:51:17.000003Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:17.000176Z", "completed_at": "2022-12-16T16:51:17.000181Z"}], "thread_id": "Thread-3", "execution_time": 0.0035178661346435547, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.not_null_stg_marketo__activity_click_email_activity_id.8e4b4af9fd"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:17.000999Z", "completed_at": "2022-12-16T16:51:17.003665Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:17.003818Z", "completed_at": "2022-12-16T16:51:17.003822Z"}], "thread_id": "Thread-3", "execution_time": 0.003367900848388672, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.unique_stg_marketo__activity_click_email_activity_id.6c599791a0"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:17.004563Z", "completed_at": "2022-12-16T16:51:17.007184Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:17.007346Z", "completed_at": "2022-12-16T16:51:17.007351Z"}], "thread_id": "Thread-3", "execution_time": 0.003348827362060547, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.not_null_stg_marketo__activity_email_delivered_activity_id.138e450885"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:17.008190Z", "completed_at": "2022-12-16T16:51:17.010889Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:17.011064Z", "completed_at": "2022-12-16T16:51:17.011069Z"}], "thread_id": "Thread-3", "execution_time": 0.0033991336822509766, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.unique_stg_marketo__activity_email_delivered_activity_id.6f715c1b87"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:17.011888Z", "completed_at": "2022-12-16T16:51:17.015160Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:17.015320Z", "completed_at": "2022-12-16T16:51:17.015328Z"}], "thread_id": "Thread-3", "execution_time": 0.004002094268798828, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.not_null_stg_marketo__activity_send_email_activity_id.4eaf534bc8"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:17.016140Z", "completed_at": "2022-12-16T16:51:17.018762Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:17.018962Z", "completed_at": "2022-12-16T16:51:17.018966Z"}], "thread_id": "Thread-3", "execution_time": 0.003348827362060547, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.unique_stg_marketo__activity_send_email_activity_id.bd25ee45d1"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:16.689883Z", "completed_at": "2022-12-16T16:51:16.988250Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:16.991664Z", "completed_at": "2022-12-16T16:51:16.991674Z"}], "thread_id": "Thread-2", "execution_time": 0.3331336975097656, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__email_template_history"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:17.019793Z", "completed_at": "2022-12-16T16:51:17.022509Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:17.023210Z", "completed_at": "2022-12-16T16:51:17.023214Z"}], "thread_id": "Thread-3", "execution_time": 0.004224061965942383, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.not_null_stg_marketo__activity_open_email_activity_id.72e7514396"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:17.024004Z", "completed_at": "2022-12-16T16:51:17.029912Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:17.030110Z", "completed_at": "2022-12-16T16:51:17.030116Z"}], "thread_id": "Thread-2", "execution_time": 0.0070798397064208984, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.unique_stg_marketo__activity_open_email_activity_id.d48e7e93e6"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:17.027092Z", "completed_at": "2022-12-16T16:51:17.030570Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:17.031062Z", "completed_at": "2022-12-16T16:51:17.031065Z"}], "thread_id": "Thread-3", "execution_time": 0.007264137268066406, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.not_null_stg_marketo__activity_unsubscribe_email_activity_id.a31edf42c0"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:17.031132Z", "completed_at": "2022-12-16T16:51:17.034462Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:17.038455Z", "completed_at": "2022-12-16T16:51:17.038462Z"}], "thread_id": "Thread-2", "execution_time": 0.008139848709106445, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.unique_stg_marketo__activity_unsubscribe_email_activity_id.a3bca07e06"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:17.034408Z", "completed_at": "2022-12-16T16:51:17.038597Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:17.039238Z", "completed_at": "2022-12-16T16:51:17.039243Z"}], "thread_id": "Thread-3", "execution_time": 0.0056879520416259766, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.not_null_stg_marketo__email_template_history_email_template_history_id.dcab273dfa"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:17.040226Z", "completed_at": "2022-12-16T16:51:17.043203Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:17.043349Z", "completed_at": "2022-12-16T16:51:17.043354Z"}], "thread_id": "Thread-2", "execution_time": 0.004251956939697266, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.unique_stg_marketo__email_template_history_email_template_history_id.7e3c0524e2"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:16.743675Z", "completed_at": "2022-12-16T16:51:17.059150Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:17.059350Z", "completed_at": "2022-12-16T16:51:17.059358Z"}], "thread_id": "Thread-1", "execution_time": 0.3452930450439453, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__lead"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:17.086513Z", "completed_at": "2022-12-16T16:51:17.092122Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:17.092313Z", "completed_at": "2022-12-16T16:51:17.092320Z"}], "thread_id": "Thread-3", "execution_time": 0.007030010223388672, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.not_null_stg_marketo__lead_lead_id.a539cbf055"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:17.086586Z", "completed_at": "2022-12-16T16:51:17.092711Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:17.092988Z", "completed_at": "2022-12-16T16:51:17.092994Z"}], "thread_id": "Thread-2", "execution_time": 0.007542133331298828, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.unique_stg_marketo__lead_lead_id.1a4c20db9f"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:16.740149Z", "completed_at": "2022-12-16T16:51:17.080514Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:17.080695Z", "completed_at": "2022-12-16T16:51:17.080701Z"}], "thread_id": "Thread-4", "execution_time": 0.367631196975708, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.marketo_source.stg_marketo__lead_describe"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:17.108576Z", "completed_at": "2022-12-16T16:51:17.114334Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:17.114671Z", "completed_at": "2022-12-16T16:51:17.114677Z"}], "thread_id": "Thread-1", "execution_time": 0.0073587894439697266, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.not_null_stg_marketo__lead_describe_lead_describe_id.37612f6879"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2022-12-16T16:51:17.108665Z", "completed_at": "2022-12-16T16:51:17.114603Z"}, {"name": "execute", "started_at": "2022-12-16T16:51:17.115210Z", "completed_at": "2022-12-16T16:51:17.115214Z"}], "thread_id": "Thread-3", "execution_time": 0.007386207580566406, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.marketo_source.unique_stg_marketo__lead_describe_lead_describe_id.4f0a7f9cc1"}], "elapsed_time": 2.016801118850708, "args": {"write_json": true, "use_colors": true, "printer_width": 80, "version_check": true, "partial_parse": true, "static_parser": true, "profiles_dir": "/Users/joseph.markiewicz/.dbt", "send_anonymous_usage_stats": true, "event_buffer_size": 100000, "quiet": false, "no_print": false, "target": "postgres", "compile": true, "which": "generate", "rpc_method": "docs.generate", "indirect_selection": "eager"}} \ No newline at end of file diff --git a/integration_tests/ci/sample.profiles.yml b/integration_tests/ci/sample.profiles.yml index 3f5355c..6c62ae7 100644 --- a/integration_tests/ci/sample.profiles.yml +++ b/integration_tests/ci/sample.profiles.yml @@ -1,5 +1,5 @@ -# HEY! This file is used in the Marketo integrations tests with CircleCI. +# HEY! This file is used in the dbt package integrations tests with Buildkite. # You should __NEVER__ check credentials into version control. Thanks for reading :) config: @@ -7,7 +7,7 @@ config: use_colors: True integration_tests: - target: snowflake + target: redshift outputs: redshift: type: redshift @@ -20,11 +20,11 @@ integration_tests: threads: 8 bigquery: type: bigquery - method: service-account - keyfile: "{{ env_var('GCLOUD_SERVICE_KEY_PATH') }}" + method: service-account-json project: 'dbt-package-testing' schema: marketo_source_integration_tests_7 threads: 8 + keyfile_json: "{{ env_var('GCLOUD_SERVICE_KEY') | as_native }}" snowflake: type: snowflake account: "{{ env_var('CI_SNOWFLAKE_DBT_ACCOUNT') }}" @@ -35,26 +35,20 @@ integration_tests: warehouse: "{{ env_var('CI_SNOWFLAKE_DBT_WAREHOUSE') }}" schema: marketo_source_integration_tests_7 threads: 8 - spark: - type: spark - method: http - schema: marketo_source_integration_tests_7 - host: "{{ env_var('CI_SPARK_DBT_HOST') }}" - organization: "{{ env_var('CI_SPARK_DBT_ORGANIZATION') }}" - token: "{{ env_var('CI_SPARK_DBT_TOKEN') }}" - cluster: "{{ env_var('CI_SPARK_DBT_CLUSTER') }}" - port: 443 - connect_timeout: 60 - connect_retries: 5 - threads: 4 - postgres: + postgres: type: postgres host: "{{ env_var('CI_POSTGRES_DBT_HOST') }}" user: "{{ env_var('CI_POSTGRES_DBT_USER') }}" - password: "{{ env_var('CI_POSTGRES_DBT_PASS') }}" + pass: "{{ env_var('CI_POSTGRES_DBT_PASS') }}" + dbname: "{{ env_var('CI_POSTGRES_DBT_DBNAME') }}" port: 5432 - dbname: "{{ env_var('CI_POSTGRES_DBT_DATABASE') }}" schema: marketo_source_integration_tests_7 threads: 8 - keepalives_idle: 0 - sslmode: prefer \ No newline at end of file + databricks: + catalog: null + host: "{{ env_var('CI_DATABRICKS_DBT_HOST') }}" + http_path: "{{ env_var('CI_DATABRICKS_DBT_HTTP_PATH') }}" + schema: marketo_source_integration_tests_7 + threads: 2 + 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 b0150c4..d437b34 100644 --- a/integration_tests/dbt_project.yml +++ b/integration_tests/dbt_project.yml @@ -1,22 +1,26 @@ name: 'marketo_source_integration_tests' -version: '0.8.0' +version: '0.9.0' profile: 'integration_tests' config-version: 2 - vars: - marketo_schema: marketo_source_integration_tests_7 - marketo_source: - marketo_lead_identifier: "marketo_lead_data" - marketo_lead_describe_identifier: "marketo_lead_describe_data" - marketo_activity_change_data_value_identifier: "marketo_activity_change_data_value_data" - marketo_campaign_identifier: "marketo_campaign_data" - marketo_program_identifier: "marketo_program_data" - marketo_email_template_history_identifier: "marketo_email_template_history_data" - marketo_activity_click_email_identifier: "marketo_activity_click_email_data" - marketo_activity_email_delivered_identifier: "marketo_activity_email_delivered_data" - marketo_activity_email_bounced_identifier: "marketo_activity_email_bounced_data" - marketo_activity_open_email_identifier: "marketo_activity_open_email_data" - marketo_activity_unsubscribe_email_identifier: "marketo_activity_unsubscribe_email_data" - marketo_activity_send_email_identifier: "marketo_activity_send_email_data" - marketo_activity_delete_lead_identifier: "marketo_activity_delete_lead_data" - marketo_activity_merge_leads_identifier: "marketo_activity_merge_leads_data" \ No newline at end of file + marketo_schema: marketo_source_integration_tests_7 + marketo_source: + marketo_lead_identifier: "marketo_lead_data" + marketo_lead_describe_identifier: "marketo_lead_describe_data" + marketo_activity_change_data_value_identifier: "marketo_activity_change_data_value_data" + marketo_campaign_identifier: "marketo_campaign_data" + marketo_program_identifier: "marketo_program_data" + marketo_email_template_history_identifier: "marketo_email_template_history_data" + marketo_activity_click_email_identifier: "marketo_activity_click_email_data" + marketo_activity_email_delivered_identifier: "marketo_activity_email_delivered_data" + marketo_activity_email_bounced_identifier: "marketo_activity_email_bounced_data" + marketo_activity_open_email_identifier: "marketo_activity_open_email_data" + marketo_activity_unsubscribe_email_identifier: "marketo_activity_unsubscribe_email_data" + marketo_activity_send_email_identifier: "marketo_activity_send_email_data" + marketo_activity_delete_lead_identifier: "marketo_activity_delete_lead_data" + marketo_activity_merge_leads_identifier: "marketo_activity_merge_leads_data" + + +dispatch: + - macro_namespace: dbt_utils + search_order: ['spark_utils', 'dbt_utils'] \ No newline at end of file diff --git a/integration_tests/requirements.txt b/integration_tests/requirements.txt index b9ab8a7..87ae0f9 100644 --- a/integration_tests/requirements.txt +++ b/integration_tests/requirements.txt @@ -1,6 +1,7 @@ -dbt-snowflake>=1.0.0,<2.0.0 -dbt-bigquery>=1.0.0,<2.0.0 -dbt-redshift>=1.0.0,<2.0.0 -dbt-postgres>=1.0.0,<2.0.0 -dbt-spark>=1.0.0,<2.0.0 -dbt-spark[PyHive]>=1.0.0,<2.0.0 +dbt-snowflake>=1.3.0,<2.0.0 +dbt-bigquery>=1.3.0,<2.0.0 +dbt-redshift>=1.3.0,<2.0.0 +dbt-postgres>=1.3.0,<2.0.0 +dbt-spark>=1.3.0,<2.0.0 +dbt-spark[PyHive]>=1.3.0,<2.0.0 +dbt-databricks>=1.3.0,<2.0.0 \ No newline at end of file diff --git a/macros/get_activity_change_data_value_columns.sql b/macros/get_activity_change_data_value_columns.sql index d59234e..36c15c2 100644 --- a/macros/get_activity_change_data_value_columns.sql +++ b/macros/get_activity_change_data_value_columns.sql @@ -1,21 +1,21 @@ {% macro get_activity_change_data_value_columns() %} {% set columns = [ - {"name": "_fivetran_synced", "datatype": dbt_utils.type_timestamp()}, - {"name": "activity_date", "datatype": dbt_utils.type_timestamp()}, - {"name": "activity_type_id", "datatype": dbt_utils.type_int()}, - {"name": "api_method_name", "datatype": dbt_utils.type_string()}, - {"name": "campaign_id", "datatype": dbt_utils.type_int()}, - {"name": "id", "datatype": dbt_utils.type_string()}, - {"name": "lead_id", "datatype": dbt_utils.type_int()}, - {"name": "modifying_user", "datatype": dbt_utils.type_string()}, - {"name": "new_value", "datatype": dbt_utils.type_string()}, - {"name": "old_value", "datatype": dbt_utils.type_string()}, - {"name": "primary_attribute_value", "datatype": dbt_utils.type_string()}, - {"name": "primary_attribute_value_id", "datatype": dbt_utils.type_int()}, - {"name": "reason", "datatype": dbt_utils.type_string()}, - {"name": "request_id", "datatype": dbt_utils.type_string()}, - {"name": "source", "datatype": dbt_utils.type_string()} + {"name": "_fivetran_synced", "datatype": dbt.type_timestamp()}, + {"name": "activity_date", "datatype": dbt.type_timestamp()}, + {"name": "activity_type_id", "datatype": dbt.type_int()}, + {"name": "api_method_name", "datatype": dbt.type_string()}, + {"name": "campaign_id", "datatype": dbt.type_int()}, + {"name": "id", "datatype": dbt.type_string()}, + {"name": "lead_id", "datatype": dbt.type_int()}, + {"name": "modifying_user", "datatype": dbt.type_string()}, + {"name": "new_value", "datatype": dbt.type_string()}, + {"name": "old_value", "datatype": dbt.type_string()}, + {"name": "primary_attribute_value", "datatype": dbt.type_string()}, + {"name": "primary_attribute_value_id", "datatype": dbt.type_int()}, + {"name": "reason", "datatype": dbt.type_string()}, + {"name": "request_id", "datatype": dbt.type_string()}, + {"name": "source", "datatype": dbt.type_string()} ] %} {{ return(columns) }} diff --git a/macros/get_activity_click_email_columns.sql b/macros/get_activity_click_email_columns.sql index e948c86..780fc7a 100644 --- a/macros/get_activity_click_email_columns.sql +++ b/macros/get_activity_click_email_columns.sql @@ -1,25 +1,25 @@ {% macro get_activity_click_email_columns() %} {% set columns = [ - {"name": "_fivetran_synced", "datatype": dbt_utils.type_timestamp()}, - {"name": "activity_date", "datatype": dbt_utils.type_timestamp()}, - {"name": "activity_type_id", "datatype": dbt_utils.type_int()}, - {"name": "campaign_id", "datatype": dbt_utils.type_int()}, - {"name": "campaign_run_id", "datatype": dbt_utils.type_int()}, - {"name": "choice_number", "datatype": dbt_utils.type_int()}, - {"name": "device", "datatype": dbt_utils.type_string()}, - {"name": "email_template_id", "datatype": dbt_utils.type_int()}, - {"name": "id", "datatype": dbt_utils.type_string()}, + {"name": "_fivetran_synced", "datatype": dbt.type_timestamp()}, + {"name": "activity_date", "datatype": dbt.type_timestamp()}, + {"name": "activity_type_id", "datatype": dbt.type_int()}, + {"name": "campaign_id", "datatype": dbt.type_int()}, + {"name": "campaign_run_id", "datatype": dbt.type_int()}, + {"name": "choice_number", "datatype": dbt.type_int()}, + {"name": "device", "datatype": dbt.type_string()}, + {"name": "email_template_id", "datatype": dbt.type_int()}, + {"name": "id", "datatype": dbt.type_string()}, {"name": "is_mobile_device", "datatype": "boolean"}, - {"name": "lead_id", "datatype": dbt_utils.type_int()}, - {"name": "link", "datatype": dbt_utils.type_string()}, - {"name": "link_id", "datatype": dbt_utils.type_string()}, - {"name": "platform", "datatype": dbt_utils.type_string()}, - {"name": "primary_attribute_value", "datatype": dbt_utils.type_string()}, - {"name": "primary_attribute_value_id", "datatype": dbt_utils.type_int()}, - {"name": "step_id", "datatype": dbt_utils.type_int()}, - {"name": "test_variant", "datatype": dbt_utils.type_int()}, - {"name": "user_agent", "datatype": dbt_utils.type_string()} + {"name": "lead_id", "datatype": dbt.type_int()}, + {"name": "link", "datatype": dbt.type_string()}, + {"name": "link_id", "datatype": dbt.type_string()}, + {"name": "platform", "datatype": dbt.type_string()}, + {"name": "primary_attribute_value", "datatype": dbt.type_string()}, + {"name": "primary_attribute_value_id", "datatype": dbt.type_int()}, + {"name": "step_id", "datatype": dbt.type_int()}, + {"name": "test_variant", "datatype": dbt.type_int()}, + {"name": "user_agent", "datatype": dbt.type_string()} ] %} {{ return(columns) }} diff --git a/macros/get_activity_delete_lead_columns.sql b/macros/get_activity_delete_lead_columns.sql index 638c8e8..f3a77a7 100644 --- a/macros/get_activity_delete_lead_columns.sql +++ b/macros/get_activity_delete_lead_columns.sql @@ -1,15 +1,15 @@ {% macro get_activity_delete_lead_columns() %} {% set columns = [ - {"name": "_fivetran_synced", "datatype": dbt_utils.type_timestamp()}, - {"name": "activity_date", "datatype": dbt_utils.type_timestamp()}, - {"name": "activity_type_id", "datatype": dbt_utils.type_int()}, - {"name": "campaign", "datatype": dbt_utils.type_string()}, - {"name": "campaign_id", "datatype": dbt_utils.type_int()}, - {"name": "id", "datatype": dbt_utils.type_string()}, - {"name": "lead_id", "datatype": dbt_utils.type_int()}, - {"name": "primary_attribute_value", "datatype": dbt_utils.type_string()}, - {"name": "primary_attribute_value_id", "datatype": dbt_utils.type_int()} + {"name": "_fivetran_synced", "datatype": dbt.type_timestamp()}, + {"name": "activity_date", "datatype": dbt.type_timestamp()}, + {"name": "activity_type_id", "datatype": dbt.type_int()}, + {"name": "campaign", "datatype": dbt.type_string()}, + {"name": "campaign_id", "datatype": dbt.type_int()}, + {"name": "id", "datatype": dbt.type_string()}, + {"name": "lead_id", "datatype": dbt.type_int()}, + {"name": "primary_attribute_value", "datatype": dbt.type_string()}, + {"name": "primary_attribute_value_id", "datatype": dbt.type_int()} ] %} {{ return(columns) }} diff --git a/macros/get_activity_email_bounced_columns.sql b/macros/get_activity_email_bounced_columns.sql index f5d70ce..275339d 100644 --- a/macros/get_activity_email_bounced_columns.sql +++ b/macros/get_activity_email_bounced_columns.sql @@ -1,23 +1,23 @@ {% macro get_activity_email_bounced_columns() %} {% set columns = [ - {"name": "_fivetran_synced", "datatype": dbt_utils.type_timestamp()}, - {"name": "activity_date", "datatype": dbt_utils.type_timestamp()}, - {"name": "activity_type_id", "datatype": dbt_utils.type_int()}, - {"name": "campaign_id", "datatype": dbt_utils.type_int()}, - {"name": "campaign_run_id", "datatype": dbt_utils.type_int()}, - {"name": "category", "datatype": dbt_utils.type_int()}, - {"name": "choice_number", "datatype": dbt_utils.type_int()}, - {"name": "details", "datatype": dbt_utils.type_string()}, - {"name": "email", "datatype": dbt_utils.type_string()}, - {"name": "email_template_id", "datatype": dbt_utils.type_int()}, - {"name": "id", "datatype": dbt_utils.type_string()}, - {"name": "lead_id", "datatype": dbt_utils.type_int()}, - {"name": "primary_attribute_value", "datatype": dbt_utils.type_string()}, - {"name": "primary_attribute_value_id", "datatype": dbt_utils.type_int()}, - {"name": "step_id", "datatype": dbt_utils.type_int()}, - {"name": "subcategory", "datatype": dbt_utils.type_int()}, - {"name": "test_variant", "datatype": dbt_utils.type_int()} + {"name": "_fivetran_synced", "datatype": dbt.type_timestamp()}, + {"name": "activity_date", "datatype": dbt.type_timestamp()}, + {"name": "activity_type_id", "datatype": dbt.type_int()}, + {"name": "campaign_id", "datatype": dbt.type_int()}, + {"name": "campaign_run_id", "datatype": dbt.type_int()}, + {"name": "category", "datatype": dbt.type_int()}, + {"name": "choice_number", "datatype": dbt.type_int()}, + {"name": "details", "datatype": dbt.type_string()}, + {"name": "email", "datatype": dbt.type_string()}, + {"name": "email_template_id", "datatype": dbt.type_int()}, + {"name": "id", "datatype": dbt.type_string()}, + {"name": "lead_id", "datatype": dbt.type_int()}, + {"name": "primary_attribute_value", "datatype": dbt.type_string()}, + {"name": "primary_attribute_value_id", "datatype": dbt.type_int()}, + {"name": "step_id", "datatype": dbt.type_int()}, + {"name": "subcategory", "datatype": dbt.type_int()}, + {"name": "test_variant", "datatype": dbt.type_int()} ] %} {{ return(columns) }} diff --git a/macros/get_activity_email_delivered_columns.sql b/macros/get_activity_email_delivered_columns.sql index 1f572be..63cb4e0 100644 --- a/macros/get_activity_email_delivered_columns.sql +++ b/macros/get_activity_email_delivered_columns.sql @@ -1,19 +1,19 @@ {% macro get_activity_email_delivered_columns() %} {% set columns = [ - {"name": "_fivetran_synced", "datatype": dbt_utils.type_timestamp()}, - {"name": "activity_date", "datatype": dbt_utils.type_timestamp()}, - {"name": "activity_type_id", "datatype": dbt_utils.type_int()}, - {"name": "campaign_id", "datatype": dbt_utils.type_int()}, - {"name": "campaign_run_id", "datatype": dbt_utils.type_int()}, - {"name": "choice_number", "datatype": dbt_utils.type_int()}, - {"name": "email_template_id", "datatype": dbt_utils.type_int()}, - {"name": "id", "datatype": dbt_utils.type_string()}, - {"name": "lead_id", "datatype": dbt_utils.type_int()}, - {"name": "primary_attribute_value", "datatype": dbt_utils.type_string()}, - {"name": "primary_attribute_value_id", "datatype": dbt_utils.type_int()}, - {"name": "step_id", "datatype": dbt_utils.type_int()}, - {"name": "test_variant", "datatype": dbt_utils.type_int()} + {"name": "_fivetran_synced", "datatype": dbt.type_timestamp()}, + {"name": "activity_date", "datatype": dbt.type_timestamp()}, + {"name": "activity_type_id", "datatype": dbt.type_int()}, + {"name": "campaign_id", "datatype": dbt.type_int()}, + {"name": "campaign_run_id", "datatype": dbt.type_int()}, + {"name": "choice_number", "datatype": dbt.type_int()}, + {"name": "email_template_id", "datatype": dbt.type_int()}, + {"name": "id", "datatype": dbt.type_string()}, + {"name": "lead_id", "datatype": dbt.type_int()}, + {"name": "primary_attribute_value", "datatype": dbt.type_string()}, + {"name": "primary_attribute_value_id", "datatype": dbt.type_int()}, + {"name": "step_id", "datatype": dbt.type_int()}, + {"name": "test_variant", "datatype": dbt.type_int()} ] %} {{ return(columns) }} diff --git a/macros/get_activity_merge_leads_columns.sql b/macros/get_activity_merge_leads_columns.sql index 11c4427..b4336d4 100644 --- a/macros/get_activity_merge_leads_columns.sql +++ b/macros/get_activity_merge_leads_columns.sql @@ -1,18 +1,18 @@ {% macro get_activity_merge_leads_columns() %} {% set columns = [ - {"name": "_fivetran_synced", "datatype": dbt_utils.type_timestamp()}, - {"name": "activity_date", "datatype": dbt_utils.type_timestamp()}, - {"name": "activity_type_id", "datatype": dbt_utils.type_int()}, - {"name": "campaign_id", "datatype": dbt_utils.type_int()}, - {"name": "id", "datatype": dbt_utils.type_string()}, - {"name": "lead_id", "datatype": dbt_utils.type_int()}, + {"name": "_fivetran_synced", "datatype": dbt.type_timestamp()}, + {"name": "activity_date", "datatype": dbt.type_timestamp()}, + {"name": "activity_type_id", "datatype": dbt.type_int()}, + {"name": "campaign_id", "datatype": dbt.type_int()}, + {"name": "id", "datatype": dbt.type_string()}, + {"name": "lead_id", "datatype": dbt.type_int()}, {"name": "master_updated", "datatype": "boolean"}, - {"name": "merge_ids", "datatype": dbt_utils.type_string()}, - {"name": "merge_source", "datatype": dbt_utils.type_string()}, + {"name": "merge_ids", "datatype": dbt.type_string()}, + {"name": "merge_source", "datatype": dbt.type_string()}, {"name": "merged_in_sales", "datatype": "boolean"}, - {"name": "primary_attribute_value", "datatype": dbt_utils.type_string()}, - {"name": "primary_attribute_value_id", "datatype": dbt_utils.type_int()} + {"name": "primary_attribute_value", "datatype": dbt.type_string()}, + {"name": "primary_attribute_value_id", "datatype": dbt.type_int()} ] %} {{ return(columns) }} diff --git a/macros/get_activity_open_email_columns.sql b/macros/get_activity_open_email_columns.sql index f9278b5..d869fbf 100644 --- a/macros/get_activity_open_email_columns.sql +++ b/macros/get_activity_open_email_columns.sql @@ -1,23 +1,23 @@ {% macro get_activity_open_email_columns() %} {% set columns = [ - {"name": "_fivetran_synced", "datatype": dbt_utils.type_timestamp()}, - {"name": "activity_date", "datatype": dbt_utils.type_timestamp()}, - {"name": "activity_type_id", "datatype": dbt_utils.type_int()}, - {"name": "campaign_id", "datatype": dbt_utils.type_int()}, - {"name": "campaign_run_id", "datatype": dbt_utils.type_int()}, - {"name": "choice_number", "datatype": dbt_utils.type_int()}, - {"name": "device", "datatype": dbt_utils.type_string()}, - {"name": "email_template_id", "datatype": dbt_utils.type_int()}, - {"name": "id", "datatype": dbt_utils.type_string()}, + {"name": "_fivetran_synced", "datatype": dbt.type_timestamp()}, + {"name": "activity_date", "datatype": dbt.type_timestamp()}, + {"name": "activity_type_id", "datatype": dbt.type_int()}, + {"name": "campaign_id", "datatype": dbt.type_int()}, + {"name": "campaign_run_id", "datatype": dbt.type_int()}, + {"name": "choice_number", "datatype": dbt.type_int()}, + {"name": "device", "datatype": dbt.type_string()}, + {"name": "email_template_id", "datatype": dbt.type_int()}, + {"name": "id", "datatype": dbt.type_string()}, {"name": "is_mobile_device", "datatype": "boolean"}, - {"name": "lead_id", "datatype": dbt_utils.type_int()}, - {"name": "platform", "datatype": dbt_utils.type_string()}, - {"name": "primary_attribute_value", "datatype": dbt_utils.type_string()}, - {"name": "primary_attribute_value_id", "datatype": dbt_utils.type_int()}, - {"name": "step_id", "datatype": dbt_utils.type_int()}, - {"name": "test_variant", "datatype": dbt_utils.type_int()}, - {"name": "user_agent", "datatype": dbt_utils.type_string()} + {"name": "lead_id", "datatype": dbt.type_int()}, + {"name": "platform", "datatype": dbt.type_string()}, + {"name": "primary_attribute_value", "datatype": dbt.type_string()}, + {"name": "primary_attribute_value_id", "datatype": dbt.type_int()}, + {"name": "step_id", "datatype": dbt.type_int()}, + {"name": "test_variant", "datatype": dbt.type_int()}, + {"name": "user_agent", "datatype": dbt.type_string()} ] %} {{ return(columns) }} diff --git a/macros/get_activity_send_email_columns.sql b/macros/get_activity_send_email_columns.sql index 953a0d0..d84dc04 100644 --- a/macros/get_activity_send_email_columns.sql +++ b/macros/get_activity_send_email_columns.sql @@ -1,19 +1,19 @@ {% macro get_activity_send_email_columns() %} {% set columns = [ - {"name": "_fivetran_synced", "datatype": dbt_utils.type_timestamp()}, - {"name": "activity_date", "datatype": dbt_utils.type_timestamp()}, - {"name": "activity_type_id", "datatype": dbt_utils.type_int()}, - {"name": "campaign_id", "datatype": dbt_utils.type_int()}, - {"name": "campaign_run_id", "datatype": dbt_utils.type_int()}, - {"name": "choice_number", "datatype": dbt_utils.type_int()}, - {"name": "email_template_id", "datatype": dbt_utils.type_int()}, - {"name": "id", "datatype": dbt_utils.type_string()}, - {"name": "lead_id", "datatype": dbt_utils.type_int()}, - {"name": "primary_attribute_value", "datatype": dbt_utils.type_string()}, - {"name": "primary_attribute_value_id", "datatype": dbt_utils.type_int()}, - {"name": "step_id", "datatype": dbt_utils.type_int()}, - {"name": "test_variant", "datatype": dbt_utils.type_int()} + {"name": "_fivetran_synced", "datatype": dbt.type_timestamp()}, + {"name": "activity_date", "datatype": dbt.type_timestamp()}, + {"name": "activity_type_id", "datatype": dbt.type_int()}, + {"name": "campaign_id", "datatype": dbt.type_int()}, + {"name": "campaign_run_id", "datatype": dbt.type_int()}, + {"name": "choice_number", "datatype": dbt.type_int()}, + {"name": "email_template_id", "datatype": dbt.type_int()}, + {"name": "id", "datatype": dbt.type_string()}, + {"name": "lead_id", "datatype": dbt.type_int()}, + {"name": "primary_attribute_value", "datatype": dbt.type_string()}, + {"name": "primary_attribute_value_id", "datatype": dbt.type_int()}, + {"name": "step_id", "datatype": dbt.type_int()}, + {"name": "test_variant", "datatype": dbt.type_int()} ] %} {{ return(columns) }} diff --git a/macros/get_activity_unsubscribe_email_columns.sql b/macros/get_activity_unsubscribe_email_columns.sql index f42a1b2..81a220d 100644 --- a/macros/get_activity_unsubscribe_email_columns.sql +++ b/macros/get_activity_unsubscribe_email_columns.sql @@ -1,24 +1,24 @@ {% macro get_activity_unsubscribe_email_columns() %} {% set columns = [ - {"name": "_fivetran_synced", "datatype": dbt_utils.type_timestamp()}, - {"name": "activity_date", "datatype": dbt_utils.type_timestamp()}, - {"name": "activity_type_id", "datatype": dbt_utils.type_int()}, - {"name": "campaign_id", "datatype": dbt_utils.type_int()}, - {"name": "campaign_run_id", "datatype": dbt_utils.type_int()}, - {"name": "client_ip_address", "datatype": dbt_utils.type_string()}, - {"name": "email_template_id", "datatype": dbt_utils.type_int()}, - {"name": "form_fields", "datatype": dbt_utils.type_string()}, - {"name": "id", "datatype": dbt_utils.type_string()}, - {"name": "lead_id", "datatype": dbt_utils.type_int()}, - {"name": "primary_attribute_value", "datatype": dbt_utils.type_string()}, - {"name": "primary_attribute_value_id", "datatype": dbt_utils.type_int()}, - {"name": "query_parameters", "datatype": dbt_utils.type_string()}, - {"name": "referrer_url", "datatype": dbt_utils.type_string()}, - {"name": "test_variant", "datatype": dbt_utils.type_int()}, - {"name": "user_agent", "datatype": dbt_utils.type_string()}, - {"name": "webform_id", "datatype": dbt_utils.type_int()}, - {"name": "webpage_id", "datatype": dbt_utils.type_int()} + {"name": "_fivetran_synced", "datatype": dbt.type_timestamp()}, + {"name": "activity_date", "datatype": dbt.type_timestamp()}, + {"name": "activity_type_id", "datatype": dbt.type_int()}, + {"name": "campaign_id", "datatype": dbt.type_int()}, + {"name": "campaign_run_id", "datatype": dbt.type_int()}, + {"name": "client_ip_address", "datatype": dbt.type_string()}, + {"name": "email_template_id", "datatype": dbt.type_int()}, + {"name": "form_fields", "datatype": dbt.type_string()}, + {"name": "id", "datatype": dbt.type_string()}, + {"name": "lead_id", "datatype": dbt.type_int()}, + {"name": "primary_attribute_value", "datatype": dbt.type_string()}, + {"name": "primary_attribute_value_id", "datatype": dbt.type_int()}, + {"name": "query_parameters", "datatype": dbt.type_string()}, + {"name": "referrer_url", "datatype": dbt.type_string()}, + {"name": "test_variant", "datatype": dbt.type_int()}, + {"name": "user_agent", "datatype": dbt.type_string()}, + {"name": "webform_id", "datatype": dbt.type_int()}, + {"name": "webpage_id", "datatype": dbt.type_int()} ] %} {{ return(columns) }} diff --git a/macros/get_campaign_columns.sql b/macros/get_campaign_columns.sql index e1fb991..daedc62 100644 --- a/macros/get_campaign_columns.sql +++ b/macros/get_campaign_columns.sql @@ -1,17 +1,17 @@ {% macro get_campaign_columns() %} {% set columns = [ - {"name": "_fivetran_synced", "datatype": dbt_utils.type_timestamp()}, + {"name": "_fivetran_synced", "datatype": dbt.type_timestamp()}, {"name": "active", "datatype": "boolean"}, - {"name": "created_at", "datatype": dbt_utils.type_timestamp()}, - {"name": "description", "datatype": dbt_utils.type_string()}, - {"name": "id", "datatype": dbt_utils.type_int()}, - {"name": "name", "datatype": dbt_utils.type_string()}, - {"name": "program_id", "datatype": dbt_utils.type_int()}, - {"name": "program_name", "datatype": dbt_utils.type_string()}, - {"name": "type", "datatype": dbt_utils.type_string()}, - {"name": "updated_at", "datatype": dbt_utils.type_timestamp()}, - {"name": "workspace_name", "datatype": dbt_utils.type_string()} + {"name": "created_at", "datatype": dbt.type_timestamp()}, + {"name": "description", "datatype": dbt.type_string()}, + {"name": "id", "datatype": dbt.type_int()}, + {"name": "name", "datatype": dbt.type_string()}, + {"name": "program_id", "datatype": dbt.type_int()}, + {"name": "program_name", "datatype": dbt.type_string()}, + {"name": "type", "datatype": dbt.type_string()}, + {"name": "updated_at", "datatype": dbt.type_timestamp()}, + {"name": "workspace_name", "datatype": dbt.type_string()} ] %} {{ return(columns) }} diff --git a/macros/get_email_template_history_columns.sql b/macros/get_email_template_history_columns.sql index b2ea461..c645c89 100644 --- a/macros/get_email_template_history_columns.sql +++ b/macros/get_email_template_history_columns.sql @@ -1,30 +1,30 @@ {% macro get_email_template_history_columns() %} {% set columns = [ - {"name": "_fivetran_synced", "datatype": dbt_utils.type_timestamp()}, - {"name": "created_at", "datatype": dbt_utils.type_timestamp()}, - {"name": "description", "datatype": dbt_utils.type_string()}, - {"name": "folder_folder_name", "datatype": dbt_utils.type_string()}, - {"name": "folder_id", "datatype": dbt_utils.type_int()}, - {"name": "folder_type", "datatype": dbt_utils.type_string()}, - {"name": "folder_value", "datatype": dbt_utils.type_int()}, - {"name": "from_email", "datatype": dbt_utils.type_string()}, - {"name": "from_name", "datatype": dbt_utils.type_string()}, - {"name": "id", "datatype": dbt_utils.type_int()}, - {"name": "name", "datatype": dbt_utils.type_string()}, + {"name": "_fivetran_synced", "datatype": dbt.type_timestamp()}, + {"name": "created_at", "datatype": dbt.type_timestamp()}, + {"name": "description", "datatype": dbt.type_string()}, + {"name": "folder_folder_name", "datatype": dbt.type_string()}, + {"name": "folder_id", "datatype": dbt.type_int()}, + {"name": "folder_type", "datatype": dbt.type_string()}, + {"name": "folder_value", "datatype": dbt.type_int()}, + {"name": "from_email", "datatype": dbt.type_string()}, + {"name": "from_name", "datatype": dbt.type_string()}, + {"name": "id", "datatype": dbt.type_int()}, + {"name": "name", "datatype": dbt.type_string()}, {"name": "operational", "datatype": "boolean"}, - {"name": "program_id", "datatype": dbt_utils.type_int()}, + {"name": "program_id", "datatype": dbt.type_int()}, {"name": "publish_to_msi", "datatype": "boolean"}, - {"name": "reply_email", "datatype": dbt_utils.type_string()}, - {"name": "status", "datatype": dbt_utils.type_string()}, - {"name": "subject", "datatype": dbt_utils.type_string()}, - {"name": "template", "datatype": dbt_utils.type_int()}, + {"name": "reply_email", "datatype": dbt.type_string()}, + {"name": "status", "datatype": dbt.type_string()}, + {"name": "subject", "datatype": dbt.type_string()}, + {"name": "template", "datatype": dbt.type_int()}, {"name": "text_only", "datatype": "boolean"}, - {"name": "updated_at", "datatype": dbt_utils.type_timestamp()}, - {"name": "url", "datatype": dbt_utils.type_string()}, - {"name": "version", "datatype": dbt_utils.type_int()}, + {"name": "updated_at", "datatype": dbt.type_timestamp()}, + {"name": "url", "datatype": dbt.type_string()}, + {"name": "version", "datatype": dbt.type_int()}, {"name": "web_view", "datatype": "boolean"}, - {"name": "workspace", "datatype": dbt_utils.type_string()} + {"name": "workspace", "datatype": dbt.type_string()} ] %} {{ return(columns) }} diff --git a/macros/get_lead_columns.sql b/macros/get_lead_columns.sql index 3b37c1c..ebbb9b3 100644 --- a/macros/get_lead_columns.sql +++ b/macros/get_lead_columns.sql @@ -1,353 +1,353 @@ {% macro get_lead_columns() %} {% set columns = [ - {"name": "_fivetran_synced", "datatype": dbt_utils.type_timestamp()}, - {"name": "abm_score_c", "datatype": dbt_utils.type_float()}, - {"name": "account_id_c", "datatype": dbt_utils.type_string()}, - {"name": "account_id_url_c", "datatype": dbt_utils.type_string()}, - {"name": "account_legal_name_c", "datatype": dbt_utils.type_string()}, - {"name": "account_level_c", "datatype": dbt_utils.type_string()}, - {"name": "account_notes_c", "datatype": dbt_utils.type_string()}, - {"name": "account_owner_email_c", "datatype": dbt_utils.type_string()}, - {"name": "account_owner_role_c", "datatype": dbt_utils.type_string()}, - {"name": "account_priority_c", "datatype": dbt_utils.type_string()}, + {"name": "_fivetran_synced", "datatype": dbt.type_timestamp()}, + {"name": "abm_score_c", "datatype": dbt.type_float()}, + {"name": "account_id_c", "datatype": dbt.type_string()}, + {"name": "account_id_url_c", "datatype": dbt.type_string()}, + {"name": "account_legal_name_c", "datatype": dbt.type_string()}, + {"name": "account_level_c", "datatype": dbt.type_string()}, + {"name": "account_notes_c", "datatype": dbt.type_string()}, + {"name": "account_owner_email_c", "datatype": dbt.type_string()}, + {"name": "account_owner_role_c", "datatype": dbt.type_string()}, + {"name": "account_priority_c", "datatype": dbt.type_string()}, {"name": "account_signed_msa_c", "datatype": "boolean"}, - {"name": "account_source", "datatype": dbt_utils.type_string()}, - {"name": "account_status_c", "datatype": dbt_utils.type_string()}, - {"name": "acquisition_program_id", "datatype": dbt_utils.type_int()}, - {"name": "active_ft_accounts_c", "datatype": dbt_utils.type_int()}, + {"name": "account_source", "datatype": dbt.type_string()}, + {"name": "account_status_c", "datatype": dbt.type_string()}, + {"name": "acquisition_program_id", "datatype": dbt.type_int()}, + {"name": "active_ft_accounts_c", "datatype": dbt.type_int()}, {"name": "active_in_sequence_c", "datatype": "boolean"}, {"name": "active_relationship_c", "datatype": "boolean"}, - {"name": "actual_daily_burn_c", "datatype": dbt_utils.type_float()}, - {"name": "ad_words_action_c", "datatype": dbt_utils.type_string()}, - {"name": "address", "datatype": dbt_utils.type_string()}, - {"name": "address_lead", "datatype": dbt_utils.type_string()}, - {"name": "adgroupid_c", "datatype": dbt_utils.type_int()}, - {"name": "ae_paired_csm_c", "datatype": dbt_utils.type_string()}, - {"name": "ae_paired_csm_user_id_c", "datatype": dbt_utils.type_string()}, - {"name": "affectlayer_affect_layer_notes_c", "datatype": dbt_utils.type_string()}, - {"name": "affectlayer_affect_layer_notes_c_account", "datatype": dbt_utils.type_string()}, - {"name": "allbound_id_c", "datatype": dbt_utils.type_int()}, - {"name": "allbound_id_c_contact", "datatype": dbt_utils.type_int()}, - {"name": "allbound_partner_permissions_c", "datatype": dbt_utils.type_string()}, - {"name": "allbound_status_c", "datatype": dbt_utils.type_string()}, - {"name": "analytics_id_c_contact", "datatype": dbt_utils.type_string()}, - {"name": "annual_revenue", "datatype": dbt_utils.type_float()}, - {"name": "anonymous_ip", "datatype": dbt_utils.type_string()}, - {"name": "assigned_ae_c", "datatype": dbt_utils.type_string()}, - {"name": "assigned_ae_id_c", "datatype": dbt_utils.type_string()}, - {"name": "assigned_ae_is_me_c", "datatype": dbt_utils.type_int()}, - {"name": "assigned_am_c", "datatype": dbt_utils.type_string()}, - {"name": "assigned_bdr_c", "datatype": dbt_utils.type_string()}, - {"name": "assigned_bdr_id_c", "datatype": dbt_utils.type_string()}, - {"name": "assigned_se_c", "datatype": dbt_utils.type_string()}, - {"name": "assigned_se_zendesk_c", "datatype": dbt_utils.type_string()}, - {"name": "assigned_tsm_c", "datatype": dbt_utils.type_string()}, - {"name": "associated_account_exec_c", "datatype": dbt_utils.type_string()}, - {"name": "attempting_contact_date_time_c", "datatype": dbt_utils.type_timestamp()}, + {"name": "actual_daily_burn_c", "datatype": dbt.type_float()}, + {"name": "ad_words_action_c", "datatype": dbt.type_string()}, + {"name": "address", "datatype": dbt.type_string()}, + {"name": "address_lead", "datatype": dbt.type_string()}, + {"name": "adgroupid_c", "datatype": dbt.type_int()}, + {"name": "ae_paired_csm_c", "datatype": dbt.type_string()}, + {"name": "ae_paired_csm_user_id_c", "datatype": dbt.type_string()}, + {"name": "affectlayer_affect_layer_notes_c", "datatype": dbt.type_string()}, + {"name": "affectlayer_affect_layer_notes_c_account", "datatype": dbt.type_string()}, + {"name": "allbound_id_c", "datatype": dbt.type_int()}, + {"name": "allbound_id_c_contact", "datatype": dbt.type_int()}, + {"name": "allbound_partner_permissions_c", "datatype": dbt.type_string()}, + {"name": "allbound_status_c", "datatype": dbt.type_string()}, + {"name": "analytics_id_c_contact", "datatype": dbt.type_string()}, + {"name": "annual_revenue", "datatype": dbt.type_float()}, + {"name": "anonymous_ip", "datatype": dbt.type_string()}, + {"name": "assigned_ae_c", "datatype": dbt.type_string()}, + {"name": "assigned_ae_id_c", "datatype": dbt.type_string()}, + {"name": "assigned_ae_is_me_c", "datatype": dbt.type_int()}, + {"name": "assigned_am_c", "datatype": dbt.type_string()}, + {"name": "assigned_bdr_c", "datatype": dbt.type_string()}, + {"name": "assigned_bdr_id_c", "datatype": dbt.type_string()}, + {"name": "assigned_se_c", "datatype": dbt.type_string()}, + {"name": "assigned_se_zendesk_c", "datatype": dbt.type_string()}, + {"name": "assigned_tsm_c", "datatype": dbt.type_string()}, + {"name": "associated_account_exec_c", "datatype": dbt.type_string()}, + {"name": "attempting_contact_date_time_c", "datatype": dbt.type_timestamp()}, {"name": "attended_event_c", "datatype": "boolean"}, {"name": "auto_renewal_c", "datatype": "boolean"}, {"name": "automated_communications_suspended_c", "datatype": "boolean"}, - {"name": "automation_tracking_c", "datatype": dbt_utils.type_string()}, + {"name": "automation_tracking_c", "datatype": dbt.type_string()}, {"name": "ava_blng_is_seller_importer_of_record_c", "datatype": "boolean"}, - {"name": "ava_mapper_exemption_number_c", "datatype": dbt_utils.type_int()}, + {"name": "ava_mapper_exemption_number_c", "datatype": dbt.type_int()}, {"name": "ava_mapper_is_seller_importer_of_record_c", "datatype": "boolean"}, - {"name": "ava_sfcpq_ava_tax_message_c", "datatype": dbt_utils.type_string()}, - {"name": "ava_sfcpq_email_c", "datatype": dbt_utils.type_string()}, + {"name": "ava_sfcpq_ava_tax_message_c", "datatype": dbt.type_string()}, + {"name": "ava_sfcpq_email_c", "datatype": dbt.type_string()}, {"name": "ava_sfcpq_is_seller_importer_of_record_c", "datatype": "boolean"}, - {"name": "bdr_priority_c", "datatype": dbt_utils.type_string()}, - {"name": "behavior_score_marketing", "datatype": dbt_utils.type_int()}, - {"name": "behavioral_score_c", "datatype": dbt_utils.type_int()}, + {"name": "bdr_priority_c", "datatype": dbt.type_string()}, + {"name": "behavior_score_marketing", "datatype": dbt.type_int()}, + {"name": "behavioral_score_c", "datatype": dbt.type_int()}, {"name": "behaviorally_qualified", "datatype": "boolean"}, {"name": "bill_to_contact_hidden_c", "datatype": "boolean"}, - {"name": "billing_city", "datatype": dbt_utils.type_string()}, - {"name": "billing_contact_first_name_c", "datatype": dbt_utils.type_string()}, - {"name": "billing_contact_last_name_c", "datatype": dbt_utils.type_string()}, - {"name": "billing_country", "datatype": dbt_utils.type_string()}, - {"name": "billing_country_code", "datatype": dbt_utils.type_string()}, - {"name": "billing_email_c", "datatype": dbt_utils.type_string()}, - {"name": "billing_frequency_del_c", "datatype": dbt_utils.type_string()}, - {"name": "billing_postal_code", "datatype": dbt_utils.type_string()}, - {"name": "billing_state", "datatype": dbt_utils.type_string()}, - {"name": "billing_state_code", "datatype": dbt_utils.type_string()}, - {"name": "billing_street", "datatype": dbt_utils.type_string()}, + {"name": "billing_city", "datatype": dbt.type_string()}, + {"name": "billing_contact_first_name_c", "datatype": dbt.type_string()}, + {"name": "billing_contact_last_name_c", "datatype": dbt.type_string()}, + {"name": "billing_country", "datatype": dbt.type_string()}, + {"name": "billing_country_code", "datatype": dbt.type_string()}, + {"name": "billing_email_c", "datatype": dbt.type_string()}, + {"name": "billing_frequency_del_c", "datatype": dbt.type_string()}, + {"name": "billing_postal_code", "datatype": dbt.type_string()}, + {"name": "billing_state", "datatype": dbt.type_string()}, + {"name": "billing_state_code", "datatype": dbt.type_string()}, + {"name": "billing_street", "datatype": dbt.type_string()}, {"name": "black_listed", "datatype": "boolean"}, - {"name": "blng_bill_to_contact_c", "datatype": dbt_utils.type_string()}, - {"name": "blng_default_payment_type_c", "datatype": dbt_utils.type_string()}, - {"name": "bounce_date", "datatype": dbt_utils.type_timestamp()}, - {"name": "bread_winner_bw_account_status_c", "datatype": dbt_utils.type_string()}, - {"name": "bread_winner_total_amount_credit_c", "datatype": dbt_utils.type_float()}, - {"name": "bread_winner_total_amount_due_c", "datatype": dbt_utils.type_float()}, - {"name": "bread_winner_total_amount_invoiced_c", "datatype": dbt_utils.type_float()}, - {"name": "bread_winner_total_amount_overdue_c", "datatype": dbt_utils.type_float()}, - {"name": "bread_winner_total_amount_paid_c", "datatype": dbt_utils.type_float()}, - {"name": "bread_winner_total_draft_amount_c", "datatype": dbt_utils.type_float()}, - {"name": "bread_winner_total_unallocated_credit_c", "datatype": dbt_utils.type_float()}, - {"name": "business_intelligence_tool_c", "datatype": dbt_utils.type_string()}, - {"name": "business_score_c", "datatype": dbt_utils.type_int()}, - {"name": "campaignid_c", "datatype": dbt_utils.type_string()}, - {"name": "case_study_c", "datatype": dbt_utils.type_string()}, - {"name": "case_study_marketing_use_c", "datatype": dbt_utils.type_string()}, - {"name": "cb_funding_raised_c", "datatype": dbt_utils.type_int()}, - {"name": "cbit_clearbit_c", "datatype": dbt_utils.type_string()}, - {"name": "cbit_clearbit_c_account", "datatype": dbt_utils.type_string()}, - {"name": "cbit_clearbit_domain_c", "datatype": dbt_utils.type_string()}, + {"name": "blng_bill_to_contact_c", "datatype": dbt.type_string()}, + {"name": "blng_default_payment_type_c", "datatype": dbt.type_string()}, + {"name": "bounce_date", "datatype": dbt.type_timestamp()}, + {"name": "bread_winner_bw_account_status_c", "datatype": dbt.type_string()}, + {"name": "bread_winner_total_amount_credit_c", "datatype": dbt.type_float()}, + {"name": "bread_winner_total_amount_due_c", "datatype": dbt.type_float()}, + {"name": "bread_winner_total_amount_invoiced_c", "datatype": dbt.type_float()}, + {"name": "bread_winner_total_amount_overdue_c", "datatype": dbt.type_float()}, + {"name": "bread_winner_total_amount_paid_c", "datatype": dbt.type_float()}, + {"name": "bread_winner_total_draft_amount_c", "datatype": dbt.type_float()}, + {"name": "bread_winner_total_unallocated_credit_c", "datatype": dbt.type_float()}, + {"name": "business_intelligence_tool_c", "datatype": dbt.type_string()}, + {"name": "business_score_c", "datatype": dbt.type_int()}, + {"name": "campaignid_c", "datatype": dbt.type_string()}, + {"name": "case_study_c", "datatype": dbt.type_string()}, + {"name": "case_study_marketing_use_c", "datatype": dbt.type_string()}, + {"name": "cb_funding_raised_c", "datatype": dbt.type_int()}, + {"name": "cbit_clearbit_c", "datatype": dbt.type_string()}, + {"name": "cbit_clearbit_c_account", "datatype": dbt.type_string()}, + {"name": "cbit_clearbit_domain_c", "datatype": dbt.type_string()}, {"name": "cbit_clearbit_ready_c", "datatype": "boolean"}, {"name": "cbit_clearbit_ready_c_account", "datatype": "boolean"}, {"name": "cbit_clearbit_ready_c_contact", "datatype": "boolean"}, {"name": "cbit_created_by_clearbit_c", "datatype": "boolean"}, {"name": "cbit_created_by_clearbit_c_account", "datatype": "boolean"}, - {"name": "cbit_facebook_c", "datatype": dbt_utils.type_string()}, - {"name": "cbit_linked_in_c", "datatype": dbt_utils.type_string()}, - {"name": "cbit_twitter_c", "datatype": dbt_utils.type_string()}, - {"name": "city", "datatype": dbt_utils.type_string()}, - {"name": "city_c", "datatype": dbt_utils.type_string()}, - {"name": "clarus_date_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "clarus_date_c_contact", "datatype": dbt_utils.type_timestamp()}, - {"name": "clarus_editor_c", "datatype": dbt_utils.type_string()}, - {"name": "clarus_editor_c_contact", "datatype": dbt_utils.type_string()}, - {"name": "clarus_notes_c", "datatype": dbt_utils.type_string()}, - {"name": "clarus_notes_c_contact", "datatype": dbt_utils.type_string()}, - {"name": "clarus_notes_c_lead", "datatype": dbt_utils.type_string()}, - {"name": "clarus_project_c", "datatype": dbt_utils.type_string()}, - {"name": "clarus_project_c_contact", "datatype": dbt_utils.type_string()}, - {"name": "clarus_status_c", "datatype": dbt_utils.type_string()}, - {"name": "clarus_status_c_contact", "datatype": dbt_utils.type_string()}, + {"name": "cbit_facebook_c", "datatype": dbt.type_string()}, + {"name": "cbit_linked_in_c", "datatype": dbt.type_string()}, + {"name": "cbit_twitter_c", "datatype": dbt.type_string()}, + {"name": "city", "datatype": dbt.type_string()}, + {"name": "city_c", "datatype": dbt.type_string()}, + {"name": "clarus_date_c", "datatype": dbt.type_timestamp()}, + {"name": "clarus_date_c_contact", "datatype": dbt.type_timestamp()}, + {"name": "clarus_editor_c", "datatype": dbt.type_string()}, + {"name": "clarus_editor_c_contact", "datatype": dbt.type_string()}, + {"name": "clarus_notes_c", "datatype": dbt.type_string()}, + {"name": "clarus_notes_c_contact", "datatype": dbt.type_string()}, + {"name": "clarus_notes_c_lead", "datatype": dbt.type_string()}, + {"name": "clarus_project_c", "datatype": dbt.type_string()}, + {"name": "clarus_project_c_contact", "datatype": dbt.type_string()}, + {"name": "clarus_status_c", "datatype": dbt.type_string()}, + {"name": "clarus_status_c_contact", "datatype": dbt.type_string()}, {"name": "clawback_trigger_email_alert_c", "datatype": "boolean"}, - {"name": "clearbit_alexa_rank_global_c", "datatype": dbt_utils.type_int()}, - {"name": "clearbit_alexa_rank_us_c", "datatype": dbt_utils.type_int()}, - {"name": "clearbit_billing_city_c", "datatype": dbt_utils.type_string()}, - {"name": "clearbit_billing_country_c", "datatype": dbt_utils.type_string()}, - {"name": "clearbit_billing_state_province_c", "datatype": dbt_utils.type_string()}, - {"name": "clearbit_billing_street_c", "datatype": dbt_utils.type_string()}, - {"name": "clearbit_billing_zip_postal_code_c", "datatype": dbt_utils.type_string()}, - {"name": "clearbit_company_type_c", "datatype": dbt_utils.type_string()}, - {"name": "clearbit_country_code_c", "datatype": dbt_utils.type_string()}, - {"name": "clearbit_enriched_at", "datatype": dbt_utils.type_timestamp()}, - {"name": "clearbit_form_status", "datatype": dbt_utils.type_string()}, - {"name": "clearbit_founded_year_c", "datatype": dbt_utils.type_float()}, - {"name": "clearbit_industry_c", "datatype": dbt_utils.type_string()}, - {"name": "clearbit_industry_group_c", "datatype": dbt_utils.type_string()}, - {"name": "clearbit_province_c", "datatype": dbt_utils.type_string()}, - {"name": "clearbit_raised_c", "datatype": dbt_utils.type_float()}, + {"name": "clearbit_alexa_rank_global_c", "datatype": dbt.type_int()}, + {"name": "clearbit_alexa_rank_us_c", "datatype": dbt.type_int()}, + {"name": "clearbit_billing_city_c", "datatype": dbt.type_string()}, + {"name": "clearbit_billing_country_c", "datatype": dbt.type_string()}, + {"name": "clearbit_billing_state_province_c", "datatype": dbt.type_string()}, + {"name": "clearbit_billing_street_c", "datatype": dbt.type_string()}, + {"name": "clearbit_billing_zip_postal_code_c", "datatype": dbt.type_string()}, + {"name": "clearbit_company_type_c", "datatype": dbt.type_string()}, + {"name": "clearbit_country_code_c", "datatype": dbt.type_string()}, + {"name": "clearbit_enriched_at", "datatype": dbt.type_timestamp()}, + {"name": "clearbit_form_status", "datatype": dbt.type_string()}, + {"name": "clearbit_founded_year_c", "datatype": dbt.type_float()}, + {"name": "clearbit_industry_c", "datatype": dbt.type_string()}, + {"name": "clearbit_industry_group_c", "datatype": dbt.type_string()}, + {"name": "clearbit_province_c", "datatype": dbt.type_string()}, + {"name": "clearbit_raised_c", "datatype": dbt.type_float()}, {"name": "clearbit_risk_email_valid", "datatype": "boolean"}, - {"name": "clearbit_risk_risk_level", "datatype": dbt_utils.type_string()}, - {"name": "clearbit_risk_risk_score", "datatype": dbt_utils.type_int()}, - {"name": "clearbit_role_c", "datatype": dbt_utils.type_string()}, - {"name": "clearbit_sector_c", "datatype": dbt_utils.type_string()}, - {"name": "clearbit_seniority_c", "datatype": dbt_utils.type_string()}, - {"name": "clearbit_status", "datatype": dbt_utils.type_int()}, - {"name": "clearbit_sub_industry_c", "datatype": dbt_utils.type_string()}, - {"name": "clearbit_tags_c", "datatype": dbt_utils.type_string()}, - {"name": "clearbit_tech_category_c", "datatype": dbt_utils.type_string()}, - {"name": "clearbit_technologies_c", "datatype": dbt_utils.type_string()}, - {"name": "clearbit_zip_c", "datatype": dbt_utils.type_string()}, - {"name": "cloudingo_agent_sas_c", "datatype": dbt_utils.type_int()}, - {"name": "company", "datatype": dbt_utils.type_string()}, - {"name": "company_country_c", "datatype": dbt_utils.type_string()}, - {"name": "company_postal_code_c", "datatype": dbt_utils.type_string()}, - {"name": "company_province_c", "datatype": dbt_utils.type_string()}, - {"name": "company_type_c", "datatype": dbt_utils.type_string()}, - {"name": "company_type_c_account", "datatype": dbt_utils.type_string()}, + {"name": "clearbit_risk_risk_level", "datatype": dbt.type_string()}, + {"name": "clearbit_risk_risk_score", "datatype": dbt.type_int()}, + {"name": "clearbit_role_c", "datatype": dbt.type_string()}, + {"name": "clearbit_sector_c", "datatype": dbt.type_string()}, + {"name": "clearbit_seniority_c", "datatype": dbt.type_string()}, + {"name": "clearbit_status", "datatype": dbt.type_int()}, + {"name": "clearbit_sub_industry_c", "datatype": dbt.type_string()}, + {"name": "clearbit_tags_c", "datatype": dbt.type_string()}, + {"name": "clearbit_tech_category_c", "datatype": dbt.type_string()}, + {"name": "clearbit_technologies_c", "datatype": dbt.type_string()}, + {"name": "clearbit_zip_c", "datatype": dbt.type_string()}, + {"name": "cloudingo_agent_sas_c", "datatype": dbt.type_int()}, + {"name": "company", "datatype": dbt.type_string()}, + {"name": "company_country_c", "datatype": dbt.type_string()}, + {"name": "company_postal_code_c", "datatype": dbt.type_string()}, + {"name": "company_province_c", "datatype": dbt.type_string()}, + {"name": "company_type_c", "datatype": dbt.type_string()}, + {"name": "company_type_c_account", "datatype": dbt.type_string()}, {"name": "competitor_c", "datatype": "boolean"}, {"name": "competitor_c_account", "datatype": "boolean"}, - {"name": "consumption_rate_c", "datatype": dbt_utils.type_float()}, - {"name": "contact_company", "datatype": dbt_utils.type_int()}, - {"name": "contact_stage_c", "datatype": dbt_utils.type_string()}, - {"name": "contact_status_c", "datatype": dbt_utils.type_string()}, - {"name": "contact_type_c", "datatype": dbt_utils.type_string()}, - {"name": "contract_renewal_45_date", "datatype": dbt_utils.type_timestamp()}, - {"name": "contract_renewal_date_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "converted_date_time_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "cookies", "datatype": dbt_utils.type_string()}, - {"name": "count_of_accounts_c", "datatype": dbt_utils.type_int()}, - {"name": "countdown_to_end_of_contract_c", "datatype": dbt_utils.type_float()}, - {"name": "country", "datatype": dbt_utils.type_string()}, - {"name": "country_c", "datatype": dbt_utils.type_string()}, - {"name": "country_cc_c", "datatype": dbt_utils.type_string()}, - {"name": "country_code", "datatype": dbt_utils.type_string()}, - {"name": "country_code_c", "datatype": dbt_utils.type_string()}, - {"name": "created_at", "datatype": dbt_utils.type_timestamp()}, - {"name": "creative_c", "datatype": dbt_utils.type_string()}, - {"name": "credits_remaining_c", "datatype": dbt_utils.type_float()}, - {"name": "csi_code_c", "datatype": dbt_utils.type_int()}, - {"name": "csi_code_c_account", "datatype": dbt_utils.type_int()}, - {"name": "csi_description_c", "datatype": dbt_utils.type_string()}, - {"name": "csi_description_c_account", "datatype": dbt_utils.type_string()}, - {"name": "csi_description_del_c", "datatype": dbt_utils.type_string()}, - {"name": "current_fortune_rank_c", "datatype": dbt_utils.type_int()}, - {"name": "current_monthly_subscription_end_date_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "current_term_customer_value_c", "datatype": dbt_utils.type_float()}, - {"name": "customer_advocate_c", "datatype": dbt_utils.type_string()}, - {"name": "customer_advocate_notes_c", "datatype": dbt_utils.type_string()}, - {"name": "customer_health_engagement_score_c", "datatype": dbt_utils.type_int()}, - {"name": "customer_lifetime_value_c", "datatype": dbt_utils.type_float()}, - {"name": "customer_type_c", "datatype": dbt_utils.type_string()}, - {"name": "daily_credit_projected_burn_c", "datatype": dbt_utils.type_float()}, - {"name": "datawarehouse_used_c", "datatype": dbt_utils.type_string()}, - {"name": "datawarehouse_used_c_lead", "datatype": dbt_utils.type_string()}, - {"name": "date_time_formula_fields_changed_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "days_of_credits_remaining_c", "datatype": dbt_utils.type_float()}, - {"name": "days_since_created_c", "datatype": dbt_utils.type_float()}, - {"name": "days_since_last_manual_ae_activity_date_c", "datatype": dbt_utils.type_float()}, - {"name": "days_since_last_manual_bdr_activity_date_c", "datatype": dbt_utils.type_float()}, - {"name": "days_since_last_sales_activity_date_c", "datatype": dbt_utils.type_int()}, - {"name": "days_without_activity", "datatype": dbt_utils.type_int()}, - {"name": "db_created_date_without_time_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "db_lead_age_c", "datatype": dbt_utils.type_int()}, - {"name": "dbt_package_run_c", "datatype": dbt_utils.type_string()}, - {"name": "delete_text_area", "datatype": dbt_utils.type_string()}, - {"name": "deliveries_after_bounces", "datatype": dbt_utils.type_int()}, - {"name": "demandbase_city_c", "datatype": dbt_utils.type_string()}, - {"name": "demandbase_country_c", "datatype": dbt_utils.type_string()}, - {"name": "demandbase_general_fit_score_c", "datatype": dbt_utils.type_float()}, - {"name": "demandbase_number_of_employees_c", "datatype": dbt_utils.type_int()}, - {"name": "demandbase_overall_score_c", "datatype": dbt_utils.type_float()}, - {"name": "demandbase_sid_c", "datatype": dbt_utils.type_int()}, - {"name": "demandbase_state_c", "datatype": dbt_utils.type_string()}, - {"name": "demandbase_zip_c", "datatype": dbt_utils.type_int()}, - {"name": "demo_interest", "datatype": dbt_utils.type_string()}, + {"name": "consumption_rate_c", "datatype": dbt.type_float()}, + {"name": "contact_company", "datatype": dbt.type_int()}, + {"name": "contact_stage_c", "datatype": dbt.type_string()}, + {"name": "contact_status_c", "datatype": dbt.type_string()}, + {"name": "contact_type_c", "datatype": dbt.type_string()}, + {"name": "contract_renewal_45_date", "datatype": dbt.type_timestamp()}, + {"name": "contract_renewal_date_c", "datatype": dbt.type_timestamp()}, + {"name": "converted_date_time_c", "datatype": dbt.type_timestamp()}, + {"name": "cookies", "datatype": dbt.type_string()}, + {"name": "count_of_accounts_c", "datatype": dbt.type_int()}, + {"name": "countdown_to_end_of_contract_c", "datatype": dbt.type_float()}, + {"name": "country", "datatype": dbt.type_string()}, + {"name": "country_c", "datatype": dbt.type_string()}, + {"name": "country_cc_c", "datatype": dbt.type_string()}, + {"name": "country_code", "datatype": dbt.type_string()}, + {"name": "country_code_c", "datatype": dbt.type_string()}, + {"name": "created_at", "datatype": dbt.type_timestamp()}, + {"name": "creative_c", "datatype": dbt.type_string()}, + {"name": "credits_remaining_c", "datatype": dbt.type_float()}, + {"name": "csi_code_c", "datatype": dbt.type_int()}, + {"name": "csi_code_c_account", "datatype": dbt.type_int()}, + {"name": "csi_description_c", "datatype": dbt.type_string()}, + {"name": "csi_description_c_account", "datatype": dbt.type_string()}, + {"name": "csi_description_del_c", "datatype": dbt.type_string()}, + {"name": "current_fortune_rank_c", "datatype": dbt.type_int()}, + {"name": "current_monthly_subscription_end_date_c", "datatype": dbt.type_timestamp()}, + {"name": "current_term_customer_value_c", "datatype": dbt.type_float()}, + {"name": "customer_advocate_c", "datatype": dbt.type_string()}, + {"name": "customer_advocate_notes_c", "datatype": dbt.type_string()}, + {"name": "customer_health_engagement_score_c", "datatype": dbt.type_int()}, + {"name": "customer_lifetime_value_c", "datatype": dbt.type_float()}, + {"name": "customer_type_c", "datatype": dbt.type_string()}, + {"name": "daily_credit_projected_burn_c", "datatype": dbt.type_float()}, + {"name": "datawarehouse_used_c", "datatype": dbt.type_string()}, + {"name": "datawarehouse_used_c_lead", "datatype": dbt.type_string()}, + {"name": "date_time_formula_fields_changed_c", "datatype": dbt.type_timestamp()}, + {"name": "days_of_credits_remaining_c", "datatype": dbt.type_float()}, + {"name": "days_since_created_c", "datatype": dbt.type_float()}, + {"name": "days_since_last_manual_ae_activity_date_c", "datatype": dbt.type_float()}, + {"name": "days_since_last_manual_bdr_activity_date_c", "datatype": dbt.type_float()}, + {"name": "days_since_last_sales_activity_date_c", "datatype": dbt.type_int()}, + {"name": "days_without_activity", "datatype": dbt.type_int()}, + {"name": "db_created_date_without_time_c", "datatype": dbt.type_timestamp()}, + {"name": "db_lead_age_c", "datatype": dbt.type_int()}, + {"name": "dbt_package_run_c", "datatype": dbt.type_string()}, + {"name": "delete_text_area", "datatype": dbt.type_string()}, + {"name": "deliveries_after_bounces", "datatype": dbt.type_int()}, + {"name": "demandbase_city_c", "datatype": dbt.type_string()}, + {"name": "demandbase_country_c", "datatype": dbt.type_string()}, + {"name": "demandbase_general_fit_score_c", "datatype": dbt.type_float()}, + {"name": "demandbase_number_of_employees_c", "datatype": dbt.type_int()}, + {"name": "demandbase_overall_score_c", "datatype": dbt.type_float()}, + {"name": "demandbase_sid_c", "datatype": dbt.type_int()}, + {"name": "demandbase_state_c", "datatype": dbt.type_string()}, + {"name": "demandbase_zip_c", "datatype": dbt.type_int()}, + {"name": "demo_interest", "datatype": dbt.type_string()}, {"name": "demo_scheduled_by_calenderly_c", "datatype": "boolean"}, - {"name": "demographic_score_marketing", "datatype": dbt_utils.type_int()}, + {"name": "demographic_score_marketing", "datatype": dbt.type_int()}, {"name": "demographically_qualified", "datatype": "boolean"}, - {"name": "department", "datatype": dbt_utils.type_string()}, - {"name": "device_c", "datatype": dbt_utils.type_string()}, - {"name": "direct_office_c", "datatype": dbt_utils.type_string()}, - {"name": "district_c", "datatype": dbt_utils.type_string()}, + {"name": "department", "datatype": dbt.type_string()}, + {"name": "device_c", "datatype": dbt.type_string()}, + {"name": "direct_office_c", "datatype": dbt.type_string()}, + {"name": "district_c", "datatype": dbt.type_string()}, {"name": "do_not_call", "datatype": "boolean"}, - {"name": "do_not_call_reason", "datatype": dbt_utils.type_string()}, + {"name": "do_not_call_reason", "datatype": dbt.type_string()}, {"name": "do_not_route_lead_c", "datatype": "boolean"}, {"name": "do_not_sync_marketo_c", "datatype": "boolean"}, {"name": "do_not_sync_marketo_c_account", "datatype": "boolean"}, - {"name": "domain_c", "datatype": dbt_utils.type_string()}, - {"name": "dozisf_zoom_info_id_c", "datatype": dbt_utils.type_int()}, - {"name": "drift_content_fulfillment", "datatype": dbt_utils.type_string()}, - {"name": "drift_cql_c", "datatype": dbt_utils.type_int()}, - {"name": "drift_cqlscore", "datatype": dbt_utils.type_float()}, - {"name": "drift_email_reply_text", "datatype": dbt_utils.type_string()}, - {"name": "drift_email_subject_line", "datatype": dbt_utils.type_string()}, - {"name": "drift_email_url", "datatype": dbt_utils.type_string()}, - {"name": "duns_number_c", "datatype": dbt_utils.type_int()}, - {"name": "email", "datatype": dbt_utils.type_string()}, - {"name": "email_bounce_category", "datatype": dbt_utils.type_int()}, - {"name": "email_bounce_details", "datatype": dbt_utils.type_string()}, + {"name": "domain_c", "datatype": dbt.type_string()}, + {"name": "dozisf_zoom_info_id_c", "datatype": dbt.type_int()}, + {"name": "drift_content_fulfillment", "datatype": dbt.type_string()}, + {"name": "drift_cql_c", "datatype": dbt.type_int()}, + {"name": "drift_cqlscore", "datatype": dbt.type_float()}, + {"name": "drift_email_reply_text", "datatype": dbt.type_string()}, + {"name": "drift_email_subject_line", "datatype": dbt.type_string()}, + {"name": "drift_email_url", "datatype": dbt.type_string()}, + {"name": "duns_number_c", "datatype": dbt.type_int()}, + {"name": "email", "datatype": dbt.type_string()}, + {"name": "email_bounce_category", "datatype": dbt.type_int()}, + {"name": "email_bounce_details", "datatype": dbt.type_string()}, {"name": "email_bounced_c", "datatype": "boolean"}, - {"name": "email_bounced_date", "datatype": dbt_utils.type_timestamp()}, - {"name": "email_bounced_reason", "datatype": dbt_utils.type_string()}, - {"name": "email_bounces", "datatype": dbt_utils.type_int()}, - {"name": "email_delivered_after_bounce", "datatype": dbt_utils.type_timestamp()}, - {"name": "email_domain_c", "datatype": dbt_utils.type_string()}, + {"name": "email_bounced_date", "datatype": dbt.type_timestamp()}, + {"name": "email_bounced_reason", "datatype": dbt.type_string()}, + {"name": "email_bounces", "datatype": dbt.type_int()}, + {"name": "email_delivered_after_bounce", "datatype": dbt.type_timestamp()}, + {"name": "email_domain_c", "datatype": dbt.type_string()}, {"name": "email_invalid", "datatype": "boolean"}, - {"name": "email_invalid_cause", "datatype": dbt_utils.type_string()}, + {"name": "email_invalid_cause", "datatype": dbt.type_string()}, {"name": "email_opt_in", "datatype": "boolean"}, - {"name": "email_opt_in_date", "datatype": dbt_utils.type_timestamp()}, + {"name": "email_opt_in_date", "datatype": dbt.type_timestamp()}, {"name": "email_opt_in_explicit_c", "datatype": "boolean"}, {"name": "email_opt_in_implicit_c", "datatype": "boolean"}, {"name": "email_quality_c", "datatype": "boolean"}, {"name": "email_suspended", "datatype": "boolean"}, - {"name": "email_suspended_at", "datatype": dbt_utils.type_timestamp()}, - {"name": "email_suspended_cause", "datatype": dbt_utils.type_string()}, + {"name": "email_suspended_at", "datatype": dbt.type_timestamp()}, + {"name": "email_suspended_cause", "datatype": dbt.type_string()}, {"name": "email_validation_c", "datatype": "boolean"}, - {"name": "employee_range_c", "datatype": dbt_utils.type_string()}, - {"name": "employee_range_c_lead", "datatype": dbt_utils.type_string()}, - {"name": "end_date_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "engagement_score_c", "datatype": dbt_utils.type_int()}, + {"name": "employee_range_c", "datatype": dbt.type_string()}, + {"name": "employee_range_c_lead", "datatype": dbt.type_string()}, + {"name": "end_date_c", "datatype": dbt.type_timestamp()}, + {"name": "engagement_score_c", "datatype": dbt.type_int()}, {"name": "enrichment_request_c", "datatype": "boolean"}, {"name": "enterprise_target_account_c", "datatype": "boolean"}, - {"name": "es_app_esalexa_rank_c", "datatype": dbt_utils.type_int()}, - {"name": "es_app_esaudience_names_c", "datatype": dbt_utils.type_string()}, - {"name": "es_app_escity_c", "datatype": dbt_utils.type_string()}, - {"name": "es_app_escompany_phone_c", "datatype": dbt_utils.type_string()}, - {"name": "es_app_escountry_c", "datatype": dbt_utils.type_string()}, - {"name": "es_app_escountry_c_account", "datatype": dbt_utils.type_string()}, - {"name": "es_app_escreated_timestamp_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "es_app_esemployees_c", "datatype": dbt_utils.type_string()}, - {"name": "es_app_esemployees_c_account", "datatype": dbt_utils.type_string()}, + {"name": "es_app_esalexa_rank_c", "datatype": dbt.type_int()}, + {"name": "es_app_esaudience_names_c", "datatype": dbt.type_string()}, + {"name": "es_app_escity_c", "datatype": dbt.type_string()}, + {"name": "es_app_escompany_phone_c", "datatype": dbt.type_string()}, + {"name": "es_app_escountry_c", "datatype": dbt.type_string()}, + {"name": "es_app_escountry_c_account", "datatype": dbt.type_string()}, + {"name": "es_app_escreated_timestamp_c", "datatype": dbt.type_timestamp()}, + {"name": "es_app_esemployees_c", "datatype": dbt.type_string()}, + {"name": "es_app_esemployees_c_account", "datatype": dbt.type_string()}, {"name": "es_app_esenriched_c", "datatype": "boolean"}, {"name": "es_app_esenriched_c_contact", "datatype": "boolean"}, - {"name": "es_app_esenriched_timestamp_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "es_app_esenriched_timestamp_c_contact", "datatype": dbt_utils.type_timestamp()}, - {"name": "es_app_esfacebook_c", "datatype": dbt_utils.type_string()}, - {"name": "es_app_esindustry_c", "datatype": dbt_utils.type_string()}, - {"name": "es_app_esintent_aggregate_score_c", "datatype": dbt_utils.type_int()}, - {"name": "es_app_esintent_timestamp_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "es_app_esintent_topics_c", "datatype": dbt_utils.type_string()}, - {"name": "es_app_eskeywords_c", "datatype": dbt_utils.type_string()}, - {"name": "es_app_eslinked_in_c", "datatype": dbt_utils.type_string()}, - {"name": "es_app_esrevenue_c", "datatype": dbt_utils.type_string()}, - {"name": "es_app_esrevenue_c_account", "datatype": dbt_utils.type_string()}, + {"name": "es_app_esenriched_timestamp_c", "datatype": dbt.type_timestamp()}, + {"name": "es_app_esenriched_timestamp_c_contact", "datatype": dbt.type_timestamp()}, + {"name": "es_app_esfacebook_c", "datatype": dbt.type_string()}, + {"name": "es_app_esindustry_c", "datatype": dbt.type_string()}, + {"name": "es_app_esintent_aggregate_score_c", "datatype": dbt.type_int()}, + {"name": "es_app_esintent_timestamp_c", "datatype": dbt.type_timestamp()}, + {"name": "es_app_esintent_topics_c", "datatype": dbt.type_string()}, + {"name": "es_app_eskeywords_c", "datatype": dbt.type_string()}, + {"name": "es_app_eslinked_in_c", "datatype": dbt.type_string()}, + {"name": "es_app_esrevenue_c", "datatype": dbt.type_string()}, + {"name": "es_app_esrevenue_c_account", "datatype": dbt.type_string()}, {"name": "es_app_essource_c", "datatype": "boolean"}, {"name": "es_app_essource_c_contact", "datatype": "boolean"}, - {"name": "es_app_esstate_c", "datatype": dbt_utils.type_string()}, - {"name": "es_app_esstreet_c", "datatype": dbt_utils.type_string()}, - {"name": "es_app_estwitter_c", "datatype": dbt_utils.type_string()}, - {"name": "es_app_eszipcode_c", "datatype": dbt_utils.type_string()}, - {"name": "es_general_fit_c", "datatype": dbt_utils.type_int()}, - {"name": "es_seniority_c", "datatype": dbt_utils.type_string()}, - {"name": "esraw_2_c", "datatype": dbt_utils.type_float()}, - {"name": "esraw_employee_size_c", "datatype": dbt_utils.type_int()}, - {"name": "estimated_annual_revenue_c", "datatype": dbt_utils.type_string()}, - {"name": "event_date_code", "datatype": dbt_utils.type_string()}, - {"name": "event_date_display", "datatype": dbt_utils.type_string()}, - {"name": "event_speaker_c", "datatype": dbt_utils.type_string()}, + {"name": "es_app_esstate_c", "datatype": dbt.type_string()}, + {"name": "es_app_esstreet_c", "datatype": dbt.type_string()}, + {"name": "es_app_estwitter_c", "datatype": dbt.type_string()}, + {"name": "es_app_eszipcode_c", "datatype": dbt.type_string()}, + {"name": "es_general_fit_c", "datatype": dbt.type_int()}, + {"name": "es_seniority_c", "datatype": dbt.type_string()}, + {"name": "esraw_2_c", "datatype": dbt.type_float()}, + {"name": "esraw_employee_size_c", "datatype": dbt.type_int()}, + {"name": "estimated_annual_revenue_c", "datatype": dbt.type_string()}, + {"name": "event_date_code", "datatype": dbt.type_string()}, + {"name": "event_date_display", "datatype": dbt.type_string()}, + {"name": "event_speaker_c", "datatype": dbt.type_string()}, {"name": "exclusive_ownership_c", "datatype": "boolean"}, {"name": "exclusive_ownership_c_contact", "datatype": "boolean"}, - {"name": "expansion_score_c", "datatype": dbt_utils.type_int()}, - {"name": "external_id_c", "datatype": dbt_utils.type_string()}, - {"name": "fax", "datatype": dbt_utils.type_string()}, - {"name": "first_mql_date_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "first_name", "datatype": dbt_utils.type_string()}, - {"name": "first_won_date_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "fivetran_account_association_date_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "fivetran_account_id_c", "datatype": dbt_utils.type_string()}, - {"name": "fivetran_account_id_c_account", "datatype": dbt_utils.type_string()}, - {"name": "fivetran_account_name_c", "datatype": dbt_utils.type_string()}, - {"name": "fivetran_account_stage_c_account", "datatype": dbt_utils.type_string()}, - {"name": "fivetran_account_status_c", "datatype": dbt_utils.type_string()}, - {"name": "fivetran_account_user_role_s_c", "datatype": dbt_utils.type_string()}, - {"name": "fivetran_connectors_used_c", "datatype": dbt_utils.type_string()}, - {"name": "fivetran_data_warehouses_c", "datatype": dbt_utils.type_string()}, - {"name": "fivetran_first_sync_date_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "fivetran_fit_score_c", "datatype": dbt_utils.type_int()}, - {"name": "fivetran_industry_category_c", "datatype": dbt_utils.type_string()}, - {"name": "fivetran_industry_category_c_contact", "datatype": dbt_utils.type_string()}, - {"name": "fivetran_last_sync_date_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "fivetran_referral_id_c", "datatype": dbt_utils.type_string()}, - {"name": "fivetran_sync_status_c", "datatype": dbt_utils.type_string()}, - {"name": "fivetran_trial_begin_date_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "fivetran_trial_end_date_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "fivetran_trial_start_date_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "fivetran_user_id_c", "datatype": dbt_utils.type_string()}, + {"name": "expansion_score_c", "datatype": dbt.type_int()}, + {"name": "external_id_c", "datatype": dbt.type_string()}, + {"name": "fax", "datatype": dbt.type_string()}, + {"name": "first_mql_date_c", "datatype": dbt.type_timestamp()}, + {"name": "first_name", "datatype": dbt.type_string()}, + {"name": "first_won_date_c", "datatype": dbt.type_timestamp()}, + {"name": "fivetran_account_association_date_c", "datatype": dbt.type_timestamp()}, + {"name": "fivetran_account_id_c", "datatype": dbt.type_string()}, + {"name": "fivetran_account_id_c_account", "datatype": dbt.type_string()}, + {"name": "fivetran_account_name_c", "datatype": dbt.type_string()}, + {"name": "fivetran_account_stage_c_account", "datatype": dbt.type_string()}, + {"name": "fivetran_account_status_c", "datatype": dbt.type_string()}, + {"name": "fivetran_account_user_role_s_c", "datatype": dbt.type_string()}, + {"name": "fivetran_connectors_used_c", "datatype": dbt.type_string()}, + {"name": "fivetran_data_warehouses_c", "datatype": dbt.type_string()}, + {"name": "fivetran_first_sync_date_c", "datatype": dbt.type_timestamp()}, + {"name": "fivetran_fit_score_c", "datatype": dbt.type_int()}, + {"name": "fivetran_industry_category_c", "datatype": dbt.type_string()}, + {"name": "fivetran_industry_category_c_contact", "datatype": dbt.type_string()}, + {"name": "fivetran_last_sync_date_c", "datatype": dbt.type_timestamp()}, + {"name": "fivetran_referral_id_c", "datatype": dbt.type_string()}, + {"name": "fivetran_sync_status_c", "datatype": dbt.type_string()}, + {"name": "fivetran_trial_begin_date_c", "datatype": dbt.type_timestamp()}, + {"name": "fivetran_trial_end_date_c", "datatype": dbt.type_timestamp()}, + {"name": "fivetran_trial_start_date_c", "datatype": dbt.type_timestamp()}, + {"name": "fivetran_user_id_c", "datatype": dbt.type_string()}, {"name": "formula_fields_updated_c", "datatype": "boolean"}, - {"name": "free_trial_email_confirmed_date", "datatype": dbt_utils.type_timestamp()}, - {"name": "friction_score_c", "datatype": dbt_utils.type_int()}, + {"name": "free_trial_email_confirmed_date", "datatype": dbt.type_timestamp()}, + {"name": "friction_score_c", "datatype": dbt.type_int()}, {"name": "ft_account_id_s_verified_c", "datatype": "boolean"}, {"name": "ft_account_verification_needed_c", "datatype": "boolean"}, - {"name": "funnel_priority_c", "datatype": dbt_utils.type_float()}, - {"name": "funnel_stage_c", "datatype": dbt_utils.type_string()}, - {"name": "funnel_type_c", "datatype": dbt_utils.type_string()}, - {"name": "gclid_c", "datatype": dbt_utils.type_string()}, + {"name": "funnel_priority_c", "datatype": dbt.type_float()}, + {"name": "funnel_stage_c", "datatype": dbt.type_string()}, + {"name": "funnel_type_c", "datatype": dbt.type_string()}, + {"name": "gclid_c", "datatype": dbt.type_string()}, {"name": "gdpr_opt_in_explicit_c", "datatype": "boolean"}, - {"name": "gender", "datatype": dbt_utils.type_string()}, - {"name": "geo_city_c", "datatype": dbt_utils.type_string()}, - {"name": "geo_country_c", "datatype": dbt_utils.type_string()}, - {"name": "geo_country_code_c", "datatype": dbt_utils.type_string()}, - {"name": "geo_state_c", "datatype": dbt_utils.type_string()}, + {"name": "gender", "datatype": dbt.type_string()}, + {"name": "geo_city_c", "datatype": dbt.type_string()}, + {"name": "geo_country_c", "datatype": dbt.type_string()}, + {"name": "geo_country_code_c", "datatype": dbt.type_string()}, + {"name": "geo_state_c", "datatype": dbt.type_string()}, {"name": "has_fivetran_connector_c", "datatype": "boolean"}, {"name": "has_opted_out_of_fax", "datatype": "boolean"}, - {"name": "health_score_c", "datatype": dbt_utils.type_int()}, - {"name": "hidden_company_name", "datatype": dbt_utils.type_string()}, - {"name": "historical_contact_status_c", "datatype": dbt_utils.type_string()}, + {"name": "health_score_c", "datatype": dbt.type_int()}, + {"name": "hidden_company_name", "datatype": dbt.type_string()}, + {"name": "historical_contact_status_c", "datatype": dbt.type_string()}, {"name": "hot_contact_c", "datatype": "boolean"}, - {"name": "id", "datatype": dbt_utils.type_int()}, - {"name": "industry", "datatype": dbt_utils.type_string()}, - {"name": "inferred_city", "datatype": dbt_utils.type_string()}, - {"name": "inferred_company", "datatype": dbt_utils.type_string()}, - {"name": "inferred_country", "datatype": dbt_utils.type_string()}, - {"name": "inferred_metropolitan_area", "datatype": dbt_utils.type_string()}, - {"name": "inferred_phone_area_code", "datatype": dbt_utils.type_string()}, - {"name": "inferred_postal_code", "datatype": dbt_utils.type_string()}, - {"name": "inferred_state_region", "datatype": dbt_utils.type_string()}, + {"name": "id", "datatype": dbt.type_int()}, + {"name": "industry", "datatype": dbt.type_string()}, + {"name": "inferred_city", "datatype": dbt.type_string()}, + {"name": "inferred_company", "datatype": dbt.type_string()}, + {"name": "inferred_country", "datatype": dbt.type_string()}, + {"name": "inferred_metropolitan_area", "datatype": dbt.type_string()}, + {"name": "inferred_phone_area_code", "datatype": dbt.type_string()}, + {"name": "inferred_postal_code", "datatype": dbt.type_string()}, + {"name": "inferred_state_region", "datatype": dbt.type_string()}, {"name": "is_anonymous", "datatype": "boolean"}, {"name": "is_email_bounced", "datatype": "boolean"}, {"name": "is_emea_event_routing_c", "datatype": "boolean"}, @@ -356,357 +356,357 @@ {"name": "is_excluded_from_realign", "datatype": "boolean"}, {"name": "is_lead", "datatype": "boolean"}, {"name": "is_updated_superset_c", "datatype": "boolean"}, - {"name": "job_function_c", "datatype": dbt_utils.type_string()}, - {"name": "job_level_c", "datatype": dbt_utils.type_string()}, - {"name": "keyword_c", "datatype": dbt_utils.type_string()}, - {"name": "land_arr_c", "datatype": dbt_utils.type_float()}, - {"name": "land_region_2020_h_2_c", "datatype": dbt_utils.type_string()}, - {"name": "last_activity_logged_by_c", "datatype": dbt_utils.type_string()}, - {"name": "last_ae_activity_owner_c", "datatype": dbt_utils.type_string()}, - {"name": "last_bdr_activity_owner_c", "datatype": dbt_utils.type_string()}, - {"name": "last_manual_ae_activity_date_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "last_manual_bdr_activity_date_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "last_name", "datatype": dbt_utils.type_string()}, + {"name": "job_function_c", "datatype": dbt.type_string()}, + {"name": "job_level_c", "datatype": dbt.type_string()}, + {"name": "keyword_c", "datatype": dbt.type_string()}, + {"name": "land_arr_c", "datatype": dbt.type_float()}, + {"name": "land_region_2020_h_2_c", "datatype": dbt.type_string()}, + {"name": "last_activity_logged_by_c", "datatype": dbt.type_string()}, + {"name": "last_ae_activity_owner_c", "datatype": dbt.type_string()}, + {"name": "last_bdr_activity_owner_c", "datatype": dbt.type_string()}, + {"name": "last_manual_ae_activity_date_c", "datatype": dbt.type_timestamp()}, + {"name": "last_manual_bdr_activity_date_c", "datatype": dbt.type_timestamp()}, + {"name": "last_name", "datatype": dbt.type_string()}, {"name": "last_re_captchaserver_status", "datatype": "boolean"}, - {"name": "last_referenced_date", "datatype": dbt_utils.type_timestamp()}, - {"name": "last_referenced_date_account", "datatype": dbt_utils.type_timestamp()}, - {"name": "last_rep_activity_date_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "last_sales_activity_date_time_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "last_viewed_date", "datatype": dbt_utils.type_timestamp()}, - {"name": "last_viewed_date_account", "datatype": dbt_utils.type_timestamp()}, - {"name": "lastre_captchaerror_codes", "datatype": dbt_utils.type_string()}, - {"name": "lead_created_date_time_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "lead_created_date_time_reporting_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "lead_iq_country_c", "datatype": dbt_utils.type_string()}, - {"name": "lead_iq_employee_count_c", "datatype": dbt_utils.type_int()}, - {"name": "lead_iq_employee_range_c", "datatype": dbt_utils.type_string()}, - {"name": "lead_iq_state_c", "datatype": dbt_utils.type_string()}, - {"name": "lead_iq_zip_code_c", "datatype": dbt_utils.type_string()}, - {"name": "lead_number_c", "datatype": dbt_utils.type_int()}, - {"name": "lead_partition_id", "datatype": dbt_utils.type_int()}, - {"name": "lead_person", "datatype": dbt_utils.type_int()}, - {"name": "lead_source", "datatype": dbt_utils.type_string()}, - {"name": "lead_source_c", "datatype": dbt_utils.type_string()}, - {"name": "lead_status", "datatype": dbt_utils.type_string()}, - {"name": "lead_type_c", "datatype": dbt_utils.type_string()}, - {"name": "lean_data_ld_email_domains_c", "datatype": dbt_utils.type_string()}, + {"name": "last_referenced_date", "datatype": dbt.type_timestamp()}, + {"name": "last_referenced_date_account", "datatype": dbt.type_timestamp()}, + {"name": "last_rep_activity_date_c", "datatype": dbt.type_timestamp()}, + {"name": "last_sales_activity_date_time_c", "datatype": dbt.type_timestamp()}, + {"name": "last_viewed_date", "datatype": dbt.type_timestamp()}, + {"name": "last_viewed_date_account", "datatype": dbt.type_timestamp()}, + {"name": "lastre_captchaerror_codes", "datatype": dbt.type_string()}, + {"name": "lead_created_date_time_c", "datatype": dbt.type_timestamp()}, + {"name": "lead_created_date_time_reporting_c", "datatype": dbt.type_timestamp()}, + {"name": "lead_iq_country_c", "datatype": dbt.type_string()}, + {"name": "lead_iq_employee_count_c", "datatype": dbt.type_int()}, + {"name": "lead_iq_employee_range_c", "datatype": dbt.type_string()}, + {"name": "lead_iq_state_c", "datatype": dbt.type_string()}, + {"name": "lead_iq_zip_code_c", "datatype": dbt.type_string()}, + {"name": "lead_number_c", "datatype": dbt.type_int()}, + {"name": "lead_partition_id", "datatype": dbt.type_int()}, + {"name": "lead_person", "datatype": dbt.type_int()}, + {"name": "lead_source", "datatype": dbt.type_string()}, + {"name": "lead_source_c", "datatype": dbt.type_string()}, + {"name": "lead_status", "datatype": dbt.type_string()}, + {"name": "lead_type_c", "datatype": dbt.type_string()}, + {"name": "lean_data_ld_email_domains_c", "datatype": dbt.type_string()}, {"name": "lean_data_manual_route_trigger_c", "datatype": "boolean"}, - {"name": "lean_data_re_route_c", "datatype": dbt_utils.type_int()}, + {"name": "lean_data_re_route_c", "datatype": dbt.type_int()}, {"name": "lean_data_reporting_customer_c", "datatype": "boolean"}, {"name": "lean_data_reporting_has_opportunity_c", "datatype": "boolean"}, - {"name": "lean_data_reporting_matched_account_c", "datatype": dbt_utils.type_string()}, + {"name": "lean_data_reporting_matched_account_c", "datatype": dbt.type_string()}, {"name": "lean_data_reporting_target_account_c", "datatype": "boolean"}, - {"name": "lean_data_reporting_timestamp_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "lean_data_routing_action_c", "datatype": dbt_utils.type_string()}, - {"name": "lean_data_routing_action_c_contact", "datatype": dbt_utils.type_string()}, - {"name": "lean_data_routing_status_c", "datatype": dbt_utils.type_string()}, - {"name": "lean_data_search_c", "datatype": dbt_utils.type_string()}, - {"name": "lean_data_search_index_c", "datatype": dbt_utils.type_string()}, - {"name": "leandata_contact_owner_override_c", "datatype": dbt_utils.type_string()}, - {"name": "lid_linked_in_member_token_c", "datatype": dbt_utils.type_string()}, - {"name": "linked_in_profile_url", "datatype": dbt_utils.type_string()}, - {"name": "linked_in_url_c", "datatype": dbt_utils.type_string()}, - {"name": "list_import_status", "datatype": dbt_utils.type_string()}, - {"name": "mailing_address", "datatype": dbt_utils.type_string()}, - {"name": "mailing_country_code", "datatype": dbt_utils.type_string()}, - {"name": "mailing_state_code", "datatype": dbt_utils.type_string()}, - {"name": "main_phone", "datatype": dbt_utils.type_string()}, - {"name": "manual_override_country_code_c", "datatype": dbt_utils.type_string()}, - {"name": "manual_override_employee_count_c", "datatype": dbt_utils.type_int()}, - {"name": "manual_override_state_c", "datatype": dbt_utils.type_string()}, - {"name": "manual_override_zip_c", "datatype": dbt_utils.type_string()}, - {"name": "marketing_approval_c", "datatype": dbt_utils.type_string()}, - {"name": "marketing_behavior_score_c", "datatype": dbt_utils.type_int()}, - {"name": "marketing_connector_interest_c", "datatype": dbt_utils.type_string()}, + {"name": "lean_data_reporting_timestamp_c", "datatype": dbt.type_timestamp()}, + {"name": "lean_data_routing_action_c", "datatype": dbt.type_string()}, + {"name": "lean_data_routing_action_c_contact", "datatype": dbt.type_string()}, + {"name": "lean_data_routing_status_c", "datatype": dbt.type_string()}, + {"name": "lean_data_search_c", "datatype": dbt.type_string()}, + {"name": "lean_data_search_index_c", "datatype": dbt.type_string()}, + {"name": "leandata_contact_owner_override_c", "datatype": dbt.type_string()}, + {"name": "lid_linked_in_member_token_c", "datatype": dbt.type_string()}, + {"name": "linked_in_profile_url", "datatype": dbt.type_string()}, + {"name": "linked_in_url_c", "datatype": dbt.type_string()}, + {"name": "list_import_status", "datatype": dbt.type_string()}, + {"name": "mailing_address", "datatype": dbt.type_string()}, + {"name": "mailing_country_code", "datatype": dbt.type_string()}, + {"name": "mailing_state_code", "datatype": dbt.type_string()}, + {"name": "main_phone", "datatype": dbt.type_string()}, + {"name": "manual_override_country_code_c", "datatype": dbt.type_string()}, + {"name": "manual_override_employee_count_c", "datatype": dbt.type_int()}, + {"name": "manual_override_state_c", "datatype": dbt.type_string()}, + {"name": "manual_override_zip_c", "datatype": dbt.type_string()}, + {"name": "marketing_approval_c", "datatype": dbt.type_string()}, + {"name": "marketing_behavior_score_c", "datatype": dbt.type_int()}, + {"name": "marketing_connector_interest_c", "datatype": dbt.type_string()}, {"name": "marketing_prospect_routing_rules_c", "datatype": "boolean"}, {"name": "marketing_suspended", "datatype": "boolean"}, - {"name": "marketing_suspended_reason", "datatype": dbt_utils.type_string()}, + {"name": "marketing_suspended_reason", "datatype": dbt.type_string()}, {"name": "marketing_target_account_c", "datatype": "boolean"}, - {"name": "matchtype_c", "datatype": dbt_utils.type_string()}, - {"name": "mc_4_sf_mc_subscriber_c", "datatype": dbt_utils.type_string()}, - {"name": "meta_data_create_date_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "middle_name", "datatype": dbt_utils.type_string()}, - {"name": "mkto_acquisition_date", "datatype": dbt_utils.type_timestamp()}, - {"name": "mkto_company_notes", "datatype": dbt_utils.type_string()}, + {"name": "matchtype_c", "datatype": dbt.type_string()}, + {"name": "mc_4_sf_mc_subscriber_c", "datatype": dbt.type_string()}, + {"name": "meta_data_create_date_c", "datatype": dbt.type_timestamp()}, + {"name": "middle_name", "datatype": dbt.type_string()}, + {"name": "mkto_acquisition_date", "datatype": dbt.type_timestamp()}, + {"name": "mkto_company_notes", "datatype": dbt.type_string()}, {"name": "mkto_is_customer", "datatype": "boolean"}, {"name": "mkto_is_partner", "datatype": "boolean"}, - {"name": "mkto_name", "datatype": dbt_utils.type_string()}, - {"name": "mkto_person_notes", "datatype": dbt_utils.type_string()}, - {"name": "mkto_si_add_to_marketo_campaign_c", "datatype": dbt_utils.type_string()}, - {"name": "mkto_si_sales_insight_c", "datatype": dbt_utils.type_string()}, - {"name": "mobile_phone", "datatype": dbt_utils.type_string()}, - {"name": "mobile_phone_c", "datatype": dbt_utils.type_string()}, + {"name": "mkto_name", "datatype": dbt.type_string()}, + {"name": "mkto_person_notes", "datatype": dbt.type_string()}, + {"name": "mkto_si_add_to_marketo_campaign_c", "datatype": dbt.type_string()}, + {"name": "mkto_si_sales_insight_c", "datatype": dbt.type_string()}, + {"name": "mobile_phone", "datatype": dbt.type_string()}, + {"name": "mobile_phone_c", "datatype": dbt.type_string()}, {"name": "monthly_customer_no_contract_c", "datatype": "boolean"}, - {"name": "mql_date_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "mql_reason_c", "datatype": dbt_utils.type_string()}, - {"name": "msa_effective_date_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "nda_c", "datatype": dbt_utils.type_string()}, - {"name": "netsuite_conn_account_balance_c", "datatype": dbt_utils.type_float()}, - {"name": "netsuite_conn_account_overdue_balance_c", "datatype": dbt_utils.type_float()}, + {"name": "mql_date_c", "datatype": dbt.type_timestamp()}, + {"name": "mql_reason_c", "datatype": dbt.type_string()}, + {"name": "msa_effective_date_c", "datatype": dbt.type_timestamp()}, + {"name": "nda_c", "datatype": dbt.type_string()}, + {"name": "netsuite_conn_account_balance_c", "datatype": dbt.type_float()}, + {"name": "netsuite_conn_account_overdue_balance_c", "datatype": dbt.type_float()}, {"name": "netsuite_conn_celigo_update_c", "datatype": "boolean"}, {"name": "netsuite_conn_celigo_update_c_account", "datatype": "boolean"}, - {"name": "netsuite_conn_credit_hold_c", "datatype": dbt_utils.type_string()}, - {"name": "netsuite_conn_days_overdue_c", "datatype": dbt_utils.type_int()}, - {"name": "netsuite_conn_net_suite_customer_id_c", "datatype": dbt_utils.type_int()}, - {"name": "netsuite_conn_net_suite_id_c", "datatype": dbt_utils.type_int()}, - {"name": "netsuite_conn_net_suite_id_c_account", "datatype": dbt_utils.type_int()}, - {"name": "netsuite_conn_net_suite_sync_err_c", "datatype": dbt_utils.type_string()}, - {"name": "netsuite_conn_net_suite_sync_err_c_account", "datatype": dbt_utils.type_string()}, + {"name": "netsuite_conn_credit_hold_c", "datatype": dbt.type_string()}, + {"name": "netsuite_conn_days_overdue_c", "datatype": dbt.type_int()}, + {"name": "netsuite_conn_net_suite_customer_id_c", "datatype": dbt.type_int()}, + {"name": "netsuite_conn_net_suite_id_c", "datatype": dbt.type_int()}, + {"name": "netsuite_conn_net_suite_id_c_account", "datatype": dbt.type_int()}, + {"name": "netsuite_conn_net_suite_sync_err_c", "datatype": dbt.type_string()}, + {"name": "netsuite_conn_net_suite_sync_err_c_account", "datatype": dbt.type_string()}, {"name": "netsuite_conn_push_to_net_suite_c", "datatype": "boolean"}, {"name": "netsuite_conn_push_to_net_suite_c_account", "datatype": "boolean"}, {"name": "netsuite_conn_pushed_from_opportunity_c", "datatype": "boolean"}, {"name": "netsuite_conn_pushed_from_opportunity_c_account", "datatype": "boolean"}, {"name": "netsuite_conn_sync_in_progress_c", "datatype": "boolean"}, {"name": "netsuite_conn_sync_in_progress_c_contact", "datatype": "boolean"}, - {"name": "netsuite_conn_unbilled_orders_c", "datatype": dbt_utils.type_float()}, - {"name": "network_c", "datatype": dbt_utils.type_string()}, - {"name": "neverbounce_email_status", "datatype": dbt_utils.type_string()}, + {"name": "netsuite_conn_unbilled_orders_c", "datatype": dbt.type_float()}, + {"name": "network_c", "datatype": dbt.type_string()}, + {"name": "neverbounce_email_status", "datatype": dbt.type_string()}, {"name": "no_longer_at_company_c", "datatype": "boolean"}, - {"name": "notes_c", "datatype": dbt_utils.type_string()}, - {"name": "notes_cs_c", "datatype": dbt_utils.type_string()}, - {"name": "nps_score_c", "datatype": dbt_utils.type_string()}, - {"name": "number_of_credits_remaining_c", "datatype": dbt_utils.type_float()}, - {"name": "number_of_employees", "datatype": dbt_utils.type_int()}, - {"name": "old_lead_source_c", "datatype": dbt_utils.type_string()}, - {"name": "old_lead_source_detail_c_contact", "datatype": dbt_utils.type_string()}, - {"name": "opp_handoff_ae_c", "datatype": dbt_utils.type_string()}, - {"name": "opportunity_c", "datatype": dbt_utils.type_string()}, - {"name": "original_referrer", "datatype": dbt_utils.type_string()}, - {"name": "original_search_engine", "datatype": dbt_utils.type_string()}, - {"name": "original_search_phrase", "datatype": dbt_utils.type_string()}, - {"name": "original_source_info", "datatype": dbt_utils.type_string()}, - {"name": "original_source_type", "datatype": dbt_utils.type_string()}, - {"name": "original_utm_campaign_c", "datatype": dbt_utils.type_string()}, - {"name": "original_utm_content_c", "datatype": dbt_utils.type_string()}, - {"name": "original_utm_medium_c", "datatype": dbt_utils.type_string()}, - {"name": "original_utm_source_c", "datatype": dbt_utils.type_string()}, - {"name": "original_utm_term_c", "datatype": dbt_utils.type_string()}, - {"name": "other_country_code", "datatype": dbt_utils.type_string()}, - {"name": "owner_id_c", "datatype": dbt_utils.type_string()}, - {"name": "partner_company_c", "datatype": dbt_utils.type_string()}, + {"name": "notes_c", "datatype": dbt.type_string()}, + {"name": "notes_cs_c", "datatype": dbt.type_string()}, + {"name": "nps_score_c", "datatype": dbt.type_string()}, + {"name": "number_of_credits_remaining_c", "datatype": dbt.type_float()}, + {"name": "number_of_employees", "datatype": dbt.type_int()}, + {"name": "old_lead_source_c", "datatype": dbt.type_string()}, + {"name": "old_lead_source_detail_c_contact", "datatype": dbt.type_string()}, + {"name": "opp_handoff_ae_c", "datatype": dbt.type_string()}, + {"name": "opportunity_c", "datatype": dbt.type_string()}, + {"name": "original_referrer", "datatype": dbt.type_string()}, + {"name": "original_search_engine", "datatype": dbt.type_string()}, + {"name": "original_search_phrase", "datatype": dbt.type_string()}, + {"name": "original_source_info", "datatype": dbt.type_string()}, + {"name": "original_source_type", "datatype": dbt.type_string()}, + {"name": "original_utm_campaign_c", "datatype": dbt.type_string()}, + {"name": "original_utm_content_c", "datatype": dbt.type_string()}, + {"name": "original_utm_medium_c", "datatype": dbt.type_string()}, + {"name": "original_utm_source_c", "datatype": dbt.type_string()}, + {"name": "original_utm_term_c", "datatype": dbt.type_string()}, + {"name": "other_country_code", "datatype": dbt.type_string()}, + {"name": "owner_id_c", "datatype": dbt.type_string()}, + {"name": "partner_company_c", "datatype": dbt.type_string()}, {"name": "partner_contact_c", "datatype": "boolean"}, - {"name": "partner_owner_c", "datatype": dbt_utils.type_string()}, - {"name": "partner_rep_email_c", "datatype": dbt_utils.type_string()}, - {"name": "partner_rep_name_c", "datatype": dbt_utils.type_string()}, - {"name": "partner_territory_c", "datatype": dbt_utils.type_string()}, - {"name": "partner_tier_c", "datatype": dbt_utils.type_string()}, - {"name": "partner_type_c", "datatype": dbt_utils.type_string()}, - {"name": "partner_type_c_account", "datatype": dbt_utils.type_string()}, - {"name": "payment_terms_c", "datatype": dbt_utils.type_string()}, + {"name": "partner_owner_c", "datatype": dbt.type_string()}, + {"name": "partner_rep_email_c", "datatype": dbt.type_string()}, + {"name": "partner_rep_name_c", "datatype": dbt.type_string()}, + {"name": "partner_territory_c", "datatype": dbt.type_string()}, + {"name": "partner_tier_c", "datatype": dbt.type_string()}, + {"name": "partner_type_c", "datatype": dbt.type_string()}, + {"name": "partner_type_c_account", "datatype": dbt.type_string()}, + {"name": "payment_terms_c", "datatype": dbt.type_string()}, {"name": "pbf_account_c", "datatype": "boolean"}, - {"name": "person_primary_lead_interest", "datatype": dbt_utils.type_int()}, - {"name": "person_time_zone", "datatype": dbt_utils.type_string()}, - {"name": "person_type", "datatype": dbt_utils.type_string()}, - {"name": "phone", "datatype": dbt_utils.type_string()}, - {"name": "phone_extension_c", "datatype": dbt_utils.type_string()}, - {"name": "photo_url", "datatype": dbt_utils.type_string()}, - {"name": "photo_url_account", "datatype": dbt_utils.type_string()}, - {"name": "pi_campaign_c", "datatype": dbt_utils.type_string()}, - {"name": "pi_comments_c", "datatype": dbt_utils.type_string()}, - {"name": "pi_conversion_date_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "pi_conversion_object_name_c", "datatype": dbt_utils.type_string()}, - {"name": "pi_conversion_object_type_c", "datatype": dbt_utils.type_string()}, - {"name": "pi_created_date_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "pi_first_activity_c", "datatype": dbt_utils.type_timestamp()}, + {"name": "person_primary_lead_interest", "datatype": dbt.type_int()}, + {"name": "person_time_zone", "datatype": dbt.type_string()}, + {"name": "person_type", "datatype": dbt.type_string()}, + {"name": "phone", "datatype": dbt.type_string()}, + {"name": "phone_extension_c", "datatype": dbt.type_string()}, + {"name": "photo_url", "datatype": dbt.type_string()}, + {"name": "photo_url_account", "datatype": dbt.type_string()}, + {"name": "pi_campaign_c", "datatype": dbt.type_string()}, + {"name": "pi_comments_c", "datatype": dbt.type_string()}, + {"name": "pi_conversion_date_c", "datatype": dbt.type_timestamp()}, + {"name": "pi_conversion_object_name_c", "datatype": dbt.type_string()}, + {"name": "pi_conversion_object_type_c", "datatype": dbt.type_string()}, + {"name": "pi_created_date_c", "datatype": dbt.type_timestamp()}, + {"name": "pi_first_activity_c", "datatype": dbt.type_timestamp()}, {"name": "pi_needs_score_synced_c", "datatype": "boolean"}, - {"name": "pi_utm_campaign_c", "datatype": dbt_utils.type_string()}, - {"name": "pi_utm_content_c", "datatype": dbt_utils.type_string()}, - {"name": "pi_utm_medium_c", "datatype": dbt_utils.type_string()}, - {"name": "pi_utm_source_c", "datatype": dbt_utils.type_string()}, - {"name": "pi_utm_term_c", "datatype": dbt_utils.type_string()}, - {"name": "platform_level_c", "datatype": dbt_utils.type_string()}, - {"name": "podcast_c", "datatype": dbt_utils.type_string()}, - {"name": "postal_code", "datatype": dbt_utils.type_string()}, - {"name": "potential_fivetran_use_case_c", "datatype": dbt_utils.type_string()}, - {"name": "pr_opportunity_c", "datatype": dbt_utils.type_string()}, - {"name": "previouse_fortune_rank_c", "datatype": dbt_utils.type_int()}, - {"name": "primary_contact_c", "datatype": dbt_utils.type_string()}, - {"name": "priority", "datatype": dbt_utils.type_int()}, - {"name": "product_feedback_c", "datatype": dbt_utils.type_string()}, + {"name": "pi_utm_campaign_c", "datatype": dbt.type_string()}, + {"name": "pi_utm_content_c", "datatype": dbt.type_string()}, + {"name": "pi_utm_medium_c", "datatype": dbt.type_string()}, + {"name": "pi_utm_source_c", "datatype": dbt.type_string()}, + {"name": "pi_utm_term_c", "datatype": dbt.type_string()}, + {"name": "platform_level_c", "datatype": dbt.type_string()}, + {"name": "podcast_c", "datatype": dbt.type_string()}, + {"name": "postal_code", "datatype": dbt.type_string()}, + {"name": "potential_fivetran_use_case_c", "datatype": dbt.type_string()}, + {"name": "pr_opportunity_c", "datatype": dbt.type_string()}, + {"name": "previouse_fortune_rank_c", "datatype": dbt.type_int()}, + {"name": "primary_contact_c", "datatype": dbt.type_string()}, + {"name": "priority", "datatype": dbt.type_int()}, + {"name": "product_feedback_c", "datatype": dbt.type_string()}, {"name": "project_based_routing_c", "datatype": "boolean"}, - {"name": "promoter_score_c", "datatype": dbt_utils.type_int()}, - {"name": "promotion_id_c", "datatype": dbt_utils.type_string()}, + {"name": "promoter_score_c", "datatype": dbt.type_int()}, + {"name": "promotion_id_c", "datatype": dbt.type_string()}, {"name": "quick_email_verification_accept_all", "datatype": "boolean"}, {"name": "quick_email_verification_disposable", "datatype": "boolean"}, {"name": "quick_email_verification_free", "datatype": "boolean"}, - {"name": "quick_email_verification_reason", "datatype": dbt_utils.type_string()}, - {"name": "quick_email_verification_result", "datatype": dbt_utils.type_string()}, + {"name": "quick_email_verification_reason", "datatype": dbt.type_string()}, + {"name": "quick_email_verification_result", "datatype": dbt.type_string()}, {"name": "quick_email_verification_role", "datatype": "boolean"}, {"name": "quick_email_verification_safe_to_send", "datatype": "boolean"}, - {"name": "re_target_date_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "recent_marketing_campaign_status_c", "datatype": dbt_utils.type_string()}, - {"name": "recommended_connector_c", "datatype": dbt_utils.type_string()}, - {"name": "record_type_id", "datatype": dbt_utils.type_string()}, - {"name": "reference_call_c", "datatype": dbt_utils.type_string()}, - {"name": "referral_account_c", "datatype": dbt_utils.type_string()}, - {"name": "referral_account_c_account", "datatype": dbt_utils.type_string()}, - {"name": "referral_c", "datatype": dbt_utils.type_string()}, - {"name": "referral_contact_c", "datatype": dbt_utils.type_string()}, - {"name": "referral_contact_c_account", "datatype": dbt_utils.type_string()}, - {"name": "referral_contact_email_c", "datatype": dbt_utils.type_string()}, + {"name": "re_target_date_c", "datatype": dbt.type_timestamp()}, + {"name": "recent_marketing_campaign_status_c", "datatype": dbt.type_string()}, + {"name": "recommended_connector_c", "datatype": dbt.type_string()}, + {"name": "record_type_id", "datatype": dbt.type_string()}, + {"name": "reference_call_c", "datatype": dbt.type_string()}, + {"name": "referral_account_c", "datatype": dbt.type_string()}, + {"name": "referral_account_c_account", "datatype": dbt.type_string()}, + {"name": "referral_c", "datatype": dbt.type_string()}, + {"name": "referral_contact_c", "datatype": dbt.type_string()}, + {"name": "referral_contact_c_account", "datatype": dbt.type_string()}, + {"name": "referral_contact_email_c", "datatype": dbt.type_string()}, {"name": "referral_exists_c", "datatype": "boolean"}, - {"name": "referral_firstname_c", "datatype": dbt_utils.type_string()}, - {"name": "referral_last_name_c", "datatype": dbt_utils.type_string()}, - {"name": "region_c", "datatype": dbt_utils.type_string()}, - {"name": "region_c_account", "datatype": dbt_utils.type_string()}, - {"name": "region_c_c", "datatype": dbt_utils.type_string()}, - {"name": "region_deprecate_c", "datatype": dbt_utils.type_string()}, - {"name": "region_terr_c", "datatype": dbt_utils.type_string()}, - {"name": "registration_source_info", "datatype": dbt_utils.type_string()}, - {"name": "registration_source_type", "datatype": dbt_utils.type_string()}, - {"name": "relative_score", "datatype": dbt_utils.type_int()}, - {"name": "relative_urgency", "datatype": dbt_utils.type_int()}, - {"name": "rh_2_formula_test_c", "datatype": dbt_utils.type_float()}, - {"name": "roll_out_group_c", "datatype": dbt_utils.type_string()}, - {"name": "rollout_group_override_c", "datatype": dbt_utils.type_string()}, - {"name": "round_robin_id_c", "datatype": dbt_utils.type_int()}, - {"name": "rybbon_campaign_key", "datatype": dbt_utils.type_string()}, - {"name": "sales_engineer_c", "datatype": dbt_utils.type_string()}, - {"name": "sales_loft_1_active_account_c", "datatype": dbt_utils.type_int()}, - {"name": "sales_loft_1_active_contact_c", "datatype": dbt_utils.type_int()}, - {"name": "sales_loft_1_active_lead_c", "datatype": dbt_utils.type_int()}, - {"name": "sales_loft_1_most_recent_cadence_name_c", "datatype": dbt_utils.type_string()}, - {"name": "sales_loft_1_most_recent_cadence_next_step_due_date_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "sales_loft_1_most_recent_last_completed_step_c", "datatype": dbt_utils.type_int()}, - {"name": "sales_region_c", "datatype": dbt_utils.type_string()}, - {"name": "sales_segment_c", "datatype": dbt_utils.type_string()}, + {"name": "referral_firstname_c", "datatype": dbt.type_string()}, + {"name": "referral_last_name_c", "datatype": dbt.type_string()}, + {"name": "region_c", "datatype": dbt.type_string()}, + {"name": "region_c_account", "datatype": dbt.type_string()}, + {"name": "region_c_c", "datatype": dbt.type_string()}, + {"name": "region_deprecate_c", "datatype": dbt.type_string()}, + {"name": "region_terr_c", "datatype": dbt.type_string()}, + {"name": "registration_source_info", "datatype": dbt.type_string()}, + {"name": "registration_source_type", "datatype": dbt.type_string()}, + {"name": "relative_score", "datatype": dbt.type_int()}, + {"name": "relative_urgency", "datatype": dbt.type_int()}, + {"name": "rh_2_formula_test_c", "datatype": dbt.type_float()}, + {"name": "roll_out_group_c", "datatype": dbt.type_string()}, + {"name": "rollout_group_override_c", "datatype": dbt.type_string()}, + {"name": "round_robin_id_c", "datatype": dbt.type_int()}, + {"name": "rybbon_campaign_key", "datatype": dbt.type_string()}, + {"name": "sales_engineer_c", "datatype": dbt.type_string()}, + {"name": "sales_loft_1_active_account_c", "datatype": dbt.type_int()}, + {"name": "sales_loft_1_active_contact_c", "datatype": dbt.type_int()}, + {"name": "sales_loft_1_active_lead_c", "datatype": dbt.type_int()}, + {"name": "sales_loft_1_most_recent_cadence_name_c", "datatype": dbt.type_string()}, + {"name": "sales_loft_1_most_recent_cadence_next_step_due_date_c", "datatype": dbt.type_timestamp()}, + {"name": "sales_loft_1_most_recent_last_completed_step_c", "datatype": dbt.type_int()}, + {"name": "sales_region_c", "datatype": dbt.type_string()}, + {"name": "sales_segment_c", "datatype": dbt.type_string()}, {"name": "sales_target_account_c", "datatype": "boolean"}, - {"name": "salesloft_account_name_c", "datatype": dbt_utils.type_string()}, - {"name": "salesloft_cadence_trigger_c", "datatype": dbt_utils.type_string()}, - {"name": "salutation", "datatype": dbt_utils.type_string()}, - {"name": "secondary_email_c", "datatype": dbt_utils.type_string()}, - {"name": "segment_c", "datatype": dbt_utils.type_string()}, + {"name": "salesloft_account_name_c", "datatype": dbt.type_string()}, + {"name": "salesloft_cadence_trigger_c", "datatype": dbt.type_string()}, + {"name": "salutation", "datatype": dbt.type_string()}, + {"name": "secondary_email_c", "datatype": dbt.type_string()}, + {"name": "segment_c", "datatype": dbt.type_string()}, {"name": "self_service_to_annual_c", "datatype": "boolean"}, - {"name": "sfbd_collections_agent_c", "datatype": dbt_utils.type_string()}, - {"name": "sfbd_collections_plan_date_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "sfbd_collections_status_c", "datatype": dbt_utils.type_string()}, - {"name": "sfbd_dunning_method_c", "datatype": dbt_utils.type_string()}, - {"name": "sfdc_account_id", "datatype": dbt_utils.type_string()}, - {"name": "sfdc_contact_id", "datatype": dbt_utils.type_string()}, - {"name": "sfdc_lead_id", "datatype": dbt_utils.type_string()}, - {"name": "sfdc_lead_owner_id", "datatype": dbt_utils.type_string()}, - {"name": "sfdc_type", "datatype": dbt_utils.type_string()}, - {"name": "shipping_country_code", "datatype": dbt_utils.type_string()}, - {"name": "shipping_state_code", "datatype": dbt_utils.type_string()}, - {"name": "sic_code", "datatype": dbt_utils.type_string()}, + {"name": "sfbd_collections_agent_c", "datatype": dbt.type_string()}, + {"name": "sfbd_collections_plan_date_c", "datatype": dbt.type_timestamp()}, + {"name": "sfbd_collections_status_c", "datatype": dbt.type_string()}, + {"name": "sfbd_dunning_method_c", "datatype": dbt.type_string()}, + {"name": "sfdc_account_id", "datatype": dbt.type_string()}, + {"name": "sfdc_contact_id", "datatype": dbt.type_string()}, + {"name": "sfdc_lead_id", "datatype": dbt.type_string()}, + {"name": "sfdc_lead_owner_id", "datatype": dbt.type_string()}, + {"name": "sfdc_type", "datatype": dbt.type_string()}, + {"name": "shipping_country_code", "datatype": dbt.type_string()}, + {"name": "shipping_state_code", "datatype": dbt.type_string()}, + {"name": "sic_code", "datatype": dbt.type_string()}, {"name": "siftrock_positive_email_reply", "datatype": "boolean"}, {"name": "sla_c", "datatype": "boolean"}, - {"name": "source_detail_c", "datatype": dbt_utils.type_string()}, - {"name": "source_detail_c_account", "datatype": dbt_utils.type_string()}, - {"name": "source_every_lead_source_c", "datatype": dbt_utils.type_string()}, - {"name": "source_every_lead_source_category_c", "datatype": dbt_utils.type_string()}, - {"name": "source_every_lead_source_detail_c", "datatype": dbt_utils.type_string()}, - {"name": "source_every_utm_campaign_c", "datatype": dbt_utils.type_string()}, - {"name": "source_every_utm_content_c", "datatype": dbt_utils.type_string()}, - {"name": "source_every_utm_medium_c", "datatype": dbt_utils.type_string()}, - {"name": "source_every_utm_source_c", "datatype": dbt_utils.type_string()}, - {"name": "source_every_utm_term_c", "datatype": dbt_utils.type_string()}, - {"name": "source_first_lead_source_c", "datatype": dbt_utils.type_string()}, - {"name": "source_first_lead_source_category_c", "datatype": dbt_utils.type_string()}, - {"name": "source_first_lead_source_detail_c", "datatype": dbt_utils.type_string()}, - {"name": "source_first_utm_campaign_c", "datatype": dbt_utils.type_string()}, - {"name": "source_first_utm_content_c", "datatype": dbt_utils.type_string()}, - {"name": "source_first_utm_medium_c", "datatype": dbt_utils.type_string()}, - {"name": "source_first_utm_source_c", "datatype": dbt_utils.type_string()}, - {"name": "source_first_utm_term_c", "datatype": dbt_utils.type_string()}, - {"name": "source_last_lead_source_c", "datatype": dbt_utils.type_string()}, - {"name": "source_last_lead_source_c_contact", "datatype": dbt_utils.type_string()}, - {"name": "source_last_lead_source_category_c", "datatype": dbt_utils.type_string()}, - {"name": "source_last_lead_source_category_c_contact", "datatype": dbt_utils.type_string()}, - {"name": "source_last_lead_source_detail_c", "datatype": dbt_utils.type_string()}, - {"name": "source_last_lead_source_detail_c_contact", "datatype": dbt_utils.type_string()}, - {"name": "source_last_utm_campaign_c", "datatype": dbt_utils.type_string()}, - {"name": "source_last_utm_content_c", "datatype": dbt_utils.type_string()}, - {"name": "source_last_utm_medium_c", "datatype": dbt_utils.type_string()}, - {"name": "source_last_utm_source_c", "datatype": dbt_utils.type_string()}, - {"name": "source_last_utm_term_c", "datatype": dbt_utils.type_string()}, - {"name": "source_most_recent", "datatype": dbt_utils.type_string()}, - {"name": "start_date_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "state", "datatype": dbt_utils.type_string()}, - {"name": "state_c", "datatype": dbt_utils.type_string()}, - {"name": "state_code", "datatype": dbt_utils.type_string()}, - {"name": "stripe_customer_id_c", "datatype": dbt_utils.type_string()}, - {"name": "subscription_length_c", "datatype": dbt_utils.type_float()}, - {"name": "sum_of_future_opportunities_c", "datatype": dbt_utils.type_float()}, - {"name": "sum_of_lost_renewal_opps_c", "datatype": dbt_utils.type_int()}, - {"name": "superset_country_c", "datatype": dbt_utils.type_string()}, - {"name": "superset_country_c_account", "datatype": dbt_utils.type_string()}, - {"name": "superset_employee_count_c", "datatype": dbt_utils.type_int()}, - {"name": "superset_employee_count_c_contact", "datatype": dbt_utils.type_int()}, - {"name": "superset_state_c", "datatype": dbt_utils.type_string()}, - {"name": "superset_state_c_contact", "datatype": dbt_utils.type_string()}, - {"name": "superset_zip_c", "datatype": dbt_utils.type_string()}, - {"name": "superset_zip_c_contact", "datatype": dbt_utils.type_string()}, + {"name": "source_detail_c", "datatype": dbt.type_string()}, + {"name": "source_detail_c_account", "datatype": dbt.type_string()}, + {"name": "source_every_lead_source_c", "datatype": dbt.type_string()}, + {"name": "source_every_lead_source_category_c", "datatype": dbt.type_string()}, + {"name": "source_every_lead_source_detail_c", "datatype": dbt.type_string()}, + {"name": "source_every_utm_campaign_c", "datatype": dbt.type_string()}, + {"name": "source_every_utm_content_c", "datatype": dbt.type_string()}, + {"name": "source_every_utm_medium_c", "datatype": dbt.type_string()}, + {"name": "source_every_utm_source_c", "datatype": dbt.type_string()}, + {"name": "source_every_utm_term_c", "datatype": dbt.type_string()}, + {"name": "source_first_lead_source_c", "datatype": dbt.type_string()}, + {"name": "source_first_lead_source_category_c", "datatype": dbt.type_string()}, + {"name": "source_first_lead_source_detail_c", "datatype": dbt.type_string()}, + {"name": "source_first_utm_campaign_c", "datatype": dbt.type_string()}, + {"name": "source_first_utm_content_c", "datatype": dbt.type_string()}, + {"name": "source_first_utm_medium_c", "datatype": dbt.type_string()}, + {"name": "source_first_utm_source_c", "datatype": dbt.type_string()}, + {"name": "source_first_utm_term_c", "datatype": dbt.type_string()}, + {"name": "source_last_lead_source_c", "datatype": dbt.type_string()}, + {"name": "source_last_lead_source_c_contact", "datatype": dbt.type_string()}, + {"name": "source_last_lead_source_category_c", "datatype": dbt.type_string()}, + {"name": "source_last_lead_source_category_c_contact", "datatype": dbt.type_string()}, + {"name": "source_last_lead_source_detail_c", "datatype": dbt.type_string()}, + {"name": "source_last_lead_source_detail_c_contact", "datatype": dbt.type_string()}, + {"name": "source_last_utm_campaign_c", "datatype": dbt.type_string()}, + {"name": "source_last_utm_content_c", "datatype": dbt.type_string()}, + {"name": "source_last_utm_medium_c", "datatype": dbt.type_string()}, + {"name": "source_last_utm_source_c", "datatype": dbt.type_string()}, + {"name": "source_last_utm_term_c", "datatype": dbt.type_string()}, + {"name": "source_most_recent", "datatype": dbt.type_string()}, + {"name": "start_date_c", "datatype": dbt.type_timestamp()}, + {"name": "state", "datatype": dbt.type_string()}, + {"name": "state_c", "datatype": dbt.type_string()}, + {"name": "state_code", "datatype": dbt.type_string()}, + {"name": "stripe_customer_id_c", "datatype": dbt.type_string()}, + {"name": "subscription_length_c", "datatype": dbt.type_float()}, + {"name": "sum_of_future_opportunities_c", "datatype": dbt.type_float()}, + {"name": "sum_of_lost_renewal_opps_c", "datatype": dbt.type_int()}, + {"name": "superset_country_c", "datatype": dbt.type_string()}, + {"name": "superset_country_c_account", "datatype": dbt.type_string()}, + {"name": "superset_employee_count_c", "datatype": dbt.type_int()}, + {"name": "superset_employee_count_c_contact", "datatype": dbt.type_int()}, + {"name": "superset_state_c", "datatype": dbt.type_string()}, + {"name": "superset_state_c_contact", "datatype": dbt.type_string()}, + {"name": "superset_zip_c", "datatype": dbt.type_string()}, + {"name": "superset_zip_c_contact", "datatype": dbt.type_string()}, {"name": "suppress_billing_c", "datatype": "boolean"}, - {"name": "survey_apps_used", "datatype": dbt_utils.type_string()}, - {"name": "survey_confidencein_data_analysis", "datatype": dbt_utils.type_string()}, - {"name": "survey_datawarehouse", "datatype": dbt_utils.type_string()}, - {"name": "survey_etltools", "datatype": dbt_utils.type_string()}, - {"name": "survey_fivetran_project", "datatype": dbt_utils.type_string()}, - {"name": "survey_hours_spent", "datatype": dbt_utils.type_string()}, - {"name": "survey_project_timeline", "datatype": dbt_utils.type_string()}, - {"name": "survey_what_would_you_rather_do", "datatype": dbt_utils.type_string()}, - {"name": "target_date_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "territory_c", "datatype": dbt_utils.type_string()}, - {"name": "territory_country_c", "datatype": dbt_utils.type_string()}, - {"name": "territory_employee_count_c", "datatype": dbt_utils.type_int()}, - {"name": "territory_state_c", "datatype": dbt_utils.type_string()}, - {"name": "territory_zip_c", "datatype": dbt_utils.type_string()}, - {"name": "test_email_ccaddress", "datatype": dbt_utils.type_string()}, - {"name": "third_party_payer_c", "datatype": dbt_utils.type_string()}, - {"name": "time_to_conversion_c", "datatype": dbt_utils.type_int()}, - {"name": "title", "datatype": dbt_utils.type_string()}, + {"name": "survey_apps_used", "datatype": dbt.type_string()}, + {"name": "survey_confidencein_data_analysis", "datatype": dbt.type_string()}, + {"name": "survey_datawarehouse", "datatype": dbt.type_string()}, + {"name": "survey_etltools", "datatype": dbt.type_string()}, + {"name": "survey_fivetran_project", "datatype": dbt.type_string()}, + {"name": "survey_hours_spent", "datatype": dbt.type_string()}, + {"name": "survey_project_timeline", "datatype": dbt.type_string()}, + {"name": "survey_what_would_you_rather_do", "datatype": dbt.type_string()}, + {"name": "target_date_c", "datatype": dbt.type_timestamp()}, + {"name": "territory_c", "datatype": dbt.type_string()}, + {"name": "territory_country_c", "datatype": dbt.type_string()}, + {"name": "territory_employee_count_c", "datatype": dbt.type_int()}, + {"name": "territory_state_c", "datatype": dbt.type_string()}, + {"name": "territory_zip_c", "datatype": dbt.type_string()}, + {"name": "test_email_ccaddress", "datatype": dbt.type_string()}, + {"name": "third_party_payer_c", "datatype": dbt.type_string()}, + {"name": "time_to_conversion_c", "datatype": dbt.type_int()}, + {"name": "title", "datatype": dbt.type_string()}, {"name": "to_delete_c", "datatype": "boolean"}, - {"name": "total_comp_credits_this_month_c", "datatype": dbt_utils.type_int()}, - {"name": "total_credits_bought_c", "datatype": dbt_utils.type_int()}, - {"name": "total_credits_used_c", "datatype": dbt_utils.type_int()}, - {"name": "trial_contact_start_date_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "trial_end_date_c", "datatype": dbt_utils.type_timestamp()}, - {"name": "u_fall_assets_downloaded", "datatype": dbt_utils.type_string()}, - {"name": "uberfliphub_116403_articlesviewed", "datatype": dbt_utils.type_int()}, - {"name": "uberfliphub_116403_flipbooksviewed", "datatype": dbt_utils.type_int()}, - {"name": "uberfliphub_116403_videosviewed", "datatype": dbt_utils.type_int()}, - {"name": "uf_conversion_item_id", "datatype": dbt_utils.type_int()}, - {"name": "uf_conversion_item_title", "datatype": dbt_utils.type_string()}, - {"name": "uf_last_visited_item_id", "datatype": dbt_utils.type_int()}, - {"name": "uf_last_visited_item_title", "datatype": dbt_utils.type_string()}, - {"name": "unique_email_c", "datatype": dbt_utils.type_string()}, - {"name": "unqualified_reason_c", "datatype": dbt_utils.type_string()}, - {"name": "unqualified_reason_c_contact", "datatype": dbt_utils.type_string()}, + {"name": "total_comp_credits_this_month_c", "datatype": dbt.type_int()}, + {"name": "total_credits_bought_c", "datatype": dbt.type_int()}, + {"name": "total_credits_used_c", "datatype": dbt.type_int()}, + {"name": "trial_contact_start_date_c", "datatype": dbt.type_timestamp()}, + {"name": "trial_end_date_c", "datatype": dbt.type_timestamp()}, + {"name": "u_fall_assets_downloaded", "datatype": dbt.type_string()}, + {"name": "uberfliphub_116403_articlesviewed", "datatype": dbt.type_int()}, + {"name": "uberfliphub_116403_flipbooksviewed", "datatype": dbt.type_int()}, + {"name": "uberfliphub_116403_videosviewed", "datatype": dbt.type_int()}, + {"name": "uf_conversion_item_id", "datatype": dbt.type_int()}, + {"name": "uf_conversion_item_title", "datatype": dbt.type_string()}, + {"name": "uf_last_visited_item_id", "datatype": dbt.type_int()}, + {"name": "uf_last_visited_item_title", "datatype": dbt.type_string()}, + {"name": "unique_email_c", "datatype": dbt.type_string()}, + {"name": "unqualified_reason_c", "datatype": dbt.type_string()}, + {"name": "unqualified_reason_c_contact", "datatype": dbt.type_string()}, {"name": "unsubscribed", "datatype": "boolean"}, - {"name": "unsubscribed_reason", "datatype": dbt_utils.type_string()}, - {"name": "updated_at", "datatype": dbt_utils.type_timestamp()}, - {"name": "urgency", "datatype": dbt_utils.type_float()}, - {"name": "usage_ae_c", "datatype": dbt_utils.type_string()}, - {"name": "usage_am_c", "datatype": dbt_utils.type_string()}, - {"name": "usage_csm_c", "datatype": dbt_utils.type_string()}, - {"name": "usage_score_c", "datatype": dbt_utils.type_int()}, - {"name": "user_activity_logged_by_c", "datatype": dbt_utils.type_string()}, + {"name": "unsubscribed_reason", "datatype": dbt.type_string()}, + {"name": "updated_at", "datatype": dbt.type_timestamp()}, + {"name": "urgency", "datatype": dbt.type_float()}, + {"name": "usage_ae_c", "datatype": dbt.type_string()}, + {"name": "usage_am_c", "datatype": dbt.type_string()}, + {"name": "usage_csm_c", "datatype": dbt.type_string()}, + {"name": "usage_score_c", "datatype": dbt.type_int()}, + {"name": "user_activity_logged_by_c", "datatype": dbt.type_string()}, {"name": "user_gems_has_a_user_gem_c", "datatype": "boolean"}, - {"name": "user_gems_has_changed_job_c", "datatype": dbt_utils.type_timestamp()}, + {"name": "user_gems_has_changed_job_c", "datatype": dbt.type_timestamp()}, {"name": "user_gems_is_a_user_gem_c", "datatype": "boolean"}, - {"name": "user_gems_linked_in_c", "datatype": dbt_utils.type_string()}, - {"name": "user_gems_past_account_c", "datatype": dbt_utils.type_string()}, - {"name": "user_gems_past_company_c", "datatype": dbt_utils.type_string()}, - {"name": "user_gems_past_contact_c", "datatype": dbt_utils.type_string()}, - {"name": "user_gems_past_title_c", "datatype": dbt_utils.type_string()}, - {"name": "utm_campaign_c", "datatype": dbt_utils.type_string()}, - {"name": "utm_content_c", "datatype": dbt_utils.type_string()}, - {"name": "utm_medium_c", "datatype": dbt_utils.type_string()}, - {"name": "utm_source_c", "datatype": dbt_utils.type_string()}, - {"name": "utm_term_c", "datatype": dbt_utils.type_string()}, + {"name": "user_gems_linked_in_c", "datatype": dbt.type_string()}, + {"name": "user_gems_past_account_c", "datatype": dbt.type_string()}, + {"name": "user_gems_past_company_c", "datatype": dbt.type_string()}, + {"name": "user_gems_past_contact_c", "datatype": dbt.type_string()}, + {"name": "user_gems_past_title_c", "datatype": dbt.type_string()}, + {"name": "utm_campaign_c", "datatype": dbt.type_string()}, + {"name": "utm_content_c", "datatype": dbt.type_string()}, + {"name": "utm_medium_c", "datatype": dbt.type_string()}, + {"name": "utm_source_c", "datatype": dbt.type_string()}, + {"name": "utm_term_c", "datatype": dbt.type_string()}, {"name": "verified", "datatype": "boolean"}, - {"name": "video_testimonial_c", "datatype": dbt_utils.type_string()}, - {"name": "warehouse_associated_date", "datatype": dbt_utils.type_timestamp()}, - {"name": "webinar_c", "datatype": dbt_utils.type_string()}, - {"name": "website", "datatype": dbt_utils.type_string()}, - {"name": "won_and_future_open_opportunites_c", "datatype": dbt_utils.type_float()}, - {"name": "zoominfo_country_c", "datatype": dbt_utils.type_string()}, - {"name": "zoominfo_employee_count_c", "datatype": dbt_utils.type_int()}, - {"name": "zoominfo_state_c", "datatype": dbt_utils.type_string()}, - {"name": "zoominfo_technologies_c", "datatype": dbt_utils.type_string()}, - {"name": "zoominfo_technologies_c_account", "datatype": dbt_utils.type_string()}, - {"name": "zoominfo_zip_code_c", "datatype": dbt_utils.type_string()} + {"name": "video_testimonial_c", "datatype": dbt.type_string()}, + {"name": "warehouse_associated_date", "datatype": dbt.type_timestamp()}, + {"name": "webinar_c", "datatype": dbt.type_string()}, + {"name": "website", "datatype": dbt.type_string()}, + {"name": "won_and_future_open_opportunites_c", "datatype": dbt.type_float()}, + {"name": "zoominfo_country_c", "datatype": dbt.type_string()}, + {"name": "zoominfo_employee_count_c", "datatype": dbt.type_int()}, + {"name": "zoominfo_state_c", "datatype": dbt.type_string()}, + {"name": "zoominfo_technologies_c", "datatype": dbt.type_string()}, + {"name": "zoominfo_technologies_c_account", "datatype": dbt.type_string()}, + {"name": "zoominfo_zip_code_c", "datatype": dbt.type_string()} ] %} {{ return(columns) }} diff --git a/macros/get_lead_describe_columns.sql b/macros/get_lead_describe_columns.sql index b354fdf..9f8ff40 100644 --- a/macros/get_lead_describe_columns.sql +++ b/macros/get_lead_describe_columns.sql @@ -1,14 +1,14 @@ {% macro get_lead_describe_columns() %} {% set columns = [ - {"name": "_fivetran_synced", "datatype": dbt_utils.type_timestamp()}, - {"name": "data_type", "datatype": dbt_utils.type_string()}, - {"name": "display_name", "datatype": dbt_utils.type_string()}, - {"name": "id", "datatype": dbt_utils.type_int()}, - {"name": "length", "datatype": dbt_utils.type_int()}, - {"name": "restname", "datatype": dbt_utils.type_string()}, + {"name": "_fivetran_synced", "datatype": dbt.type_timestamp()}, + {"name": "data_type", "datatype": dbt.type_string()}, + {"name": "display_name", "datatype": dbt.type_string()}, + {"name": "id", "datatype": dbt.type_int()}, + {"name": "length", "datatype": dbt.type_int()}, + {"name": "restname", "datatype": dbt.type_string()}, {"name": "restread_only", "datatype": "boolean"}, - {"name": "soapname", "datatype": dbt_utils.type_string()}, + {"name": "soapname", "datatype": dbt.type_string()}, {"name": "soapread_only", "datatype": "boolean"} ] %} diff --git a/macros/get_program_columns.sql b/macros/get_program_columns.sql index 8830f7d..eb7e8ea 100644 --- a/macros/get_program_columns.sql +++ b/macros/get_program_columns.sql @@ -1,21 +1,21 @@ {% macro get_program_columns() %} {% set columns = [ - {"name": "_fivetran_synced", "datatype": dbt_utils.type_timestamp()}, - {"name": "channel", "datatype": dbt_utils.type_string()}, - {"name": "created_at", "datatype": dbt_utils.type_timestamp()}, - {"name": "description", "datatype": dbt_utils.type_string()}, - {"name": "end_date", "datatype": dbt_utils.type_timestamp()}, - {"name": "id", "datatype": dbt_utils.type_int()}, - {"name": "name", "datatype": dbt_utils.type_string()}, - {"name": "sfdc_id", "datatype": dbt_utils.type_string()}, - {"name": "sfdc_name", "datatype": dbt_utils.type_string()}, - {"name": "start_date", "datatype": dbt_utils.type_timestamp()}, - {"name": "status", "datatype": dbt_utils.type_string()}, - {"name": "type", "datatype": dbt_utils.type_string()}, - {"name": "updated_at", "datatype": dbt_utils.type_timestamp()}, - {"name": "url", "datatype": dbt_utils.type_string()}, - {"name": "workspace", "datatype": dbt_utils.type_string()} + {"name": "_fivetran_synced", "datatype": dbt.type_timestamp()}, + {"name": "channel", "datatype": dbt.type_string()}, + {"name": "created_at", "datatype": dbt.type_timestamp()}, + {"name": "description", "datatype": dbt.type_string()}, + {"name": "end_date", "datatype": dbt.type_timestamp()}, + {"name": "id", "datatype": dbt.type_int()}, + {"name": "name", "datatype": dbt.type_string()}, + {"name": "sfdc_id", "datatype": dbt.type_string()}, + {"name": "sfdc_name", "datatype": dbt.type_string()}, + {"name": "start_date", "datatype": dbt.type_timestamp()}, + {"name": "status", "datatype": dbt.type_string()}, + {"name": "type", "datatype": dbt.type_string()}, + {"name": "updated_at", "datatype": dbt.type_timestamp()}, + {"name": "url", "datatype": dbt.type_string()}, + {"name": "workspace", "datatype": dbt.type_string()} ] %} {{ return(columns) }} diff --git a/models/stg_marketo__activity_change_data_value.sql b/models/stg_marketo__activity_change_data_value.sql index 42232d0..95ae3c4 100644 --- a/models/stg_marketo__activity_change_data_value.sql +++ b/models/stg_marketo__activity_change_data_value.sql @@ -17,7 +17,7 @@ with base as ( ), fields as ( select - cast(activity_date as {{ dbt_utils.type_timestamp() }}) as activity_timestamp, + cast(activity_date as {{ dbt.type_timestamp() }}) as activity_timestamp, activity_type_id, api_method_name, campaign_id, diff --git a/models/stg_marketo__activity_click_email.sql b/models/stg_marketo__activity_click_email.sql index 2fb7b8f..c25f268 100644 --- a/models/stg_marketo__activity_click_email.sql +++ b/models/stg_marketo__activity_click_email.sql @@ -17,7 +17,7 @@ with base as ( ), fields as ( select - cast(activity_date as {{ dbt_utils.type_timestamp() }}) as activity_timestamp, + cast(activity_date as {{ dbt.type_timestamp() }}) as activity_timestamp, activity_type_id, campaign_id, campaign_run_id, @@ -39,7 +39,7 @@ with base as ( select *, - {{ dbt_utils.surrogate_key(['primary_attribute_value_id','campaign_id','campaign_run_id','lead_id']) }} as email_send_id + {{ dbt_utils.generate_surrogate_key(['primary_attribute_value_id','campaign_id','campaign_run_id','lead_id']) }} as email_send_id from fields ) diff --git a/models/stg_marketo__activity_delete_lead.sql b/models/stg_marketo__activity_delete_lead.sql index 3aaa7ce..a15e270 100644 --- a/models/stg_marketo__activity_delete_lead.sql +++ b/models/stg_marketo__activity_delete_lead.sql @@ -21,7 +21,7 @@ with base as ( select id as activity_id, _fivetran_synced, - cast(activity_date as {{ dbt_utils.type_timestamp() }}) as activity_timestamp, + cast(activity_date as {{ dbt.type_timestamp() }}) as activity_timestamp, activity_type_id, campaign as campaign_name, campaign_id, diff --git a/models/stg_marketo__activity_email_bounced.sql b/models/stg_marketo__activity_email_bounced.sql index 4ef4b6d..3dd5ded 100644 --- a/models/stg_marketo__activity_email_bounced.sql +++ b/models/stg_marketo__activity_email_bounced.sql @@ -17,7 +17,7 @@ with base as ( ), fields as ( select - cast(activity_date as {{ dbt_utils.type_timestamp() }}) as activity_timestamp, + cast(activity_date as {{ dbt.type_timestamp() }}) as activity_timestamp, activity_type_id, campaign_id, campaign_run_id, @@ -38,7 +38,7 @@ with base as ( select *, - {{ dbt_utils.surrogate_key(['primary_attribute_value_id','campaign_id','campaign_run_id','lead_id']) }} as email_send_id + {{ dbt_utils.generate_surrogate_key(['primary_attribute_value_id','campaign_id','campaign_run_id','lead_id']) }} as email_send_id from fields ) diff --git a/models/stg_marketo__activity_email_delivered.sql b/models/stg_marketo__activity_email_delivered.sql index 2afa8c0..fe874f8 100644 --- a/models/stg_marketo__activity_email_delivered.sql +++ b/models/stg_marketo__activity_email_delivered.sql @@ -17,7 +17,7 @@ with base as ( ), fields as ( select - cast(activity_date as {{ dbt_utils.type_timestamp() }}) as activity_timestamp, + cast(activity_date as {{ dbt.type_timestamp() }}) as activity_timestamp, activity_type_id, campaign_id, campaign_run_id, @@ -34,7 +34,7 @@ with base as ( select *, - {{ dbt_utils.surrogate_key(['primary_attribute_value_id','campaign_id','campaign_run_id','lead_id']) }} as email_send_id + {{ dbt_utils.generate_surrogate_key(['primary_attribute_value_id','campaign_id','campaign_run_id','lead_id']) }} as email_send_id from fields ) diff --git a/models/stg_marketo__activity_merge_leads.sql b/models/stg_marketo__activity_merge_leads.sql index 434dc80..2886345 100644 --- a/models/stg_marketo__activity_merge_leads.sql +++ b/models/stg_marketo__activity_merge_leads.sql @@ -19,12 +19,12 @@ with base as ( select id as activity_id, _fivetran_synced, - cast(activity_date as {{ dbt_utils.type_timestamp() }}) as activity_timestamp, + cast(activity_date as {{ dbt.type_timestamp() }}) as activity_timestamp, activity_type_id, campaign_id, - cast(lead_id as {{ dbt_utils.type_int() }}) as lead_id, + cast(lead_id as {{ dbt.type_int() }}) as lead_id, master_updated, - cast(replace(trim(trim(merge_ids,']'),'['), ',', ', ') as {{ dbt_utils.type_string() }}) as merged_lead_id, + cast(replace(trim(trim(merge_ids,']'),'['), ',', ', ') as {{ dbt.type_string() }}) as merged_lead_id, merge_source, merged_in_sales, primary_attribute_value, diff --git a/models/stg_marketo__activity_open_email.sql b/models/stg_marketo__activity_open_email.sql index e8d2352..ed1513e 100644 --- a/models/stg_marketo__activity_open_email.sql +++ b/models/stg_marketo__activity_open_email.sql @@ -17,7 +17,7 @@ with base as ( ), fields as ( select - cast(activity_date as {{ dbt_utils.type_timestamp() }}) as activity_timestamp, + cast(activity_date as {{ dbt.type_timestamp() }}) as activity_timestamp, activity_type_id, campaign_id, campaign_run_id, @@ -38,7 +38,7 @@ with base as ( select *, - {{ dbt_utils.surrogate_key(['primary_attribute_value_id','campaign_id','campaign_run_id','lead_id']) }} as email_send_id + {{ dbt_utils.generate_surrogate_key(['primary_attribute_value_id','campaign_id','campaign_run_id','lead_id']) }} as email_send_id from fields ) diff --git a/models/stg_marketo__activity_send_email.sql b/models/stg_marketo__activity_send_email.sql index d32365e..2373bab 100644 --- a/models/stg_marketo__activity_send_email.sql +++ b/models/stg_marketo__activity_send_email.sql @@ -17,7 +17,7 @@ with base as ( ), fields as ( select - cast(activity_date as {{ dbt_utils.type_timestamp() }}) as activity_timestamp, + cast(activity_date as {{ dbt.type_timestamp() }}) as activity_timestamp, activity_type_id, campaign_id, campaign_run_id, @@ -34,7 +34,7 @@ with base as ( select *, - {{ dbt_utils.surrogate_key(['primary_attribute_value_id','campaign_id','campaign_run_id','lead_id']) }} as email_send_id + {{ dbt_utils.generate_surrogate_key(['primary_attribute_value_id','campaign_id','campaign_run_id','lead_id']) }} as email_send_id from fields ) diff --git a/models/stg_marketo__activity_unsubscribe_email.sql b/models/stg_marketo__activity_unsubscribe_email.sql index e456c0a..3bae6e8 100644 --- a/models/stg_marketo__activity_unsubscribe_email.sql +++ b/models/stg_marketo__activity_unsubscribe_email.sql @@ -17,7 +17,7 @@ with base as ( ), fields as ( select - cast(activity_date as {{ dbt_utils.type_timestamp() }}) as activity_timestamp, + cast(activity_date as {{ dbt.type_timestamp() }}) as activity_timestamp, activity_type_id, campaign_id, campaign_run_id, @@ -39,7 +39,7 @@ with base as ( select *, - {{ dbt_utils.surrogate_key(['primary_attribute_value_id','campaign_id','campaign_run_id','lead_id']) }} as email_send_id + {{ dbt_utils.generate_surrogate_key(['primary_attribute_value_id','campaign_id','campaign_run_id','lead_id']) }} as email_send_id from fields ) diff --git a/models/stg_marketo__email_template_history.sql b/models/stg_marketo__email_template_history.sql index 6174be8..e2a5763 100644 --- a/models/stg_marketo__email_template_history.sql +++ b/models/stg_marketo__email_template_history.sql @@ -66,7 +66,7 @@ with base as ( select *, - {{ dbt_utils.surrogate_key(['email_template_id','inferred_version'] )}} as email_template_history_id + {{ dbt_utils.generate_surrogate_key(['email_template_id','inferred_version'] )}} as email_template_history_id from valid ) diff --git a/packages.yml b/packages.yml index 8c7af2f..c71e87a 100644 --- a/packages.yml +++ b/packages.yml @@ -1,5 +1,6 @@ packages: - package: fivetran/fivetran_utils - version: [">=0.3.0", "<0.4.0"] + version: [">=0.4.0", "<0.5.0"] + - package: dbt-labs/spark_utils - version: [">=0.3.0", "<0.4.0"] \ No newline at end of file + version: [">=0.3.0", "<0.4.0"]