mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-02 03:29:03 +00:00
6301 lines
296 KiB
JSON
6301 lines
296 KiB
JSON
{
|
|
"metadata": {
|
|
"dbt_schema_version": "https://schemas.getdbt.com/dbt/manifest/v3.json",
|
|
"dbt_version": "0.21.0",
|
|
"generated_at": "2021-11-11T21:56:21.295261Z",
|
|
"invocation_id": "f586e0cb-d473-4b0f-9da0-7e1b4db6b9df",
|
|
"env": {},
|
|
"project_id": "06e5b98c2db46f8a72cc4f66410e9b3b",
|
|
"user_id": "13840f09-90dc-4885-877e-94822d6deccb",
|
|
"send_anonymous_usage_stats": true,
|
|
"adapter_type": "redshift"
|
|
},
|
|
"nodes": {
|
|
"model.jaffle_shop.customers": {
|
|
"raw_sql": "with customers as (\n\n select * from {{ ref('stg_customers') }}\n\n),\n\norders as (\n\n select * from {{ ref('stg_orders') }}\n\n),\n\npayments as (\n\n select * from {{ ref('stg_payments') }}\n\n),\n\ncustomer_orders as (\n\n select\n customer_id,\n\n min(order_date) as first_order,\n max(order_date) as most_recent_order,\n count(order_id) as number_of_orders\n from orders\n\n group by customer_id\n\n),\n\ncustomer_payments as (\n\n select\n orders.customer_id,\n sum(amount) as total_amount\n\n from payments\n\n left join orders on\n payments.order_id = orders.order_id\n\n group by orders.customer_id\n\n),\n\nfinal as (\n\n select\n customers.customer_id,\n customers.first_name,\n customers.last_name,\n customer_orders.first_order,\n customer_orders.most_recent_order,\n customer_orders.number_of_orders,\n customer_payments.total_amount as customer_lifetime_value\n\n from customers\n\n left join customer_orders\n on customers.customer_id = customer_orders.customer_id\n\n left join customer_payments\n on customers.customer_id = customer_payments.customer_id\n\n)\n\nselect * from final",
|
|
"compiled": true,
|
|
"resource_type": "model",
|
|
"depends_on": {
|
|
"macros": [],
|
|
"nodes": ["model.jaffle_shop.stg_customers", "model.jaffle_shop.stg_orders", "model.jaffle_shop.stg_payments"]
|
|
},
|
|
"config": {
|
|
"enabled": true,
|
|
"alias": null,
|
|
"schema": null,
|
|
"database": null,
|
|
"tags": [],
|
|
"meta": {},
|
|
"materialized": "table",
|
|
"persist_docs": {},
|
|
"quoting": {},
|
|
"column_types": {},
|
|
"full_refresh": null,
|
|
"on_schema_change": "ignore",
|
|
"post-hook": [],
|
|
"pre-hook": []
|
|
},
|
|
"database": "jaffle_shop",
|
|
"schema": "dbt_alice",
|
|
"fqn": ["jaffle_shop", "customers"],
|
|
"unique_id": "model.jaffle_shop.customers",
|
|
"package_name": "jaffle_shop",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop",
|
|
"path": "customers.sql",
|
|
"original_file_path": "models/customers.sql",
|
|
"name": "customers",
|
|
"alias": "customers",
|
|
"checksum": {
|
|
"name": "sha256",
|
|
"checksum": "455b90a31f418ae776213ad9932c7cb72d19a5269a8c722bd9f4e44957313ce8"
|
|
},
|
|
"tags": [],
|
|
"refs": [
|
|
["stg_customers"],
|
|
["stg_orders"],
|
|
["stg_payments"]
|
|
],
|
|
"sources": [],
|
|
"description": "This table has basic information about a customer, as well as some derived facts based on a customer's orders",
|
|
"columns": {
|
|
"customer_id": {
|
|
"name": "customer_id",
|
|
"description": "This is a unique identifier for a customer",
|
|
"meta": {},
|
|
"data_type": null,
|
|
"quote": null,
|
|
"tags": []
|
|
},
|
|
"first_name": {
|
|
"name": "first_name",
|
|
"description": "Customer's first name. PII.",
|
|
"meta": {},
|
|
"data_type": null,
|
|
"quote": null,
|
|
"tags": []
|
|
},
|
|
"last_name": {
|
|
"name": "last_name",
|
|
"description": "Customer's last name. PII.",
|
|
"meta": {},
|
|
"data_type": null,
|
|
"quote": null,
|
|
"tags": []
|
|
},
|
|
"first_order": {
|
|
"name": "first_order",
|
|
"description": "Date (UTC) of a customer's first order",
|
|
"meta": {},
|
|
"data_type": null,
|
|
"quote": null,
|
|
"tags": []
|
|
},
|
|
"most_recent_order": {
|
|
"name": "most_recent_order",
|
|
"description": "Date (UTC) of a customer's most recent order",
|
|
"meta": {},
|
|
"data_type": null,
|
|
"quote": null,
|
|
"tags": []
|
|
},
|
|
"number_of_orders": {
|
|
"name": "number_of_orders",
|
|
"description": "Count of the number of orders a customer has placed",
|
|
"meta": {},
|
|
"data_type": null,
|
|
"quote": null,
|
|
"tags": []
|
|
},
|
|
"total_order_amount": {
|
|
"name": "total_order_amount",
|
|
"description": "Total value (AUD) of a customer's orders",
|
|
"meta": {},
|
|
"data_type": null,
|
|
"quote": null,
|
|
"tags": []
|
|
}
|
|
},
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": "jaffle_shop://models/schema.yml",
|
|
"compiled_path": "target/compiled/jaffle_shop/models/customers.sql",
|
|
"build_path": null,
|
|
"deferred": false,
|
|
"unrendered_config": {
|
|
"materialized": "table"
|
|
},
|
|
"created_at": 1636667781,
|
|
"compiled_sql": "with customers as (\n\n select * from \"jaffle_shop\".\"dbt_alice\".\"stg_customers\"\n\n),\n\norders as (\n\n select * from \"jaffle_shop\".\"dbt_alice\".\"stg_orders\"\n\n),\n\npayments as (\n\n select * from \"jaffle_shop\".\"dbt_alice\".\"stg_payments\"\n\n),\n\ncustomer_orders as (\n\n select\n customer_id,\n\n min(order_date) as first_order,\n max(order_date) as most_recent_order,\n count(order_id) as number_of_orders\n from orders\n\n group by customer_id\n\n),\n\ncustomer_payments as (\n\n select\n orders.customer_id,\n sum(amount) as total_amount\n\n from payments\n\n left join orders on\n payments.order_id = orders.order_id\n\n group by orders.customer_id\n\n),\n\nfinal as (\n\n select\n customers.customer_id,\n customers.first_name,\n customers.last_name,\n customer_orders.first_order,\n customer_orders.most_recent_order,\n customer_orders.number_of_orders,\n customer_payments.total_amount as customer_lifetime_value\n\n from customers\n\n left join customer_orders\n on customers.customer_id = customer_orders.customer_id\n\n left join customer_payments\n on customers.customer_id = customer_payments.customer_id\n\n)\n\nselect * from final",
|
|
"extra_ctes_injected": true,
|
|
"extra_ctes": [],
|
|
"relation_name": "\"jaffle_shop\".\"dbt_alice\".\"customers\""
|
|
},
|
|
"model.jaffle_shop.orders": {
|
|
"raw_sql": "{% set payment_methods = ['credit_card', 'coupon', 'bank_transfer', 'gift_card'] %}\n\nwith orders as (\n\n select * from {{ ref('stg_orders') }}\n\n),\n\npayments as (\n\n select * from {{ ref('stg_payments') }}\n\n),\n\norder_payments as (\n\n select\n order_id,\n\n {% for payment_method in payment_methods -%}\n sum(case when payment_method = '{{ payment_method }}' then amount else 0 end) as {{ payment_method }}_amount,\n {% endfor -%}\n\n sum(amount) as total_amount\n\n from payments\n\n group by order_id\n\n),\n\nfinal as (\n\n select\n orders.order_id,\n orders.customer_id,\n orders.order_date,\n orders.status,\n\n {% for payment_method in payment_methods -%}\n\n order_payments.{{ payment_method }}_amount,\n\n {% endfor -%}\n\n order_payments.total_amount as amount\n\n from orders\n\n\n left join order_payments\n on orders.order_id = order_payments.order_id\n\n)\n\nselect * from final",
|
|
"compiled": true,
|
|
"resource_type": "model",
|
|
"depends_on": {
|
|
"macros": [],
|
|
"nodes": ["model.jaffle_shop.stg_orders", "model.jaffle_shop.stg_payments"]
|
|
},
|
|
"config": {
|
|
"enabled": true,
|
|
"alias": null,
|
|
"schema": null,
|
|
"database": null,
|
|
"tags": [],
|
|
"meta": {},
|
|
"materialized": "table",
|
|
"persist_docs": {},
|
|
"quoting": {},
|
|
"column_types": {},
|
|
"full_refresh": null,
|
|
"on_schema_change": "ignore",
|
|
"post-hook": [],
|
|
"pre-hook": []
|
|
},
|
|
"database": "jaffle_shop",
|
|
"schema": "dbt_alice",
|
|
"fqn": ["jaffle_shop", "orders"],
|
|
"unique_id": "model.jaffle_shop.orders",
|
|
"package_name": "jaffle_shop",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop",
|
|
"path": "orders.sql",
|
|
"original_file_path": "models/orders.sql",
|
|
"name": "orders",
|
|
"alias": "orders",
|
|
"checksum": {
|
|
"name": "sha256",
|
|
"checksum": "53950235d8e29690d259e95ee49bda6a5b7911b44c739b738a646dc6014bcfcd"
|
|
},
|
|
"tags": [],
|
|
"refs": [
|
|
["stg_orders"],
|
|
["stg_payments"]
|
|
],
|
|
"sources": [],
|
|
"description": "This table has basic information about orders, as well as some derived facts based on payments",
|
|
"columns": {
|
|
"order_id": {
|
|
"name": "order_id",
|
|
"description": "This is a unique identifier for an order",
|
|
"meta": {},
|
|
"data_type": null,
|
|
"quote": null,
|
|
"tags": []
|
|
},
|
|
"customer_id": {
|
|
"name": "customer_id",
|
|
"description": "Foreign key to the customers table",
|
|
"meta": {},
|
|
"data_type": null,
|
|
"quote": null,
|
|
"tags": []
|
|
},
|
|
"order_date": {
|
|
"name": "order_date",
|
|
"description": "Date (UTC) that the order was placed",
|
|
"meta": {},
|
|
"data_type": null,
|
|
"quote": null,
|
|
"tags": []
|
|
},
|
|
"status": {
|
|
"name": "status",
|
|
"description": "Orders can be one of the following statuses:\n\n| status | description |\n|----------------|------------------------------------------------------------------------------------------------------------------------|\n| placed | The order has been placed but has not yet left the warehouse |\n| shipped | The order has ben shipped to the customer and is currently in transit |\n| completed | The order has been received by the customer |\n| return_pending | The customer has indicated that they would like to return the order, but it has not yet been received at the warehouse |\n| returned | The order has been returned by the customer and received at the warehouse |",
|
|
"meta": {},
|
|
"data_type": null,
|
|
"quote": null,
|
|
"tags": []
|
|
},
|
|
"amount": {
|
|
"name": "amount",
|
|
"description": "Total amount (AUD) of the order",
|
|
"meta": {},
|
|
"data_type": null,
|
|
"quote": null,
|
|
"tags": []
|
|
},
|
|
"credit_card_amount": {
|
|
"name": "credit_card_amount",
|
|
"description": "Amount of the order (AUD) paid for by credit card",
|
|
"meta": {},
|
|
"data_type": null,
|
|
"quote": null,
|
|
"tags": []
|
|
},
|
|
"coupon_amount": {
|
|
"name": "coupon_amount",
|
|
"description": "Amount of the order (AUD) paid for by coupon",
|
|
"meta": {},
|
|
"data_type": null,
|
|
"quote": null,
|
|
"tags": []
|
|
},
|
|
"bank_transfer_amount": {
|
|
"name": "bank_transfer_amount",
|
|
"description": "Amount of the order (AUD) paid for by bank transfer",
|
|
"meta": {},
|
|
"data_type": null,
|
|
"quote": null,
|
|
"tags": []
|
|
},
|
|
"gift_card_amount": {
|
|
"name": "gift_card_amount",
|
|
"description": "Amount of the order (AUD) paid for by gift card",
|
|
"meta": {},
|
|
"data_type": null,
|
|
"quote": null,
|
|
"tags": []
|
|
}
|
|
},
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": "jaffle_shop://models/schema.yml",
|
|
"compiled_path": "target/compiled/jaffle_shop/models/orders.sql",
|
|
"build_path": null,
|
|
"deferred": false,
|
|
"unrendered_config": {
|
|
"materialized": "table"
|
|
},
|
|
"created_at": 1636667781,
|
|
"compiled_sql": "\n\nwith orders as (\n\n select * from \"jaffle_shop\".\"dbt_alice\".\"stg_orders\"\n\n),\n\npayments as (\n\n select * from \"jaffle_shop\".\"dbt_alice\".\"stg_payments\"\n\n),\n\norder_payments as (\n\n select\n order_id,\n\n sum(case when payment_method = 'credit_card' then amount else 0 end) as credit_card_amount,\n sum(case when payment_method = 'coupon' then amount else 0 end) as coupon_amount,\n sum(case when payment_method = 'bank_transfer' then amount else 0 end) as bank_transfer_amount,\n sum(case when payment_method = 'gift_card' then amount else 0 end) as gift_card_amount,\n sum(amount) as total_amount\n\n from payments\n\n group by order_id\n\n),\n\nfinal as (\n\n select\n orders.order_id,\n orders.customer_id,\n orders.order_date,\n orders.status,\n\n order_payments.credit_card_amount,\n\n order_payments.coupon_amount,\n\n order_payments.bank_transfer_amount,\n\n order_payments.gift_card_amount,\n\n order_payments.total_amount as amount\n\n from orders\n\n\n left join order_payments\n on orders.order_id = order_payments.order_id\n\n)\n\nselect * from final",
|
|
"extra_ctes_injected": true,
|
|
"extra_ctes": [],
|
|
"relation_name": "\"jaffle_shop\".\"dbt_alice\".\"orders\""
|
|
},
|
|
"model.jaffle_shop.stg_customers": {
|
|
"raw_sql": "with source as (\n\n {#-\n Normally we would select from the table here, but we are using seeds to load\n our data in this project\n #}\n select * from {{ ref('raw_customers') }}\n\n),\n\nrenamed as (\n\n select\n id as customer_id,\n first_name,\n last_name\n\n from source\n\n)\n\nselect * from renamed",
|
|
"compiled": true,
|
|
"resource_type": "model",
|
|
"depends_on": {
|
|
"macros": [],
|
|
"nodes": ["seed.jaffle_shop.raw_customers"]
|
|
},
|
|
"config": {
|
|
"enabled": true,
|
|
"alias": null,
|
|
"schema": null,
|
|
"database": null,
|
|
"tags": [],
|
|
"meta": {},
|
|
"materialized": "view",
|
|
"persist_docs": {},
|
|
"quoting": {},
|
|
"column_types": {},
|
|
"full_refresh": null,
|
|
"on_schema_change": "ignore",
|
|
"post-hook": [],
|
|
"pre-hook": []
|
|
},
|
|
"database": "jaffle_shop",
|
|
"schema": "dbt_alice",
|
|
"fqn": ["jaffle_shop", "staging", "stg_customers"],
|
|
"unique_id": "model.jaffle_shop.stg_customers",
|
|
"package_name": "jaffle_shop",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop",
|
|
"path": "staging/stg_customers.sql",
|
|
"original_file_path": "models/staging/stg_customers.sql",
|
|
"name": "stg_customers",
|
|
"alias": "stg_customers",
|
|
"checksum": {
|
|
"name": "sha256",
|
|
"checksum": "6f18a29204dad1de6dbb0c288144c4990742e0a1e065c3b2a67b5f98334c22ba"
|
|
},
|
|
"tags": [],
|
|
"refs": [
|
|
["raw_customers"]
|
|
],
|
|
"sources": [],
|
|
"description": "",
|
|
"columns": {
|
|
"customer_id": {
|
|
"name": "customer_id",
|
|
"description": "",
|
|
"meta": {},
|
|
"data_type": null,
|
|
"quote": null,
|
|
"tags": []
|
|
}
|
|
},
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": "jaffle_shop://models/staging/schema.yml",
|
|
"compiled_path": "target/compiled/jaffle_shop/models/staging/stg_customers.sql",
|
|
"build_path": null,
|
|
"deferred": false,
|
|
"unrendered_config": {
|
|
"materialized": "view"
|
|
},
|
|
"created_at": 1636667781,
|
|
"compiled_sql": "with source as (\n select * from \"jaffle_shop\".\"dbt_alice\".\"raw_customers\"\n\n),\n\nrenamed as (\n\n select\n id as customer_id,\n first_name,\n last_name\n\n from source\n\n)\n\nselect * from renamed",
|
|
"extra_ctes_injected": true,
|
|
"extra_ctes": [],
|
|
"relation_name": "\"jaffle_shop\".\"dbt_alice\".\"stg_customers\""
|
|
},
|
|
"model.jaffle_shop.stg_payments": {
|
|
"raw_sql": "with source as (\n \n {#-\n Normally we would select from the table here, but we are using seeds to load\n our data in this project\n #}\n select * from {{ ref('raw_payments') }}\n\n),\n\nrenamed as (\n\n select\n id as payment_id,\n order_id,\n payment_method,\n\n -- `amount` is currently stored in cents, so we convert it to dollars\n amount / 100 as amount\n\n from source\n\n)\n\nselect * from renamed",
|
|
"compiled": true,
|
|
"resource_type": "model",
|
|
"depends_on": {
|
|
"macros": [],
|
|
"nodes": ["seed.jaffle_shop.raw_payments"]
|
|
},
|
|
"config": {
|
|
"enabled": true,
|
|
"alias": null,
|
|
"schema": null,
|
|
"database": null,
|
|
"tags": [],
|
|
"meta": {},
|
|
"materialized": "view",
|
|
"persist_docs": {},
|
|
"quoting": {},
|
|
"column_types": {},
|
|
"full_refresh": null,
|
|
"on_schema_change": "ignore",
|
|
"post-hook": [],
|
|
"pre-hook": []
|
|
},
|
|
"database": "jaffle_shop",
|
|
"schema": "dbt_alice",
|
|
"fqn": ["jaffle_shop", "staging", "stg_payments"],
|
|
"unique_id": "model.jaffle_shop.stg_payments",
|
|
"package_name": "jaffle_shop",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop",
|
|
"path": "staging/stg_payments.sql",
|
|
"original_file_path": "models/staging/stg_payments.sql",
|
|
"name": "stg_payments",
|
|
"alias": "stg_payments",
|
|
"checksum": {
|
|
"name": "sha256",
|
|
"checksum": "eb899938258d1fba27fca716a7c334119912a2f9601282026097a7b6ce8cfcd2"
|
|
},
|
|
"tags": [],
|
|
"refs": [
|
|
["raw_payments"]
|
|
],
|
|
"sources": [],
|
|
"description": "",
|
|
"columns": {
|
|
"payment_id": {
|
|
"name": "payment_id",
|
|
"description": "",
|
|
"meta": {},
|
|
"data_type": null,
|
|
"quote": null,
|
|
"tags": []
|
|
},
|
|
"payment_method": {
|
|
"name": "payment_method",
|
|
"description": "",
|
|
"meta": {},
|
|
"data_type": null,
|
|
"quote": null,
|
|
"tags": []
|
|
}
|
|
},
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": "jaffle_shop://models/staging/schema.yml",
|
|
"compiled_path": "target/compiled/jaffle_shop/models/staging/stg_payments.sql",
|
|
"build_path": null,
|
|
"deferred": false,
|
|
"unrendered_config": {
|
|
"materialized": "view"
|
|
},
|
|
"created_at": 1636667781,
|
|
"compiled_sql": "with source as (\n select * from \"jaffle_shop\".\"dbt_alice\".\"raw_payments\"\n\n),\n\nrenamed as (\n\n select\n id as payment_id,\n order_id,\n payment_method,\n\n -- `amount` is currently stored in cents, so we convert it to dollars\n amount / 100 as amount\n\n from source\n\n)\n\nselect * from renamed",
|
|
"extra_ctes_injected": true,
|
|
"extra_ctes": [],
|
|
"relation_name": "\"jaffle_shop\".\"dbt_alice\".\"stg_payments\""
|
|
},
|
|
"model.jaffle_shop.stg_orders": {
|
|
"raw_sql": "with source as (\n\n {#-\n Normally we would select from the table here, but we are using seeds to load\n our data in this project\n #}\n select * from {{ ref('raw_orders') }}\n\n),\n\nrenamed as (\n\n select\n id as order_id,\n user_id as customer_id,\n order_date,\n status\n\n from source\n\n)\n\nselect * from renamed",
|
|
"compiled": true,
|
|
"resource_type": "model",
|
|
"depends_on": {
|
|
"macros": [],
|
|
"nodes": ["seed.jaffle_shop.raw_orders"]
|
|
},
|
|
"config": {
|
|
"enabled": true,
|
|
"alias": null,
|
|
"schema": null,
|
|
"database": null,
|
|
"tags": [],
|
|
"meta": {},
|
|
"materialized": "view",
|
|
"persist_docs": {},
|
|
"quoting": {},
|
|
"column_types": {},
|
|
"full_refresh": null,
|
|
"on_schema_change": "ignore",
|
|
"post-hook": [],
|
|
"pre-hook": []
|
|
},
|
|
"database": "jaffle_shop",
|
|
"schema": "dbt_alice",
|
|
"fqn": ["jaffle_shop", "staging", "stg_orders"],
|
|
"unique_id": "model.jaffle_shop.stg_orders",
|
|
"package_name": "jaffle_shop",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop",
|
|
"path": "staging/stg_orders.sql",
|
|
"original_file_path": "models/staging/stg_orders.sql",
|
|
"name": "stg_orders",
|
|
"alias": "stg_orders",
|
|
"checksum": {
|
|
"name": "sha256",
|
|
"checksum": "afffa9cbc57e5fd2cf5898ebf571d444a62c9d6d7929d8133d30567fb9a2ce97"
|
|
},
|
|
"tags": [],
|
|
"refs": [
|
|
["raw_orders"]
|
|
],
|
|
"sources": [],
|
|
"description": "",
|
|
"columns": {
|
|
"order_id": {
|
|
"name": "order_id",
|
|
"description": "",
|
|
"meta": {},
|
|
"data_type": null,
|
|
"quote": null,
|
|
"tags": []
|
|
},
|
|
"status": {
|
|
"name": "status",
|
|
"description": "",
|
|
"meta": {},
|
|
"data_type": null,
|
|
"quote": null,
|
|
"tags": []
|
|
}
|
|
},
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": "jaffle_shop://models/staging/schema.yml",
|
|
"compiled_path": "target/compiled/jaffle_shop/models/staging/stg_orders.sql",
|
|
"build_path": null,
|
|
"deferred": false,
|
|
"unrendered_config": {
|
|
"materialized": "view"
|
|
},
|
|
"created_at": 1636667781,
|
|
"compiled_sql": "with source as (\n select * from \"jaffle_shop\".\"dbt_alice\".\"raw_orders\"\n\n),\n\nrenamed as (\n\n select\n id as order_id,\n user_id as customer_id,\n order_date,\n status\n\n from source\n\n)\n\nselect * from renamed",
|
|
"extra_ctes_injected": true,
|
|
"extra_ctes": [],
|
|
"relation_name": "\"jaffle_shop\".\"dbt_alice\".\"stg_orders\""
|
|
},
|
|
"seed.jaffle_shop.raw_customers": {
|
|
"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,
|
|
"on_schema_change": "ignore",
|
|
"quote_columns": null,
|
|
"post-hook": [],
|
|
"pre-hook": []
|
|
},
|
|
"database": "jaffle_shop",
|
|
"schema": "dbt_alice",
|
|
"fqn": ["jaffle_shop", "raw_customers"],
|
|
"unique_id": "seed.jaffle_shop.raw_customers",
|
|
"package_name": "jaffle_shop",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop",
|
|
"path": "raw_customers.csv",
|
|
"original_file_path": "data/raw_customers.csv",
|
|
"name": "raw_customers",
|
|
"alias": "raw_customers",
|
|
"checksum": {
|
|
"name": "sha256",
|
|
"checksum": "24579b4b26098d43265376f3c50be8b10faf8e8fd95f5508074f10f76a12671d"
|
|
},
|
|
"tags": [],
|
|
"refs": [],
|
|
"sources": [],
|
|
"description": "",
|
|
"columns": {},
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"compiled_path": null,
|
|
"build_path": null,
|
|
"deferred": false,
|
|
"unrendered_config": {},
|
|
"created_at": 1636667781,
|
|
"compiled_sql": "",
|
|
"extra_ctes_injected": true,
|
|
"extra_ctes": [],
|
|
"relation_name": "\"jaffle_shop\".\"dbt_alice\".\"raw_customers\""
|
|
},
|
|
"seed.jaffle_shop.raw_orders": {
|
|
"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,
|
|
"on_schema_change": "ignore",
|
|
"quote_columns": null,
|
|
"post-hook": [],
|
|
"pre-hook": []
|
|
},
|
|
"database": "jaffle_shop",
|
|
"schema": "dbt_alice",
|
|
"fqn": ["jaffle_shop", "raw_orders"],
|
|
"unique_id": "seed.jaffle_shop.raw_orders",
|
|
"package_name": "jaffle_shop",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop",
|
|
"path": "raw_orders.csv",
|
|
"original_file_path": "data/raw_orders.csv",
|
|
"name": "raw_orders",
|
|
"alias": "raw_orders",
|
|
"checksum": {
|
|
"name": "sha256",
|
|
"checksum": "ee6c68d1639ec2b23a4495ec12475e09b8ed4b61e23ab0411ea7ec76648356f7"
|
|
},
|
|
"tags": [],
|
|
"refs": [],
|
|
"sources": [],
|
|
"description": "",
|
|
"columns": {},
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"compiled_path": null,
|
|
"build_path": null,
|
|
"deferred": false,
|
|
"unrendered_config": {},
|
|
"created_at": 1636667781,
|
|
"compiled_sql": "",
|
|
"extra_ctes_injected": true,
|
|
"extra_ctes": [],
|
|
"relation_name": "\"jaffle_shop\".\"dbt_alice\".\"raw_orders\""
|
|
},
|
|
"seed.jaffle_shop.raw_payments": {
|
|
"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,
|
|
"on_schema_change": "ignore",
|
|
"quote_columns": null,
|
|
"post-hook": [],
|
|
"pre-hook": []
|
|
},
|
|
"database": "jaffle_shop",
|
|
"schema": "dbt_alice",
|
|
"fqn": ["jaffle_shop", "raw_payments"],
|
|
"unique_id": "seed.jaffle_shop.raw_payments",
|
|
"package_name": "jaffle_shop",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop",
|
|
"path": "raw_payments.csv",
|
|
"original_file_path": "data/raw_payments.csv",
|
|
"name": "raw_payments",
|
|
"alias": "raw_payments",
|
|
"checksum": {
|
|
"name": "sha256",
|
|
"checksum": "03fd407f3135f84456431a923f22fc185a2154079e210c20b690e3ab11687d11"
|
|
},
|
|
"tags": [],
|
|
"refs": [],
|
|
"sources": [],
|
|
"description": "",
|
|
"columns": {},
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"compiled_path": null,
|
|
"build_path": null,
|
|
"deferred": false,
|
|
"unrendered_config": {},
|
|
"created_at": 1636667781,
|
|
"compiled_sql": "",
|
|
"extra_ctes_injected": true,
|
|
"extra_ctes": [],
|
|
"relation_name": "\"jaffle_shop\".\"dbt_alice\".\"raw_payments\""
|
|
},
|
|
"test.jaffle_shop.unique_customers_customer_id.c5af1ff4b1": {
|
|
"raw_sql": "{{ test_unique(**_dbt_schema_test_kwargs) }}",
|
|
"test_metadata": {
|
|
"name": "unique",
|
|
"kwargs": {
|
|
"column_name": "customer_id",
|
|
"model": "{{ get_where_subquery(ref('customers')) }}"
|
|
},
|
|
"namespace": null
|
|
},
|
|
"compiled": true,
|
|
"resource_type": "test",
|
|
"depends_on": {
|
|
"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"],
|
|
"nodes": ["model.jaffle_shop.customers"]
|
|
},
|
|
"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": "jaffle_shop",
|
|
"schema": "dbt_alice_dbt_test__audit",
|
|
"fqn": ["jaffle_shop", "schema_test", "unique_customers_customer_id"],
|
|
"unique_id": "test.jaffle_shop.unique_customers_customer_id.c5af1ff4b1",
|
|
"package_name": "jaffle_shop",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop",
|
|
"path": "schema_test/unique_customers_customer_id.sql",
|
|
"original_file_path": "models/schema.yml",
|
|
"name": "unique_customers_customer_id",
|
|
"alias": "unique_customers_customer_id",
|
|
"checksum": {
|
|
"name": "none",
|
|
"checksum": ""
|
|
},
|
|
"tags": ["schema"],
|
|
"refs": [
|
|
["customers"]
|
|
],
|
|
"sources": [],
|
|
"description": "",
|
|
"columns": {},
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"compiled_path": "target/compiled/jaffle_shop/models/schema.yml/schema_test/unique_customers_customer_id.sql",
|
|
"build_path": null,
|
|
"deferred": false,
|
|
"unrendered_config": {},
|
|
"created_at": 1636667781,
|
|
"compiled_sql": "\n \n \n\nselect\n customer_id as unique_field,\n count(*) as n_records\n\nfrom \"jaffle_shop\".\"dbt_alice\".\"customers\"\nwhere customer_id is not null\ngroup by customer_id\nhaving count(*) > 1\n\n\n",
|
|
"extra_ctes_injected": true,
|
|
"extra_ctes": [],
|
|
"relation_name": null,
|
|
"column_name": "customer_id"
|
|
},
|
|
"test.jaffle_shop.not_null_customers_customer_id.5c9bf9911d": {
|
|
"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}",
|
|
"test_metadata": {
|
|
"name": "not_null",
|
|
"kwargs": {
|
|
"column_name": "customer_id",
|
|
"model": "{{ get_where_subquery(ref('customers')) }}"
|
|
},
|
|
"namespace": null
|
|
},
|
|
"compiled": true,
|
|
"resource_type": "test",
|
|
"depends_on": {
|
|
"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"],
|
|
"nodes": ["model.jaffle_shop.customers"]
|
|
},
|
|
"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": "jaffle_shop",
|
|
"schema": "dbt_alice_dbt_test__audit",
|
|
"fqn": ["jaffle_shop", "schema_test", "not_null_customers_customer_id"],
|
|
"unique_id": "test.jaffle_shop.not_null_customers_customer_id.5c9bf9911d",
|
|
"package_name": "jaffle_shop",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop",
|
|
"path": "schema_test/not_null_customers_customer_id.sql",
|
|
"original_file_path": "models/schema.yml",
|
|
"name": "not_null_customers_customer_id",
|
|
"alias": "not_null_customers_customer_id",
|
|
"checksum": {
|
|
"name": "none",
|
|
"checksum": ""
|
|
},
|
|
"tags": ["schema"],
|
|
"refs": [
|
|
["customers"]
|
|
],
|
|
"sources": [],
|
|
"description": "",
|
|
"columns": {},
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"compiled_path": "target/compiled/jaffle_shop/models/schema.yml/schema_test/not_null_customers_customer_id.sql",
|
|
"build_path": null,
|
|
"deferred": false,
|
|
"unrendered_config": {},
|
|
"created_at": 1636667781,
|
|
"compiled_sql": "\n \n \n\nselect *\nfrom \"jaffle_shop\".\"dbt_alice\".\"customers\"\nwhere customer_id is null\n\n\n",
|
|
"extra_ctes_injected": true,
|
|
"extra_ctes": [],
|
|
"relation_name": null,
|
|
"column_name": "customer_id"
|
|
},
|
|
"test.jaffle_shop.unique_orders_order_id.fed79b3a6e": {
|
|
"raw_sql": "{{ test_unique(**_dbt_schema_test_kwargs) }}",
|
|
"test_metadata": {
|
|
"name": "unique",
|
|
"kwargs": {
|
|
"column_name": "order_id",
|
|
"model": "{{ get_where_subquery(ref('orders')) }}"
|
|
},
|
|
"namespace": null
|
|
},
|
|
"compiled": true,
|
|
"resource_type": "test",
|
|
"depends_on": {
|
|
"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"],
|
|
"nodes": ["model.jaffle_shop.orders"]
|
|
},
|
|
"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": "jaffle_shop",
|
|
"schema": "dbt_alice_dbt_test__audit",
|
|
"fqn": ["jaffle_shop", "schema_test", "unique_orders_order_id"],
|
|
"unique_id": "test.jaffle_shop.unique_orders_order_id.fed79b3a6e",
|
|
"package_name": "jaffle_shop",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop",
|
|
"path": "schema_test/unique_orders_order_id.sql",
|
|
"original_file_path": "models/schema.yml",
|
|
"name": "unique_orders_order_id",
|
|
"alias": "unique_orders_order_id",
|
|
"checksum": {
|
|
"name": "none",
|
|
"checksum": ""
|
|
},
|
|
"tags": ["schema"],
|
|
"refs": [
|
|
["orders"]
|
|
],
|
|
"sources": [],
|
|
"description": "",
|
|
"columns": {},
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"compiled_path": "target/compiled/jaffle_shop/models/schema.yml/schema_test/unique_orders_order_id.sql",
|
|
"build_path": null,
|
|
"deferred": false,
|
|
"unrendered_config": {},
|
|
"created_at": 1636667781,
|
|
"compiled_sql": "\n \n \n\nselect\n order_id as unique_field,\n count(*) as n_records\n\nfrom \"jaffle_shop\".\"dbt_alice\".\"orders\"\nwhere order_id is not null\ngroup by order_id\nhaving count(*) > 1\n\n\n",
|
|
"extra_ctes_injected": true,
|
|
"extra_ctes": [],
|
|
"relation_name": null,
|
|
"column_name": "order_id"
|
|
},
|
|
"test.jaffle_shop.not_null_orders_order_id.cf6c17daed": {
|
|
"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}",
|
|
"test_metadata": {
|
|
"name": "not_null",
|
|
"kwargs": {
|
|
"column_name": "order_id",
|
|
"model": "{{ get_where_subquery(ref('orders')) }}"
|
|
},
|
|
"namespace": null
|
|
},
|
|
"compiled": true,
|
|
"resource_type": "test",
|
|
"depends_on": {
|
|
"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"],
|
|
"nodes": ["model.jaffle_shop.orders"]
|
|
},
|
|
"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": "jaffle_shop",
|
|
"schema": "dbt_alice_dbt_test__audit",
|
|
"fqn": ["jaffle_shop", "schema_test", "not_null_orders_order_id"],
|
|
"unique_id": "test.jaffle_shop.not_null_orders_order_id.cf6c17daed",
|
|
"package_name": "jaffle_shop",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop",
|
|
"path": "schema_test/not_null_orders_order_id.sql",
|
|
"original_file_path": "models/schema.yml",
|
|
"name": "not_null_orders_order_id",
|
|
"alias": "not_null_orders_order_id",
|
|
"checksum": {
|
|
"name": "none",
|
|
"checksum": ""
|
|
},
|
|
"tags": ["schema"],
|
|
"refs": [
|
|
["orders"]
|
|
],
|
|
"sources": [],
|
|
"description": "",
|
|
"columns": {},
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"compiled_path": "target/compiled/jaffle_shop/models/schema.yml/schema_test/not_null_orders_order_id.sql",
|
|
"build_path": null,
|
|
"deferred": false,
|
|
"unrendered_config": {},
|
|
"created_at": 1636667781,
|
|
"compiled_sql": "\n \n \n\nselect *\nfrom \"jaffle_shop\".\"dbt_alice\".\"orders\"\nwhere order_id is null\n\n\n",
|
|
"extra_ctes_injected": true,
|
|
"extra_ctes": [],
|
|
"relation_name": null,
|
|
"column_name": "order_id"
|
|
},
|
|
"test.jaffle_shop.not_null_orders_customer_id.c5f02694af": {
|
|
"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}",
|
|
"test_metadata": {
|
|
"name": "not_null",
|
|
"kwargs": {
|
|
"column_name": "customer_id",
|
|
"model": "{{ get_where_subquery(ref('orders')) }}"
|
|
},
|
|
"namespace": null
|
|
},
|
|
"compiled": true,
|
|
"resource_type": "test",
|
|
"depends_on": {
|
|
"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"],
|
|
"nodes": ["model.jaffle_shop.orders"]
|
|
},
|
|
"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": "jaffle_shop",
|
|
"schema": "dbt_alice_dbt_test__audit",
|
|
"fqn": ["jaffle_shop", "schema_test", "not_null_orders_customer_id"],
|
|
"unique_id": "test.jaffle_shop.not_null_orders_customer_id.c5f02694af",
|
|
"package_name": "jaffle_shop",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop",
|
|
"path": "schema_test/not_null_orders_customer_id.sql",
|
|
"original_file_path": "models/schema.yml",
|
|
"name": "not_null_orders_customer_id",
|
|
"alias": "not_null_orders_customer_id",
|
|
"checksum": {
|
|
"name": "none",
|
|
"checksum": ""
|
|
},
|
|
"tags": ["schema"],
|
|
"refs": [
|
|
["orders"]
|
|
],
|
|
"sources": [],
|
|
"description": "",
|
|
"columns": {},
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"compiled_path": "target/compiled/jaffle_shop/models/schema.yml/schema_test/not_null_orders_customer_id.sql",
|
|
"build_path": null,
|
|
"deferred": false,
|
|
"unrendered_config": {},
|
|
"created_at": 1636667781,
|
|
"compiled_sql": "\n \n \n\nselect *\nfrom \"jaffle_shop\".\"dbt_alice\".\"orders\"\nwhere customer_id is null\n\n\n",
|
|
"extra_ctes_injected": true,
|
|
"extra_ctes": [],
|
|
"relation_name": null,
|
|
"column_name": "customer_id"
|
|
},
|
|
"test.jaffle_shop.relationships_orders_customer_id__customer_id__ref_customers_.c6ec7f58f2": {
|
|
"raw_sql": "{{ test_relationships(**_dbt_schema_test_kwargs) }}",
|
|
"test_metadata": {
|
|
"name": "relationships",
|
|
"kwargs": {
|
|
"to": "ref('customers')",
|
|
"field": "customer_id",
|
|
"column_name": "customer_id",
|
|
"model": "{{ get_where_subquery(ref('orders')) }}"
|
|
},
|
|
"namespace": null
|
|
},
|
|
"compiled": true,
|
|
"resource_type": "test",
|
|
"depends_on": {
|
|
"macros": ["macro.dbt.test_relationships", "macro.dbt.default__test_relationships", "macro.dbt.get_where_subquery"],
|
|
"nodes": ["model.jaffle_shop.customers", "model.jaffle_shop.orders"]
|
|
},
|
|
"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": "jaffle_shop",
|
|
"schema": "dbt_alice_dbt_test__audit",
|
|
"fqn": ["jaffle_shop", "schema_test", "relationships_orders_customer_id__customer_id__ref_customers_"],
|
|
"unique_id": "test.jaffle_shop.relationships_orders_customer_id__customer_id__ref_customers_.c6ec7f58f2",
|
|
"package_name": "jaffle_shop",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop",
|
|
"path": "schema_test/relationships_orders_customer_id__customer_id__ref_customers_.sql",
|
|
"original_file_path": "models/schema.yml",
|
|
"name": "relationships_orders_customer_id__customer_id__ref_customers_",
|
|
"alias": "relationships_orders_customer_id__customer_id__ref_customers_",
|
|
"checksum": {
|
|
"name": "none",
|
|
"checksum": ""
|
|
},
|
|
"tags": ["schema"],
|
|
"refs": [
|
|
["customers"],
|
|
["orders"]
|
|
],
|
|
"sources": [],
|
|
"description": "",
|
|
"columns": {},
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"compiled_path": "target/compiled/jaffle_shop/models/schema.yml/schema_test/relationships_orders_customer_id__customer_id__ref_customers_.sql",
|
|
"build_path": null,
|
|
"deferred": false,
|
|
"unrendered_config": {},
|
|
"created_at": 1636667781,
|
|
"compiled_sql": "\n \n \n\nwith child as (\n select customer_id as from_field\n from \"jaffle_shop\".\"dbt_alice\".\"orders\"\n where customer_id is not null\n),\n\nparent as (\n select customer_id as to_field\n from \"jaffle_shop\".\"dbt_alice\".\"customers\"\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\n",
|
|
"extra_ctes_injected": true,
|
|
"extra_ctes": [],
|
|
"relation_name": null,
|
|
"column_name": "customer_id"
|
|
},
|
|
"test.jaffle_shop.accepted_values_orders_status__placed__shipped__completed__return_pending__returned.be6b5b5ec3": {
|
|
"raw_sql": "{{ test_accepted_values(**_dbt_schema_test_kwargs) }}{{ config(alias=\"accepted_values_orders_1ce6ab157c285f7cd2ac656013faf758\") }}",
|
|
"test_metadata": {
|
|
"name": "accepted_values",
|
|
"kwargs": {
|
|
"values": ["placed", "shipped", "completed", "return_pending", "returned"],
|
|
"column_name": "status",
|
|
"model": "{{ get_where_subquery(ref('orders')) }}"
|
|
},
|
|
"namespace": null
|
|
},
|
|
"compiled": true,
|
|
"resource_type": "test",
|
|
"depends_on": {
|
|
"macros": ["macro.dbt.test_accepted_values", "macro.dbt.default__test_accepted_values", "macro.dbt.get_where_subquery"],
|
|
"nodes": ["model.jaffle_shop.orders"]
|
|
},
|
|
"config": {
|
|
"enabled": true,
|
|
"alias": "accepted_values_orders_1ce6ab157c285f7cd2ac656013faf758",
|
|
"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": "jaffle_shop",
|
|
"schema": "dbt_alice_dbt_test__audit",
|
|
"fqn": ["jaffle_shop", "schema_test", "accepted_values_orders_status__placed__shipped__completed__return_pending__returned"],
|
|
"unique_id": "test.jaffle_shop.accepted_values_orders_status__placed__shipped__completed__return_pending__returned.be6b5b5ec3",
|
|
"package_name": "jaffle_shop",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop",
|
|
"path": "schema_test/accepted_values_orders_1ce6ab157c285f7cd2ac656013faf758.sql",
|
|
"original_file_path": "models/schema.yml",
|
|
"name": "accepted_values_orders_status__placed__shipped__completed__return_pending__returned",
|
|
"alias": "accepted_values_orders_1ce6ab157c285f7cd2ac656013faf758",
|
|
"checksum": {
|
|
"name": "none",
|
|
"checksum": ""
|
|
},
|
|
"tags": ["schema"],
|
|
"refs": [
|
|
["orders"]
|
|
],
|
|
"sources": [],
|
|
"description": "",
|
|
"columns": {},
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"compiled_path": "target/compiled/jaffle_shop/models/schema.yml/schema_test/accepted_values_orders_1ce6ab157c285f7cd2ac656013faf758.sql",
|
|
"build_path": null,
|
|
"deferred": false,
|
|
"unrendered_config": {
|
|
"alias": "accepted_values_orders_1ce6ab157c285f7cd2ac656013faf758"
|
|
},
|
|
"created_at": 1636667781,
|
|
"compiled_sql": "\n \n \n\nwith all_values as (\n\n select\n status as value_field,\n count(*) as n_records\n\n from \"jaffle_shop\".\"dbt_alice\".\"orders\"\n group by status\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n 'placed','shipped','completed','return_pending','returned'\n)\n\n\n",
|
|
"extra_ctes_injected": true,
|
|
"extra_ctes": [],
|
|
"relation_name": null,
|
|
"column_name": "status"
|
|
},
|
|
"test.jaffle_shop.not_null_orders_amount.106140f9fd": {
|
|
"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}",
|
|
"test_metadata": {
|
|
"name": "not_null",
|
|
"kwargs": {
|
|
"column_name": "amount",
|
|
"model": "{{ get_where_subquery(ref('orders')) }}"
|
|
},
|
|
"namespace": null
|
|
},
|
|
"compiled": true,
|
|
"resource_type": "test",
|
|
"depends_on": {
|
|
"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"],
|
|
"nodes": ["model.jaffle_shop.orders"]
|
|
},
|
|
"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": "jaffle_shop",
|
|
"schema": "dbt_alice_dbt_test__audit",
|
|
"fqn": ["jaffle_shop", "schema_test", "not_null_orders_amount"],
|
|
"unique_id": "test.jaffle_shop.not_null_orders_amount.106140f9fd",
|
|
"package_name": "jaffle_shop",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop",
|
|
"path": "schema_test/not_null_orders_amount.sql",
|
|
"original_file_path": "models/schema.yml",
|
|
"name": "not_null_orders_amount",
|
|
"alias": "not_null_orders_amount",
|
|
"checksum": {
|
|
"name": "none",
|
|
"checksum": ""
|
|
},
|
|
"tags": ["schema"],
|
|
"refs": [
|
|
["orders"]
|
|
],
|
|
"sources": [],
|
|
"description": "",
|
|
"columns": {},
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"compiled_path": "target/compiled/jaffle_shop/models/schema.yml/schema_test/not_null_orders_amount.sql",
|
|
"build_path": null,
|
|
"deferred": false,
|
|
"unrendered_config": {},
|
|
"created_at": 1636667781,
|
|
"compiled_sql": "\n \n \n\nselect *\nfrom \"jaffle_shop\".\"dbt_alice\".\"orders\"\nwhere amount is null\n\n\n",
|
|
"extra_ctes_injected": true,
|
|
"extra_ctes": [],
|
|
"relation_name": null,
|
|
"column_name": "amount"
|
|
},
|
|
"test.jaffle_shop.not_null_orders_credit_card_amount.d3ca593b59": {
|
|
"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}",
|
|
"test_metadata": {
|
|
"name": "not_null",
|
|
"kwargs": {
|
|
"column_name": "credit_card_amount",
|
|
"model": "{{ get_where_subquery(ref('orders')) }}"
|
|
},
|
|
"namespace": null
|
|
},
|
|
"compiled": true,
|
|
"resource_type": "test",
|
|
"depends_on": {
|
|
"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"],
|
|
"nodes": ["model.jaffle_shop.orders"]
|
|
},
|
|
"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": "jaffle_shop",
|
|
"schema": "dbt_alice_dbt_test__audit",
|
|
"fqn": ["jaffle_shop", "schema_test", "not_null_orders_credit_card_amount"],
|
|
"unique_id": "test.jaffle_shop.not_null_orders_credit_card_amount.d3ca593b59",
|
|
"package_name": "jaffle_shop",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop",
|
|
"path": "schema_test/not_null_orders_credit_card_amount.sql",
|
|
"original_file_path": "models/schema.yml",
|
|
"name": "not_null_orders_credit_card_amount",
|
|
"alias": "not_null_orders_credit_card_amount",
|
|
"checksum": {
|
|
"name": "none",
|
|
"checksum": ""
|
|
},
|
|
"tags": ["schema"],
|
|
"refs": [
|
|
["orders"]
|
|
],
|
|
"sources": [],
|
|
"description": "",
|
|
"columns": {},
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"compiled_path": "target/compiled/jaffle_shop/models/schema.yml/schema_test/not_null_orders_credit_card_amount.sql",
|
|
"build_path": null,
|
|
"deferred": false,
|
|
"unrendered_config": {},
|
|
"created_at": 1636667781,
|
|
"compiled_sql": "\n \n \n\nselect *\nfrom \"jaffle_shop\".\"dbt_alice\".\"orders\"\nwhere credit_card_amount is null\n\n\n",
|
|
"extra_ctes_injected": true,
|
|
"extra_ctes": [],
|
|
"relation_name": null,
|
|
"column_name": "credit_card_amount"
|
|
},
|
|
"test.jaffle_shop.not_null_orders_coupon_amount.ab90c90625": {
|
|
"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}",
|
|
"test_metadata": {
|
|
"name": "not_null",
|
|
"kwargs": {
|
|
"column_name": "coupon_amount",
|
|
"model": "{{ get_where_subquery(ref('orders')) }}"
|
|
},
|
|
"namespace": null
|
|
},
|
|
"compiled": true,
|
|
"resource_type": "test",
|
|
"depends_on": {
|
|
"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"],
|
|
"nodes": ["model.jaffle_shop.orders"]
|
|
},
|
|
"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": "jaffle_shop",
|
|
"schema": "dbt_alice_dbt_test__audit",
|
|
"fqn": ["jaffle_shop", "schema_test", "not_null_orders_coupon_amount"],
|
|
"unique_id": "test.jaffle_shop.not_null_orders_coupon_amount.ab90c90625",
|
|
"package_name": "jaffle_shop",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop",
|
|
"path": "schema_test/not_null_orders_coupon_amount.sql",
|
|
"original_file_path": "models/schema.yml",
|
|
"name": "not_null_orders_coupon_amount",
|
|
"alias": "not_null_orders_coupon_amount",
|
|
"checksum": {
|
|
"name": "none",
|
|
"checksum": ""
|
|
},
|
|
"tags": ["schema"],
|
|
"refs": [
|
|
["orders"]
|
|
],
|
|
"sources": [],
|
|
"description": "",
|
|
"columns": {},
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"compiled_path": "target/compiled/jaffle_shop/models/schema.yml/schema_test/not_null_orders_coupon_amount.sql",
|
|
"build_path": null,
|
|
"deferred": false,
|
|
"unrendered_config": {},
|
|
"created_at": 1636667781,
|
|
"compiled_sql": "\n \n \n\nselect *\nfrom \"jaffle_shop\".\"dbt_alice\".\"orders\"\nwhere coupon_amount is null\n\n\n",
|
|
"extra_ctes_injected": true,
|
|
"extra_ctes": [],
|
|
"relation_name": null,
|
|
"column_name": "coupon_amount"
|
|
},
|
|
"test.jaffle_shop.not_null_orders_bank_transfer_amount.7743500c49": {
|
|
"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}",
|
|
"test_metadata": {
|
|
"name": "not_null",
|
|
"kwargs": {
|
|
"column_name": "bank_transfer_amount",
|
|
"model": "{{ get_where_subquery(ref('orders')) }}"
|
|
},
|
|
"namespace": null
|
|
},
|
|
"compiled": true,
|
|
"resource_type": "test",
|
|
"depends_on": {
|
|
"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"],
|
|
"nodes": ["model.jaffle_shop.orders"]
|
|
},
|
|
"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": "jaffle_shop",
|
|
"schema": "dbt_alice_dbt_test__audit",
|
|
"fqn": ["jaffle_shop", "schema_test", "not_null_orders_bank_transfer_amount"],
|
|
"unique_id": "test.jaffle_shop.not_null_orders_bank_transfer_amount.7743500c49",
|
|
"package_name": "jaffle_shop",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop",
|
|
"path": "schema_test/not_null_orders_bank_transfer_amount.sql",
|
|
"original_file_path": "models/schema.yml",
|
|
"name": "not_null_orders_bank_transfer_amount",
|
|
"alias": "not_null_orders_bank_transfer_amount",
|
|
"checksum": {
|
|
"name": "none",
|
|
"checksum": ""
|
|
},
|
|
"tags": ["schema"],
|
|
"refs": [
|
|
["orders"]
|
|
],
|
|
"sources": [],
|
|
"description": "",
|
|
"columns": {},
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"compiled_path": "target/compiled/jaffle_shop/models/schema.yml/schema_test/not_null_orders_bank_transfer_amount.sql",
|
|
"build_path": null,
|
|
"deferred": false,
|
|
"unrendered_config": {},
|
|
"created_at": 1636667781,
|
|
"compiled_sql": "\n \n \n\nselect *\nfrom \"jaffle_shop\".\"dbt_alice\".\"orders\"\nwhere bank_transfer_amount is null\n\n\n",
|
|
"extra_ctes_injected": true,
|
|
"extra_ctes": [],
|
|
"relation_name": null,
|
|
"column_name": "bank_transfer_amount"
|
|
},
|
|
"test.jaffle_shop.not_null_orders_gift_card_amount.413a0d2d7a": {
|
|
"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}",
|
|
"test_metadata": {
|
|
"name": "not_null",
|
|
"kwargs": {
|
|
"column_name": "gift_card_amount",
|
|
"model": "{{ get_where_subquery(ref('orders')) }}"
|
|
},
|
|
"namespace": null
|
|
},
|
|
"compiled": true,
|
|
"resource_type": "test",
|
|
"depends_on": {
|
|
"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"],
|
|
"nodes": ["model.jaffle_shop.orders"]
|
|
},
|
|
"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": "jaffle_shop",
|
|
"schema": "dbt_alice_dbt_test__audit",
|
|
"fqn": ["jaffle_shop", "schema_test", "not_null_orders_gift_card_amount"],
|
|
"unique_id": "test.jaffle_shop.not_null_orders_gift_card_amount.413a0d2d7a",
|
|
"package_name": "jaffle_shop",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop",
|
|
"path": "schema_test/not_null_orders_gift_card_amount.sql",
|
|
"original_file_path": "models/schema.yml",
|
|
"name": "not_null_orders_gift_card_amount",
|
|
"alias": "not_null_orders_gift_card_amount",
|
|
"checksum": {
|
|
"name": "none",
|
|
"checksum": ""
|
|
},
|
|
"tags": ["schema"],
|
|
"refs": [
|
|
["orders"]
|
|
],
|
|
"sources": [],
|
|
"description": "",
|
|
"columns": {},
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"compiled_path": "target/compiled/jaffle_shop/models/schema.yml/schema_test/not_null_orders_gift_card_amount.sql",
|
|
"build_path": null,
|
|
"deferred": false,
|
|
"unrendered_config": {},
|
|
"created_at": 1636667781,
|
|
"compiled_sql": "\n \n \n\nselect *\nfrom \"jaffle_shop\".\"dbt_alice\".\"orders\"\nwhere gift_card_amount is null\n\n\n",
|
|
"extra_ctes_injected": true,
|
|
"extra_ctes": [],
|
|
"relation_name": null,
|
|
"column_name": "gift_card_amount"
|
|
},
|
|
"test.jaffle_shop.unique_stg_customers_customer_id.c7614daada": {
|
|
"raw_sql": "{{ test_unique(**_dbt_schema_test_kwargs) }}",
|
|
"test_metadata": {
|
|
"name": "unique",
|
|
"kwargs": {
|
|
"column_name": "customer_id",
|
|
"model": "{{ get_where_subquery(ref('stg_customers')) }}"
|
|
},
|
|
"namespace": null
|
|
},
|
|
"compiled": true,
|
|
"resource_type": "test",
|
|
"depends_on": {
|
|
"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"],
|
|
"nodes": ["model.jaffle_shop.stg_customers"]
|
|
},
|
|
"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": "jaffle_shop",
|
|
"schema": "dbt_alice_dbt_test__audit",
|
|
"fqn": ["jaffle_shop", "schema_test", "unique_stg_customers_customer_id"],
|
|
"unique_id": "test.jaffle_shop.unique_stg_customers_customer_id.c7614daada",
|
|
"package_name": "jaffle_shop",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop",
|
|
"path": "schema_test/unique_stg_customers_customer_id.sql",
|
|
"original_file_path": "models/staging/schema.yml",
|
|
"name": "unique_stg_customers_customer_id",
|
|
"alias": "unique_stg_customers_customer_id",
|
|
"checksum": {
|
|
"name": "none",
|
|
"checksum": ""
|
|
},
|
|
"tags": ["schema"],
|
|
"refs": [
|
|
["stg_customers"]
|
|
],
|
|
"sources": [],
|
|
"description": "",
|
|
"columns": {},
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"compiled_path": "target/compiled/jaffle_shop/models/staging/schema.yml/schema_test/unique_stg_customers_customer_id.sql",
|
|
"build_path": null,
|
|
"deferred": false,
|
|
"unrendered_config": {},
|
|
"created_at": 1636667781,
|
|
"compiled_sql": "\n \n \n\nselect\n customer_id as unique_field,\n count(*) as n_records\n\nfrom \"jaffle_shop\".\"dbt_alice\".\"stg_customers\"\nwhere customer_id is not null\ngroup by customer_id\nhaving count(*) > 1\n\n\n",
|
|
"extra_ctes_injected": true,
|
|
"extra_ctes": [],
|
|
"relation_name": null,
|
|
"column_name": "customer_id"
|
|
},
|
|
"test.jaffle_shop.not_null_stg_customers_customer_id.e2cfb1f9aa": {
|
|
"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}",
|
|
"test_metadata": {
|
|
"name": "not_null",
|
|
"kwargs": {
|
|
"column_name": "customer_id",
|
|
"model": "{{ get_where_subquery(ref('stg_customers')) }}"
|
|
},
|
|
"namespace": null
|
|
},
|
|
"compiled": true,
|
|
"resource_type": "test",
|
|
"depends_on": {
|
|
"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"],
|
|
"nodes": ["model.jaffle_shop.stg_customers"]
|
|
},
|
|
"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": "jaffle_shop",
|
|
"schema": "dbt_alice_dbt_test__audit",
|
|
"fqn": ["jaffle_shop", "schema_test", "not_null_stg_customers_customer_id"],
|
|
"unique_id": "test.jaffle_shop.not_null_stg_customers_customer_id.e2cfb1f9aa",
|
|
"package_name": "jaffle_shop",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop",
|
|
"path": "schema_test/not_null_stg_customers_customer_id.sql",
|
|
"original_file_path": "models/staging/schema.yml",
|
|
"name": "not_null_stg_customers_customer_id",
|
|
"alias": "not_null_stg_customers_customer_id",
|
|
"checksum": {
|
|
"name": "none",
|
|
"checksum": ""
|
|
},
|
|
"tags": ["schema"],
|
|
"refs": [
|
|
["stg_customers"]
|
|
],
|
|
"sources": [],
|
|
"description": "",
|
|
"columns": {},
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"compiled_path": "target/compiled/jaffle_shop/models/staging/schema.yml/schema_test/not_null_stg_customers_customer_id.sql",
|
|
"build_path": null,
|
|
"deferred": false,
|
|
"unrendered_config": {},
|
|
"created_at": 1636667781,
|
|
"compiled_sql": "\n \n \n\nselect *\nfrom \"jaffle_shop\".\"dbt_alice\".\"stg_customers\"\nwhere customer_id is null\n\n\n",
|
|
"extra_ctes_injected": true,
|
|
"extra_ctes": [],
|
|
"relation_name": null,
|
|
"column_name": "customer_id"
|
|
},
|
|
"test.jaffle_shop.unique_stg_orders_order_id.e3b841c71a": {
|
|
"raw_sql": "{{ test_unique(**_dbt_schema_test_kwargs) }}",
|
|
"test_metadata": {
|
|
"name": "unique",
|
|
"kwargs": {
|
|
"column_name": "order_id",
|
|
"model": "{{ get_where_subquery(ref('stg_orders')) }}"
|
|
},
|
|
"namespace": null
|
|
},
|
|
"compiled": true,
|
|
"resource_type": "test",
|
|
"depends_on": {
|
|
"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"],
|
|
"nodes": ["model.jaffle_shop.stg_orders"]
|
|
},
|
|
"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": "jaffle_shop",
|
|
"schema": "dbt_alice_dbt_test__audit",
|
|
"fqn": ["jaffle_shop", "schema_test", "unique_stg_orders_order_id"],
|
|
"unique_id": "test.jaffle_shop.unique_stg_orders_order_id.e3b841c71a",
|
|
"package_name": "jaffle_shop",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop",
|
|
"path": "schema_test/unique_stg_orders_order_id.sql",
|
|
"original_file_path": "models/staging/schema.yml",
|
|
"name": "unique_stg_orders_order_id",
|
|
"alias": "unique_stg_orders_order_id",
|
|
"checksum": {
|
|
"name": "none",
|
|
"checksum": ""
|
|
},
|
|
"tags": ["schema"],
|
|
"refs": [
|
|
["stg_orders"]
|
|
],
|
|
"sources": [],
|
|
"description": "",
|
|
"columns": {},
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"compiled_path": "target/compiled/jaffle_shop/models/staging/schema.yml/schema_test/unique_stg_orders_order_id.sql",
|
|
"build_path": null,
|
|
"deferred": false,
|
|
"unrendered_config": {},
|
|
"created_at": 1636667781,
|
|
"compiled_sql": "\n \n \n\nselect\n order_id as unique_field,\n count(*) as n_records\n\nfrom \"jaffle_shop\".\"dbt_alice\".\"stg_orders\"\nwhere order_id is not null\ngroup by order_id\nhaving count(*) > 1\n\n\n",
|
|
"extra_ctes_injected": true,
|
|
"extra_ctes": [],
|
|
"relation_name": null,
|
|
"column_name": "order_id"
|
|
},
|
|
"test.jaffle_shop.not_null_stg_orders_order_id.81cfe2fe64": {
|
|
"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}",
|
|
"test_metadata": {
|
|
"name": "not_null",
|
|
"kwargs": {
|
|
"column_name": "order_id",
|
|
"model": "{{ get_where_subquery(ref('stg_orders')) }}"
|
|
},
|
|
"namespace": null
|
|
},
|
|
"compiled": true,
|
|
"resource_type": "test",
|
|
"depends_on": {
|
|
"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"],
|
|
"nodes": ["model.jaffle_shop.stg_orders"]
|
|
},
|
|
"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": "jaffle_shop",
|
|
"schema": "dbt_alice_dbt_test__audit",
|
|
"fqn": ["jaffle_shop", "schema_test", "not_null_stg_orders_order_id"],
|
|
"unique_id": "test.jaffle_shop.not_null_stg_orders_order_id.81cfe2fe64",
|
|
"package_name": "jaffle_shop",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop",
|
|
"path": "schema_test/not_null_stg_orders_order_id.sql",
|
|
"original_file_path": "models/staging/schema.yml",
|
|
"name": "not_null_stg_orders_order_id",
|
|
"alias": "not_null_stg_orders_order_id",
|
|
"checksum": {
|
|
"name": "none",
|
|
"checksum": ""
|
|
},
|
|
"tags": ["schema"],
|
|
"refs": [
|
|
["stg_orders"]
|
|
],
|
|
"sources": [],
|
|
"description": "",
|
|
"columns": {},
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"compiled_path": "target/compiled/jaffle_shop/models/staging/schema.yml/schema_test/not_null_stg_orders_order_id.sql",
|
|
"build_path": null,
|
|
"deferred": false,
|
|
"unrendered_config": {},
|
|
"created_at": 1636667781,
|
|
"compiled_sql": "\n \n \n\nselect *\nfrom \"jaffle_shop\".\"dbt_alice\".\"stg_orders\"\nwhere order_id is null\n\n\n",
|
|
"extra_ctes_injected": true,
|
|
"extra_ctes": [],
|
|
"relation_name": null,
|
|
"column_name": "order_id"
|
|
},
|
|
"test.jaffle_shop.accepted_values_stg_orders_status__placed__shipped__completed__return_pending__returned.080fb20aad": {
|
|
"raw_sql": "{{ test_accepted_values(**_dbt_schema_test_kwargs) }}{{ config(alias=\"accepted_values_stg_orders_4f514bf94b77b7ea437830eec4421c58\") }}",
|
|
"test_metadata": {
|
|
"name": "accepted_values",
|
|
"kwargs": {
|
|
"values": ["placed", "shipped", "completed", "return_pending", "returned"],
|
|
"column_name": "status",
|
|
"model": "{{ get_where_subquery(ref('stg_orders')) }}"
|
|
},
|
|
"namespace": null
|
|
},
|
|
"compiled": true,
|
|
"resource_type": "test",
|
|
"depends_on": {
|
|
"macros": ["macro.dbt.test_accepted_values", "macro.dbt.default__test_accepted_values", "macro.dbt.get_where_subquery"],
|
|
"nodes": ["model.jaffle_shop.stg_orders"]
|
|
},
|
|
"config": {
|
|
"enabled": true,
|
|
"alias": "accepted_values_stg_orders_4f514bf94b77b7ea437830eec4421c58",
|
|
"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": "jaffle_shop",
|
|
"schema": "dbt_alice_dbt_test__audit",
|
|
"fqn": ["jaffle_shop", "schema_test", "accepted_values_stg_orders_status__placed__shipped__completed__return_pending__returned"],
|
|
"unique_id": "test.jaffle_shop.accepted_values_stg_orders_status__placed__shipped__completed__return_pending__returned.080fb20aad",
|
|
"package_name": "jaffle_shop",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop",
|
|
"path": "schema_test/accepted_values_stg_orders_4f514bf94b77b7ea437830eec4421c58.sql",
|
|
"original_file_path": "models/staging/schema.yml",
|
|
"name": "accepted_values_stg_orders_status__placed__shipped__completed__return_pending__returned",
|
|
"alias": "accepted_values_stg_orders_4f514bf94b77b7ea437830eec4421c58",
|
|
"checksum": {
|
|
"name": "none",
|
|
"checksum": ""
|
|
},
|
|
"tags": ["schema"],
|
|
"refs": [
|
|
["stg_orders"]
|
|
],
|
|
"sources": [],
|
|
"description": "",
|
|
"columns": {},
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"compiled_path": "target/compiled/jaffle_shop/models/staging/schema.yml/schema_test/accepted_values_stg_orders_4f514bf94b77b7ea437830eec4421c58.sql",
|
|
"build_path": null,
|
|
"deferred": false,
|
|
"unrendered_config": {
|
|
"alias": "accepted_values_stg_orders_4f514bf94b77b7ea437830eec4421c58"
|
|
},
|
|
"created_at": 1636667781,
|
|
"compiled_sql": "\n \n \n\nwith all_values as (\n\n select\n status as value_field,\n count(*) as n_records\n\n from \"jaffle_shop\".\"dbt_alice\".\"stg_orders\"\n group by status\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n 'placed','shipped','completed','return_pending','returned'\n)\n\n\n",
|
|
"extra_ctes_injected": true,
|
|
"extra_ctes": [],
|
|
"relation_name": null,
|
|
"column_name": "status"
|
|
},
|
|
"test.jaffle_shop.unique_stg_payments_payment_id.3744510712": {
|
|
"raw_sql": "{{ test_unique(**_dbt_schema_test_kwargs) }}",
|
|
"test_metadata": {
|
|
"name": "unique",
|
|
"kwargs": {
|
|
"column_name": "payment_id",
|
|
"model": "{{ get_where_subquery(ref('stg_payments')) }}"
|
|
},
|
|
"namespace": null
|
|
},
|
|
"compiled": true,
|
|
"resource_type": "test",
|
|
"depends_on": {
|
|
"macros": ["macro.dbt.test_unique", "macro.dbt.get_where_subquery"],
|
|
"nodes": ["model.jaffle_shop.stg_payments"]
|
|
},
|
|
"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": "jaffle_shop",
|
|
"schema": "dbt_alice_dbt_test__audit",
|
|
"fqn": ["jaffle_shop", "schema_test", "unique_stg_payments_payment_id"],
|
|
"unique_id": "test.jaffle_shop.unique_stg_payments_payment_id.3744510712",
|
|
"package_name": "jaffle_shop",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop",
|
|
"path": "schema_test/unique_stg_payments_payment_id.sql",
|
|
"original_file_path": "models/staging/schema.yml",
|
|
"name": "unique_stg_payments_payment_id",
|
|
"alias": "unique_stg_payments_payment_id",
|
|
"checksum": {
|
|
"name": "none",
|
|
"checksum": ""
|
|
},
|
|
"tags": ["schema"],
|
|
"refs": [
|
|
["stg_payments"]
|
|
],
|
|
"sources": [],
|
|
"description": "",
|
|
"columns": {},
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"compiled_path": "target/compiled/jaffle_shop/models/staging/schema.yml/schema_test/unique_stg_payments_payment_id.sql",
|
|
"build_path": null,
|
|
"deferred": false,
|
|
"unrendered_config": {},
|
|
"created_at": 1636667781,
|
|
"compiled_sql": "\n \n \n\nselect\n payment_id as unique_field,\n count(*) as n_records\n\nfrom \"jaffle_shop\".\"dbt_alice\".\"stg_payments\"\nwhere payment_id is not null\ngroup by payment_id\nhaving count(*) > 1\n\n\n",
|
|
"extra_ctes_injected": true,
|
|
"extra_ctes": [],
|
|
"relation_name": null,
|
|
"column_name": "payment_id"
|
|
},
|
|
"test.jaffle_shop.not_null_stg_payments_payment_id.c19cc50075": {
|
|
"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}",
|
|
"test_metadata": {
|
|
"name": "not_null",
|
|
"kwargs": {
|
|
"column_name": "payment_id",
|
|
"model": "{{ get_where_subquery(ref('stg_payments')) }}"
|
|
},
|
|
"namespace": null
|
|
},
|
|
"compiled": true,
|
|
"resource_type": "test",
|
|
"depends_on": {
|
|
"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"],
|
|
"nodes": ["model.jaffle_shop.stg_payments"]
|
|
},
|
|
"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": "jaffle_shop",
|
|
"schema": "dbt_alice_dbt_test__audit",
|
|
"fqn": ["jaffle_shop", "schema_test", "not_null_stg_payments_payment_id"],
|
|
"unique_id": "test.jaffle_shop.not_null_stg_payments_payment_id.c19cc50075",
|
|
"package_name": "jaffle_shop",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop",
|
|
"path": "schema_test/not_null_stg_payments_payment_id.sql",
|
|
"original_file_path": "models/staging/schema.yml",
|
|
"name": "not_null_stg_payments_payment_id",
|
|
"alias": "not_null_stg_payments_payment_id",
|
|
"checksum": {
|
|
"name": "none",
|
|
"checksum": ""
|
|
},
|
|
"tags": ["schema"],
|
|
"refs": [
|
|
["stg_payments"]
|
|
],
|
|
"sources": [],
|
|
"description": "",
|
|
"columns": {},
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"compiled_path": "target/compiled/jaffle_shop/models/staging/schema.yml/schema_test/not_null_stg_payments_payment_id.sql",
|
|
"build_path": null,
|
|
"deferred": false,
|
|
"unrendered_config": {},
|
|
"created_at": 1636667781,
|
|
"compiled_sql": "\n \n \n\nselect *\nfrom \"jaffle_shop\".\"dbt_alice\".\"stg_payments\"\nwhere payment_id is null\n\n\n",
|
|
"extra_ctes_injected": true,
|
|
"extra_ctes": [],
|
|
"relation_name": null,
|
|
"column_name": "payment_id"
|
|
},
|
|
"test.jaffle_shop.accepted_values_stg_payments_payment_method__credit_card__coupon__bank_transfer__gift_card.3c3820f278": {
|
|
"raw_sql": "{{ test_accepted_values(**_dbt_schema_test_kwargs) }}{{ config(alias=\"accepted_values_stg_payments_c7909fb19b1f0177c2bf99c7912f06ef\") }}",
|
|
"test_metadata": {
|
|
"name": "accepted_values",
|
|
"kwargs": {
|
|
"values": ["credit_card", "coupon", "bank_transfer", "gift_card"],
|
|
"column_name": "payment_method",
|
|
"model": "{{ get_where_subquery(ref('stg_payments')) }}"
|
|
},
|
|
"namespace": null
|
|
},
|
|
"compiled": true,
|
|
"resource_type": "test",
|
|
"depends_on": {
|
|
"macros": ["macro.dbt.test_accepted_values", "macro.dbt.default__test_accepted_values", "macro.dbt.get_where_subquery"],
|
|
"nodes": ["model.jaffle_shop.stg_payments"]
|
|
},
|
|
"config": {
|
|
"enabled": true,
|
|
"alias": "accepted_values_stg_payments_c7909fb19b1f0177c2bf99c7912f06ef",
|
|
"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": "jaffle_shop",
|
|
"schema": "dbt_alice_dbt_test__audit",
|
|
"fqn": ["jaffle_shop", "schema_test", "accepted_values_stg_payments_payment_method__credit_card__coupon__bank_transfer__gift_card"],
|
|
"unique_id": "test.jaffle_shop.accepted_values_stg_payments_payment_method__credit_card__coupon__bank_transfer__gift_card.3c3820f278",
|
|
"package_name": "jaffle_shop",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop",
|
|
"path": "schema_test/accepted_values_stg_payments_c7909fb19b1f0177c2bf99c7912f06ef.sql",
|
|
"original_file_path": "models/staging/schema.yml",
|
|
"name": "accepted_values_stg_payments_payment_method__credit_card__coupon__bank_transfer__gift_card",
|
|
"alias": "accepted_values_stg_payments_c7909fb19b1f0177c2bf99c7912f06ef",
|
|
"checksum": {
|
|
"name": "none",
|
|
"checksum": ""
|
|
},
|
|
"tags": ["schema"],
|
|
"refs": [
|
|
["stg_payments"]
|
|
],
|
|
"sources": [],
|
|
"description": "",
|
|
"columns": {},
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"compiled_path": "target/compiled/jaffle_shop/models/staging/schema.yml/schema_test/accepted_values_stg_payments_c7909fb19b1f0177c2bf99c7912f06ef.sql",
|
|
"build_path": null,
|
|
"deferred": false,
|
|
"unrendered_config": {
|
|
"alias": "accepted_values_stg_payments_c7909fb19b1f0177c2bf99c7912f06ef"
|
|
},
|
|
"created_at": 1636667781,
|
|
"compiled_sql": "\n \n \n\nwith all_values as (\n\n select\n payment_method as value_field,\n count(*) as n_records\n\n from \"jaffle_shop\".\"dbt_alice\".\"stg_payments\"\n group by payment_method\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n 'credit_card','coupon','bank_transfer','gift_card'\n)\n\n\n",
|
|
"extra_ctes_injected": true,
|
|
"extra_ctes": [],
|
|
"relation_name": null,
|
|
"column_name": "payment_method"
|
|
}
|
|
},
|
|
"sources": {},
|
|
"macros": {
|
|
"macro.dbt_redshift.redshift__get_base_catalog": {
|
|
"unique_id": "macro.dbt_redshift.redshift__get_base_catalog",
|
|
"package_name": "dbt_redshift",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/redshift",
|
|
"path": "macros/catalog.sql",
|
|
"original_file_path": "macros/catalog.sql",
|
|
"name": "redshift__get_base_catalog",
|
|
"macro_sql": "{% macro redshift__get_base_catalog(information_schema, schemas) -%}\n {%- call statement('base_catalog', fetch_result=True) -%}\n {% set database = information_schema.database %}\n {{ adapter.verify_database(database) }}\n\n with late_binding as (\n select\n '{{ database }}'::varchar as table_database,\n table_schema,\n table_name,\n 'LATE BINDING VIEW'::varchar as table_type,\n null::text as table_comment,\n\n column_name,\n column_index,\n column_type,\n null::text as column_comment\n from pg_get_late_binding_view_cols()\n cols(table_schema name, table_name name, column_name name,\n column_type varchar,\n column_index int)\n order by \"column_index\"\n ),\n\n early_binding as (\n select\n '{{ database }}'::varchar 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\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 where (\n {%- for schema in schemas -%}\n upper(sch.nspname) = upper('{{ schema }}'){%- if not loop.last %} or {% endif -%}\n {%- endfor -%}\n )\n and tbl.relkind in ('r', 'v', 'f', 'p')\n and col.attnum > 0\n and not col.attisdropped\n ),\n\n table_owners as (\n\n select\n '{{ database }}'::varchar as table_database,\n schemaname as table_schema,\n tablename as table_name,\n tableowner as table_owner\n\n from pg_tables\n\n union all\n\n select\n '{{ database }}'::varchar as table_database,\n schemaname as table_schema,\n viewname as table_name,\n viewowner as table_owner\n\n from pg_views\n\n ),\n\n unioned as (\n\n select *\n from early_binding\n\n union all\n\n select *\n from late_binding\n\n )\n\n select *,\n table_database || '.' || table_schema || '.' || table_name as table_id\n\n from unioned\n join table_owners using (table_database, table_schema, table_name)\n\n where (\n {%- for schema in schemas -%}\n upper(table_schema) = upper('{{ schema }}'){%- if not loop.last %} or {% endif -%}\n {%- endfor -%}\n )\n\n order by \"column_index\"\n {%- endcall -%}\n\n {{ return(load_result('base_catalog').table) }}\n{%- endmacro %}",
|
|
"resource_type": "macro",
|
|
"tags": [],
|
|
"depends_on": {
|
|
"macros": ["macro.dbt.statement"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_redshift.redshift__get_extended_catalog": {
|
|
"unique_id": "macro.dbt_redshift.redshift__get_extended_catalog",
|
|
"package_name": "dbt_redshift",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/redshift",
|
|
"path": "macros/catalog.sql",
|
|
"original_file_path": "macros/catalog.sql",
|
|
"name": "redshift__get_extended_catalog",
|
|
"macro_sql": "{% macro redshift__get_extended_catalog(schemas) %}\n {%- call statement('extended_catalog', fetch_result=True) -%}\n\n select\n \"database\" || '.' || \"schema\" || '.' || \"table\" as table_id,\n\n 'Encoded'::text as \"stats:encoded:label\",\n encoded as \"stats:encoded:value\",\n 'Indicates whether any column in the table has compression encoding defined.'::text as \"stats:encoded:description\",\n true as \"stats:encoded:include\",\n\n 'Dist Style' as \"stats:diststyle:label\",\n diststyle as \"stats:diststyle:value\",\n 'Distribution style or distribution key column, if key distribution is defined.'::text as \"stats:diststyle:description\",\n true as \"stats:diststyle:include\",\n\n 'Sort Key 1' as \"stats:sortkey1:label\",\n -- handle 0xFF byte in response for interleaved sort styles\n case\n when sortkey1 like 'INTERLEAVED%' then 'INTERLEAVED'::text\n else sortkey1\n end as \"stats:sortkey1:value\",\n 'First column in the sort key.'::text as \"stats:sortkey1:description\",\n (sortkey1 is not null) as \"stats:sortkey1:include\",\n\n 'Max Varchar' as \"stats:max_varchar:label\",\n max_varchar as \"stats:max_varchar:value\",\n 'Size of the largest column that uses a VARCHAR data type.'::text as \"stats:max_varchar:description\",\n true as \"stats:max_varchar:include\",\n\n -- exclude this, as the data is strangely returned with null-byte characters\n 'Sort Key 1 Encoding' as \"stats:sortkey1_enc:label\",\n sortkey1_enc as \"stats:sortkey1_enc:value\",\n 'Compression encoding of the first column in the sort key.' as \"stats:sortkey1_enc:description\",\n false as \"stats:sortkey1_enc:include\",\n\n '# Sort Keys' as \"stats:sortkey_num:label\",\n sortkey_num as \"stats:sortkey_num:value\",\n 'Number of columns defined as sort keys.' as \"stats:sortkey_num:description\",\n (sortkey_num > 0) as \"stats:sortkey_num:include\",\n\n 'Approximate Size' as \"stats:size:label\",\n size * 1000000 as \"stats:size:value\",\n 'Approximate size of the table, calculated from a count of 1MB blocks'::text as \"stats:size:description\",\n true as \"stats:size:include\",\n\n 'Disk Utilization' as \"stats:pct_used:label\",\n pct_used / 100.0 as \"stats:pct_used:value\",\n 'Percent of available space that is used by the table.'::text as \"stats:pct_used:description\",\n true as \"stats:pct_used:include\",\n\n 'Unsorted %' as \"stats:unsorted:label\",\n unsorted / 100.0 as \"stats:unsorted:value\",\n 'Percent of unsorted rows in the table.'::text as \"stats:unsorted:description\",\n (unsorted is not null) as \"stats:unsorted:include\",\n\n 'Stats Off' as \"stats:stats_off:label\",\n stats_off as \"stats:stats_off:value\",\n 'Number that indicates how stale the table statistics are; 0 is current, 100 is out of date.'::text as \"stats:stats_off:description\",\n true as \"stats:stats_off:include\",\n\n 'Approximate Row Count' as \"stats:rows:label\",\n tbl_rows as \"stats:rows:value\",\n 'Approximate number of rows in the table. This value includes rows marked for deletion, but not yet vacuumed.'::text as \"stats:rows:description\",\n true as \"stats:rows:include\",\n\n 'Sort Key Skew' as \"stats:skew_sortkey1:label\",\n skew_sortkey1 as \"stats:skew_sortkey1:value\",\n 'Ratio of the size of the largest non-sort key column to the size of the first column of the sort key.'::text as \"stats:skew_sortkey1:description\",\n (skew_sortkey1 is not null) as \"stats:skew_sortkey1:include\",\n\n 'Skew Rows' as \"stats:skew_rows:label\",\n skew_rows as \"stats:skew_rows:value\",\n 'Ratio of the number of rows in the slice with the most rows to the number of rows in the slice with the fewest rows.'::text as \"stats:skew_rows:description\",\n (skew_rows is not null) as \"stats:skew_rows:include\"\n\n from svv_table_info\n where (\n {%- for schema in schemas -%}\n upper(schema) = upper('{{ schema }}'){%- if not loop.last %} or {% endif -%}\n {%- endfor -%}\n )\n\n {%- endcall -%}\n\n {{ return(load_result('extended_catalog').table) }}\n\n{% endmacro %}",
|
|
"resource_type": "macro",
|
|
"tags": [],
|
|
"depends_on": {
|
|
"macros": ["macro.dbt.statement"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_redshift.redshift__can_select_from": {
|
|
"unique_id": "macro.dbt_redshift.redshift__can_select_from",
|
|
"package_name": "dbt_redshift",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/redshift",
|
|
"path": "macros/catalog.sql",
|
|
"original_file_path": "macros/catalog.sql",
|
|
"name": "redshift__can_select_from",
|
|
"macro_sql": "{% macro redshift__can_select_from(table_name) %}\n\n {%- call statement('has_table_privilege', fetch_result=True) -%}\n\n select has_table_privilege(current_user, '{{ table_name }}', 'SELECT') as can_select\n\n {%- endcall -%}\n\n {% set can_select = load_result('has_table_privilege').table[0]['can_select'] %}\n {{ return(can_select) }}\n\n{% endmacro %}",
|
|
"resource_type": "macro",
|
|
"tags": [],
|
|
"depends_on": {
|
|
"macros": ["macro.dbt.statement"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_redshift.redshift__no_svv_table_info_warning": {
|
|
"unique_id": "macro.dbt_redshift.redshift__no_svv_table_info_warning",
|
|
"package_name": "dbt_redshift",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/redshift",
|
|
"path": "macros/catalog.sql",
|
|
"original_file_path": "macros/catalog.sql",
|
|
"name": "redshift__no_svv_table_info_warning",
|
|
"macro_sql": "{% macro redshift__no_svv_table_info_warning() %}\n\n {% set msg %}\n\n Warning: The database user \"{{ target.user }}\" has insufficient permissions to\n query the \"svv_table_info\" table. Please grant SELECT permissions on this table\n to the \"{{ target.user }}\" user to fetch extended table details from Redshift.\n\n {% endset %}\n\n {{ log(msg, info=True) }}\n\n{% endmacro %}",
|
|
"resource_type": "macro",
|
|
"tags": [],
|
|
"depends_on": {
|
|
"macros": []
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_redshift.redshift__get_catalog": {
|
|
"unique_id": "macro.dbt_redshift.redshift__get_catalog",
|
|
"package_name": "dbt_redshift",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/redshift",
|
|
"path": "macros/catalog.sql",
|
|
"original_file_path": "macros/catalog.sql",
|
|
"name": "redshift__get_catalog",
|
|
"macro_sql": "{% macro redshift__get_catalog(information_schema, schemas) %}\n\n {#-- Compute a left-outer join in memory. Some Redshift queries are\n -- leader-only, and cannot be joined to other compute-based queries #}\n\n {% set catalog = redshift__get_base_catalog(information_schema, schemas) %}\n\n {% set select_extended = redshift__can_select_from('svv_table_info') %}\n {% if select_extended %}\n {% set extended_catalog = redshift__get_extended_catalog(schemas) %}\n {% set catalog = catalog.join(extended_catalog, 'table_id') %}\n {% else %}\n {{ redshift__no_svv_table_info_warning() }}\n {% endif %}\n\n {{ return(catalog.exclude(['table_id'])) }}\n\n{% endmacro %}",
|
|
"resource_type": "macro",
|
|
"tags": [],
|
|
"depends_on": {
|
|
"macros": ["macro.dbt_redshift.redshift__get_base_catalog", "macro.dbt_redshift.redshift__can_select_from", "macro.dbt_redshift.redshift__get_extended_catalog", "macro.dbt_redshift.redshift__no_svv_table_info_warning"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_redshift.redshift__get_relations": {
|
|
"unique_id": "macro.dbt_redshift.redshift__get_relations",
|
|
"package_name": "dbt_redshift",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/redshift",
|
|
"path": "macros/relations.sql",
|
|
"original_file_path": "macros/relations.sql",
|
|
"name": "redshift__get_relations",
|
|
"macro_sql": "{% macro redshift__get_relations () -%}\n {{ return(dbt.postgres__get_relations()) }}\n{% endmacro %}",
|
|
"resource_type": "macro",
|
|
"tags": [],
|
|
"depends_on": {
|
|
"macros": []
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_redshift.dist": {
|
|
"unique_id": "macro.dbt_redshift.dist",
|
|
"package_name": "dbt_redshift",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/redshift",
|
|
"path": "macros/adapters.sql",
|
|
"original_file_path": "macros/adapters.sql",
|
|
"name": "dist",
|
|
"macro_sql": "{% macro dist(dist) %}\n {%- if dist is not none -%}\n {%- set dist = dist.strip().lower() -%}\n\n {%- if dist in ['all', 'even'] -%}\n diststyle {{ dist }}\n {%- elif dist == \"auto\" -%}\n {%- else -%}\n diststyle key distkey ({{ dist }})\n {%- endif -%}\n\n {%- endif -%}\n{%- endmacro -%}\n\n\n",
|
|
"resource_type": "macro",
|
|
"tags": [],
|
|
"depends_on": {
|
|
"macros": []
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_redshift.sort": {
|
|
"unique_id": "macro.dbt_redshift.sort",
|
|
"package_name": "dbt_redshift",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/redshift",
|
|
"path": "macros/adapters.sql",
|
|
"original_file_path": "macros/adapters.sql",
|
|
"name": "sort",
|
|
"macro_sql": "{% macro sort(sort_type, sort) %}\n {%- if sort is not none %}\n {{ sort_type | default('compound', boolean=true) }} sortkey(\n {%- if sort is string -%}\n {%- set sort = [sort] -%}\n {%- endif -%}\n {%- for item in sort -%}\n {{ item }}\n {%- if not loop.last -%},{%- endif -%}\n {%- endfor -%}\n )\n {%- endif %}\n{%- endmacro -%}\n\n\n",
|
|
"resource_type": "macro",
|
|
"tags": [],
|
|
"depends_on": {
|
|
"macros": []
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_redshift.redshift__create_table_as": {
|
|
"unique_id": "macro.dbt_redshift.redshift__create_table_as",
|
|
"package_name": "dbt_redshift",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/redshift",
|
|
"path": "macros/adapters.sql",
|
|
"original_file_path": "macros/adapters.sql",
|
|
"name": "redshift__create_table_as",
|
|
"macro_sql": "{% macro redshift__create_table_as(temporary, relation, sql) -%}\n\n {%- set _dist = config.get('dist') -%}\n {%- set _sort_type = config.get(\n 'sort_type',\n validator=validation.any['compound', 'interleaved']) -%}\n {%- set _sort = config.get(\n 'sort',\n validator=validation.any[list, basestring]) -%}\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 {{ dist(_dist) }}\n {{ sort(_sort_type, _sort) }}\n as (\n {{ sql }}\n );\n{%- endmacro %}",
|
|
"resource_type": "macro",
|
|
"tags": [],
|
|
"depends_on": {
|
|
"macros": ["macro.dbt_redshift.dist", "macro.dbt_redshift.sort"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_redshift.redshift__create_view_as": {
|
|
"unique_id": "macro.dbt_redshift.redshift__create_view_as",
|
|
"package_name": "dbt_redshift",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/redshift",
|
|
"path": "macros/adapters.sql",
|
|
"original_file_path": "macros/adapters.sql",
|
|
"name": "redshift__create_view_as",
|
|
"macro_sql": "{% macro redshift__create_view_as(relation, sql) -%}\n {%- set binding = config.get('bind', default=True) -%}\n\n {% set bind_qualifier = '' if binding else 'with no schema binding' %}\n {%- set sql_header = config.get('sql_header', none) -%}\n\n {{ sql_header if sql_header is not none }}\n\n create view {{ relation }} as (\n {{ sql }}\n ) {{ bind_qualifier }};\n{% endmacro %}",
|
|
"resource_type": "macro",
|
|
"tags": [],
|
|
"depends_on": {
|
|
"macros": []
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_redshift.redshift__create_schema": {
|
|
"unique_id": "macro.dbt_redshift.redshift__create_schema",
|
|
"package_name": "dbt_redshift",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/redshift",
|
|
"path": "macros/adapters.sql",
|
|
"original_file_path": "macros/adapters.sql",
|
|
"name": "redshift__create_schema",
|
|
"macro_sql": "{% macro redshift__create_schema(relation) -%}\n {{ postgres__create_schema(relation) }}\n{% endmacro %}",
|
|
"resource_type": "macro",
|
|
"tags": [],
|
|
"depends_on": {
|
|
"macros": ["macro.dbt_postgres.postgres__create_schema"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_redshift.redshift__drop_schema": {
|
|
"unique_id": "macro.dbt_redshift.redshift__drop_schema",
|
|
"package_name": "dbt_redshift",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/redshift",
|
|
"path": "macros/adapters.sql",
|
|
"original_file_path": "macros/adapters.sql",
|
|
"name": "redshift__drop_schema",
|
|
"macro_sql": "{% macro redshift__drop_schema(relation) -%}\n {{ postgres__drop_schema(relation) }}\n{% endmacro %}",
|
|
"resource_type": "macro",
|
|
"tags": [],
|
|
"depends_on": {
|
|
"macros": ["macro.dbt_postgres.postgres__drop_schema"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_redshift.redshift__get_columns_in_relation": {
|
|
"unique_id": "macro.dbt_redshift.redshift__get_columns_in_relation",
|
|
"package_name": "dbt_redshift",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/redshift",
|
|
"path": "macros/adapters.sql",
|
|
"original_file_path": "macros/adapters.sql",
|
|
"name": "redshift__get_columns_in_relation",
|
|
"macro_sql": "{% macro redshift__get_columns_in_relation(relation) -%}\n {% call statement('get_columns_in_relation', fetch_result=True) %}\n with bound_views as (\n select\n ordinal_position,\n table_schema,\n column_name,\n data_type,\n character_maximum_length,\n numeric_precision,\n numeric_scale\n\n from information_schema.\"columns\"\n where table_name = '{{ relation.identifier }}'\n ),\n\n unbound_views as (\n select\n ordinal_position,\n view_schema,\n col_name,\n case\n when col_type ilike 'character varying%' then\n 'character varying'\n when col_type ilike 'numeric%' then 'numeric'\n else col_type\n end as col_type,\n case\n when col_type like 'character%'\n then nullif(REGEXP_SUBSTR(col_type, '[0-9]+'), '')::int\n else null\n end as character_maximum_length,\n case\n when col_type like 'numeric%'\n then nullif(\n SPLIT_PART(REGEXP_SUBSTR(col_type, '[0-9,]+'), ',', 1),\n '')::int\n else null\n end as numeric_precision,\n case\n when col_type like 'numeric%'\n then nullif(\n SPLIT_PART(REGEXP_SUBSTR(col_type, '[0-9,]+'), ',', 2),\n '')::int\n else null\n end as numeric_scale\n\n from pg_get_late_binding_view_cols()\n cols(view_schema name, view_name name, col_name name,\n col_type varchar, ordinal_position int)\n where view_name = '{{ relation.identifier }}'\n ),\n\n external_views as (\n select\n columnnum,\n schemaname,\n columnname,\n case\n when external_type ilike 'character varying%' or external_type ilike 'varchar%'\n then 'character varying'\n when external_type ilike 'numeric%' then 'numeric'\n else external_type\n end as external_type,\n case\n when external_type like 'character%' or external_type like 'varchar%'\n then nullif(\n REGEXP_SUBSTR(external_type, '[0-9]+'),\n '')::int\n else null\n end as character_maximum_length,\n case\n when external_type like 'numeric%'\n then nullif(\n SPLIT_PART(REGEXP_SUBSTR(external_type, '[0-9,]+'), ',', 1),\n '')::int\n else null\n end as numeric_precision,\n case\n when external_type like 'numeric%'\n then nullif(\n SPLIT_PART(REGEXP_SUBSTR(external_type, '[0-9,]+'), ',', 2),\n '')::int\n else null\n end as numeric_scale\n from\n pg_catalog.svv_external_columns\n where\n schemaname = '{{ relation.schema }}'\n and tablename = '{{ relation.identifier }}'\n\n ),\n\n unioned as (\n select * from bound_views\n union all\n select * from unbound_views\n union all\n select * from external_views\n )\n\n select\n column_name,\n data_type,\n character_maximum_length,\n numeric_precision,\n numeric_scale\n\n from unioned\n {% if relation.schema %}\n where table_schema = '{{ relation.schema }}'\n {% endif %}\n order by ordinal_position\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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_redshift.redshift__list_relations_without_caching": {
|
|
"unique_id": "macro.dbt_redshift.redshift__list_relations_without_caching",
|
|
"package_name": "dbt_redshift",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/redshift",
|
|
"path": "macros/adapters.sql",
|
|
"original_file_path": "macros/adapters.sql",
|
|
"name": "redshift__list_relations_without_caching",
|
|
"macro_sql": "{% macro redshift__list_relations_without_caching(schema_relation) %}\n {{ return(postgres__list_relations_without_caching(schema_relation)) }}\n{% endmacro %}",
|
|
"resource_type": "macro",
|
|
"tags": [],
|
|
"depends_on": {
|
|
"macros": ["macro.dbt_postgres.postgres__list_relations_without_caching"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_redshift.redshift__information_schema_name": {
|
|
"unique_id": "macro.dbt_redshift.redshift__information_schema_name",
|
|
"package_name": "dbt_redshift",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/redshift",
|
|
"path": "macros/adapters.sql",
|
|
"original_file_path": "macros/adapters.sql",
|
|
"name": "redshift__information_schema_name",
|
|
"macro_sql": "{% macro redshift__information_schema_name(database) -%}\n {{ return(postgres__information_schema_name(database)) }}\n{%- endmacro %}",
|
|
"resource_type": "macro",
|
|
"tags": [],
|
|
"depends_on": {
|
|
"macros": ["macro.dbt_postgres.postgres__information_schema_name"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_redshift.redshift__list_schemas": {
|
|
"unique_id": "macro.dbt_redshift.redshift__list_schemas",
|
|
"package_name": "dbt_redshift",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/redshift",
|
|
"path": "macros/adapters.sql",
|
|
"original_file_path": "macros/adapters.sql",
|
|
"name": "redshift__list_schemas",
|
|
"macro_sql": "{% macro redshift__list_schemas(database) -%}\n {{ return(postgres__list_schemas(database)) }}\n{%- endmacro %}",
|
|
"resource_type": "macro",
|
|
"tags": [],
|
|
"depends_on": {
|
|
"macros": ["macro.dbt_postgres.postgres__list_schemas"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_redshift.redshift__check_schema_exists": {
|
|
"unique_id": "macro.dbt_redshift.redshift__check_schema_exists",
|
|
"package_name": "dbt_redshift",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/redshift",
|
|
"path": "macros/adapters.sql",
|
|
"original_file_path": "macros/adapters.sql",
|
|
"name": "redshift__check_schema_exists",
|
|
"macro_sql": "{% macro redshift__check_schema_exists(information_schema, schema) -%}\n {{ return(postgres__check_schema_exists(information_schema, schema)) }}\n{%- endmacro %}",
|
|
"resource_type": "macro",
|
|
"tags": [],
|
|
"depends_on": {
|
|
"macros": ["macro.dbt_postgres.postgres__check_schema_exists"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_redshift.redshift__current_timestamp": {
|
|
"unique_id": "macro.dbt_redshift.redshift__current_timestamp",
|
|
"package_name": "dbt_redshift",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/redshift",
|
|
"path": "macros/adapters.sql",
|
|
"original_file_path": "macros/adapters.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": 1636667781
|
|
},
|
|
"macro.dbt_redshift.redshift__snapshot_get_time": {
|
|
"unique_id": "macro.dbt_redshift.redshift__snapshot_get_time",
|
|
"package_name": "dbt_redshift",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/redshift",
|
|
"path": "macros/adapters.sql",
|
|
"original_file_path": "macros/adapters.sql",
|
|
"name": "redshift__snapshot_get_time",
|
|
"macro_sql": "{% macro redshift__snapshot_get_time() -%}\n {{ current_timestamp() }}::timestamp\n{%- endmacro %}",
|
|
"resource_type": "macro",
|
|
"tags": [],
|
|
"depends_on": {
|
|
"macros": ["macro.dbt.current_timestamp"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_redshift.redshift__snapshot_string_as_time": {
|
|
"unique_id": "macro.dbt_redshift.redshift__snapshot_string_as_time",
|
|
"package_name": "dbt_redshift",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/redshift",
|
|
"path": "macros/adapters.sql",
|
|
"original_file_path": "macros/adapters.sql",
|
|
"name": "redshift__snapshot_string_as_time",
|
|
"macro_sql": "{% macro redshift__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": 1636667781
|
|
},
|
|
"macro.dbt_redshift.redshift__make_temp_relation": {
|
|
"unique_id": "macro.dbt_redshift.redshift__make_temp_relation",
|
|
"package_name": "dbt_redshift",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/redshift",
|
|
"path": "macros/adapters.sql",
|
|
"original_file_path": "macros/adapters.sql",
|
|
"name": "redshift__make_temp_relation",
|
|
"macro_sql": "{% macro redshift__make_temp_relation(base_relation, suffix) %}\n {% do return(postgres__make_temp_relation(base_relation, suffix)) %}\n{% endmacro %}",
|
|
"resource_type": "macro",
|
|
"tags": [],
|
|
"depends_on": {
|
|
"macros": ["macro.dbt_postgres.postgres__make_temp_relation"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_redshift.redshift__persist_docs": {
|
|
"unique_id": "macro.dbt_redshift.redshift__persist_docs",
|
|
"package_name": "dbt_redshift",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/redshift",
|
|
"path": "macros/adapters.sql",
|
|
"original_file_path": "macros/adapters.sql",
|
|
"name": "redshift__persist_docs",
|
|
"macro_sql": "{% macro redshift__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 {# Override: do not set column comments for LBVs #}\n {% set is_lbv = config.get('materialized') == 'view' and config.get('bind') == false %}\n {% if for_columns and config.persist_column_docs() and model.columns and not is_lbv %}\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": 1636667781
|
|
},
|
|
"macro.dbt_redshift.redshift__alter_relation_comment": {
|
|
"unique_id": "macro.dbt_redshift.redshift__alter_relation_comment",
|
|
"package_name": "dbt_redshift",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/redshift",
|
|
"path": "macros/adapters.sql",
|
|
"original_file_path": "macros/adapters.sql",
|
|
"name": "redshift__alter_relation_comment",
|
|
"macro_sql": "{% macro redshift__alter_relation_comment(relation, comment) %}\n {% do return(postgres__alter_relation_comment(relation, comment)) %}\n{% endmacro %}",
|
|
"resource_type": "macro",
|
|
"tags": [],
|
|
"depends_on": {
|
|
"macros": ["macro.dbt_postgres.postgres__alter_relation_comment"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_redshift.redshift__alter_column_comment": {
|
|
"unique_id": "macro.dbt_redshift.redshift__alter_column_comment",
|
|
"package_name": "dbt_redshift",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/redshift",
|
|
"path": "macros/adapters.sql",
|
|
"original_file_path": "macros/adapters.sql",
|
|
"name": "redshift__alter_column_comment",
|
|
"macro_sql": "{% macro redshift__alter_column_comment(relation, column_dict) %}\n {% do return(postgres__alter_column_comment(relation, column_dict)) %}\n{% endmacro %}",
|
|
"resource_type": "macro",
|
|
"tags": [],
|
|
"depends_on": {
|
|
"macros": ["macro.dbt_postgres.postgres__alter_column_comment"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_redshift.redshift__alter_relation_add_remove_columns": {
|
|
"unique_id": "macro.dbt_redshift.redshift__alter_relation_add_remove_columns",
|
|
"package_name": "dbt_redshift",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/redshift",
|
|
"path": "macros/adapters.sql",
|
|
"original_file_path": "macros/adapters.sql",
|
|
"name": "redshift__alter_relation_add_remove_columns",
|
|
"macro_sql": "{% macro redshift__alter_relation_add_remove_columns(relation, add_columns, remove_columns) %}\n \n {% if add_columns %}\n \n {% for column in add_columns %}\n {% set sql -%}\n alter {{ relation.type }} {{ relation }} add column {{ column.name }} {{ column.data_type }}\n {% endset %}\n {% do run_query(sql) %}\n {% endfor %}\n\n {% endif %}\n \n {% if remove_columns %}\n \n {% for column in remove_columns %}\n {% set sql -%}\n alter {{ relation.type }} {{ relation }} drop column {{ column.name }}\n {% endset %}\n {% do run_query(sql) %}\n {% endfor %}\n \n {% endif %}\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": 1636667781
|
|
},
|
|
"macro.dbt_redshift.redshift__snapshot_merge_sql": {
|
|
"unique_id": "macro.dbt_redshift.redshift__snapshot_merge_sql",
|
|
"package_name": "dbt_redshift",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/redshift",
|
|
"path": "macros/materializations/snapshot_merge.sql",
|
|
"original_file_path": "macros/materializations/snapshot_merge.sql",
|
|
"name": "redshift__snapshot_merge_sql",
|
|
"macro_sql": "{% macro redshift__snapshot_merge_sql(target, source, insert_cols) -%}\n {{ postgres__snapshot_merge_sql(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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_postgres.postgres__get_catalog": {
|
|
"unique_id": "macro.dbt_postgres.postgres__get_catalog",
|
|
"package_name": "dbt_postgres",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/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 = 'p' -- [p]ermanent table. Other values are [u]nlogged table, [t]emporary table\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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_postgres.postgres_get_relations": {
|
|
"unique_id": "macro.dbt_postgres.postgres_get_relations",
|
|
"package_name": "dbt_postgres",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/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\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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_postgres.postgres__create_table_as": {
|
|
"unique_id": "macro.dbt_postgres.postgres__create_table_as",
|
|
"package_name": "dbt_postgres",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_postgres.postgres__get_create_index_sql": {
|
|
"unique_id": "macro.dbt_postgres.postgres__get_create_index_sql",
|
|
"package_name": "dbt_postgres",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_postgres.postgres__create_schema": {
|
|
"unique_id": "macro.dbt_postgres.postgres__create_schema",
|
|
"package_name": "dbt_postgres",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_postgres.postgres__drop_schema": {
|
|
"unique_id": "macro.dbt_postgres.postgres__drop_schema",
|
|
"package_name": "dbt_postgres",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_postgres.postgres__get_columns_in_relation": {
|
|
"unique_id": "macro.dbt_postgres.postgres__get_columns_in_relation",
|
|
"package_name": "dbt_postgres",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_postgres.postgres__list_relations_without_caching": {
|
|
"unique_id": "macro.dbt_postgres.postgres__list_relations_without_caching",
|
|
"package_name": "dbt_postgres",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_postgres.postgres__information_schema_name": {
|
|
"unique_id": "macro.dbt_postgres.postgres__information_schema_name",
|
|
"package_name": "dbt_postgres",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_postgres.postgres__list_schemas": {
|
|
"unique_id": "macro.dbt_postgres.postgres__list_schemas",
|
|
"package_name": "dbt_postgres",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_postgres.postgres__check_schema_exists": {
|
|
"unique_id": "macro.dbt_postgres.postgres__check_schema_exists",
|
|
"package_name": "dbt_postgres",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_postgres.postgres__current_timestamp": {
|
|
"unique_id": "macro.dbt_postgres.postgres__current_timestamp",
|
|
"package_name": "dbt_postgres",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/postgres",
|
|
"path": "macros/adapters.sql",
|
|
"original_file_path": "macros/adapters.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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_postgres.postgres__snapshot_string_as_time": {
|
|
"unique_id": "macro.dbt_postgres.postgres__snapshot_string_as_time",
|
|
"package_name": "dbt_postgres",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/postgres",
|
|
"path": "macros/adapters.sql",
|
|
"original_file_path": "macros/adapters.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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_postgres.postgres__snapshot_get_time": {
|
|
"unique_id": "macro.dbt_postgres.postgres__snapshot_get_time",
|
|
"package_name": "dbt_postgres",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/postgres",
|
|
"path": "macros/adapters.sql",
|
|
"original_file_path": "macros/adapters.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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_postgres.postgres__make_temp_relation": {
|
|
"unique_id": "macro.dbt_postgres.postgres__make_temp_relation",
|
|
"package_name": "dbt_postgres",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/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 dt = modules.datetime.datetime.now() %}\n {% set dtstring = dt.strftime(\"%H%M%S%f\") %}\n {% set suffix_length = suffix|length + dtstring|length %}\n {% set relation_max_name_length = 63 %}\n {% if suffix_length > relation_max_name_length %}\n {% do exceptions.raise_compiler_error('Temp relation suffix is too long (' ~ suffix|length ~ ' characters). Maximum length is ' ~ (relation_max_name_length - dtstring|length) ~ ' characters.') %}\n {% endif %}\n {% set tmp_identifier = base_relation.identifier[:relation_max_name_length - suffix_length] ~ suffix ~ dtstring %}\n {% do return(base_relation.incorporate(\n path={\n \"identifier\": tmp_identifier,\n \"schema\": none,\n \"database\": none\n })) -%}\n{% endmacro %}",
|
|
"resource_type": "macro",
|
|
"tags": [],
|
|
"depends_on": {
|
|
"macros": []
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_postgres.postgres_escape_comment": {
|
|
"unique_id": "macro.dbt_postgres.postgres_escape_comment",
|
|
"package_name": "dbt_postgres",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_postgres.postgres__alter_relation_comment": {
|
|
"unique_id": "macro.dbt_postgres.postgres__alter_relation_comment",
|
|
"package_name": "dbt_postgres",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_postgres.postgres__alter_column_comment": {
|
|
"unique_id": "macro.dbt_postgres.postgres__alter_column_comment",
|
|
"package_name": "dbt_postgres",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/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 {% for column_name in column_dict %}\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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt_postgres.postgres__snapshot_merge_sql": {
|
|
"unique_id": "macro.dbt_postgres.postgres__snapshot_merge_sql",
|
|
"package_name": "dbt_postgres",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.statement": {
|
|
"unique_id": "macro.dbt.statement",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/core.sql",
|
|
"original_file_path": "macros/core.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": 1636667781
|
|
},
|
|
"macro.dbt.noop_statement": {
|
|
"unique_id": "macro.dbt.noop_statement",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/core.sql",
|
|
"original_file_path": "macros/core.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": 1636667781
|
|
},
|
|
"macro.dbt.get_test_sql": {
|
|
"unique_id": "macro.dbt.get_test_sql",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/test.sql",
|
|
"original_file_path": "macros/materializations/test.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": 1636667781
|
|
},
|
|
"macro.dbt.default__get_test_sql": {
|
|
"unique_id": "macro.dbt.default__get_test_sql",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/test.sql",
|
|
"original_file_path": "macros/materializations/test.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": 1636667781
|
|
},
|
|
"macro.dbt.materialization_test_default": {
|
|
"unique_id": "macro.dbt.materialization_test_default",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/test.sql",
|
|
"original_file_path": "macros/materializations/test.sql",
|
|
"name": "materialization_test_default",
|
|
"macro_sql": "\n\n{%- 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": 1636667781
|
|
},
|
|
"macro.dbt.run_hooks": {
|
|
"unique_id": "macro.dbt.run_hooks",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/helpers.sql",
|
|
"original_file_path": "macros/materializations/helpers.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": 1636667781
|
|
},
|
|
"macro.dbt.column_list": {
|
|
"unique_id": "macro.dbt.column_list",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/helpers.sql",
|
|
"original_file_path": "macros/materializations/helpers.sql",
|
|
"name": "column_list",
|
|
"macro_sql": "{% macro column_list(columns) %}\n {%- for col in columns %}\n {{ col.name }} {% 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": 1636667781
|
|
},
|
|
"macro.dbt.column_list_for_create_table": {
|
|
"unique_id": "macro.dbt.column_list_for_create_table",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/helpers.sql",
|
|
"original_file_path": "macros/materializations/helpers.sql",
|
|
"name": "column_list_for_create_table",
|
|
"macro_sql": "{% macro column_list_for_create_table(columns) %}\n {%- for col in columns %}\n {{ col.name }} {{ col.data_type }} {%- 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": 1636667781
|
|
},
|
|
"macro.dbt.make_hook_config": {
|
|
"unique_id": "macro.dbt.make_hook_config",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/helpers.sql",
|
|
"original_file_path": "macros/materializations/helpers.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": 1636667781
|
|
},
|
|
"macro.dbt.before_begin": {
|
|
"unique_id": "macro.dbt.before_begin",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/helpers.sql",
|
|
"original_file_path": "macros/materializations/helpers.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": 1636667781
|
|
},
|
|
"macro.dbt.in_transaction": {
|
|
"unique_id": "macro.dbt.in_transaction",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/helpers.sql",
|
|
"original_file_path": "macros/materializations/helpers.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": 1636667781
|
|
},
|
|
"macro.dbt.after_commit": {
|
|
"unique_id": "macro.dbt.after_commit",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/helpers.sql",
|
|
"original_file_path": "macros/materializations/helpers.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": 1636667781
|
|
},
|
|
"macro.dbt.drop_relation_if_exists": {
|
|
"unique_id": "macro.dbt.drop_relation_if_exists",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/helpers.sql",
|
|
"original_file_path": "macros/materializations/helpers.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": 1636667781
|
|
},
|
|
"macro.dbt.load_relation": {
|
|
"unique_id": "macro.dbt.load_relation",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/helpers.sql",
|
|
"original_file_path": "macros/materializations/helpers.sql",
|
|
"name": "load_relation",
|
|
"macro_sql": "{% macro load_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": 1636667781
|
|
},
|
|
"macro.dbt.should_full_refresh": {
|
|
"unique_id": "macro.dbt.should_full_refresh",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/helpers.sql",
|
|
"original_file_path": "macros/materializations/helpers.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": 1636667781
|
|
},
|
|
"macro.dbt.should_store_failures": {
|
|
"unique_id": "macro.dbt.should_store_failures",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/helpers.sql",
|
|
"original_file_path": "macros/materializations/helpers.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": 1636667781
|
|
},
|
|
"macro.dbt.snapshot_merge_sql": {
|
|
"unique_id": "macro.dbt.snapshot_merge_sql",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/snapshot/snapshot_merge.sql",
|
|
"original_file_path": "macros/materializations/snapshot/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_redshift.redshift__snapshot_merge_sql"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__snapshot_merge_sql": {
|
|
"unique_id": "macro.dbt.default__snapshot_merge_sql",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/snapshot/snapshot_merge.sql",
|
|
"original_file_path": "macros/materializations/snapshot/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": 1636667781
|
|
},
|
|
"macro.dbt.strategy_dispatch": {
|
|
"unique_id": "macro.dbt.strategy_dispatch",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/snapshot/strategies.sql",
|
|
"original_file_path": "macros/materializations/snapshot/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": 1636667781
|
|
},
|
|
"macro.dbt.snapshot_hash_arguments": {
|
|
"unique_id": "macro.dbt.snapshot_hash_arguments",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/snapshot/strategies.sql",
|
|
"original_file_path": "macros/materializations/snapshot/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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__snapshot_hash_arguments": {
|
|
"unique_id": "macro.dbt.default__snapshot_hash_arguments",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/snapshot/strategies.sql",
|
|
"original_file_path": "macros/materializations/snapshot/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": 1636667781
|
|
},
|
|
"macro.dbt.snapshot_get_time": {
|
|
"unique_id": "macro.dbt.snapshot_get_time",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/snapshot/strategies.sql",
|
|
"original_file_path": "macros/materializations/snapshot/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_redshift.redshift__snapshot_get_time"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__snapshot_get_time": {
|
|
"unique_id": "macro.dbt.default__snapshot_get_time",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/snapshot/strategies.sql",
|
|
"original_file_path": "macros/materializations/snapshot/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.current_timestamp"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.snapshot_timestamp_strategy": {
|
|
"unique_id": "macro.dbt.snapshot_timestamp_strategy",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/snapshot/strategies.sql",
|
|
"original_file_path": "macros/materializations/snapshot/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/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": 1636667781
|
|
},
|
|
"macro.dbt.snapshot_string_as_time": {
|
|
"unique_id": "macro.dbt.snapshot_string_as_time",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/snapshot/strategies.sql",
|
|
"original_file_path": "macros/materializations/snapshot/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_redshift.redshift__snapshot_string_as_time"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__snapshot_string_as_time": {
|
|
"unique_id": "macro.dbt.default__snapshot_string_as_time",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/snapshot/strategies.sql",
|
|
"original_file_path": "macros/materializations/snapshot/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": 1636667781
|
|
},
|
|
"macro.dbt.snapshot_check_all_get_existing_columns": {
|
|
"unique_id": "macro.dbt.snapshot_check_all_get_existing_columns",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/snapshot/strategies.sql",
|
|
"original_file_path": "macros/materializations/snapshot/strategies.sql",
|
|
"name": "snapshot_check_all_get_existing_columns",
|
|
"macro_sql": "{% macro snapshot_check_all_get_existing_columns(node, target_exists) -%}\n {%- set query_columns = get_columns_in_query(node['compiled_sql']) -%}\n {%- if not target_exists -%}\n {# no table yet -> return whatever the query does #}\n {{ return([false, query_columns]) }}\n {%- endif -%}\n {# handle any schema changes #}\n {%- set target_table = node.get('alias', node.get('name')) -%}\n {%- set target_relation = adapter.get_relation(database=node.database, schema=node.schema, identifier=target_table) -%}\n {%- set existing_cols = get_columns_in_query('select * from ' ~ target_relation) -%}\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(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": 1636667781
|
|
},
|
|
"macro.dbt.snapshot_check_strategy": {
|
|
"unique_id": "macro.dbt.snapshot_check_strategy",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/snapshot/strategies.sql",
|
|
"original_file_path": "macros/materializations/snapshot/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 \n {% set select_current_time -%}\n select {{ snapshot_get_time() }} as snapshot_start\n {%- endset %}\n\n {#-- don't access the column by name, to avoid dealing with casing issues on snowflake #}\n {%- set now = run_query(select_current_time)[0][0] -%}\n {% if now is none or now is undefined -%}\n {%- do exceptions.raise_compiler_error('Could not get a snapshot start time from the database') -%}\n {%- endif %}\n {% set updated_at = config.get('updated_at', snapshot_string_as_time(now)) %}\n\n {% set column_added = false %}\n\n {% if check_cols_config == 'all' %}\n {% set column_added, check_cols = snapshot_check_all_get_existing_columns(node, target_exists) %}\n {% elif check_cols_config is iterable and (check_cols_config | length) > 0 %}\n {% set check_cols = check_cols_config %}\n {% else %}\n {% do exceptions.raise_compiler_error(\"Invalid value for 'check_cols': \" ~ check_cols_config) %}\n {% endif %}\n\n {%- set row_changed_expr -%}\n (\n {%- if column_added -%}\n TRUE\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.run_query", "macro.dbt.snapshot_string_as_time", "macro.dbt.snapshot_check_all_get_existing_columns", "macro.dbt.snapshot_hash_arguments"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.create_columns": {
|
|
"unique_id": "macro.dbt.create_columns",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/snapshot/snapshot.sql",
|
|
"original_file_path": "macros/materializations/snapshot/snapshot.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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__create_columns": {
|
|
"unique_id": "macro.dbt.default__create_columns",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/snapshot/snapshot.sql",
|
|
"original_file_path": "macros/materializations/snapshot/snapshot.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": 1636667781
|
|
},
|
|
"macro.dbt.post_snapshot": {
|
|
"unique_id": "macro.dbt.post_snapshot",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/snapshot/snapshot.sql",
|
|
"original_file_path": "macros/materializations/snapshot/snapshot.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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__post_snapshot": {
|
|
"unique_id": "macro.dbt.default__post_snapshot",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/snapshot/snapshot.sql",
|
|
"original_file_path": "macros/materializations/snapshot/snapshot.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": 1636667781
|
|
},
|
|
"macro.dbt.snapshot_staging_table": {
|
|
"unique_id": "macro.dbt.snapshot_staging_table",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/snapshot/snapshot.sql",
|
|
"original_file_path": "macros/materializations/snapshot/snapshot.sql",
|
|
"name": "snapshot_staging_table",
|
|
"macro_sql": "{% macro 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": 1636667781
|
|
},
|
|
"macro.dbt.build_snapshot_table": {
|
|
"unique_id": "macro.dbt.build_snapshot_table",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/snapshot/snapshot.sql",
|
|
"original_file_path": "macros/materializations/snapshot/snapshot.sql",
|
|
"name": "build_snapshot_table",
|
|
"macro_sql": "{% macro 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": 1636667781
|
|
},
|
|
"macro.dbt.get_or_create_relation": {
|
|
"unique_id": "macro.dbt.get_or_create_relation",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/snapshot/snapshot.sql",
|
|
"original_file_path": "macros/materializations/snapshot/snapshot.sql",
|
|
"name": "get_or_create_relation",
|
|
"macro_sql": "{% macro 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": 1636667781
|
|
},
|
|
"macro.dbt.build_snapshot_staging_table": {
|
|
"unique_id": "macro.dbt.build_snapshot_staging_table",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/snapshot/snapshot.sql",
|
|
"original_file_path": "macros/materializations/snapshot/snapshot.sql",
|
|
"name": "build_snapshot_staging_table",
|
|
"macro_sql": "{% macro build_snapshot_staging_table(strategy, sql, target_relation) %}\n {% set tmp_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, tmp_relation, select) }}\n {% endcall %}\n\n {% do return(tmp_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": 1636667781
|
|
},
|
|
"macro.dbt.materialization_snapshot_default": {
|
|
"unique_id": "macro.dbt.materialization_snapshot_default",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/snapshot/snapshot.sql",
|
|
"original_file_path": "macros/materializations/snapshot/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\n {% if not adapter.check_schema_exists(model.database, model.schema) %}\n {% do create_schema(model.database, model.schema) %}\n {% endif %}\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 {% 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.create_schema", "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.persist_docs", "macro.dbt.create_indexes", "macro.dbt.post_snapshot"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.create_csv_table": {
|
|
"unique_id": "macro.dbt.create_csv_table",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/seed/seed.sql",
|
|
"original_file_path": "macros/materializations/seed/seed.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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__create_csv_table": {
|
|
"unique_id": "macro.dbt.default__create_csv_table",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/seed/seed.sql",
|
|
"original_file_path": "macros/materializations/seed/seed.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": 1636667781
|
|
},
|
|
"macro.dbt.reset_csv_table": {
|
|
"unique_id": "macro.dbt.reset_csv_table",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/seed/seed.sql",
|
|
"original_file_path": "macros/materializations/seed/seed.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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__reset_csv_table": {
|
|
"unique_id": "macro.dbt.default__reset_csv_table",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/seed/seed.sql",
|
|
"original_file_path": "macros/materializations/seed/seed.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": 1636667781
|
|
},
|
|
"macro.dbt.get_binding_char": {
|
|
"unique_id": "macro.dbt.get_binding_char",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/seed/seed.sql",
|
|
"original_file_path": "macros/materializations/seed/seed.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": 1636667781
|
|
},
|
|
"macro.dbt.default__get_binding_char": {
|
|
"unique_id": "macro.dbt.default__get_binding_char",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/seed/seed.sql",
|
|
"original_file_path": "macros/materializations/seed/seed.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": 1636667781
|
|
},
|
|
"macro.dbt.get_batch_size": {
|
|
"unique_id": "macro.dbt.get_batch_size",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/seed/seed.sql",
|
|
"original_file_path": "macros/materializations/seed/seed.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": 1636667781
|
|
},
|
|
"macro.dbt.default__get_batch_size": {
|
|
"unique_id": "macro.dbt.default__get_batch_size",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/seed/seed.sql",
|
|
"original_file_path": "macros/materializations/seed/seed.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": 1636667781
|
|
},
|
|
"macro.dbt.get_seed_column_quoted_csv": {
|
|
"unique_id": "macro.dbt.get_seed_column_quoted_csv",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/seed/seed.sql",
|
|
"original_file_path": "macros/materializations/seed/seed.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": 1636667781
|
|
},
|
|
"macro.dbt.load_csv_rows": {
|
|
"unique_id": "macro.dbt.load_csv_rows",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/seed/seed.sql",
|
|
"original_file_path": "macros/materializations/seed/seed.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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__load_csv_rows": {
|
|
"unique_id": "macro.dbt.default__load_csv_rows",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/seed/seed.sql",
|
|
"original_file_path": "macros/materializations/seed/seed.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": 1636667781
|
|
},
|
|
"macro.dbt.materialization_seed_default": {
|
|
"unique_id": "macro.dbt.materialization_seed_default",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/seed/seed.sql",
|
|
"original_file_path": "macros/materializations/seed/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 agate_table = load_agate_table() -%}\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 {{ create_table_sql }};\n -- dbt seed --\n {{ sql }}\n {% endcall %}\n\n {% set target_relation = this.incorporate(type='table') %}\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.persist_docs", "macro.dbt.create_indexes"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.incremental_upsert": {
|
|
"unique_id": "macro.dbt.incremental_upsert",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/incremental/helpers.sql",
|
|
"original_file_path": "macros/materializations/incremental/helpers.sql",
|
|
"name": "incremental_upsert",
|
|
"macro_sql": "{% macro incremental_upsert(tmp_relation, target_relation, unique_key=none, statement_name=\"main\") %}\n \n {%- set dest_columns = adapter.get_columns_in_relation(target_relation) -%}\n {%- set dest_cols_csv = dest_columns | map(attribute='quoted') | join(', ') -%}\n\n {%- if unique_key is not none -%}\n delete\n from {{ target_relation }}\n where ({{ unique_key }}) in (\n select ({{ unique_key }})\n from {{ tmp_relation }}\n );\n {%- endif %}\n\n insert into {{ target_relation }} ({{ dest_cols_csv }})\n (\n select {{ dest_cols_csv }}\n from {{ tmp_relation }}\n );\n{%- endmacro %}",
|
|
"resource_type": "macro",
|
|
"tags": [],
|
|
"depends_on": {
|
|
"macros": []
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.materialization_incremental_default": {
|
|
"unique_id": "macro.dbt.materialization_incremental_default",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/incremental/incremental.sql",
|
|
"original_file_path": "macros/materializations/incremental/incremental.sql",
|
|
"name": "materialization_incremental_default",
|
|
"macro_sql": "{% materialization incremental, default -%}\n\n {% set unique_key = config.get('unique_key') %}\n\n {% set target_relation = this.incorporate(type='table') %}\n {% set existing_relation = load_relation(this) %}\n {% set tmp_relation = make_temp_relation(target_relation) %}\n {%- set full_refresh_mode = (should_full_refresh()) -%}\n\n {% set on_schema_change = incremental_validate_on_schema_change(config.get('on_schema_change'), default='ignore') %}\n\n {% set tmp_identifier = model['name'] + '__dbt_tmp' %}\n {% set backup_identifier = model['name'] + \"__dbt_backup\" %}\n\n -- the intermediate_ 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 = adapter.get_relation(identifier=tmp_identifier, \n schema=schema,\n database=database) %} \n {% set preexisting_backup_relation = adapter.get_relation(identifier=backup_identifier,\n schema=schema,\n database=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 {% set to_drop = [] %}\n\n {# -- first check whether we want to full refresh for source view or config reasons #}\n {% set trigger_full_refresh = (full_refresh_mode or existing_relation.is_view) %}\n\n {% if existing_relation is none %}\n {% set build_sql = create_table_as(False, target_relation, sql) %}\n{% elif trigger_full_refresh %}\n {#-- Make sure the backup doesn't exist so we don't encounter issues with the rename below #}\n {% set tmp_identifier = model['name'] + '__dbt_tmp' %}\n {% set backup_identifier = model['name'] + '__dbt_backup' %}\n {% set intermediate_relation = existing_relation.incorporate(path={\"identifier\": tmp_identifier}) %}\n {% set backup_relation = existing_relation.incorporate(path={\"identifier\": backup_identifier}) %}\n\n {% set build_sql = create_table_as(False, intermediate_relation, sql) %}\n {% set need_swap = true %}\n {% do to_drop.append(backup_relation) %}\n {% else %}\n {% do run_query(create_table_as(True, tmp_relation, sql)) %}\n {% do adapter.expand_target_column_types(\n from_relation=tmp_relation,\n to_relation=target_relation) %}\n {% do process_schema_changes(on_schema_change, tmp_relation, existing_relation) %}\n {% set build_sql = incremental_upsert(tmp_relation, target_relation, unique_key=unique_key) %}\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 {% endif %}\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_relation", "macro.dbt.make_temp_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.create_table_as", "macro.dbt.run_query", "macro.dbt.process_schema_changes", "macro.dbt.incremental_upsert", "macro.dbt.statement", "macro.dbt.persist_docs", "macro.dbt.create_indexes"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.incremental_validate_on_schema_change": {
|
|
"unique_id": "macro.dbt.incremental_validate_on_schema_change",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/incremental/on_schema_change.sql",
|
|
"original_file_path": "macros/materializations/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": 1636667781
|
|
},
|
|
"macro.dbt.diff_columns": {
|
|
"unique_id": "macro.dbt.diff_columns",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/incremental/on_schema_change.sql",
|
|
"original_file_path": "macros/materializations/incremental/on_schema_change.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": 1636667781
|
|
},
|
|
"macro.dbt.diff_column_data_types": {
|
|
"unique_id": "macro.dbt.diff_column_data_types",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/incremental/on_schema_change.sql",
|
|
"original_file_path": "macros/materializations/incremental/on_schema_change.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": 1636667781
|
|
},
|
|
"macro.dbt.check_for_schema_changes": {
|
|
"unique_id": "macro.dbt.check_for_schema_changes",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/incremental/on_schema_change.sql",
|
|
"original_file_path": "macros/materializations/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 '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": 1636667781
|
|
},
|
|
"macro.dbt.sync_column_schemas": {
|
|
"unique_id": "macro.dbt.sync_column_schemas",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/incremental/on_schema_change.sql",
|
|
"original_file_path": "macros/materializations/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": 1636667781
|
|
},
|
|
"macro.dbt.process_schema_changes": {
|
|
"unique_id": "macro.dbt.process_schema_changes",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/incremental/on_schema_change.sql",
|
|
"original_file_path": "macros/materializations/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 {% 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 {% 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": 1636667781
|
|
},
|
|
"macro.dbt.get_merge_sql": {
|
|
"unique_id": "macro.dbt.get_merge_sql",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/common/merge.sql",
|
|
"original_file_path": "macros/materializations/common/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": 1636667781
|
|
},
|
|
"macro.dbt.get_delete_insert_merge_sql": {
|
|
"unique_id": "macro.dbt.get_delete_insert_merge_sql",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/common/merge.sql",
|
|
"original_file_path": "macros/materializations/common/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": 1636667781
|
|
},
|
|
"macro.dbt.get_insert_overwrite_merge_sql": {
|
|
"unique_id": "macro.dbt.get_insert_overwrite_merge_sql",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/common/merge.sql",
|
|
"original_file_path": "macros/materializations/common/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": 1636667781
|
|
},
|
|
"macro.dbt.default__get_merge_sql": {
|
|
"unique_id": "macro.dbt.default__get_merge_sql",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/common/merge.sql",
|
|
"original_file_path": "macros/materializations/common/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 {% 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 {% 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": 1636667781
|
|
},
|
|
"macro.dbt.get_quoted_csv": {
|
|
"unique_id": "macro.dbt.get_quoted_csv",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/common/merge.sql",
|
|
"original_file_path": "macros/materializations/common/merge.sql",
|
|
"name": "get_quoted_csv",
|
|
"macro_sql": "{% macro get_quoted_csv(column_names) %}\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{% endmacro %}",
|
|
"resource_type": "macro",
|
|
"tags": [],
|
|
"depends_on": {
|
|
"macros": []
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.common_get_delete_insert_merge_sql": {
|
|
"unique_id": "macro.dbt.common_get_delete_insert_merge_sql",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/common/merge.sql",
|
|
"original_file_path": "macros/materializations/common/merge.sql",
|
|
"name": "common_get_delete_insert_merge_sql",
|
|
"macro_sql": "{% macro common_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 is not none %}\n delete from {{ target }}\n where ({{ unique_key }}) in (\n select ({{ unique_key }})\n from {{ source }}\n );\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": 1636667781
|
|
},
|
|
"macro.dbt.default__get_delete_insert_merge_sql": {
|
|
"unique_id": "macro.dbt.default__get_delete_insert_merge_sql",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/common/merge.sql",
|
|
"original_file_path": "macros/materializations/common/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 {{ common_get_delete_insert_merge_sql(target, source, unique_key, dest_columns) }}\n{% endmacro %}",
|
|
"resource_type": "macro",
|
|
"tags": [],
|
|
"depends_on": {
|
|
"macros": ["macro.dbt.common_get_delete_insert_merge_sql"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__get_insert_overwrite_merge_sql": {
|
|
"unique_id": "macro.dbt.default__get_insert_overwrite_merge_sql",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/common/merge.sql",
|
|
"original_file_path": "macros/materializations/common/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": 1636667781
|
|
},
|
|
"macro.dbt.materialization_table_default": {
|
|
"unique_id": "macro.dbt.materialization_table_default",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/table/table.sql",
|
|
"original_file_path": "macros/materializations/table/table.sql",
|
|
"name": "materialization_table_default",
|
|
"macro_sql": "{% materialization table, default %}\n {%- set identifier = model['alias'] -%}\n {%- set tmp_identifier = model['name'] + '__dbt_tmp' -%}\n {%- set backup_identifier = model['name'] + '__dbt_backup' -%}\n\n {%- set old_relation = adapter.get_relation(database=database, schema=schema, identifier=identifier) -%}\n {%- set target_relation = api.Relation.create(identifier=identifier,\n schema=schema,\n database=database,\n type='table') -%}\n {%- set intermediate_relation = api.Relation.create(identifier=tmp_identifier,\n schema=schema,\n database=database,\n type='table') -%}\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 = adapter.get_relation(identifier=tmp_identifier, \n schema=schema,\n database=database) -%}\n /*\n See ../view/view.sql for more information about this relation.\n */\n {%- set backup_relation_type = 'table' if old_relation is none else old_relation.type -%}\n {%- set backup_relation = api.Relation.create(identifier=backup_identifier,\n schema=schema,\n database=database,\n type=backup_relation_type) -%}\n -- as above, the backup_relation should not already exist\n {%- set preexisting_backup_relation = adapter.get_relation(identifier=backup_identifier,\n schema=schema,\n database=database) -%}\n\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 {{ create_table_as(False, intermediate_relation, sql) }}\n {%- endcall %}\n\n -- cleanup\n {% if old_relation is not none %}\n {{ adapter.rename_relation(old_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 {% 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.drop_relation_if_exists", "macro.dbt.run_hooks", "macro.dbt.statement", "macro.dbt.create_table_as", "macro.dbt.create_indexes", "macro.dbt.persist_docs"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.materialization_view_default": {
|
|
"unique_id": "macro.dbt.materialization_view_default",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/view/view.sql",
|
|
"original_file_path": "macros/materializations/view/view.sql",
|
|
"name": "materialization_view_default",
|
|
"macro_sql": "{%- materialization view, default -%}\n\n {%- set identifier = model['alias'] -%}\n {%- set tmp_identifier = model['name'] + '__dbt_tmp' -%}\n {%- set backup_identifier = model['name'] + '__dbt_backup' -%}\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, database=database,\n type='view') -%}\n {%- set intermediate_relation = api.Relation.create(identifier=tmp_identifier,\n schema=schema, database=database, type='view') -%}\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 = adapter.get_relation(identifier=tmp_identifier, \n schema=schema,\n database=database) -%}\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 \"old_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 old_relation, if it exists,\n or else \"view\" as a sane default if it does not. Note that if the old_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 old_relation is none else old_relation.type -%}\n {%- set backup_relation = api.Relation.create(identifier=backup_identifier,\n schema=schema, database=database,\n type=backup_relation_type) -%}\n -- as above, the backup_relation should not already exist\n {%- set preexisting_backup_relation = adapter.get_relation(identifier=backup_identifier,\n schema=schema,\n database=database) -%}\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 {{ create_view_as(intermediate_relation, sql) }}\n {%- endcall %}\n\n -- cleanup\n -- move the existing view out of the way\n {% if old_relation is not none %}\n {{ adapter.rename_relation(old_relation, backup_relation) }}\n {% endif %}\n {{ adapter.rename_relation(intermediate_relation, target_relation) }}\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.run_hooks", "macro.dbt.drop_relation_if_exists", "macro.dbt.statement", "macro.dbt.create_view_as", "macro.dbt.persist_docs"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.handle_existing_table": {
|
|
"unique_id": "macro.dbt.handle_existing_table",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/view/create_or_replace_view.sql",
|
|
"original_file_path": "macros/materializations/view/create_or_replace_view.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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__handle_existing_table": {
|
|
"unique_id": "macro.dbt.default__handle_existing_table",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/view/create_or_replace_view.sql",
|
|
"original_file_path": "macros/materializations/view/create_or_replace_view.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": 1636667781
|
|
},
|
|
"macro.dbt.create_or_replace_view": {
|
|
"unique_id": "macro.dbt.create_or_replace_view",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/materializations/view/create_or_replace_view.sql",
|
|
"original_file_path": "macros/materializations/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\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\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 {{ create_view_as(target_relation, sql) }}\n {%- endcall %}\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.create_view_as"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.generate_alias_name": {
|
|
"unique_id": "macro.dbt.generate_alias_name",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/etc/get_custom_alias.sql",
|
|
"original_file_path": "macros/etc/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": 1636667781
|
|
},
|
|
"macro.dbt.default__generate_alias_name": {
|
|
"unique_id": "macro.dbt.default__generate_alias_name",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/etc/get_custom_alias.sql",
|
|
"original_file_path": "macros/etc/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": 1636667781
|
|
},
|
|
"macro.dbt.run_query": {
|
|
"unique_id": "macro.dbt.run_query",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/etc/query.sql",
|
|
"original_file_path": "macros/etc/query.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": 1636667781
|
|
},
|
|
"macro.dbt.is_incremental": {
|
|
"unique_id": "macro.dbt.is_incremental",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/etc/is_incremental.sql",
|
|
"original_file_path": "macros/etc/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": 1636667781
|
|
},
|
|
"macro.dbt.convert_datetime": {
|
|
"unique_id": "macro.dbt.convert_datetime",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/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": 1636667781
|
|
},
|
|
"macro.dbt.dates_in_range": {
|
|
"unique_id": "macro.dbt.dates_in_range",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/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": 1636667781
|
|
},
|
|
"macro.dbt.partition_range": {
|
|
"unique_id": "macro.dbt.partition_range",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/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": 1636667781
|
|
},
|
|
"macro.dbt.py_current_timestring": {
|
|
"unique_id": "macro.dbt.py_current_timestring",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/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": 1636667781
|
|
},
|
|
"macro.dbt.get_where_subquery": {
|
|
"unique_id": "macro.dbt.get_where_subquery",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/etc/where_subquery.sql",
|
|
"original_file_path": "macros/etc/where_subquery.sql",
|
|
"name": "get_where_subquery",
|
|
"macro_sql": "{% macro get_where_subquery(relation) -%}\n {% do return(adapter.dispatch('get_where_subquery')(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": 1636667781
|
|
},
|
|
"macro.dbt.default__get_where_subquery": {
|
|
"unique_id": "macro.dbt.default__get_where_subquery",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/etc/where_subquery.sql",
|
|
"original_file_path": "macros/etc/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": 1636667781
|
|
},
|
|
"macro.dbt.generate_schema_name": {
|
|
"unique_id": "macro.dbt.generate_schema_name",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/etc/get_custom_schema.sql",
|
|
"original_file_path": "macros/etc/get_custom_schema.sql",
|
|
"name": "generate_schema_name",
|
|
"macro_sql": "{% macro generate_schema_name(custom_schema_name, node) -%}\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": 1636667781
|
|
},
|
|
"macro.dbt.default__generate_schema_name": {
|
|
"unique_id": "macro.dbt.default__generate_schema_name",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/etc/get_custom_schema.sql",
|
|
"original_file_path": "macros/etc/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": 1636667781
|
|
},
|
|
"macro.dbt.generate_schema_name_for_env": {
|
|
"unique_id": "macro.dbt.generate_schema_name_for_env",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/etc/get_custom_schema.sql",
|
|
"original_file_path": "macros/etc/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": 1636667781
|
|
},
|
|
"macro.dbt.generate_database_name": {
|
|
"unique_id": "macro.dbt.generate_database_name",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/etc/get_custom_database.sql",
|
|
"original_file_path": "macros/etc/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": 1636667781
|
|
},
|
|
"macro.dbt.default__generate_database_name": {
|
|
"unique_id": "macro.dbt.default__generate_database_name",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/etc/get_custom_database.sql",
|
|
"original_file_path": "macros/etc/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": 1636667781
|
|
},
|
|
"macro.dbt.get_columns_in_query": {
|
|
"unique_id": "macro.dbt.get_columns_in_query",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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": 1636667781
|
|
},
|
|
"macro.dbt.default__get_columns_in_query": {
|
|
"unique_id": "macro.dbt.default__get_columns_in_query",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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": 1636667781
|
|
},
|
|
"macro.dbt.create_schema": {
|
|
"unique_id": "macro.dbt.create_schema",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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_redshift.redshift__create_schema"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__create_schema": {
|
|
"unique_id": "macro.dbt.default__create_schema",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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": 1636667781
|
|
},
|
|
"macro.dbt.drop_schema": {
|
|
"unique_id": "macro.dbt.drop_schema",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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_redshift.redshift__drop_schema"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__drop_schema": {
|
|
"unique_id": "macro.dbt.default__drop_schema",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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": 1636667781
|
|
},
|
|
"macro.dbt.create_table_as": {
|
|
"unique_id": "macro.dbt.create_table_as",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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_redshift.redshift__create_table_as"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__create_table_as": {
|
|
"unique_id": "macro.dbt.default__create_table_as",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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\n{% endmacro %}",
|
|
"resource_type": "macro",
|
|
"tags": [],
|
|
"depends_on": {
|
|
"macros": []
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.get_create_index_sql": {
|
|
"unique_id": "macro.dbt.get_create_index_sql",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__get_create_index_sql": {
|
|
"unique_id": "macro.dbt.default__get_create_index_sql",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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": 1636667781
|
|
},
|
|
"macro.dbt.create_indexes": {
|
|
"unique_id": "macro.dbt.create_indexes",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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": 1636667781
|
|
},
|
|
"macro.dbt.default__create_indexes": {
|
|
"unique_id": "macro.dbt.default__create_indexes",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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": 1636667781
|
|
},
|
|
"macro.dbt.create_view_as": {
|
|
"unique_id": "macro.dbt.create_view_as",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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_redshift.redshift__create_view_as"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__create_view_as": {
|
|
"unique_id": "macro.dbt.default__create_view_as",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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": 1636667781
|
|
},
|
|
"macro.dbt.get_catalog": {
|
|
"unique_id": "macro.dbt.get_catalog",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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_redshift.redshift__get_catalog"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__get_catalog": {
|
|
"unique_id": "macro.dbt.default__get_catalog",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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": 1636667781
|
|
},
|
|
"macro.dbt.get_columns_in_relation": {
|
|
"unique_id": "macro.dbt.get_columns_in_relation",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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_redshift.redshift__get_columns_in_relation"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.sql_convert_columns_in_relation": {
|
|
"unique_id": "macro.dbt.sql_convert_columns_in_relation",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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": 1636667781
|
|
},
|
|
"macro.dbt.default__get_columns_in_relation": {
|
|
"unique_id": "macro.dbt.default__get_columns_in_relation",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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": 1636667781
|
|
},
|
|
"macro.dbt.alter_column_type": {
|
|
"unique_id": "macro.dbt.alter_column_type",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.alter_column_comment": {
|
|
"unique_id": "macro.dbt.alter_column_comment",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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_redshift.redshift__alter_column_comment"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__alter_column_comment": {
|
|
"unique_id": "macro.dbt.default__alter_column_comment",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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": 1636667781
|
|
},
|
|
"macro.dbt.alter_relation_comment": {
|
|
"unique_id": "macro.dbt.alter_relation_comment",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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_redshift.redshift__alter_relation_comment"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__alter_relation_comment": {
|
|
"unique_id": "macro.dbt.default__alter_relation_comment",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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": 1636667781
|
|
},
|
|
"macro.dbt.persist_docs": {
|
|
"unique_id": "macro.dbt.persist_docs",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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_redshift.redshift__persist_docs"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__persist_docs": {
|
|
"unique_id": "macro.dbt.default__persist_docs",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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": 1636667781
|
|
},
|
|
"macro.dbt.default__alter_column_type": {
|
|
"unique_id": "macro.dbt.default__alter_column_type",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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": 1636667781
|
|
},
|
|
"macro.dbt.drop_relation": {
|
|
"unique_id": "macro.dbt.drop_relation",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__drop_relation": {
|
|
"unique_id": "macro.dbt.default__drop_relation",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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": 1636667781
|
|
},
|
|
"macro.dbt.truncate_relation": {
|
|
"unique_id": "macro.dbt.truncate_relation",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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": 1636667781
|
|
},
|
|
"macro.dbt.default__truncate_relation": {
|
|
"unique_id": "macro.dbt.default__truncate_relation",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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": 1636667781
|
|
},
|
|
"macro.dbt.rename_relation": {
|
|
"unique_id": "macro.dbt.rename_relation",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__rename_relation": {
|
|
"unique_id": "macro.dbt.default__rename_relation",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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": 1636667781
|
|
},
|
|
"macro.dbt.information_schema_name": {
|
|
"unique_id": "macro.dbt.information_schema_name",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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_redshift.redshift__information_schema_name"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__information_schema_name": {
|
|
"unique_id": "macro.dbt.default__information_schema_name",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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": 1636667781
|
|
},
|
|
"macro.dbt.list_schemas": {
|
|
"unique_id": "macro.dbt.list_schemas",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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_redshift.redshift__list_schemas"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__list_schemas": {
|
|
"unique_id": "macro.dbt.default__list_schemas",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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": 1636667781
|
|
},
|
|
"macro.dbt.check_schema_exists": {
|
|
"unique_id": "macro.dbt.check_schema_exists",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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_redshift.redshift__check_schema_exists"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__check_schema_exists": {
|
|
"unique_id": "macro.dbt.default__check_schema_exists",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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.run_query"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.list_relations_without_caching": {
|
|
"unique_id": "macro.dbt.list_relations_without_caching",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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_redshift.redshift__list_relations_without_caching"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__list_relations_without_caching": {
|
|
"unique_id": "macro.dbt.default__list_relations_without_caching",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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": 1636667781
|
|
},
|
|
"macro.dbt.current_timestamp": {
|
|
"unique_id": "macro.dbt.current_timestamp",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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_redshift.redshift__current_timestamp"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__current_timestamp": {
|
|
"unique_id": "macro.dbt.default__current_timestamp",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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": 1636667781
|
|
},
|
|
"macro.dbt.collect_freshness": {
|
|
"unique_id": "macro.dbt.collect_freshness",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__collect_freshness": {
|
|
"unique_id": "macro.dbt.default__collect_freshness",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.make_temp_relation": {
|
|
"unique_id": "macro.dbt.make_temp_relation",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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_redshift.redshift__make_temp_relation"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__make_temp_relation": {
|
|
"unique_id": "macro.dbt.default__make_temp_relation",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.sql",
|
|
"name": "default__make_temp_relation",
|
|
"macro_sql": "{% macro default__make_temp_relation(base_relation, suffix) %}\n {% set tmp_identifier = base_relation.identifier ~ suffix %}\n {% set tmp_relation = base_relation.incorporate(\n path={\"identifier\": tmp_identifier}) -%}\n\n {% do return(tmp_relation) %}\n{% endmacro %}",
|
|
"resource_type": "macro",
|
|
"tags": [],
|
|
"depends_on": {
|
|
"macros": []
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.set_sql_header": {
|
|
"unique_id": "macro.dbt.set_sql_header",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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": 1636667781
|
|
},
|
|
"macro.dbt.alter_relation_add_remove_columns": {
|
|
"unique_id": "macro.dbt.alter_relation_add_remove_columns",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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_redshift.redshift__alter_relation_add_remove_columns"]
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__alter_relation_add_remove_columns": {
|
|
"unique_id": "macro.dbt.default__alter_relation_add_remove_columns",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/adapters/common.sql",
|
|
"original_file_path": "macros/adapters/common.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 remove_columns | length > 0 }}\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": 1636667781
|
|
},
|
|
"macro.dbt.default__test_relationships": {
|
|
"unique_id": "macro.dbt.default__test_relationships",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/schema_tests/relationships.sql",
|
|
"original_file_path": "macros/schema_tests/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": 1636667781
|
|
},
|
|
"macro.dbt.test_relationships": {
|
|
"unique_id": "macro.dbt.test_relationships",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/schema_tests/relationships.sql",
|
|
"original_file_path": "macros/schema_tests/relationships.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": 1636667781
|
|
},
|
|
"macro.dbt.default__test_not_null": {
|
|
"unique_id": "macro.dbt.default__test_not_null",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/schema_tests/not_null.sql",
|
|
"original_file_path": "macros/schema_tests/not_null.sql",
|
|
"name": "default__test_not_null",
|
|
"macro_sql": "{% macro default__test_not_null(model, column_name) %}\n\nselect *\nfrom {{ model }}\nwhere {{ column_name }} is null\n\n{% endmacro %}",
|
|
"resource_type": "macro",
|
|
"tags": [],
|
|
"depends_on": {
|
|
"macros": []
|
|
},
|
|
"description": "",
|
|
"meta": {},
|
|
"docs": {
|
|
"show": true
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.test_not_null": {
|
|
"unique_id": "macro.dbt.test_not_null",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/schema_tests/not_null.sql",
|
|
"original_file_path": "macros/schema_tests/not_null.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": 1636667781
|
|
},
|
|
"macro.dbt.default__test_unique": {
|
|
"unique_id": "macro.dbt.default__test_unique",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/schema_tests/unique.sql",
|
|
"original_file_path": "macros/schema_tests/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": 1636667781
|
|
},
|
|
"macro.dbt.test_unique": {
|
|
"unique_id": "macro.dbt.test_unique",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/schema_tests/unique.sql",
|
|
"original_file_path": "macros/schema_tests/unique.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
|
|
},
|
|
"patch_path": null,
|
|
"arguments": [],
|
|
"created_at": 1636667781
|
|
},
|
|
"macro.dbt.default__test_accepted_values": {
|
|
"unique_id": "macro.dbt.default__test_accepted_values",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/schema_tests/accepted_values.sql",
|
|
"original_file_path": "macros/schema_tests/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": 1636667781
|
|
},
|
|
"macro.dbt.test_accepted_values": {
|
|
"unique_id": "macro.dbt.test_accepted_values",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/lib/python3.9/site-packages/dbt/include/global_project",
|
|
"path": "macros/schema_tests/accepted_values.sql",
|
|
"original_file_path": "macros/schema_tests/accepted_values.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": 1636667781
|
|
}
|
|
},
|
|
"docs": {
|
|
"jaffle_shop.__overview__": {
|
|
"unique_id": "jaffle_shop.__overview__",
|
|
"package_name": "jaffle_shop",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop",
|
|
"path": "overview.md",
|
|
"original_file_path": "models/overview.md",
|
|
"name": "__overview__",
|
|
"block_contents": "## Data Documentation for Jaffle Shop\n\n`jaffle_shop` is a fictional ecommerce store.\n\nThis [dbt](https://www.getdbt.com/) project is for testing out code.\n\nThe source code can be found [here](https://github.com/clrcrl/jaffle_shop)."
|
|
},
|
|
"jaffle_shop.orders_status": {
|
|
"unique_id": "jaffle_shop.orders_status",
|
|
"package_name": "jaffle_shop",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop",
|
|
"path": "docs.md",
|
|
"original_file_path": "models/docs.md",
|
|
"name": "orders_status",
|
|
"block_contents": "Orders can be one of the following statuses:\n\n| status | description |\n|----------------|------------------------------------------------------------------------------------------------------------------------|\n| placed | The order has been placed but has not yet left the warehouse |\n| shipped | The order has ben shipped to the customer and is currently in transit |\n| completed | The order has been received by the customer |\n| return_pending | The customer has indicated that they would like to return the order, but it has not yet been received at the warehouse |\n| returned | The order has been returned by the customer and received at the warehouse |"
|
|
},
|
|
"dbt.__overview__": {
|
|
"unique_id": "dbt.__overview__",
|
|
"package_name": "dbt",
|
|
"root_path": "/Users/harsha/Code/jaffle_shop/env/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 `--models` 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/overview)?\n- Read the [dbt viewpoint](https://docs.getdbt.com/docs/viewpoint)\n- [Installation](https://docs.getdbt.com/docs/installation)\n- Join the [chat](https://community.getdbt.com/) on Slack for live questions and support."
|
|
}
|
|
},
|
|
"exposures": {},
|
|
"selectors": {},
|
|
"disabled": [],
|
|
"parent_map": {
|
|
"model.jaffle_shop.customers": ["model.jaffle_shop.stg_customers", "model.jaffle_shop.stg_orders", "model.jaffle_shop.stg_payments"],
|
|
"model.jaffle_shop.orders": ["model.jaffle_shop.stg_orders", "model.jaffle_shop.stg_payments"],
|
|
"model.jaffle_shop.stg_customers": ["seed.jaffle_shop.raw_customers"],
|
|
"model.jaffle_shop.stg_payments": ["seed.jaffle_shop.raw_payments"],
|
|
"model.jaffle_shop.stg_orders": ["seed.jaffle_shop.raw_orders"],
|
|
"seed.jaffle_shop.raw_customers": [],
|
|
"seed.jaffle_shop.raw_orders": [],
|
|
"seed.jaffle_shop.raw_payments": [],
|
|
"test.jaffle_shop.unique_customers_customer_id.c5af1ff4b1": ["model.jaffle_shop.customers"],
|
|
"test.jaffle_shop.not_null_customers_customer_id.5c9bf9911d": ["model.jaffle_shop.customers"],
|
|
"test.jaffle_shop.unique_orders_order_id.fed79b3a6e": ["model.jaffle_shop.orders"],
|
|
"test.jaffle_shop.not_null_orders_order_id.cf6c17daed": ["model.jaffle_shop.orders"],
|
|
"test.jaffle_shop.not_null_orders_customer_id.c5f02694af": ["model.jaffle_shop.orders"],
|
|
"test.jaffle_shop.relationships_orders_customer_id__customer_id__ref_customers_.c6ec7f58f2": ["model.jaffle_shop.customers", "model.jaffle_shop.orders"],
|
|
"test.jaffle_shop.accepted_values_orders_status__placed__shipped__completed__return_pending__returned.be6b5b5ec3": ["model.jaffle_shop.orders"],
|
|
"test.jaffle_shop.not_null_orders_amount.106140f9fd": ["model.jaffle_shop.orders"],
|
|
"test.jaffle_shop.not_null_orders_credit_card_amount.d3ca593b59": ["model.jaffle_shop.orders"],
|
|
"test.jaffle_shop.not_null_orders_coupon_amount.ab90c90625": ["model.jaffle_shop.orders"],
|
|
"test.jaffle_shop.not_null_orders_bank_transfer_amount.7743500c49": ["model.jaffle_shop.orders"],
|
|
"test.jaffle_shop.not_null_orders_gift_card_amount.413a0d2d7a": ["model.jaffle_shop.orders"],
|
|
"test.jaffle_shop.unique_stg_customers_customer_id.c7614daada": ["model.jaffle_shop.stg_customers"],
|
|
"test.jaffle_shop.not_null_stg_customers_customer_id.e2cfb1f9aa": ["model.jaffle_shop.stg_customers"],
|
|
"test.jaffle_shop.unique_stg_orders_order_id.e3b841c71a": ["model.jaffle_shop.stg_orders"],
|
|
"test.jaffle_shop.not_null_stg_orders_order_id.81cfe2fe64": ["model.jaffle_shop.stg_orders"],
|
|
"test.jaffle_shop.accepted_values_stg_orders_status__placed__shipped__completed__return_pending__returned.080fb20aad": ["model.jaffle_shop.stg_orders"],
|
|
"test.jaffle_shop.unique_stg_payments_payment_id.3744510712": ["model.jaffle_shop.stg_payments"],
|
|
"test.jaffle_shop.not_null_stg_payments_payment_id.c19cc50075": ["model.jaffle_shop.stg_payments"],
|
|
"test.jaffle_shop.accepted_values_stg_payments_payment_method__credit_card__coupon__bank_transfer__gift_card.3c3820f278": ["model.jaffle_shop.stg_payments"]
|
|
},
|
|
"child_map": {
|
|
"model.jaffle_shop.customers": ["test.jaffle_shop.not_null_customers_customer_id.5c9bf9911d", "test.jaffle_shop.relationships_orders_customer_id__customer_id__ref_customers_.c6ec7f58f2", "test.jaffle_shop.unique_customers_customer_id.c5af1ff4b1"],
|
|
"model.jaffle_shop.orders": ["test.jaffle_shop.accepted_values_orders_status__placed__shipped__completed__return_pending__returned.be6b5b5ec3", "test.jaffle_shop.not_null_orders_amount.106140f9fd", "test.jaffle_shop.not_null_orders_bank_transfer_amount.7743500c49", "test.jaffle_shop.not_null_orders_coupon_amount.ab90c90625", "test.jaffle_shop.not_null_orders_credit_card_amount.d3ca593b59", "test.jaffle_shop.not_null_orders_customer_id.c5f02694af", "test.jaffle_shop.not_null_orders_gift_card_amount.413a0d2d7a", "test.jaffle_shop.not_null_orders_order_id.cf6c17daed", "test.jaffle_shop.relationships_orders_customer_id__customer_id__ref_customers_.c6ec7f58f2", "test.jaffle_shop.unique_orders_order_id.fed79b3a6e"],
|
|
"model.jaffle_shop.stg_customers": ["model.jaffle_shop.customers", "test.jaffle_shop.not_null_stg_customers_customer_id.e2cfb1f9aa", "test.jaffle_shop.unique_stg_customers_customer_id.c7614daada"],
|
|
"model.jaffle_shop.stg_payments": ["model.jaffle_shop.customers", "model.jaffle_shop.orders", "test.jaffle_shop.accepted_values_stg_payments_payment_method__credit_card__coupon__bank_transfer__gift_card.3c3820f278", "test.jaffle_shop.not_null_stg_payments_payment_id.c19cc50075", "test.jaffle_shop.unique_stg_payments_payment_id.3744510712"],
|
|
"model.jaffle_shop.stg_orders": ["model.jaffle_shop.customers", "model.jaffle_shop.orders", "test.jaffle_shop.accepted_values_stg_orders_status__placed__shipped__completed__return_pending__returned.080fb20aad", "test.jaffle_shop.not_null_stg_orders_order_id.81cfe2fe64", "test.jaffle_shop.unique_stg_orders_order_id.e3b841c71a"],
|
|
"seed.jaffle_shop.raw_customers": ["model.jaffle_shop.stg_customers"],
|
|
"seed.jaffle_shop.raw_orders": ["model.jaffle_shop.stg_orders"],
|
|
"seed.jaffle_shop.raw_payments": ["model.jaffle_shop.stg_payments"],
|
|
"test.jaffle_shop.unique_customers_customer_id.c5af1ff4b1": [],
|
|
"test.jaffle_shop.not_null_customers_customer_id.5c9bf9911d": [],
|
|
"test.jaffle_shop.unique_orders_order_id.fed79b3a6e": [],
|
|
"test.jaffle_shop.not_null_orders_order_id.cf6c17daed": [],
|
|
"test.jaffle_shop.not_null_orders_customer_id.c5f02694af": [],
|
|
"test.jaffle_shop.relationships_orders_customer_id__customer_id__ref_customers_.c6ec7f58f2": [],
|
|
"test.jaffle_shop.accepted_values_orders_status__placed__shipped__completed__return_pending__returned.be6b5b5ec3": [],
|
|
"test.jaffle_shop.not_null_orders_amount.106140f9fd": [],
|
|
"test.jaffle_shop.not_null_orders_credit_card_amount.d3ca593b59": [],
|
|
"test.jaffle_shop.not_null_orders_coupon_amount.ab90c90625": [],
|
|
"test.jaffle_shop.not_null_orders_bank_transfer_amount.7743500c49": [],
|
|
"test.jaffle_shop.not_null_orders_gift_card_amount.413a0d2d7a": [],
|
|
"test.jaffle_shop.unique_stg_customers_customer_id.c7614daada": [],
|
|
"test.jaffle_shop.not_null_stg_customers_customer_id.e2cfb1f9aa": [],
|
|
"test.jaffle_shop.unique_stg_orders_order_id.e3b841c71a": [],
|
|
"test.jaffle_shop.not_null_stg_orders_order_id.81cfe2fe64": [],
|
|
"test.jaffle_shop.accepted_values_stg_orders_status__placed__shipped__completed__return_pending__returned.080fb20aad": [],
|
|
"test.jaffle_shop.unique_stg_payments_payment_id.3744510712": [],
|
|
"test.jaffle_shop.not_null_stg_payments_payment_id.c19cc50075": [],
|
|
"test.jaffle_shop.accepted_values_stg_payments_payment_method__credit_card__coupon__bank_transfer__gift_card.3c3820f278": []
|
|
}
|
|
} |