diff --git a/.gitignore b/.gitignore index bd687e61..603bf9bc 100644 --- a/.gitignore +++ b/.gitignore @@ -133,3 +133,4 @@ dmypy.json # dbt dbt_modules/ logs/ +.user.yml diff --git a/Makefile b/Makefile index 1bbf4c4f..733d2a7e 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,8 @@ clean: requirements: python3 -m pip install \ -r requirements.txt \ - -r requirements-test.txt + -r requirements-test.txt \ + -r sandbox/requirements.txt .PHONY: requirements fix-fmt: @@ -60,7 +61,11 @@ dev-install: build .PHONY: dev-install dev-sandbox-up: - ( cd sandbox && docker-compose up --build --detach --wait ) + ( cd sandbox && docker-compose up --build --attach app ) +.PHONY: dev-sandbox-up + +dev-sandbox-down: + ( cd sandbox && docker-compose down ) .PHONY: dev-sandbox-up dev-sandbox-models: @@ -74,27 +79,26 @@ dev-sandbox-models: .PHONY: dev-sandbox-models dev-sandbox-exposures: - rm -rf tests/fixtures/sample_project/models/exposures - mkdir -p tests/fixtures/sample_project/models/exposures + rm -rf sandbox/models/exposures + mkdir -p sandbox/models/exposures ( source sandbox/.env && python3 -m dbtmetabase exposures \ --dbt-manifest-path sandbox/target/manifest.json \ --dbt-database $$POSTGRES_DB \ --metabase-url http://localhost:$$MB_PORT \ --metabase-username $$MB_USER \ --metabase-password $$MB_PASSWORD \ - --output-path tests/fixtures/sample_project/models/exposures \ + --output-path sandbox/models/exposures \ --output-grouping collection ) - ( source sandbox/.env && cd tests/fixtures/sample_project && \ + ( source sandbox/.env && cd sandbox && \ POSTGRES_HOST=localhost \ POSTGRES_PORT=$$POSTGRES_PORT \ POSTGRES_USER=$$POSTGRES_USER \ POSTGRES_PASSWORD=$$POSTGRES_PASSWORD \ POSTGRES_DB=$$POSTGRES_DB \ POSTGRES_SCHEMA=$$POSTGRES_SCHEMA \ - dbt docs generate --profiles-dir ../../../sandbox ) + dbt docs generate ) .PHONY: dev-sandbox-exposures -dev-sandbox-down: - ( cd sandbox && docker-compose down ) -.PHONY: dev-sandbox-up +dev-sandbox-e2e: dev-sandbox-up dev-sandbox-models dev-sandbox-exposures dev-sandbox-down +.PHONY: dev-sandbox-e2e diff --git a/sandbox/Dockerfile b/sandbox/Dockerfile index dc38dfde..e198bb9e 100644 --- a/sandbox/Dockerfile +++ b/sandbox/Dockerfile @@ -9,9 +9,8 @@ RUN python3 -m pip install -r requirements.txt COPY entrypoint.py ./ COPY profiles.yml ./ -COPY --from=sample_project etc/ ./etc/ -COPY --from=sample_project models/ ./models/ -COPY --from=sample_project seeds/ ./seeds/ -COPY --from=sample_project dbt_project.yml ./ +COPY models/ ./models/ +COPY seeds/ ./seeds/ +COPY dbt_project.yml ./ ENTRYPOINT ["python3", "entrypoint.py"] diff --git a/sandbox/README.md b/sandbox/README.md new file mode 100644 index 00000000..c68f0ec1 --- /dev/null +++ b/sandbox/README.md @@ -0,0 +1,7 @@ +# Sandbox + +Docker Compose setup for end-to-end testing with dbt, Metabase and PostgreSQL as target database. + +## Sample dbt project + +Started from the official [jaffle_shop](https://github.com/dbt-labs/jaffle_shop) sample with several modifications to test specific dbt-metabase features. diff --git a/tests/fixtures/sample_project/dbt_project.yml b/sandbox/dbt_project.yml similarity index 87% rename from tests/fixtures/sample_project/dbt_project.yml rename to sandbox/dbt_project.yml index ddfcf9b7..eca47c56 100644 --- a/tests/fixtures/sample_project/dbt_project.yml +++ b/sandbox/dbt_project.yml @@ -1,4 +1,4 @@ -name: "jaffle_shop" +name: "sandbox" profile: "default" config-version: 2 @@ -13,7 +13,7 @@ clean-targets: - "logs" models: - jaffle_shop: + sandbox: materialized: table staging: materialized: view diff --git a/sandbox/docker-compose.yml b/sandbox/docker-compose.yml index e99b11d3..57067959 100644 --- a/sandbox/docker-compose.yml +++ b/sandbox/docker-compose.yml @@ -41,10 +41,7 @@ services: condition: service_healthy app: - build: - context: . - additional_contexts: - sample_project: ../tests/fixtures/sample_project + build: . command: init environment: - POSTGRES_USER=${POSTGRES_USER:-} diff --git a/sandbox/models/.gitignore b/sandbox/models/.gitignore new file mode 100644 index 00000000..0d6d93fa --- /dev/null +++ b/sandbox/models/.gitignore @@ -0,0 +1 @@ +/exposures/ diff --git a/tests/fixtures/sample_project/models/customers.sql b/sandbox/models/customers.sql similarity index 100% rename from tests/fixtures/sample_project/models/customers.sql rename to sandbox/models/customers.sql diff --git a/tests/fixtures/sample_project/models/orders.sql b/sandbox/models/orders.sql similarity index 100% rename from tests/fixtures/sample_project/models/orders.sql rename to sandbox/models/orders.sql diff --git a/tests/fixtures/sample_project/models/schema.yml b/sandbox/models/schema.yml similarity index 100% rename from tests/fixtures/sample_project/models/schema.yml rename to sandbox/models/schema.yml diff --git a/tests/fixtures/sample_project/models/staging/schema.yml b/sandbox/models/staging/schema.yml similarity index 100% rename from tests/fixtures/sample_project/models/staging/schema.yml rename to sandbox/models/staging/schema.yml diff --git a/tests/fixtures/sample_project/models/staging/stg_customers.sql b/sandbox/models/staging/stg_customers.sql similarity index 100% rename from tests/fixtures/sample_project/models/staging/stg_customers.sql rename to sandbox/models/staging/stg_customers.sql diff --git a/tests/fixtures/sample_project/models/staging/stg_orders.sql b/sandbox/models/staging/stg_orders.sql similarity index 100% rename from tests/fixtures/sample_project/models/staging/stg_orders.sql rename to sandbox/models/staging/stg_orders.sql diff --git a/tests/fixtures/sample_project/models/staging/stg_payments.sql b/sandbox/models/staging/stg_payments.sql similarity index 100% rename from tests/fixtures/sample_project/models/staging/stg_payments.sql rename to sandbox/models/staging/stg_payments.sql diff --git a/tests/fixtures/sample_project/seeds/raw_customers.csv b/sandbox/seeds/raw_customers.csv similarity index 100% rename from tests/fixtures/sample_project/seeds/raw_customers.csv rename to sandbox/seeds/raw_customers.csv diff --git a/tests/fixtures/sample_project/seeds/raw_orders.csv b/sandbox/seeds/raw_orders.csv similarity index 100% rename from tests/fixtures/sample_project/seeds/raw_orders.csv rename to sandbox/seeds/raw_orders.csv diff --git a/tests/fixtures/sample_project/seeds/raw_payments.csv b/sandbox/seeds/raw_payments.csv similarity index 100% rename from tests/fixtures/sample_project/seeds/raw_payments.csv rename to sandbox/seeds/raw_payments.csv diff --git a/setup.py b/setup.py index 93f64c47..3469f974 100755 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ def requires_from_file(filename: str) -> list: entry_points={ "console_scripts": ["dbt-metabase = dbtmetabase.__main__:cli"], }, - packages=find_packages(exclude=["tests"]), + packages=find_packages(exclude=["tests", "sandbox"]), test_suite="tests", install_requires=requires_from_file("requirements.txt"), tests_require=requires_from_file("requirements-test.txt"), diff --git a/tests/fixtures/dbt/manifest.json b/tests/fixtures/dbt/manifest.json new file mode 100644 index 00000000..a4cbdd21 --- /dev/null +++ b/tests/fixtures/dbt/manifest.json @@ -0,0 +1 @@ +{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/manifest/v2.json", "dbt_version": "0.20.0", "generated_at": "2021-07-21T07:41:33.196162Z", "invocation_id": "425a0ecf-fdf8-4f90-a96d-e094466d3853", "env": {}, "project_id": "06e5b98c2db46f8a72cc4f66410e9b3b", "user_id": "aa538d43-e1f3-44a7-8a02-ab1328c70052", "send_anonymous_usage_stats": true, "adapter_type": "postgres"}, "nodes": {"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 1\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 left join order_payments using (order_id)\n\n)\n\nselect * from final", "compiled": true, "resource_type": "model", "depends_on": {"macros": ["macro.dbt.run_hooks", "macro.dbt.statement", "macro.dbt.create_indexes", "macro.dbt.persist_docs", "macro.dbt.drop_relation_if_exists"], "nodes": ["model.jaffle_shop.stg_orders", "model.jaffle_shop.stg_payments"]}, "config": {"enabled": true, "materialized": "table", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": null, "database": null, "tags": [], "full_refresh": null, "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public", "fqn": ["jaffle_shop", "orders"], "unique_id": "model.jaffle_shop.orders", "package_name": "jaffle_shop", "root_path": "/tmp/dbt-metabase/sandbox", "path": "orders.sql", "original_file_path": "models/orders.sql", "name": "orders", "alias": "orders", "checksum": {"name": "sha256", "checksum": "ec3e8884f18110dd6d9b1ababdd85a6c04bf665ee0f57cade273e442f90e9994"}, "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": "target/run/jaffle_shop/models/orders.sql", "deferred": false, "unrendered_config": {"materialized": "table"}, "created_at": 1626853293, "compiled_sql": "\n\nwith orders as (\n\n select * from \"test\".\"public\".\"stg_orders\"\n\n),\n\npayments as (\n\n select * from \"test\".\"public\".\"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 1\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 left join order_payments using (order_id)\n\n)\n\nselect * from final", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"test\".\"public\".\"orders\""}, "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 1\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 using (order_id)\n\n group by 1\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 using (customer_id)\n\n left join customer_payments using (customer_id)\n\n)\n\nselect * from final", "compiled": true, "resource_type": "model", "depends_on": {"macros": ["macro.dbt.run_hooks", "macro.dbt.statement", "macro.dbt.create_indexes", "macro.dbt.persist_docs", "macro.dbt.drop_relation_if_exists"], "nodes": ["model.jaffle_shop.stg_customers", "model.jaffle_shop.stg_orders", "model.jaffle_shop.stg_payments"]}, "config": {"enabled": true, "materialized": "table", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": null, "database": null, "tags": [], "full_refresh": null, "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public", "fqn": ["jaffle_shop", "customers"], "unique_id": "model.jaffle_shop.customers", "package_name": "jaffle_shop", "root_path": "/tmp/dbt-metabase/sandbox", "path": "customers.sql", "original_file_path": "models/customers.sql", "name": "customers", "alias": "customers", "checksum": {"name": "sha256", "checksum": "7f193a2c3af2faa53e0bb7b75d2663f39db8c6b3913e9cafd245dc62f98a8d09"}, "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": "target/run/jaffle_shop/models/customers.sql", "deferred": false, "unrendered_config": {"materialized": "table"}, "created_at": 1626853293, "compiled_sql": "with customers as (\n\n select * from \"test\".\"public\".\"stg_customers\"\n\n),\n\norders as (\n\n select * from \"test\".\"public\".\"stg_orders\"\n\n),\n\npayments as (\n\n select * from \"test\".\"public\".\"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 1\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 using (order_id)\n\n group by 1\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 using (customer_id)\n\n left join customer_payments using (customer_id)\n\n)\n\nselect * from final", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"test\".\"public\".\"customers\""}, "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": ["macro.dbt.run_hooks", "macro.dbt.statement", "macro.dbt.persist_docs", "macro.dbt.drop_relation_if_exists"], "nodes": ["seed.jaffle_shop.raw_orders"]}, "config": {"enabled": true, "materialized": "view", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": null, "database": null, "tags": [], "full_refresh": null, "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public", "fqn": ["jaffle_shop", "staging", "stg_orders"], "unique_id": "model.jaffle_shop.stg_orders", "package_name": "jaffle_shop", "root_path": "/tmp/dbt-metabase/sandbox", "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": "target/run/jaffle_shop/models/staging/stg_orders.sql", "deferred": false, "unrendered_config": {"materialized": "view"}, "created_at": 1626853293, "compiled_sql": "with source as (\n select * from \"test\".\"public\".\"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": "\"test\".\"public\".\"stg_orders\""}, "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": ["macro.dbt.run_hooks", "macro.dbt.statement", "macro.dbt.persist_docs", "macro.dbt.drop_relation_if_exists"], "nodes": ["seed.jaffle_shop.raw_payments"]}, "config": {"enabled": true, "materialized": "view", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": null, "database": null, "tags": [], "full_refresh": null, "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public", "fqn": ["jaffle_shop", "staging", "stg_payments"], "unique_id": "model.jaffle_shop.stg_payments", "package_name": "jaffle_shop", "root_path": "/tmp/dbt-metabase/sandbox", "path": "staging/stg_payments.sql", "original_file_path": "models/staging/stg_payments.sql", "name": "stg_payments", "alias": "stg_payments", "checksum": {"name": "sha256", "checksum": "113502ed19f04efb2af0629ff139f57f7463347b6d5218f3b80a8d128cc96852"}, "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": "target/run/jaffle_shop/models/staging/stg_payments.sql", "deferred": false, "unrendered_config": {"materialized": "view"}, "created_at": 1626853293, "compiled_sql": "with source as (\n select * from \"test\".\"public\".\"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": "\"test\".\"public\".\"stg_payments\""}, "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": ["macro.dbt.run_hooks", "macro.dbt.statement", "macro.dbt.persist_docs", "macro.dbt.drop_relation_if_exists"], "nodes": ["seed.jaffle_shop.raw_customers"]}, "config": {"enabled": true, "materialized": "view", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": null, "database": null, "tags": [], "full_refresh": null, "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public", "fqn": ["jaffle_shop", "staging", "stg_customers"], "unique_id": "model.jaffle_shop.stg_customers", "package_name": "jaffle_shop", "root_path": "/tmp/dbt-metabase/sandbox", "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": "target/run/jaffle_shop/models/staging/stg_customers.sql", "deferred": false, "unrendered_config": {"materialized": "view"}, "created_at": 1626853293, "compiled_sql": "with source as (\n select * from \"test\".\"public\".\"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": "\"test\".\"public\".\"stg_customers\""}, "seed.jaffle_shop.raw_customers": {"raw_sql": "", "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "materialized": "seed", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": null, "database": null, "tags": [], "full_refresh": null, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public", "fqn": ["jaffle_shop", "raw_customers"], "unique_id": "seed.jaffle_shop.raw_customers", "package_name": "jaffle_shop", "root_path": "/tmp/dbt-metabase/sandbox", "path": "raw_customers.csv", "original_file_path": "seeds/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": 1626853293}, "seed.jaffle_shop.raw_payments": {"raw_sql": "", "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "materialized": "seed", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": null, "database": null, "tags": [], "full_refresh": null, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public", "fqn": ["jaffle_shop", "raw_payments"], "unique_id": "seed.jaffle_shop.raw_payments", "package_name": "jaffle_shop", "root_path": "/tmp/dbt-metabase/sandbox", "path": "raw_payments.csv", "original_file_path": "seeds/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": 1626853293}, "seed.jaffle_shop.raw_orders": {"raw_sql": "", "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "materialized": "seed", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": null, "database": null, "tags": [], "full_refresh": null, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public", "fqn": ["jaffle_shop", "raw_orders"], "unique_id": "seed.jaffle_shop.raw_orders", "package_name": "jaffle_shop", "root_path": "/tmp/dbt-metabase/sandbox", "path": "raw_orders.csv", "original_file_path": "seeds/raw_orders.csv", "name": "raw_orders", "alias": "raw_orders", "checksum": {"name": "sha256", "checksum": "c5f309d84ba32f2a39235c59f2d4f6c855aedba7e215847c957f1a5f2fa80d3e"}, "tags": [], "refs": [], "sources": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293}, "test.jaffle_shop.unique_customers_customer_id.d48e126d80": {"raw_sql": "{{ test_unique(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "unique", "kwargs": {"column_name": "customer_id", "model": "{% if config.get('where') %}(select * from {{ ref('customers') }} where {{config.get('where')}}) customers{% else %}{{ ref('customers') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique"], "nodes": ["model.jaffle_shop.customers"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_dbt_test__audit", "fqn": ["jaffle_shop", "schema_test", "unique_customers_customer_id"], "unique_id": "test.jaffle_shop.unique_customers_customer_id.d48e126d80", "package_name": "jaffle_shop", "root_path": "/tmp/dbt-metabase/sandbox", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "customer_id"}, "test.jaffle_shop.not_null_customers_customer_id.923d2d910a": {"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_id", "model": "{% if config.get('where') %}(select * from {{ ref('customers') }} where {{config.get('where')}}) customers{% else %}{{ ref('customers') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.jaffle_shop.customers"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_dbt_test__audit", "fqn": ["jaffle_shop", "schema_test", "not_null_customers_customer_id"], "unique_id": "test.jaffle_shop.not_null_customers_customer_id.923d2d910a", "package_name": "jaffle_shop", "root_path": "/tmp/dbt-metabase/sandbox", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "customer_id"}, "test.jaffle_shop.unique_orders_order_id.0d77ddcf59": {"raw_sql": "{{ test_unique(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "unique", "kwargs": {"column_name": "order_id", "model": "{% if config.get('where') %}(select * from {{ ref('orders') }} where {{config.get('where')}}) orders{% else %}{{ ref('orders') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique"], "nodes": ["model.jaffle_shop.orders"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_dbt_test__audit", "fqn": ["jaffle_shop", "schema_test", "unique_orders_order_id"], "unique_id": "test.jaffle_shop.unique_orders_order_id.0d77ddcf59", "package_name": "jaffle_shop", "root_path": "/tmp/dbt-metabase/sandbox", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "order_id"}, "test.jaffle_shop.not_null_orders_order_id.4daff5eed7": {"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_id", "model": "{% if config.get('where') %}(select * from {{ ref('orders') }} where {{config.get('where')}}) orders{% else %}{{ ref('orders') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.jaffle_shop.orders"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_dbt_test__audit", "fqn": ["jaffle_shop", "schema_test", "not_null_orders_order_id"], "unique_id": "test.jaffle_shop.not_null_orders_order_id.4daff5eed7", "package_name": "jaffle_shop", "root_path": "/tmp/dbt-metabase/sandbox", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "order_id"}, "test.jaffle_shop.not_null_orders_customer_id.70722cc05f": {"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_id", "model": "{% if config.get('where') %}(select * from {{ ref('orders') }} where {{config.get('where')}}) orders{% else %}{{ ref('orders') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.jaffle_shop.orders"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_dbt_test__audit", "fqn": ["jaffle_shop", "schema_test", "not_null_orders_customer_id"], "unique_id": "test.jaffle_shop.not_null_orders_customer_id.70722cc05f", "package_name": "jaffle_shop", "root_path": "/tmp/dbt-metabase/sandbox", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "customer_id"}, "test.jaffle_shop.relationships_orders_customer_id__customer_id__ref_customers_.e153c026e4": {"raw_sql": "{{ test_relationships(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "relationships", "kwargs": {"to": "ref('customers')", "field": "customer_id", "column_name": "customer_id", "model": "{% if config.get('where') %}(select * from {{ ref('orders') }} where {{config.get('where')}}) orders{% else %}{{ ref('orders') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_relationships", "macro.dbt.default__test_relationships"], "nodes": ["model.jaffle_shop.customers", "model.jaffle_shop.orders"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_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_.e153c026e4", "package_name": "jaffle_shop", "root_path": "/tmp/dbt-metabase/sandbox", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "customer_id"}, "test.jaffle_shop.accepted_values_orders_status__placed__shipped__completed__return_pending__returned.2e6d271b93": {"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": "{% if config.get('where') %}(select * from {{ ref('orders') }} where {{config.get('where')}}) orders{% else %}{{ ref('orders') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.default__test_accepted_values"], "nodes": ["model.jaffle_shop.orders"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": "accepted_values_orders_1ce6ab157c285f7cd2ac656013faf758", "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_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.2e6d271b93", "package_name": "jaffle_shop", "root_path": "/tmp/dbt-metabase/sandbox", "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": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_orders_1ce6ab157c285f7cd2ac656013faf758"}, "created_at": 1626853293, "column_name": "status"}, "test.jaffle_shop.not_null_orders_amount.f7bae8de1b": {"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "amount", "model": "{% if config.get('where') %}(select * from {{ ref('orders') }} where {{config.get('where')}}) orders{% else %}{{ ref('orders') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.jaffle_shop.orders"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_dbt_test__audit", "fqn": ["jaffle_shop", "schema_test", "not_null_orders_amount"], "unique_id": "test.jaffle_shop.not_null_orders_amount.f7bae8de1b", "package_name": "jaffle_shop", "root_path": "/tmp/dbt-metabase/sandbox", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "amount"}, "test.jaffle_shop.not_null_orders_credit_card_amount.f6f7978042": {"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "credit_card_amount", "model": "{% if config.get('where') %}(select * from {{ ref('orders') }} where {{config.get('where')}}) orders{% else %}{{ ref('orders') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.jaffle_shop.orders"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_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.f6f7978042", "package_name": "jaffle_shop", "root_path": "/tmp/dbt-metabase/sandbox", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "credit_card_amount"}, "test.jaffle_shop.not_null_orders_coupon_amount.edd08a4b47": {"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "coupon_amount", "model": "{% if config.get('where') %}(select * from {{ ref('orders') }} where {{config.get('where')}}) orders{% else %}{{ ref('orders') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.jaffle_shop.orders"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_dbt_test__audit", "fqn": ["jaffle_shop", "schema_test", "not_null_orders_coupon_amount"], "unique_id": "test.jaffle_shop.not_null_orders_coupon_amount.edd08a4b47", "package_name": "jaffle_shop", "root_path": "/tmp/dbt-metabase/sandbox", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "coupon_amount"}, "test.jaffle_shop.not_null_orders_bank_transfer_amount.402a8a1daa": {"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "bank_transfer_amount", "model": "{% if config.get('where') %}(select * from {{ ref('orders') }} where {{config.get('where')}}) orders{% else %}{{ ref('orders') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.jaffle_shop.orders"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_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.402a8a1daa", "package_name": "jaffle_shop", "root_path": "/tmp/dbt-metabase/sandbox", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "bank_transfer_amount"}, "test.jaffle_shop.not_null_orders_gift_card_amount.6205906a88": {"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "gift_card_amount", "model": "{% if config.get('where') %}(select * from {{ ref('orders') }} where {{config.get('where')}}) orders{% else %}{{ ref('orders') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.jaffle_shop.orders"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_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.6205906a88", "package_name": "jaffle_shop", "root_path": "/tmp/dbt-metabase/sandbox", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "gift_card_amount"}, "test.jaffle_shop.unique_stg_customers_customer_id.5530022331": {"raw_sql": "{{ test_unique(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "unique", "kwargs": {"column_name": "customer_id", "model": "{% if config.get('where') %}(select * from {{ ref('stg_customers') }} where {{config.get('where')}}) stg_customers{% else %}{{ ref('stg_customers') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique"], "nodes": ["model.jaffle_shop.stg_customers"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_dbt_test__audit", "fqn": ["jaffle_shop", "schema_test", "unique_stg_customers_customer_id"], "unique_id": "test.jaffle_shop.unique_stg_customers_customer_id.5530022331", "package_name": "jaffle_shop", "root_path": "/tmp/dbt-metabase/sandbox", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "customer_id"}, "test.jaffle_shop.not_null_stg_customers_customer_id.4ab9034fe1": {"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_id", "model": "{% if config.get('where') %}(select * from {{ ref('stg_customers') }} where {{config.get('where')}}) stg_customers{% else %}{{ ref('stg_customers') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.jaffle_shop.stg_customers"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_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.4ab9034fe1", "package_name": "jaffle_shop", "root_path": "/tmp/dbt-metabase/sandbox", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "customer_id"}, "test.jaffle_shop.unique_stg_orders_order_id.99e62d7d48": {"raw_sql": "{{ test_unique(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "unique", "kwargs": {"column_name": "order_id", "model": "{% if config.get('where') %}(select * from {{ ref('stg_orders') }} where {{config.get('where')}}) stg_orders{% else %}{{ ref('stg_orders') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique"], "nodes": ["model.jaffle_shop.stg_orders"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_dbt_test__audit", "fqn": ["jaffle_shop", "schema_test", "unique_stg_orders_order_id"], "unique_id": "test.jaffle_shop.unique_stg_orders_order_id.99e62d7d48", "package_name": "jaffle_shop", "root_path": "/tmp/dbt-metabase/sandbox", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "order_id"}, "test.jaffle_shop.not_null_stg_orders_order_id.052f14ae90": {"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_id", "model": "{% if config.get('where') %}(select * from {{ ref('stg_orders') }} where {{config.get('where')}}) stg_orders{% else %}{{ ref('stg_orders') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.jaffle_shop.stg_orders"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_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.052f14ae90", "package_name": "jaffle_shop", "root_path": "/tmp/dbt-metabase/sandbox", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "order_id"}, "test.jaffle_shop.accepted_values_stg_orders_status__placed__shipped__completed__return_pending__returned.1b7358ad3f": {"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": "{% if config.get('where') %}(select * from {{ ref('stg_orders') }} where {{config.get('where')}}) stg_orders{% else %}{{ ref('stg_orders') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.default__test_accepted_values"], "nodes": ["model.jaffle_shop.stg_orders"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": "accepted_values_stg_orders_4f514bf94b77b7ea437830eec4421c58", "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_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.1b7358ad3f", "package_name": "jaffle_shop", "root_path": "/tmp/dbt-metabase/sandbox", "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": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_stg_orders_4f514bf94b77b7ea437830eec4421c58"}, "created_at": 1626853293, "column_name": "status"}, "test.jaffle_shop.unique_stg_payments_payment_id.5f5522e7d6": {"raw_sql": "{{ test_unique(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "unique", "kwargs": {"column_name": "payment_id", "model": "{% if config.get('where') %}(select * from {{ ref('stg_payments') }} where {{config.get('where')}}) stg_payments{% else %}{{ ref('stg_payments') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique"], "nodes": ["model.jaffle_shop.stg_payments"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_dbt_test__audit", "fqn": ["jaffle_shop", "schema_test", "unique_stg_payments_payment_id"], "unique_id": "test.jaffle_shop.unique_stg_payments_payment_id.5f5522e7d6", "package_name": "jaffle_shop", "root_path": "/tmp/dbt-metabase/sandbox", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "payment_id"}, "test.jaffle_shop.not_null_stg_payments_payment_id.ece096e012": {"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "payment_id", "model": "{% if config.get('where') %}(select * from {{ ref('stg_payments') }} where {{config.get('where')}}) stg_payments{% else %}{{ ref('stg_payments') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.jaffle_shop.stg_payments"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_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.ece096e012", "package_name": "jaffle_shop", "root_path": "/tmp/dbt-metabase/sandbox", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "payment_id"}, "test.jaffle_shop.accepted_values_stg_payments_payment_method__credit_card__coupon__bank_transfer__gift_card.59d3da1081": {"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": "{% if config.get('where') %}(select * from {{ ref('stg_payments') }} where {{config.get('where')}}) stg_payments{% else %}{{ ref('stg_payments') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.default__test_accepted_values"], "nodes": ["model.jaffle_shop.stg_payments"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": "accepted_values_stg_payments_c7909fb19b1f0177c2bf99c7912f06ef", "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_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.59d3da1081", "package_name": "jaffle_shop", "root_path": "/tmp/dbt-metabase/sandbox", "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": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_stg_payments_c7909fb19b1f0177c2bf99c7912f06ef"}, "created_at": 1626853293, "column_name": "payment_method"}}, "sources": {}, "macros": {"macro.dbt_postgres.postgres__create_table_as": {"unique_id": "macro.dbt_postgres.postgres__create_table_as", "package_name": "dbt_postgres", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__get_create_index_sql": {"unique_id": "macro.dbt_postgres.postgres__get_create_index_sql", "package_name": "dbt_postgres", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__create_schema": {"unique_id": "macro.dbt_postgres.postgres__create_schema", "package_name": "dbt_postgres", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__drop_schema": {"unique_id": "macro.dbt_postgres.postgres__drop_schema", "package_name": "dbt_postgres", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__get_columns_in_relation": {"unique_id": "macro.dbt_postgres.postgres__get_columns_in_relation", "package_name": "dbt_postgres", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__list_relations_without_caching": {"unique_id": "macro.dbt_postgres.postgres__list_relations_without_caching", "package_name": "dbt_postgres", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__information_schema_name": {"unique_id": "macro.dbt_postgres.postgres__information_schema_name", "package_name": "dbt_postgres", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__list_schemas": {"unique_id": "macro.dbt_postgres.postgres__list_schemas", "package_name": "dbt_postgres", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__check_schema_exists": {"unique_id": "macro.dbt_postgres.postgres__check_schema_exists", "package_name": "dbt_postgres", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__current_timestamp": {"unique_id": "macro.dbt_postgres.postgres__current_timestamp", "package_name": "dbt_postgres", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__snapshot_string_as_time": {"unique_id": "macro.dbt_postgres.postgres__snapshot_string_as_time", "package_name": "dbt_postgres", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__snapshot_get_time": {"unique_id": "macro.dbt_postgres.postgres__snapshot_get_time", "package_name": "dbt_postgres", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__make_temp_relation": {"unique_id": "macro.dbt_postgres.postgres__make_temp_relation", "package_name": "dbt_postgres", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres_escape_comment": {"unique_id": "macro.dbt_postgres.postgres_escape_comment", "package_name": "dbt_postgres", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__alter_relation_comment": {"unique_id": "macro.dbt_postgres.postgres__alter_relation_comment", "package_name": "dbt_postgres", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__alter_column_comment": {"unique_id": "macro.dbt_postgres.postgres__alter_column_comment", "package_name": "dbt_postgres", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__get_catalog": {"unique_id": "macro.dbt_postgres.postgres__get_catalog", "package_name": "dbt_postgres", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres_get_relations": {"unique_id": "macro.dbt_postgres.postgres_get_relations", "package_name": "dbt_postgres", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__snapshot_merge_sql": {"unique_id": "macro.dbt_postgres.postgres__snapshot_merge_sql", "package_name": "dbt_postgres", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.statement": {"unique_id": "macro.dbt.statement", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.noop_statement": {"unique_id": "macro.dbt.noop_statement", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.get_columns_in_query": {"unique_id": "macro.dbt.get_columns_in_query", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__get_columns_in_query": {"unique_id": "macro.dbt.default__get_columns_in_query", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.create_schema": {"unique_id": "macro.dbt.create_schema", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__create_schema": {"unique_id": "macro.dbt.default__create_schema", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.drop_schema": {"unique_id": "macro.dbt.drop_schema", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__drop_schema": {"unique_id": "macro.dbt.default__drop_schema", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.create_table_as": {"unique_id": "macro.dbt.create_table_as", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(temporary, relation, sql) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__create_table_as"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1626853293}, "macro.dbt.default__create_table_as": {"unique_id": "macro.dbt.default__create_table_as", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.get_create_index_sql": {"unique_id": "macro.dbt.get_create_index_sql", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__get_create_index_sql": {"unique_id": "macro.dbt.default__get_create_index_sql", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.create_indexes": {"unique_id": "macro.dbt.create_indexes", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__create_indexes": {"unique_id": "macro.dbt.default__create_indexes", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.create_view_as": {"unique_id": "macro.dbt.create_view_as", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(relation, sql) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__create_view_as"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1626853293}, "macro.dbt.default__create_view_as": {"unique_id": "macro.dbt.default__create_view_as", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.get_catalog": {"unique_id": "macro.dbt.get_catalog", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(information_schema, schemas)) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_catalog"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1626853293}, "macro.dbt.default__get_catalog": {"unique_id": "macro.dbt.default__get_catalog", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.get_columns_in_relation": {"unique_id": "macro.dbt.get_columns_in_relation", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(relation)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_columns_in_relation"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1626853293}, "macro.dbt.sql_convert_columns_in_relation": {"unique_id": "macro.dbt.sql_convert_columns_in_relation", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.default__get_columns_in_relation": {"unique_id": "macro.dbt.default__get_columns_in_relation", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.alter_column_type": {"unique_id": "macro.dbt.alter_column_type", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.alter_column_comment": {"unique_id": "macro.dbt.alter_column_comment", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__alter_column_comment": {"unique_id": "macro.dbt.default__alter_column_comment", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.alter_relation_comment": {"unique_id": "macro.dbt.alter_relation_comment", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(relation, 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": 1626853293}, "macro.dbt.default__alter_relation_comment": {"unique_id": "macro.dbt.default__alter_relation_comment", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.persist_docs": {"unique_id": "macro.dbt.persist_docs", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(relation, model, for_relation, for_columns)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__persist_docs"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1626853293}, "macro.dbt.default__persist_docs": {"unique_id": "macro.dbt.default__persist_docs", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.default__alter_column_type": {"unique_id": "macro.dbt.default__alter_column_type", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.drop_relation": {"unique_id": "macro.dbt.drop_relation", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__drop_relation": {"unique_id": "macro.dbt.default__drop_relation", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.truncate_relation": {"unique_id": "macro.dbt.truncate_relation", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__truncate_relation": {"unique_id": "macro.dbt.default__truncate_relation", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.rename_relation": {"unique_id": "macro.dbt.rename_relation", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__rename_relation": {"unique_id": "macro.dbt.default__rename_relation", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.information_schema_name": {"unique_id": "macro.dbt.information_schema_name", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__information_schema_name": {"unique_id": "macro.dbt.default__information_schema_name", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.list_schemas": {"unique_id": "macro.dbt.list_schemas", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__list_schemas": {"unique_id": "macro.dbt.default__list_schemas", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.check_schema_exists": {"unique_id": "macro.dbt.check_schema_exists", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__check_schema_exists": {"unique_id": "macro.dbt.default__check_schema_exists", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.list_relations_without_caching": {"unique_id": "macro.dbt.list_relations_without_caching", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__list_relations_without_caching": {"unique_id": "macro.dbt.default__list_relations_without_caching", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.current_timestamp": {"unique_id": "macro.dbt.current_timestamp", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')() }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1626853293}, "macro.dbt.default__current_timestamp": {"unique_id": "macro.dbt.default__current_timestamp", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.collect_freshness": {"unique_id": "macro.dbt.collect_freshness", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__collect_freshness": {"unique_id": "macro.dbt.default__collect_freshness", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.make_temp_relation": {"unique_id": "macro.dbt.make_temp_relation", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__make_temp_relation": {"unique_id": "macro.dbt.default__make_temp_relation", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.set_sql_header": {"unique_id": "macro.dbt.set_sql_header", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.generate_schema_name": {"unique_id": "macro.dbt.generate_schema_name", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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\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": 1626853293}, "macro.dbt.generate_schema_name_for_env": {"unique_id": "macro.dbt.generate_schema_name_for_env", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.generate_database_name": {"unique_id": "macro.dbt.generate_database_name", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__generate_database_name": {"unique_id": "macro.dbt.default__generate_database_name", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.convert_datetime": {"unique_id": "macro.dbt.convert_datetime", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.dates_in_range": {"unique_id": "macro.dbt.dates_in_range", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.partition_range": {"unique_id": "macro.dbt.partition_range", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.py_current_timestring": {"unique_id": "macro.dbt.py_current_timestring", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.is_incremental": {"unique_id": "macro.dbt.is_incremental", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.run_query": {"unique_id": "macro.dbt.run_query", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.generate_alias_name": {"unique_id": "macro.dbt.generate_alias_name", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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\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": 1626853293}, "macro.dbt.run_hooks": {"unique_id": "macro.dbt.run_hooks", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.column_list": {"unique_id": "macro.dbt.column_list", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.column_list_for_create_table": {"unique_id": "macro.dbt.column_list_for_create_table", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.make_hook_config": {"unique_id": "macro.dbt.make_hook_config", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.before_begin": {"unique_id": "macro.dbt.before_begin", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.in_transaction": {"unique_id": "macro.dbt.in_transaction", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.after_commit": {"unique_id": "macro.dbt.after_commit", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.drop_relation_if_exists": {"unique_id": "macro.dbt.drop_relation_if_exists", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.load_relation": {"unique_id": "macro.dbt.load_relation", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.should_full_refresh": {"unique_id": "macro.dbt.should_full_refresh", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.should_store_failures": {"unique_id": "macro.dbt.should_store_failures", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.get_test_sql": {"unique_id": "macro.dbt.get_test_sql", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__get_test_sql": {"unique_id": "macro.dbt.default__get_test_sql", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.materialization_test_default": {"unique_id": "macro.dbt.materialization_test_default", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.create_csv_table": {"unique_id": "macro.dbt.create_csv_table", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.reset_csv_table": {"unique_id": "macro.dbt.reset_csv_table", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.load_csv_rows": {"unique_id": "macro.dbt.load_csv_rows", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__create_csv_table": {"unique_id": "macro.dbt.default__create_csv_table", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.default__reset_csv_table": {"unique_id": "macro.dbt.default__reset_csv_table", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.get_seed_column_quoted_csv": {"unique_id": "macro.dbt.get_seed_column_quoted_csv", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.basic_load_csv_rows": {"unique_id": "macro.dbt.basic_load_csv_rows", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/site-packages/dbt/include/global_project", "path": "macros/materializations/seed/seed.sql", "original_file_path": "macros/materializations/seed/seed.sql", "name": "basic_load_csv_rows", "macro_sql": "{% macro basic_load_csv_rows(model, batch_size, agate_table) %}\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 %s\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_seed_column_quoted_csv"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1626853293}, "macro.dbt.default__load_csv_rows": {"unique_id": "macro.dbt.default__load_csv_rows", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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 {{ return(basic_load_csv_rows(model, 10000, agate_table) )}}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.basic_load_csv_rows"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1626853293}, "macro.dbt.materialization_seed_default": {"unique_id": "macro.dbt.materialization_seed_default", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.snapshot_merge_sql": {"unique_id": "macro.dbt.snapshot_merge_sql", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__snapshot_merge_sql": {"unique_id": "macro.dbt.default__snapshot_merge_sql", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.create_columns": {"unique_id": "macro.dbt.create_columns", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__create_columns": {"unique_id": "macro.dbt.default__create_columns", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.post_snapshot": {"unique_id": "macro.dbt.post_snapshot", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__post_snapshot": {"unique_id": "macro.dbt.default__post_snapshot", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.snapshot_staging_table": {"unique_id": "macro.dbt.snapshot_staging_table", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.build_snapshot_table": {"unique_id": "macro.dbt.build_snapshot_table", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.get_or_create_relation": {"unique_id": "macro.dbt.get_or_create_relation", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.build_snapshot_staging_table": {"unique_id": "macro.dbt.build_snapshot_staging_table", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.materialization_snapshot_default": {"unique_id": "macro.dbt.materialization_snapshot_default", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.strategy_dispatch": {"unique_id": "macro.dbt.strategy_dispatch", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.snapshot_hash_arguments": {"unique_id": "macro.dbt.snapshot_hash_arguments", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__snapshot_hash_arguments": {"unique_id": "macro.dbt.default__snapshot_hash_arguments", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.snapshot_get_time": {"unique_id": "macro.dbt.snapshot_get_time", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')() }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__snapshot_get_time"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1626853293}, "macro.dbt.default__snapshot_get_time": {"unique_id": "macro.dbt.default__snapshot_get_time", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.snapshot_timestamp_strategy": {"unique_id": "macro.dbt.snapshot_timestamp_strategy", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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/fishtown-analytics/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": 1626853293}, "macro.dbt.snapshot_string_as_time": {"unique_id": "macro.dbt.snapshot_string_as_time", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(timestamp) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__snapshot_string_as_time"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1626853293}, "macro.dbt.default__snapshot_string_as_time": {"unique_id": "macro.dbt.default__snapshot_string_as_time", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.snapshot_check_all_get_existing_columns": {"unique_id": "macro.dbt.snapshot_check_all_get_existing_columns", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.snapshot_check_strategy": {"unique_id": "macro.dbt.snapshot_check_strategy", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.materialization_incremental_default": {"unique_id": "macro.dbt.materialization_incremental_default", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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\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 {% if existing_relation is none %}\n {% set build_sql = create_table_as(False, target_relation, sql) %}\n {% elif existing_relation.is_view or should_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\n {% set intermediate_relation = existing_relation.incorporate(path={\"identifier\": tmp_identifier}) %}\n {% set backup_relation = existing_relation.incorporate(path={\"identifier\": backup_identifier}) %}\n\n {% do adapter.drop_relation(intermediate_relation) %}\n {% do adapter.drop_relation(backup_relation) %}\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 {% set tmp_relation = make_temp_relation(target_relation) %}\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 {% set build_sql = incremental_upsert(tmp_relation, target_relation, unique_key=unique_key) %}\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.run_hooks", "macro.dbt.create_table_as", "macro.dbt.should_full_refresh", "macro.dbt.make_temp_relation", "macro.dbt.run_query", "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": 1626853293}, "macro.dbt.incremental_upsert": {"unique_id": "macro.dbt.incremental_upsert", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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 {%- 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": 1626853293}, "macro.dbt.get_merge_sql": {"unique_id": "macro.dbt.get_merge_sql", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.get_delete_insert_merge_sql": {"unique_id": "macro.dbt.get_delete_insert_merge_sql", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.get_insert_overwrite_merge_sql": {"unique_id": "macro.dbt.get_insert_overwrite_merge_sql", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__get_merge_sql": {"unique_id": "macro.dbt.default__get_merge_sql", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.get_quoted_csv": {"unique_id": "macro.dbt.get_quoted_csv", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.common_get_delete_insert_merge_sql": {"unique_id": "macro.dbt.common_get_delete_insert_merge_sql", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.default__get_delete_insert_merge_sql": {"unique_id": "macro.dbt.default__get_delete_insert_merge_sql", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.default__get_insert_overwrite_merge_sql": {"unique_id": "macro.dbt.default__get_insert_overwrite_merge_sql", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.handle_existing_table": {"unique_id": "macro.dbt.handle_existing_table", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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', macro_namespace = '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": 1626853293}, "macro.dbt.default__handle_existing_table": {"unique_id": "macro.dbt.default__handle_existing_table", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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 {{ 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": 1626853293}, "macro.dbt.create_or_replace_view": {"unique_id": "macro.dbt.create_or_replace_view", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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(run_outside_transaction_hooks=True) %}\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 {% if run_outside_transaction_hooks %}\n -- no transactions on BigQuery\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n {% endif %}\n\n -- `BEGIN` happens here on Snowflake\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\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, inside_transaction=True) }}\n\n {{ adapter.commit() }}\n\n {% if run_outside_transaction_hooks %}\n -- No transactions on BigQuery\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n {% endif %}\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": 1626853293}, "macro.dbt.materialization_view_default": {"unique_id": "macro.dbt.materialization_view_default", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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\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\n {%- set exists_as_view = (old_relation is not none and old_relation.is_view) -%}\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n -- drop the temp relations if they exists for some reason\n {{ adapter.drop_relation(intermediate_relation) }}\n {{ adapter.drop_relation(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(target_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.statement", "macro.dbt.create_view_as", "macro.dbt.persist_docs", "macro.dbt.drop_relation_if_exists"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1626853293}, "macro.dbt.materialization_table_default": {"unique_id": "macro.dbt.materialization_table_default", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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\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\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\n -- drop the temp relations if they exists for some reason\n {{ adapter.drop_relation(intermediate_relation) }}\n {{ adapter.drop_relation(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(target_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.run_hooks", "macro.dbt.statement", "macro.dbt.create_table_as", "macro.dbt.create_indexes", "macro.dbt.persist_docs", "macro.dbt.drop_relation_if_exists"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1626853293}, "macro.dbt.default__test_unique": {"unique_id": "macro.dbt.default__test_unique", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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 }},\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": 1626853293}, "macro.dbt.test_unique": {"unique_id": "macro.dbt.test_unique", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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') %}\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": 1626853293}, "macro.dbt.default__test_not_null": {"unique_id": "macro.dbt.default__test_not_null", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.test_not_null": {"unique_id": "macro.dbt.test_not_null", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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') %}\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": 1626853293}, "macro.dbt.default__test_relationships": {"unique_id": "macro.dbt.default__test_relationships", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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\nselect\n child.{{ column_name }}\n\nfrom {{ model }} as child\n\nleft join {{ to }} as parent\n on child.{{ column_name }} = parent.{{ field }}\n\nwhere child.{{ column_name }} is not null\n and parent.{{ field }} is null\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1626853293}, "macro.dbt.test_relationships": {"unique_id": "macro.dbt.test_relationships", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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') %}\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": 1626853293}, "macro.dbt.default__test_accepted_values": {"unique_id": "macro.dbt.default__test_accepted_values", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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 1\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": 1626853293}, "macro.dbt.test_accepted_values": {"unique_id": "macro.dbt.test_accepted_values", "package_name": "dbt", "root_path": "/tmp/dbt-metabase/.venv/lib/python3.8/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') %}\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": 1626853293}}, "docs": {"jaffle_shop.__overview__": {"unique_id": "jaffle_shop.__overview__", "package_name": "jaffle_shop", "root_path": "/tmp/dbt-metabase/sandbox", "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": "/tmp/dbt-metabase/sandbox", "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": "/tmp/dbt-metabase/.venv/lib/python3.8/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.orders": ["model.jaffle_shop.stg_orders", "model.jaffle_shop.stg_payments"], "model.jaffle_shop.customers": ["model.jaffle_shop.stg_customers", "model.jaffle_shop.stg_orders", "model.jaffle_shop.stg_payments"], "model.jaffle_shop.stg_orders": ["seed.jaffle_shop.raw_orders"], "model.jaffle_shop.stg_payments": ["seed.jaffle_shop.raw_payments"], "model.jaffle_shop.stg_customers": ["seed.jaffle_shop.raw_customers"], "seed.jaffle_shop.raw_customers": [], "seed.jaffle_shop.raw_payments": [], "seed.jaffle_shop.raw_orders": [], "test.jaffle_shop.unique_customers_customer_id.d48e126d80": ["model.jaffle_shop.customers"], "test.jaffle_shop.not_null_customers_customer_id.923d2d910a": ["model.jaffle_shop.customers"], "test.jaffle_shop.unique_orders_order_id.0d77ddcf59": ["model.jaffle_shop.orders"], "test.jaffle_shop.not_null_orders_order_id.4daff5eed7": ["model.jaffle_shop.orders"], "test.jaffle_shop.not_null_orders_customer_id.70722cc05f": ["model.jaffle_shop.orders"], "test.jaffle_shop.relationships_orders_customer_id__customer_id__ref_customers_.e153c026e4": ["model.jaffle_shop.customers", "model.jaffle_shop.orders"], "test.jaffle_shop.accepted_values_orders_status__placed__shipped__completed__return_pending__returned.2e6d271b93": ["model.jaffle_shop.orders"], "test.jaffle_shop.not_null_orders_amount.f7bae8de1b": ["model.jaffle_shop.orders"], "test.jaffle_shop.not_null_orders_credit_card_amount.f6f7978042": ["model.jaffle_shop.orders"], "test.jaffle_shop.not_null_orders_coupon_amount.edd08a4b47": ["model.jaffle_shop.orders"], "test.jaffle_shop.not_null_orders_bank_transfer_amount.402a8a1daa": ["model.jaffle_shop.orders"], "test.jaffle_shop.not_null_orders_gift_card_amount.6205906a88": ["model.jaffle_shop.orders"], "test.jaffle_shop.unique_stg_customers_customer_id.5530022331": ["model.jaffle_shop.stg_customers"], "test.jaffle_shop.not_null_stg_customers_customer_id.4ab9034fe1": ["model.jaffle_shop.stg_customers"], "test.jaffle_shop.unique_stg_orders_order_id.99e62d7d48": ["model.jaffle_shop.stg_orders"], "test.jaffle_shop.not_null_stg_orders_order_id.052f14ae90": ["model.jaffle_shop.stg_orders"], "test.jaffle_shop.accepted_values_stg_orders_status__placed__shipped__completed__return_pending__returned.1b7358ad3f": ["model.jaffle_shop.stg_orders"], "test.jaffle_shop.unique_stg_payments_payment_id.5f5522e7d6": ["model.jaffle_shop.stg_payments"], "test.jaffle_shop.not_null_stg_payments_payment_id.ece096e012": ["model.jaffle_shop.stg_payments"], "test.jaffle_shop.accepted_values_stg_payments_payment_method__credit_card__coupon__bank_transfer__gift_card.59d3da1081": ["model.jaffle_shop.stg_payments"]}, "child_map": {"model.jaffle_shop.orders": ["test.jaffle_shop.accepted_values_orders_status__placed__shipped__completed__return_pending__returned.2e6d271b93", "test.jaffle_shop.not_null_orders_amount.f7bae8de1b", "test.jaffle_shop.not_null_orders_bank_transfer_amount.402a8a1daa", "test.jaffle_shop.not_null_orders_coupon_amount.edd08a4b47", "test.jaffle_shop.not_null_orders_credit_card_amount.f6f7978042", "test.jaffle_shop.not_null_orders_customer_id.70722cc05f", "test.jaffle_shop.not_null_orders_gift_card_amount.6205906a88", "test.jaffle_shop.not_null_orders_order_id.4daff5eed7", "test.jaffle_shop.relationships_orders_customer_id__customer_id__ref_customers_.e153c026e4", "test.jaffle_shop.unique_orders_order_id.0d77ddcf59"], "model.jaffle_shop.customers": ["test.jaffle_shop.not_null_customers_customer_id.923d2d910a", "test.jaffle_shop.relationships_orders_customer_id__customer_id__ref_customers_.e153c026e4", "test.jaffle_shop.unique_customers_customer_id.d48e126d80"], "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.1b7358ad3f", "test.jaffle_shop.not_null_stg_orders_order_id.052f14ae90", "test.jaffle_shop.unique_stg_orders_order_id.99e62d7d48"], "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.59d3da1081", "test.jaffle_shop.not_null_stg_payments_payment_id.ece096e012", "test.jaffle_shop.unique_stg_payments_payment_id.5f5522e7d6"], "model.jaffle_shop.stg_customers": ["model.jaffle_shop.customers", "test.jaffle_shop.not_null_stg_customers_customer_id.4ab9034fe1", "test.jaffle_shop.unique_stg_customers_customer_id.5530022331"], "seed.jaffle_shop.raw_customers": ["model.jaffle_shop.stg_customers"], "seed.jaffle_shop.raw_payments": ["model.jaffle_shop.stg_payments"], "seed.jaffle_shop.raw_orders": ["model.jaffle_shop.stg_orders"], "test.jaffle_shop.unique_customers_customer_id.d48e126d80": [], "test.jaffle_shop.not_null_customers_customer_id.923d2d910a": [], "test.jaffle_shop.unique_orders_order_id.0d77ddcf59": [], "test.jaffle_shop.not_null_orders_order_id.4daff5eed7": [], "test.jaffle_shop.not_null_orders_customer_id.70722cc05f": [], "test.jaffle_shop.relationships_orders_customer_id__customer_id__ref_customers_.e153c026e4": [], "test.jaffle_shop.accepted_values_orders_status__placed__shipped__completed__return_pending__returned.2e6d271b93": [], "test.jaffle_shop.not_null_orders_amount.f7bae8de1b": [], "test.jaffle_shop.not_null_orders_credit_card_amount.f6f7978042": [], "test.jaffle_shop.not_null_orders_coupon_amount.edd08a4b47": [], "test.jaffle_shop.not_null_orders_bank_transfer_amount.402a8a1daa": [], "test.jaffle_shop.not_null_orders_gift_card_amount.6205906a88": [], "test.jaffle_shop.unique_stg_customers_customer_id.5530022331": [], "test.jaffle_shop.not_null_stg_customers_customer_id.4ab9034fe1": [], "test.jaffle_shop.unique_stg_orders_order_id.99e62d7d48": [], "test.jaffle_shop.not_null_stg_orders_order_id.052f14ae90": [], "test.jaffle_shop.accepted_values_stg_orders_status__placed__shipped__completed__return_pending__returned.1b7358ad3f": [], "test.jaffle_shop.unique_stg_payments_payment_id.5f5522e7d6": [], "test.jaffle_shop.not_null_stg_payments_payment_id.ece096e012": [], "test.jaffle_shop.accepted_values_stg_payments_payment_method__credit_card__coupon__bank_transfer__gift_card.59d3da1081": []}} diff --git a/tests/fixtures/exposure/baseline_test_exposures.yml b/tests/fixtures/exposure/baseline_test_exposures.yml index d4c5def3..452b28d5 100644 --- a/tests/fixtures/exposure/baseline_test_exposures.yml +++ b/tests/fixtures/exposure/baseline_test_exposures.yml @@ -20,7 +20,7 @@ exposures: url: http://localhost:3000/card/1 maturity: medium owner: - name: Alexander Butler + name: dbtmetabase email: user@example.com depends_on: - ref('customers') @@ -43,7 +43,7 @@ exposures: url: http://localhost:3000/card/2 maturity: medium owner: - name: Alexander Butler + name: dbtmetabase email: user@example.com depends_on: - ref('orders') @@ -66,7 +66,7 @@ exposures: url: http://localhost:3000/dashboard/1 maturity: medium owner: - name: Alexander Butler + name: dbtmetabase email: user@example.com depends_on: - ref('customers') @@ -89,7 +89,7 @@ exposures: url: http://localhost:3000/card/11 maturity: medium owner: - name: Alexander Butler + name: dbtmetabase email: user@example.com depends_on: - ref('customers') @@ -112,7 +112,7 @@ exposures: url: http://localhost:3000/card/9 maturity: medium owner: - name: Alexander Butler + name: dbtmetabase email: user@example.com depends_on: - ref('customers') @@ -135,7 +135,7 @@ exposures: url: http://localhost:3000/card/4 maturity: medium owner: - name: Alexander Butler + name: dbtmetabase email: user@example.com depends_on: - ref('customers') @@ -158,7 +158,7 @@ exposures: url: http://localhost:3000/card/5 maturity: medium owner: - name: Alexander Butler + name: dbtmetabase email: user@example.com depends_on: - ref('customers') @@ -181,7 +181,7 @@ exposures: url: http://localhost:3000/card/7 maturity: medium owner: - name: Alexander Butler + name: dbtmetabase email: user@example.com depends_on: - ref('customers') @@ -204,7 +204,7 @@ exposures: url: http://localhost:3000/card/6 maturity: medium owner: - name: Alexander Butler + name: dbtmetabase email: user@example.com depends_on: - ref('customers') @@ -227,7 +227,7 @@ exposures: url: http://localhost:3000/card/8 maturity: medium owner: - name: Alexander Butler + name: dbtmetabase email: user@example.com depends_on: - ref('customers') @@ -250,7 +250,7 @@ exposures: url: http://localhost:3000/card/10 maturity: medium owner: - name: Alexander Butler + name: dbtmetabase email: user@example.com depends_on: - ref('customers') @@ -273,7 +273,7 @@ exposures: url: http://localhost:3000/card/12 maturity: medium owner: - name: Alexander Butler + name: dbtmetabase email: user@example.com depends_on: - ref('customers') @@ -296,7 +296,7 @@ exposures: url: http://localhost:3000/card/13 maturity: medium owner: - name: Alexander Butler + name: dbtmetabase email: user@example.com depends_on: - ref('customers') @@ -319,7 +319,7 @@ exposures: url: http://localhost:3000/card/15 maturity: medium owner: - name: Alexander Butler + name: dbtmetabase email: user@example.com depends_on: - ref('customers') @@ -342,7 +342,7 @@ exposures: url: http://localhost:3000/card/14 maturity: medium owner: - name: Alexander Butler + name: dbtmetabase email: user@example.com depends_on: - ref('customers') @@ -365,7 +365,7 @@ exposures: url: http://localhost:3000/card/17 maturity: medium owner: - name: Alexander Butler + name: dbtmetabase email: user@example.com depends_on: - ref('customers') @@ -388,7 +388,7 @@ exposures: url: http://localhost:3000/card/16 maturity: medium owner: - name: Alexander Butler + name: dbtmetabase email: user@example.com depends_on: - ref('customers') diff --git a/tests/fixtures/mock_api/api/card.json b/tests/fixtures/mock_api/api/card.json index f4385e08..439d6b4e 100644 --- a/tests/fixtures/mock_api/api/card.json +++ b/tests/fixtures/mock_api/api/card.json @@ -1 +1 @@ -[{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "day"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Date"}, {"name": "sum", "display_name": "Sum of customer_lifetime_value", "base_type": "type/Decimal", "semantic_type": null, "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 35, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 15.0, "q3": 40.10050506338833, "max": 131.0, "sd": 26.119172295224672, "avg": 32.15384615384615}}}}, {"name": "avg", "display_name": "Average of customer_lifetime_value", "base_type": "type/Decimal", "semantic_type": null, "field_ref": ["aggregation", 1], "fingerprint": {"global": {"distinct-count": 34, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 13.17157287525381, "q3": 34.732050807568875, "max": 99.0, "sd": 17.628392521514144, "avg": 26.39102564102564}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customer_lifetime_value over time", "creator_id": 1, "updated_at": "2021-07-21T08:01:42.456526Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "day"}]], "aggregation": [["sum", ["field", 41, null]], ["avg", ["field", 41, null]]]}}, "id": 9, "display": "line", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:38.208516Z"}, "visualization_settings": {"graph.series_labels": ["sum", "average"], "graph.metrics": ["sum", "avg"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#f9d45c", "#F1B556"]}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "favorite": false, "created_at": "2021-07-21T08:01:38.189846Z", "public_uuid": null}, {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day", "name": "first_order", "field_ref": ["field", 39, {"temporal-unit": "day"}], "effective_type": "type/Date", "id": 39, "display_name": "first_order", "fingerprint": {"global": {"distinct-count": 47, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-01", "latest": "2018-04-07"}}}, "base_type": "type/Date"}, {"name": "sum", "display_name": "Sum of customer_lifetime_value", "base_type": "type/Decimal", "semantic_type": null, "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 33, "nil%": 0.02127659574468085}, "type": {"type/Number": {"min": 1.0, "q1": 17.0, "q3": 55.93725393319377, "max": 129.0, "sd": 25.492672054973276, "avg": 36.34782608695652}}}}, {"name": "avg", "display_name": "Average of customer_lifetime_value", "base_type": "type/Decimal", "semantic_type": null, "field_ref": ["aggregation", 1], "fingerprint": {"global": {"distinct-count": 35, "nil%": 0.02127659574468085}, "type": {"type/Number": {"min": 1.0, "q1": 15.0, "q3": 33.53589838486224, "max": 65.0, "sd": 17.057530000270994, "avg": 27.342391304347824}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customer_lifetime_value over time", "creator_id": 1, "updated_at": "2021-07-21T08:01:42.665585Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 39, {"temporal-unit": "day"}]], "aggregation": [["sum", ["field", 41, null]], ["avg", ["field", 41, null]]]}}, "id": 11, "display": "line", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:38.544961Z"}, "visualization_settings": {"graph.series_labels": ["sum", "average"], "graph.metrics": ["sum", "avg"], "graph.dimensions": ["first_order"], "graph.colors": ["#f9d45c", "#F1B556"]}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "favorite": false, "created_at": "2021-07-21T08:01:38.52841Z", "public_uuid": null}, {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 1, "nil%": 0.0}, "type": {"type/Number": {"min": 0.0, "q1": 0.0, "q3": 0.0, "max": 0.0, "sd": null, "avg": 0.0}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customers added in the last 30 days", "creator_id": 1, "updated_at": "2021-07-21T08:01:42.000946Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "filter": ["time-interval", ["field", 42, null], -30, "day"], "aggregation": [["count"]]}}, "id": 4, "display": "scalar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:37.545719Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": []}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "favorite": false, "created_at": "2021-07-21T08:01:37.535187Z", "public_uuid": null}, {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 1, "nil%": 0.0}, "type": {"type/Number": {"min": 0.0, "q1": 0.0, "q3": 0.0, "max": 0.0, "sd": null, "avg": 0.0}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customers added in the last 30 days", "creator_id": 1, "updated_at": "2021-07-21T08:01:42.157282Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "filter": ["time-interval", ["field", 39, null], -30, "day"], "aggregation": [["count"]]}}, "id": 5, "display": "scalar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:37.641827Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": []}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "favorite": false, "created_at": "2021-07-21T08:01:37.630969Z", "public_uuid": null}, {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "name": "customer_lifetime_value", "field_ref": ["field", 41, {"binning": {"strategy": "num-bins", "min-value": 0.0, "max-value": 100.0, "num-bins": 8, "bin-width": 12.5}}], "effective_type": "type/BigInteger", "id": 41, "display_name": "customer_lifetime_value", "fingerprint": {"global": {"distinct-count": 36, "nil%": 0.38}, "type": {"type/Number": {"min": 1.0, "q1": 13.464101615137753, "q3": 35.46410161513776, "max": 99.0, "sd": 18.812245525263663, "avg": 26.967741935483872}}}, "base_type": "type/Decimal"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 8, "nil%": 0.0}, "type": {"type/Number": {"min": 1.0, "q1": 3.0, "q3": 17.5, "max": 38.0, "sd": 12.294017127971522, "avg": 12.5}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customers by customer_lifetime_value", "creator_id": 1, "updated_at": "2021-07-21T08:01:42.20895Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 41, {"binning": {"strategy": "default"}}]], "aggregation": [["count"]]}}, "id": 7, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:37.870294Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["customer_lifetime_value"], "graph.colors": ["#A6E7F3"]}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "favorite": false, "created_at": "2021-07-21T08:01:37.858387Z", "public_uuid": null}, {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": "type/Quantity", "coercion_strategy": null, "name": "number_of_orders", "field_ref": ["field", 40, {"binning": {"strategy": "num-bins", "min-value": 1.0, "max-value": 5.0, "num-bins": 8, "bin-width": 0.5}}], "effective_type": "type/BigInteger", "id": 40, "display_name": "number_of_orders", "fingerprint": {"global": {"distinct-count": 5, "nil%": 0.38}, "type": {"type/Number": {"min": 1.0, "q1": 1.0, "q3": 2.0901356485315583, "max": 5.0, "sd": 0.7779687173818424, "avg": 1.596774193548387}}}, "base_type": "type/Decimal"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 5, "nil%": 0.0}, "type": {"type/Number": {"min": 1.0, "q1": 4.0, "q3": 34.25, "max": 38.0, "sd": 16.492422502470642, "avg": 20.0}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customers by number_of_orders", "creator_id": 1, "updated_at": "2021-07-21T08:01:42.107313Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 40, {"binning": {"strategy": "default"}}]], "aggregation": [["count"]]}}, "id": 6, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:37.76733Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["number_of_orders"], "graph.colors": ["#EF8C8C"]}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "favorite": false, "created_at": "2021-07-21T08:01:37.754606Z", "public_uuid": null}, {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "day"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Date"}, {"name": "sum", "display_name": "Sum of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 7, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 1.0200644129064447, "q3": 2.3725029928215275, "max": 7.0, "sd": 1.25650644505132, "avg": 1.9038461538461537}}}}, {"name": "avg", "display_name": "Average of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 1], "fingerprint": {"global": {"distinct-count": 8, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 1.0, "q3": 2.019031639883796, "max": 5.0, "sd": 0.7594097162561813, "avg": 1.573717948717949}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "database_id": 2, "enable_embedding": false, "collection_id": null, "query_type": "query", "name": "Customers, Sum of Number Of Orders and Average of Number Of Orders, Grouped by Most Recent Order (day)", "creator_id": 1, "updated_at": "2021-07-21T19:19:58.848286Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "day"}]], "aggregation": [["sum", ["field", 40, null]], ["avg", ["field", 40, null]]]}}, "id": 1, "display": "line", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:00:47.4892Z"}, "visualization_settings": {"graph.series_labels": ["sum", "average"], "graph.metrics": ["sum", "avg"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#7172AD", "#EF8C8C"]}, "collection": null, "favorite": false, "created_at": "2021-07-21T08:00:47.453351Z", "public_uuid": null}, {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day", "name": "first_order", "field_ref": ["field", 39, {"temporal-unit": "day"}], "effective_type": "type/Date", "id": 39, "display_name": "first_order", "fingerprint": {"global": {"distinct-count": 47, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-01", "latest": "2018-04-07"}}}, "base_type": "type/Date"}, {"name": "sum", "display_name": "Sum of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 6, "nil%": 0.02127659574468085}, "type": {"type/Number": {"min": 1.0, "q1": 1.1073874870150486, "q3": 3.0, "max": 5.0, "sd": 1.2643380578934107, "avg": 2.152173913043478}}}}, {"name": "avg", "display_name": "Average of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 1], "fingerprint": {"global": {"distinct-count": 8, "nil%": 0.02127659574468085}, "type": {"type/Number": {"min": 1.0, "q1": 1.019470273980893, "q3": 1.989426104361334, "max": 5.0, "sd": 0.7515349295958083, "avg": 1.596014492753623}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Number_of_orders over time", "creator_id": 1, "updated_at": "2021-07-21T08:01:42.321381Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 39, {"temporal-unit": "day"}]], "aggregation": [["sum", ["field", 40, null]], ["avg", ["field", 40, null]]]}}, "id": 10, "display": "line", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:38.368218Z"}, "visualization_settings": {"graph.series_labels": ["sum", "average"], "graph.metrics": ["sum", "avg"], "graph.dimensions": ["first_order"], "graph.colors": ["#7172AD", "#EF8C8C"]}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "favorite": false, "created_at": "2021-07-21T08:01:38.347535Z", "public_uuid": null}, {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "day"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Date"}, {"name": "sum", "display_name": "Sum of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 7, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 1.0200644129064447, "q3": 2.3725029928215275, "max": 7.0, "sd": 1.25650644505132, "avg": 1.9038461538461537}}}}, {"name": "avg", "display_name": "Average of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 1], "fingerprint": {"global": {"distinct-count": 8, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 1.0, "q3": 2.019031639883796, "max": 5.0, "sd": 0.7594097162561813, "avg": 1.573717948717949}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Number_of_orders over time", "creator_id": 1, "updated_at": "2021-07-21T08:01:42.368004Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "day"}]], "aggregation": [["sum", ["field", 40, null]], ["avg", ["field", 40, null]]]}}, "id": 8, "display": "line", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:38.030503Z"}, "visualization_settings": {"graph.series_labels": ["sum", "average"], "graph.metrics": ["sum", "avg"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#7172AD", "#EF8C8C"]}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "favorite": false, "created_at": "2021-07-21T08:01:38.016244Z", "public_uuid": null}, {"description": "Nice KPI", "archived": false, "collection_position": null, "table_id": 6, "result_metadata": [{"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 1, "nil%": 0}, "type": {"type/Number": {"min": 99, "q1": 99, "q3": 99, "max": 99, "sd": null, "avg": 99}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "database_id": 2, "enable_embedding": false, "collection_id": null, "query_type": "query", "name": "Orders, Count", "creator_id": 1, "updated_at": "2021-07-21T08:01:14.290572Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 6, "aggregation": [["count"]]}}, "id": 2, "display": "scalar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:14.3056Z"}, "visualization_settings": {"graph.series_labels": ["Number of orders"], "graph.metrics": ["count"], "graph.dimensions": []}, "collection": null, "favorite": false, "created_at": "2021-07-21T08:01:14.290572Z", "public_uuid": null}, {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day-of-week", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "day-of-week"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 5, "nil%": 0.0}, "type": {"type/Number": {"min": 6.0, "q1": 7.414213562373095, "q3": 15.782357300628025, "max": 38.0, "sd": 10.488088481701515, "avg": 12.5}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by day of the week", "creator_id": 1, "updated_at": "2021-07-21T08:01:42.346492Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "day-of-week"}]], "aggregation": [["count"]]}}, "id": 12, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:38.676704Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#A6E7F3"], "graph.x_axis.title_text": "Timestamp"}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "favorite": false, "created_at": "2021-07-21T08:01:38.662485Z", "public_uuid": null}, {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day-of-week", "name": "first_order", "field_ref": ["field", 39, {"temporal-unit": "day-of-week"}], "effective_type": "type/Date", "id": 39, "display_name": "first_order", "fingerprint": {"global": {"distinct-count": 47, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-01", "latest": "2018-04-07"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 6, "nil%": 0.0}, "type": {"type/Number": {"min": 6.0, "q1": 7.414213562373095, "q3": 11.757359312880714, "max": 38.0, "sd": 10.528871870107588, "avg": 12.5}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by day of the week", "creator_id": 1, "updated_at": "2021-07-21T08:01:42.483723Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 39, {"temporal-unit": "day-of-week"}]], "aggregation": [["count"]]}}, "id": 13, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:38.821564Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["first_order"], "graph.colors": ["#F1B556"], "graph.x_axis.title_text": "Timestamp"}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "favorite": false, "created_at": "2021-07-21T08:01:38.808186Z", "public_uuid": null}, {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "month-of-year", "name": "first_order", "field_ref": ["field", 39, {"temporal-unit": "month-of-year"}], "effective_type": "type/Date", "id": 39, "display_name": "first_order", "fingerprint": {"global": {"distinct-count": 47, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-01", "latest": "2018-04-07"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 4, "nil%": 0.0}, "type": {"type/Number": {"min": 2.0, "q1": 11.298221281347036, "q3": 27.5, "max": 38.0, "sd": 12.96148139681572, "avg": 20.0}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by month of the year", "creator_id": 1, "updated_at": "2021-07-21T08:01:42.52292Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 39, {"temporal-unit": "month-of-year"}]], "aggregation": [["count"]]}}, "id": 15, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:39.098141Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["first_order"], "graph.colors": ["#F1B556"], "graph.x_axis.title_text": "Timestamp"}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "favorite": false, "created_at": "2021-07-21T08:01:39.084258Z", "public_uuid": null}, {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "month-of-year", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "month-of-year"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 5, "nil%": 0.0}, "type": {"type/Number": {"min": 8.0, "q1": 10.25, "q3": 30.5, "max": 38.0, "sd": 12.62933094031509, "avg": 20.0}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by month of the year", "creator_id": 1, "updated_at": "2021-07-21T08:01:42.562877Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "month-of-year"}]], "aggregation": [["count"]]}}, "id": 14, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:38.953633Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#A6E7F3"], "graph.x_axis.title_text": "Timestamp"}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "favorite": false, "created_at": "2021-07-21T08:01:38.938688Z", "public_uuid": null}, {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "quarter-of-year", "name": "first_order", "field_ref": ["field", 39, {"temporal-unit": "quarter-of-year"}], "effective_type": "type/Date", "id": 39, "display_name": "first_order", "fingerprint": {"global": {"distinct-count": 47, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-01", "latest": "2018-04-07"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 3, "nil%": 0.0}, "type": {"type/Number": {"min": 2.0, "q1": 11.0, "q3": 54.5, "max": 60.0, "sd": 29.280255007997, "avg": 33.333333333333336}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by quarter of the year", "creator_id": 1, "updated_at": "2021-07-21T08:01:42.603496Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 39, {"temporal-unit": "quarter-of-year"}]], "aggregation": [["count"]]}}, "id": 17, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:39.385031Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["first_order"], "graph.colors": ["#F1B556"], "graph.x_axis.title_text": "Timestamp"}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "favorite": false, "created_at": "2021-07-21T08:01:39.371067Z", "public_uuid": null}, {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "quarter-of-year", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "quarter-of-year"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 3, "nil%": 0.0}, "type": {"type/Number": {"min": 8.0, "q1": 15.5, "q3": 50.0, "max": 54.0, "sd": 23.35237318418266, "avg": 33.333333333333336}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by quarter of the year", "creator_id": 1, "updated_at": "2021-07-21T08:01:42.567707Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "quarter-of-year"}]], "aggregation": [["count"]]}}, "id": 16, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:39.243522Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#A6E7F3"], "graph.x_axis.title_text": "Timestamp"}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "favorite": false, "created_at": "2021-07-21T08:01:39.228965Z", "public_uuid": null}, {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 1, "nil%": 0.0}, "type": {"type/Number": {"min": 100.0, "q1": 100.0, "q3": 100.0, "max": 100.0, "sd": null, "avg": 100.0}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Total customers", "creator_id": 1, "updated_at": "2021-07-21T08:01:41.996Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "aggregation": [["count"]]}}, "id": 3, "display": "scalar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:37.449936Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": []}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "favorite": false, "created_at": "2021-07-21T08:01:37.434243Z", "public_uuid": null}] \ No newline at end of file +[{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "day"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Date"}, {"name": "sum", "display_name": "Sum of customer_lifetime_value", "base_type": "type/Decimal", "semantic_type": null, "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 35, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 15.0, "q3": 40.10050506338833, "max": 131.0, "sd": 26.119172295224672, "avg": 32.15384615384615}}}}, {"name": "avg", "display_name": "Average of customer_lifetime_value", "base_type": "type/Decimal", "semantic_type": null, "field_ref": ["aggregation", 1], "fingerprint": {"global": {"distinct-count": 34, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 13.17157287525381, "q3": 34.732050807568875, "max": 99.0, "sd": 17.628392521514144, "avg": 26.39102564102564}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customer_lifetime_value over time", "creator_id": 1, "updated_at": "2021-07-21T08:01:42.456526Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "day"}]], "aggregation": [["sum", ["field", 41, null]], ["avg", ["field", 41, null]]]}}, "id": 9, "display": "line", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:38.208516Z"}, "visualization_settings": {"graph.series_labels": ["sum", "average"], "graph.metrics": ["sum", "avg"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#f9d45c", "#F1B556"]}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "favorite": false, "created_at": "2021-07-21T08:01:38.189846Z", "public_uuid": null}, {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day", "name": "first_order", "field_ref": ["field", 39, {"temporal-unit": "day"}], "effective_type": "type/Date", "id": 39, "display_name": "first_order", "fingerprint": {"global": {"distinct-count": 47, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-01", "latest": "2018-04-07"}}}, "base_type": "type/Date"}, {"name": "sum", "display_name": "Sum of customer_lifetime_value", "base_type": "type/Decimal", "semantic_type": null, "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 33, "nil%": 0.02127659574468085}, "type": {"type/Number": {"min": 1.0, "q1": 17.0, "q3": 55.93725393319377, "max": 129.0, "sd": 25.492672054973276, "avg": 36.34782608695652}}}}, {"name": "avg", "display_name": "Average of customer_lifetime_value", "base_type": "type/Decimal", "semantic_type": null, "field_ref": ["aggregation", 1], "fingerprint": {"global": {"distinct-count": 35, "nil%": 0.02127659574468085}, "type": {"type/Number": {"min": 1.0, "q1": 15.0, "q3": 33.53589838486224, "max": 65.0, "sd": 17.057530000270994, "avg": 27.342391304347824}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customer_lifetime_value over time", "creator_id": 1, "updated_at": "2021-07-21T08:01:42.665585Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 39, {"temporal-unit": "day"}]], "aggregation": [["sum", ["field", 41, null]], ["avg", ["field", 41, null]]]}}, "id": 11, "display": "line", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:38.544961Z"}, "visualization_settings": {"graph.series_labels": ["sum", "average"], "graph.metrics": ["sum", "avg"], "graph.dimensions": ["first_order"], "graph.colors": ["#f9d45c", "#F1B556"]}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "favorite": false, "created_at": "2021-07-21T08:01:38.52841Z", "public_uuid": null}, {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 1, "nil%": 0.0}, "type": {"type/Number": {"min": 0.0, "q1": 0.0, "q3": 0.0, "max": 0.0, "sd": null, "avg": 0.0}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customers added in the last 30 days", "creator_id": 1, "updated_at": "2021-07-21T08:01:42.000946Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "filter": ["time-interval", ["field", 42, null], -30, "day"], "aggregation": [["count"]]}}, "id": 4, "display": "scalar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:37.545719Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": []}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "favorite": false, "created_at": "2021-07-21T08:01:37.535187Z", "public_uuid": null}, {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 1, "nil%": 0.0}, "type": {"type/Number": {"min": 0.0, "q1": 0.0, "q3": 0.0, "max": 0.0, "sd": null, "avg": 0.0}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customers added in the last 30 days", "creator_id": 1, "updated_at": "2021-07-21T08:01:42.157282Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "filter": ["time-interval", ["field", 39, null], -30, "day"], "aggregation": [["count"]]}}, "id": 5, "display": "scalar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:37.641827Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": []}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "favorite": false, "created_at": "2021-07-21T08:01:37.630969Z", "public_uuid": null}, {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "name": "customer_lifetime_value", "field_ref": ["field", 41, {"binning": {"strategy": "num-bins", "min-value": 0.0, "max-value": 100.0, "num-bins": 8, "bin-width": 12.5}}], "effective_type": "type/BigInteger", "id": 41, "display_name": "customer_lifetime_value", "fingerprint": {"global": {"distinct-count": 36, "nil%": 0.38}, "type": {"type/Number": {"min": 1.0, "q1": 13.464101615137753, "q3": 35.46410161513776, "max": 99.0, "sd": 18.812245525263663, "avg": 26.967741935483872}}}, "base_type": "type/Decimal"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 8, "nil%": 0.0}, "type": {"type/Number": {"min": 1.0, "q1": 3.0, "q3": 17.5, "max": 38.0, "sd": 12.294017127971522, "avg": 12.5}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customers by customer_lifetime_value", "creator_id": 1, "updated_at": "2021-07-21T08:01:42.20895Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 41, {"binning": {"strategy": "default"}}]], "aggregation": [["count"]]}}, "id": 7, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:37.870294Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["customer_lifetime_value"], "graph.colors": ["#A6E7F3"]}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "favorite": false, "created_at": "2021-07-21T08:01:37.858387Z", "public_uuid": null}, {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": "type/Quantity", "coercion_strategy": null, "name": "number_of_orders", "field_ref": ["field", 40, {"binning": {"strategy": "num-bins", "min-value": 1.0, "max-value": 5.0, "num-bins": 8, "bin-width": 0.5}}], "effective_type": "type/BigInteger", "id": 40, "display_name": "number_of_orders", "fingerprint": {"global": {"distinct-count": 5, "nil%": 0.38}, "type": {"type/Number": {"min": 1.0, "q1": 1.0, "q3": 2.0901356485315583, "max": 5.0, "sd": 0.7779687173818424, "avg": 1.596774193548387}}}, "base_type": "type/Decimal"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 5, "nil%": 0.0}, "type": {"type/Number": {"min": 1.0, "q1": 4.0, "q3": 34.25, "max": 38.0, "sd": 16.492422502470642, "avg": 20.0}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customers by number_of_orders", "creator_id": 1, "updated_at": "2021-07-21T08:01:42.107313Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 40, {"binning": {"strategy": "default"}}]], "aggregation": [["count"]]}}, "id": 6, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:37.76733Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["number_of_orders"], "graph.colors": ["#EF8C8C"]}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "favorite": false, "created_at": "2021-07-21T08:01:37.754606Z", "public_uuid": null}, {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "day"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Date"}, {"name": "sum", "display_name": "Sum of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 7, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 1.0200644129064447, "q3": 2.3725029928215275, "max": 7.0, "sd": 1.25650644505132, "avg": 1.9038461538461537}}}}, {"name": "avg", "display_name": "Average of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 1], "fingerprint": {"global": {"distinct-count": 8, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 1.0, "q3": 2.019031639883796, "max": 5.0, "sd": 0.7594097162561813, "avg": 1.573717948717949}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "database_id": 2, "enable_embedding": false, "collection_id": null, "query_type": "query", "name": "Customers, Sum of Number Of Orders and Average of Number Of Orders, Grouped by Most Recent Order (day)", "creator_id": 1, "updated_at": "2021-07-21T19:19:58.848286Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "day"}]], "aggregation": [["sum", ["field", 40, null]], ["avg", ["field", 40, null]]]}}, "id": 1, "display": "line", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:00:47.4892Z"}, "visualization_settings": {"graph.series_labels": ["sum", "average"], "graph.metrics": ["sum", "avg"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#7172AD", "#EF8C8C"]}, "collection": null, "favorite": false, "created_at": "2021-07-21T08:00:47.453351Z", "public_uuid": null}, {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day", "name": "first_order", "field_ref": ["field", 39, {"temporal-unit": "day"}], "effective_type": "type/Date", "id": 39, "display_name": "first_order", "fingerprint": {"global": {"distinct-count": 47, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-01", "latest": "2018-04-07"}}}, "base_type": "type/Date"}, {"name": "sum", "display_name": "Sum of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 6, "nil%": 0.02127659574468085}, "type": {"type/Number": {"min": 1.0, "q1": 1.1073874870150486, "q3": 3.0, "max": 5.0, "sd": 1.2643380578934107, "avg": 2.152173913043478}}}}, {"name": "avg", "display_name": "Average of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 1], "fingerprint": {"global": {"distinct-count": 8, "nil%": 0.02127659574468085}, "type": {"type/Number": {"min": 1.0, "q1": 1.019470273980893, "q3": 1.989426104361334, "max": 5.0, "sd": 0.7515349295958083, "avg": 1.596014492753623}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Number_of_orders over time", "creator_id": 1, "updated_at": "2021-07-21T08:01:42.321381Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 39, {"temporal-unit": "day"}]], "aggregation": [["sum", ["field", 40, null]], ["avg", ["field", 40, null]]]}}, "id": 10, "display": "line", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:38.368218Z"}, "visualization_settings": {"graph.series_labels": ["sum", "average"], "graph.metrics": ["sum", "avg"], "graph.dimensions": ["first_order"], "graph.colors": ["#7172AD", "#EF8C8C"]}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "favorite": false, "created_at": "2021-07-21T08:01:38.347535Z", "public_uuid": null}, {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "day"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Date"}, {"name": "sum", "display_name": "Sum of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 7, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 1.0200644129064447, "q3": 2.3725029928215275, "max": 7.0, "sd": 1.25650644505132, "avg": 1.9038461538461537}}}}, {"name": "avg", "display_name": "Average of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 1], "fingerprint": {"global": {"distinct-count": 8, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 1.0, "q3": 2.019031639883796, "max": 5.0, "sd": 0.7594097162561813, "avg": 1.573717948717949}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Number_of_orders over time", "creator_id": 1, "updated_at": "2021-07-21T08:01:42.368004Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "day"}]], "aggregation": [["sum", ["field", 40, null]], ["avg", ["field", 40, null]]]}}, "id": 8, "display": "line", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:38.030503Z"}, "visualization_settings": {"graph.series_labels": ["sum", "average"], "graph.metrics": ["sum", "avg"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#7172AD", "#EF8C8C"]}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "favorite": false, "created_at": "2021-07-21T08:01:38.016244Z", "public_uuid": null}, {"description": "Nice KPI", "archived": false, "collection_position": null, "table_id": 6, "result_metadata": [{"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 1, "nil%": 0}, "type": {"type/Number": {"min": 99, "q1": 99, "q3": 99, "max": 99, "sd": null, "avg": 99}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "database_id": 2, "enable_embedding": false, "collection_id": null, "query_type": "query", "name": "Orders, Count", "creator_id": 1, "updated_at": "2021-07-21T08:01:14.290572Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 6, "aggregation": [["count"]]}}, "id": 2, "display": "scalar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:14.3056Z"}, "visualization_settings": {"graph.series_labels": ["Number of orders"], "graph.metrics": ["count"], "graph.dimensions": []}, "collection": null, "favorite": false, "created_at": "2021-07-21T08:01:14.290572Z", "public_uuid": null}, {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day-of-week", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "day-of-week"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 5, "nil%": 0.0}, "type": {"type/Number": {"min": 6.0, "q1": 7.414213562373095, "q3": 15.782357300628025, "max": 38.0, "sd": 10.488088481701515, "avg": 12.5}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by day of the week", "creator_id": 1, "updated_at": "2021-07-21T08:01:42.346492Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "day-of-week"}]], "aggregation": [["count"]]}}, "id": 12, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:38.676704Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#A6E7F3"], "graph.x_axis.title_text": "Timestamp"}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "favorite": false, "created_at": "2021-07-21T08:01:38.662485Z", "public_uuid": null}, {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day-of-week", "name": "first_order", "field_ref": ["field", 39, {"temporal-unit": "day-of-week"}], "effective_type": "type/Date", "id": 39, "display_name": "first_order", "fingerprint": {"global": {"distinct-count": 47, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-01", "latest": "2018-04-07"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 6, "nil%": 0.0}, "type": {"type/Number": {"min": 6.0, "q1": 7.414213562373095, "q3": 11.757359312880714, "max": 38.0, "sd": 10.528871870107588, "avg": 12.5}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by day of the week", "creator_id": 1, "updated_at": "2021-07-21T08:01:42.483723Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 39, {"temporal-unit": "day-of-week"}]], "aggregation": [["count"]]}}, "id": 13, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:38.821564Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["first_order"], "graph.colors": ["#F1B556"], "graph.x_axis.title_text": "Timestamp"}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "favorite": false, "created_at": "2021-07-21T08:01:38.808186Z", "public_uuid": null}, {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "month-of-year", "name": "first_order", "field_ref": ["field", 39, {"temporal-unit": "month-of-year"}], "effective_type": "type/Date", "id": 39, "display_name": "first_order", "fingerprint": {"global": {"distinct-count": 47, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-01", "latest": "2018-04-07"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 4, "nil%": 0.0}, "type": {"type/Number": {"min": 2.0, "q1": 11.298221281347036, "q3": 27.5, "max": 38.0, "sd": 12.96148139681572, "avg": 20.0}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by month of the year", "creator_id": 1, "updated_at": "2021-07-21T08:01:42.52292Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 39, {"temporal-unit": "month-of-year"}]], "aggregation": [["count"]]}}, "id": 15, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:39.098141Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["first_order"], "graph.colors": ["#F1B556"], "graph.x_axis.title_text": "Timestamp"}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "favorite": false, "created_at": "2021-07-21T08:01:39.084258Z", "public_uuid": null}, {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "month-of-year", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "month-of-year"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 5, "nil%": 0.0}, "type": {"type/Number": {"min": 8.0, "q1": 10.25, "q3": 30.5, "max": 38.0, "sd": 12.62933094031509, "avg": 20.0}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by month of the year", "creator_id": 1, "updated_at": "2021-07-21T08:01:42.562877Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "month-of-year"}]], "aggregation": [["count"]]}}, "id": 14, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:38.953633Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#A6E7F3"], "graph.x_axis.title_text": "Timestamp"}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "favorite": false, "created_at": "2021-07-21T08:01:38.938688Z", "public_uuid": null}, {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "quarter-of-year", "name": "first_order", "field_ref": ["field", 39, {"temporal-unit": "quarter-of-year"}], "effective_type": "type/Date", "id": 39, "display_name": "first_order", "fingerprint": {"global": {"distinct-count": 47, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-01", "latest": "2018-04-07"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 3, "nil%": 0.0}, "type": {"type/Number": {"min": 2.0, "q1": 11.0, "q3": 54.5, "max": 60.0, "sd": 29.280255007997, "avg": 33.333333333333336}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by quarter of the year", "creator_id": 1, "updated_at": "2021-07-21T08:01:42.603496Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 39, {"temporal-unit": "quarter-of-year"}]], "aggregation": [["count"]]}}, "id": 17, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:39.385031Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["first_order"], "graph.colors": ["#F1B556"], "graph.x_axis.title_text": "Timestamp"}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "favorite": false, "created_at": "2021-07-21T08:01:39.371067Z", "public_uuid": null}, {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "quarter-of-year", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "quarter-of-year"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 3, "nil%": 0.0}, "type": {"type/Number": {"min": 8.0, "q1": 15.5, "q3": 50.0, "max": 54.0, "sd": 23.35237318418266, "avg": 33.333333333333336}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by quarter of the year", "creator_id": 1, "updated_at": "2021-07-21T08:01:42.567707Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "quarter-of-year"}]], "aggregation": [["count"]]}}, "id": 16, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:39.243522Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#A6E7F3"], "graph.x_axis.title_text": "Timestamp"}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "favorite": false, "created_at": "2021-07-21T08:01:39.228965Z", "public_uuid": null}, {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 1, "nil%": 0.0}, "type": {"type/Number": {"min": 100.0, "q1": 100.0, "q3": 100.0, "max": 100.0, "sd": null, "avg": 100.0}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Total customers", "creator_id": 1, "updated_at": "2021-07-21T08:01:41.996Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "aggregation": [["count"]]}}, "id": 3, "display": "scalar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:37.449936Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": []}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "favorite": false, "created_at": "2021-07-21T08:01:37.434243Z", "public_uuid": null}] diff --git a/tests/fixtures/mock_api/api/card/1.json b/tests/fixtures/mock_api/api/card/1.json index 75878fd4..0bf39572 100644 --- a/tests/fixtures/mock_api/api/card/1.json +++ b/tests/fixtures/mock_api/api/card/1.json @@ -1 +1 @@ -{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "day"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Date"}, {"name": "sum", "display_name": "Sum of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 7, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 1.0200644129064447, "q3": 2.3725029928215275, "max": 7.0, "sd": 1.25650644505132, "avg": 1.9038461538461537}}}}, {"name": "avg", "display_name": "Average of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 1], "fingerprint": {"global": {"distinct-count": 8, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 1.0, "q3": 2.019031639883796, "max": 5.0, "sd": 0.7594097162561813, "avg": 1.573717948717949}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": null, "query_type": "query", "name": "Customers, Sum of Number Of Orders and Average of Number Of Orders, Grouped by Most Recent Order (day)", "dashboard_count": 0, "creator_id": 1, "updated_at": "2021-07-21T19:19:58.848286Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "day"}]], "aggregation": [["sum", ["field", 40, null]], ["avg", ["field", 40, null]]]}}, "id": 1, "display": "line", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:00:47.4892Z"}, "visualization_settings": {"graph.series_labels": ["sum", "average"], "graph.metrics": ["sum", "avg"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#7172AD", "#EF8C8C"]}, "collection": null, "created_at": "2021-07-21T08:00:47.453351Z", "public_uuid": null} \ No newline at end of file +{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "day"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Date"}, {"name": "sum", "display_name": "Sum of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 7, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 1.0200644129064447, "q3": 2.3725029928215275, "max": 7.0, "sd": 1.25650644505132, "avg": 1.9038461538461537}}}}, {"name": "avg", "display_name": "Average of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 1], "fingerprint": {"global": {"distinct-count": 8, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 1.0, "q3": 2.019031639883796, "max": 5.0, "sd": 0.7594097162561813, "avg": 1.573717948717949}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": null, "query_type": "query", "name": "Customers, Sum of Number Of Orders and Average of Number Of Orders, Grouped by Most Recent Order (day)", "dashboard_count": 0, "creator_id": 1, "updated_at": "2021-07-21T19:19:58.848286Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "day"}]], "aggregation": [["sum", ["field", 40, null]], ["avg", ["field", 40, null]]]}}, "id": 1, "display": "line", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:00:47.4892Z"}, "visualization_settings": {"graph.series_labels": ["sum", "average"], "graph.metrics": ["sum", "avg"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#7172AD", "#EF8C8C"]}, "collection": null, "created_at": "2021-07-21T08:00:47.453351Z", "public_uuid": null} diff --git a/tests/fixtures/mock_api/api/card/10.json b/tests/fixtures/mock_api/api/card/10.json index 5410b1f9..27653396 100644 --- a/tests/fixtures/mock_api/api/card/10.json +++ b/tests/fixtures/mock_api/api/card/10.json @@ -1 +1 @@ -{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day", "name": "first_order", "field_ref": ["field", 39, {"temporal-unit": "day"}], "effective_type": "type/Date", "id": 39, "display_name": "first_order", "fingerprint": {"global": {"distinct-count": 47, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-01", "latest": "2018-04-07"}}}, "base_type": "type/Date"}, {"name": "sum", "display_name": "Sum of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 6, "nil%": 0.02127659574468085}, "type": {"type/Number": {"min": 1.0, "q1": 1.1073874870150486, "q3": 3.0, "max": 5.0, "sd": 1.2643380578934107, "avg": 2.152173913043478}}}}, {"name": "avg", "display_name": "Average of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 1], "fingerprint": {"global": {"distinct-count": 8, "nil%": 0.02127659574468085}, "type": {"type/Number": {"min": 1.0, "q1": 1.019470273980893, "q3": 1.989426104361334, "max": 5.0, "sd": 0.7515349295958083, "avg": 1.596014492753623}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Number_of_orders over time", "dashboard_count": 1, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.321381Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 39, {"temporal-unit": "day"}]], "aggregation": [["sum", ["field", 40, null]], ["avg", ["field", 40, null]]]}}, "id": 10, "display": "line", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:38.368218Z"}, "visualization_settings": {"graph.series_labels": ["sum", "average"], "graph.metrics": ["sum", "avg"], "graph.dimensions": ["first_order"], "graph.colors": ["#7172AD", "#EF8C8C"]}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "created_at": "2021-07-21T08:01:38.347535Z", "public_uuid": null} \ No newline at end of file +{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day", "name": "first_order", "field_ref": ["field", 39, {"temporal-unit": "day"}], "effective_type": "type/Date", "id": 39, "display_name": "first_order", "fingerprint": {"global": {"distinct-count": 47, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-01", "latest": "2018-04-07"}}}, "base_type": "type/Date"}, {"name": "sum", "display_name": "Sum of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 6, "nil%": 0.02127659574468085}, "type": {"type/Number": {"min": 1.0, "q1": 1.1073874870150486, "q3": 3.0, "max": 5.0, "sd": 1.2643380578934107, "avg": 2.152173913043478}}}}, {"name": "avg", "display_name": "Average of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 1], "fingerprint": {"global": {"distinct-count": 8, "nil%": 0.02127659574468085}, "type": {"type/Number": {"min": 1.0, "q1": 1.019470273980893, "q3": 1.989426104361334, "max": 5.0, "sd": 0.7515349295958083, "avg": 1.596014492753623}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Number_of_orders over time", "dashboard_count": 1, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.321381Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 39, {"temporal-unit": "day"}]], "aggregation": [["sum", ["field", 40, null]], ["avg", ["field", 40, null]]]}}, "id": 10, "display": "line", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:38.368218Z"}, "visualization_settings": {"graph.series_labels": ["sum", "average"], "graph.metrics": ["sum", "avg"], "graph.dimensions": ["first_order"], "graph.colors": ["#7172AD", "#EF8C8C"]}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "created_at": "2021-07-21T08:01:38.347535Z", "public_uuid": null} diff --git a/tests/fixtures/mock_api/api/card/11.json b/tests/fixtures/mock_api/api/card/11.json index b0f0c7a3..e94f187c 100644 --- a/tests/fixtures/mock_api/api/card/11.json +++ b/tests/fixtures/mock_api/api/card/11.json @@ -1 +1 @@ -{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day", "name": "first_order", "field_ref": ["field", 39, {"temporal-unit": "day"}], "effective_type": "type/Date", "id": 39, "display_name": "first_order", "fingerprint": {"global": {"distinct-count": 47, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-01", "latest": "2018-04-07"}}}, "base_type": "type/Date"}, {"name": "sum", "display_name": "Sum of customer_lifetime_value", "base_type": "type/Decimal", "semantic_type": null, "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 33, "nil%": 0.02127659574468085}, "type": {"type/Number": {"min": 1.0, "q1": 17.0, "q3": 55.93725393319377, "max": 129.0, "sd": 25.492672054973276, "avg": 36.34782608695652}}}}, {"name": "avg", "display_name": "Average of customer_lifetime_value", "base_type": "type/Decimal", "semantic_type": null, "field_ref": ["aggregation", 1], "fingerprint": {"global": {"distinct-count": 35, "nil%": 0.02127659574468085}, "type": {"type/Number": {"min": 1.0, "q1": 15.0, "q3": 33.53589838486224, "max": 65.0, "sd": 17.057530000270994, "avg": 27.342391304347824}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customer_lifetime_value over time", "dashboard_count": 1, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.665585Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 39, {"temporal-unit": "day"}]], "aggregation": [["sum", ["field", 41, null]], ["avg", ["field", 41, null]]]}}, "id": 11, "display": "line", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:38.544961Z"}, "visualization_settings": {"graph.series_labels": ["sum", "average"], "graph.metrics": ["sum", "avg"], "graph.dimensions": ["first_order"], "graph.colors": ["#f9d45c", "#F1B556"]}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "created_at": "2021-07-21T08:01:38.52841Z", "public_uuid": null} \ No newline at end of file +{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day", "name": "first_order", "field_ref": ["field", 39, {"temporal-unit": "day"}], "effective_type": "type/Date", "id": 39, "display_name": "first_order", "fingerprint": {"global": {"distinct-count": 47, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-01", "latest": "2018-04-07"}}}, "base_type": "type/Date"}, {"name": "sum", "display_name": "Sum of customer_lifetime_value", "base_type": "type/Decimal", "semantic_type": null, "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 33, "nil%": 0.02127659574468085}, "type": {"type/Number": {"min": 1.0, "q1": 17.0, "q3": 55.93725393319377, "max": 129.0, "sd": 25.492672054973276, "avg": 36.34782608695652}}}}, {"name": "avg", "display_name": "Average of customer_lifetime_value", "base_type": "type/Decimal", "semantic_type": null, "field_ref": ["aggregation", 1], "fingerprint": {"global": {"distinct-count": 35, "nil%": 0.02127659574468085}, "type": {"type/Number": {"min": 1.0, "q1": 15.0, "q3": 33.53589838486224, "max": 65.0, "sd": 17.057530000270994, "avg": 27.342391304347824}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customer_lifetime_value over time", "dashboard_count": 1, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.665585Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 39, {"temporal-unit": "day"}]], "aggregation": [["sum", ["field", 41, null]], ["avg", ["field", 41, null]]]}}, "id": 11, "display": "line", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:38.544961Z"}, "visualization_settings": {"graph.series_labels": ["sum", "average"], "graph.metrics": ["sum", "avg"], "graph.dimensions": ["first_order"], "graph.colors": ["#f9d45c", "#F1B556"]}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "created_at": "2021-07-21T08:01:38.52841Z", "public_uuid": null} diff --git a/tests/fixtures/mock_api/api/card/12.json b/tests/fixtures/mock_api/api/card/12.json index fc2961fa..f03d343d 100644 --- a/tests/fixtures/mock_api/api/card/12.json +++ b/tests/fixtures/mock_api/api/card/12.json @@ -1 +1 @@ -{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day-of-week", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "day-of-week"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 5, "nil%": 0.0}, "type": {"type/Number": {"min": 6.0, "q1": 7.414213562373095, "q3": 15.782357300628025, "max": 38.0, "sd": 10.488088481701515, "avg": 12.5}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by day of the week", "dashboard_count": 1, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.346492Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "day-of-week"}]], "aggregation": [["count"]]}}, "id": 12, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:38.676704Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#A6E7F3"], "graph.x_axis.title_text": "Timestamp"}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "created_at": "2021-07-21T08:01:38.662485Z", "public_uuid": null} \ No newline at end of file +{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day-of-week", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "day-of-week"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 5, "nil%": 0.0}, "type": {"type/Number": {"min": 6.0, "q1": 7.414213562373095, "q3": 15.782357300628025, "max": 38.0, "sd": 10.488088481701515, "avg": 12.5}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by day of the week", "dashboard_count": 1, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.346492Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "day-of-week"}]], "aggregation": [["count"]]}}, "id": 12, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:38.676704Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#A6E7F3"], "graph.x_axis.title_text": "Timestamp"}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "created_at": "2021-07-21T08:01:38.662485Z", "public_uuid": null} diff --git a/tests/fixtures/mock_api/api/card/13.json b/tests/fixtures/mock_api/api/card/13.json index 0c6cbd58..62ec8431 100644 --- a/tests/fixtures/mock_api/api/card/13.json +++ b/tests/fixtures/mock_api/api/card/13.json @@ -1 +1 @@ -{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day-of-week", "name": "first_order", "field_ref": ["field", 39, {"temporal-unit": "day-of-week"}], "effective_type": "type/Date", "id": 39, "display_name": "first_order", "fingerprint": {"global": {"distinct-count": 47, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-01", "latest": "2018-04-07"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 6, "nil%": 0.0}, "type": {"type/Number": {"min": 6.0, "q1": 7.414213562373095, "q3": 11.757359312880714, "max": 38.0, "sd": 10.528871870107588, "avg": 12.5}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by day of the week", "dashboard_count": 1, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.483723Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 39, {"temporal-unit": "day-of-week"}]], "aggregation": [["count"]]}}, "id": 13, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:38.821564Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["first_order"], "graph.colors": ["#F1B556"], "graph.x_axis.title_text": "Timestamp"}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "created_at": "2021-07-21T08:01:38.808186Z", "public_uuid": null} \ No newline at end of file +{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day-of-week", "name": "first_order", "field_ref": ["field", 39, {"temporal-unit": "day-of-week"}], "effective_type": "type/Date", "id": 39, "display_name": "first_order", "fingerprint": {"global": {"distinct-count": 47, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-01", "latest": "2018-04-07"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 6, "nil%": 0.0}, "type": {"type/Number": {"min": 6.0, "q1": 7.414213562373095, "q3": 11.757359312880714, "max": 38.0, "sd": 10.528871870107588, "avg": 12.5}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by day of the week", "dashboard_count": 1, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.483723Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 39, {"temporal-unit": "day-of-week"}]], "aggregation": [["count"]]}}, "id": 13, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:38.821564Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["first_order"], "graph.colors": ["#F1B556"], "graph.x_axis.title_text": "Timestamp"}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "created_at": "2021-07-21T08:01:38.808186Z", "public_uuid": null} diff --git a/tests/fixtures/mock_api/api/card/14.json b/tests/fixtures/mock_api/api/card/14.json index ebe47132..29545f0b 100644 --- a/tests/fixtures/mock_api/api/card/14.json +++ b/tests/fixtures/mock_api/api/card/14.json @@ -1 +1 @@ -{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "month-of-year", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "month-of-year"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 5, "nil%": 0.0}, "type": {"type/Number": {"min": 8.0, "q1": 10.25, "q3": 30.5, "max": 38.0, "sd": 12.62933094031509, "avg": 20.0}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by month of the year", "dashboard_count": 1, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.562877Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "month-of-year"}]], "aggregation": [["count"]]}}, "id": 14, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:38.953633Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#A6E7F3"], "graph.x_axis.title_text": "Timestamp"}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "created_at": "2021-07-21T08:01:38.938688Z", "public_uuid": null} \ No newline at end of file +{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "month-of-year", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "month-of-year"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 5, "nil%": 0.0}, "type": {"type/Number": {"min": 8.0, "q1": 10.25, "q3": 30.5, "max": 38.0, "sd": 12.62933094031509, "avg": 20.0}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by month of the year", "dashboard_count": 1, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.562877Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "month-of-year"}]], "aggregation": [["count"]]}}, "id": 14, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:38.953633Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#A6E7F3"], "graph.x_axis.title_text": "Timestamp"}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "created_at": "2021-07-21T08:01:38.938688Z", "public_uuid": null} diff --git a/tests/fixtures/mock_api/api/card/15.json b/tests/fixtures/mock_api/api/card/15.json index f124d9bc..478047ba 100644 --- a/tests/fixtures/mock_api/api/card/15.json +++ b/tests/fixtures/mock_api/api/card/15.json @@ -1 +1 @@ -{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "month-of-year", "name": "first_order", "field_ref": ["field", 39, {"temporal-unit": "month-of-year"}], "effective_type": "type/Date", "id": 39, "display_name": "first_order", "fingerprint": {"global": {"distinct-count": 47, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-01", "latest": "2018-04-07"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 4, "nil%": 0.0}, "type": {"type/Number": {"min": 2.0, "q1": 11.298221281347036, "q3": 27.5, "max": 38.0, "sd": 12.96148139681572, "avg": 20.0}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by month of the year", "dashboard_count": 1, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.52292Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 39, {"temporal-unit": "month-of-year"}]], "aggregation": [["count"]]}}, "id": 15, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:39.098141Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["first_order"], "graph.colors": ["#F1B556"], "graph.x_axis.title_text": "Timestamp"}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "created_at": "2021-07-21T08:01:39.084258Z", "public_uuid": null} \ No newline at end of file +{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "month-of-year", "name": "first_order", "field_ref": ["field", 39, {"temporal-unit": "month-of-year"}], "effective_type": "type/Date", "id": 39, "display_name": "first_order", "fingerprint": {"global": {"distinct-count": 47, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-01", "latest": "2018-04-07"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 4, "nil%": 0.0}, "type": {"type/Number": {"min": 2.0, "q1": 11.298221281347036, "q3": 27.5, "max": 38.0, "sd": 12.96148139681572, "avg": 20.0}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by month of the year", "dashboard_count": 1, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.52292Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 39, {"temporal-unit": "month-of-year"}]], "aggregation": [["count"]]}}, "id": 15, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:39.098141Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["first_order"], "graph.colors": ["#F1B556"], "graph.x_axis.title_text": "Timestamp"}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "created_at": "2021-07-21T08:01:39.084258Z", "public_uuid": null} diff --git a/tests/fixtures/mock_api/api/card/16.json b/tests/fixtures/mock_api/api/card/16.json index d58153ce..c0a7295c 100644 --- a/tests/fixtures/mock_api/api/card/16.json +++ b/tests/fixtures/mock_api/api/card/16.json @@ -1 +1 @@ -{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "quarter-of-year", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "quarter-of-year"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 3, "nil%": 0.0}, "type": {"type/Number": {"min": 8.0, "q1": 15.5, "q3": 50.0, "max": 54.0, "sd": 23.35237318418266, "avg": 33.333333333333336}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by quarter of the year", "dashboard_count": 1, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.567707Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "quarter-of-year"}]], "aggregation": [["count"]]}}, "id": 16, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:39.243522Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#A6E7F3"], "graph.x_axis.title_text": "Timestamp"}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "created_at": "2021-07-21T08:01:39.228965Z", "public_uuid": null} \ No newline at end of file +{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "quarter-of-year", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "quarter-of-year"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 3, "nil%": 0.0}, "type": {"type/Number": {"min": 8.0, "q1": 15.5, "q3": 50.0, "max": 54.0, "sd": 23.35237318418266, "avg": 33.333333333333336}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by quarter of the year", "dashboard_count": 1, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.567707Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "quarter-of-year"}]], "aggregation": [["count"]]}}, "id": 16, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:39.243522Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#A6E7F3"], "graph.x_axis.title_text": "Timestamp"}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "created_at": "2021-07-21T08:01:39.228965Z", "public_uuid": null} diff --git a/tests/fixtures/mock_api/api/card/17.json b/tests/fixtures/mock_api/api/card/17.json index 9e40a711..4ab89983 100644 --- a/tests/fixtures/mock_api/api/card/17.json +++ b/tests/fixtures/mock_api/api/card/17.json @@ -1 +1 @@ -{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "quarter-of-year", "name": "first_order", "field_ref": ["field", 39, {"temporal-unit": "quarter-of-year"}], "effective_type": "type/Date", "id": 39, "display_name": "first_order", "fingerprint": {"global": {"distinct-count": 47, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-01", "latest": "2018-04-07"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 3, "nil%": 0.0}, "type": {"type/Number": {"min": 2.0, "q1": 11.0, "q3": 54.5, "max": 60.0, "sd": 29.280255007997, "avg": 33.333333333333336}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by quarter of the year", "dashboard_count": 1, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.603496Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 39, {"temporal-unit": "quarter-of-year"}]], "aggregation": [["count"]]}}, "id": 17, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:39.385031Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["first_order"], "graph.colors": ["#F1B556"], "graph.x_axis.title_text": "Timestamp"}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "created_at": "2021-07-21T08:01:39.371067Z", "public_uuid": null} \ No newline at end of file +{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "quarter-of-year", "name": "first_order", "field_ref": ["field", 39, {"temporal-unit": "quarter-of-year"}], "effective_type": "type/Date", "id": 39, "display_name": "first_order", "fingerprint": {"global": {"distinct-count": 47, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-01", "latest": "2018-04-07"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 3, "nil%": 0.0}, "type": {"type/Number": {"min": 2.0, "q1": 11.0, "q3": 54.5, "max": 60.0, "sd": 29.280255007997, "avg": 33.333333333333336}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by quarter of the year", "dashboard_count": 1, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.603496Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 39, {"temporal-unit": "quarter-of-year"}]], "aggregation": [["count"]]}}, "id": 17, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:39.385031Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["first_order"], "graph.colors": ["#F1B556"], "graph.x_axis.title_text": "Timestamp"}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "created_at": "2021-07-21T08:01:39.371067Z", "public_uuid": null} diff --git a/tests/fixtures/mock_api/api/card/2.json b/tests/fixtures/mock_api/api/card/2.json index 0a90c4a1..56860914 100644 --- a/tests/fixtures/mock_api/api/card/2.json +++ b/tests/fixtures/mock_api/api/card/2.json @@ -1 +1 @@ -{"description": "Nice KPI", "archived": false, "collection_position": null, "table_id": 6, "result_metadata": [{"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 1, "nil%": 0}, "type": {"type/Number": {"min": 99, "q1": 99, "q3": 99, "max": 99, "sd": null, "avg": 99}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": null, "query_type": "query", "name": "Orders, Count", "dashboard_count": 0, "creator_id": 1, "updated_at": "2021-07-21T08:01:14.290572Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 6, "aggregation": [["count"]]}}, "id": 2, "display": "scalar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:14.3056Z"}, "visualization_settings": {"graph.series_labels": ["Number of orders"], "graph.metrics": ["count"], "graph.dimensions": []}, "collection": null, "created_at": "2021-07-21T08:01:14.290572Z", "public_uuid": null} \ No newline at end of file +{"description": "Nice KPI", "archived": false, "collection_position": null, "table_id": 6, "result_metadata": [{"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 1, "nil%": 0}, "type": {"type/Number": {"min": 99, "q1": 99, "q3": 99, "max": 99, "sd": null, "avg": 99}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": null, "query_type": "query", "name": "Orders, Count", "dashboard_count": 0, "creator_id": 1, "updated_at": "2021-07-21T08:01:14.290572Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 6, "aggregation": [["count"]]}}, "id": 2, "display": "scalar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:14.3056Z"}, "visualization_settings": {"graph.series_labels": ["Number of orders"], "graph.metrics": ["count"], "graph.dimensions": []}, "collection": null, "created_at": "2021-07-21T08:01:14.290572Z", "public_uuid": null} diff --git a/tests/fixtures/mock_api/api/card/3.json b/tests/fixtures/mock_api/api/card/3.json index 89c8a63a..ae848b67 100644 --- a/tests/fixtures/mock_api/api/card/3.json +++ b/tests/fixtures/mock_api/api/card/3.json @@ -1 +1 @@ -{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 1, "nil%": 0.0}, "type": {"type/Number": {"min": 100.0, "q1": 100.0, "q3": 100.0, "max": 100.0, "sd": null, "avg": 100.0}}}}], "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Total customers", "dashboard_count": 1, "creator_id": 2, "updated_at": "2021-07-21T08:01:41.996Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "aggregation": [["count"]]}}, "id": 3, "display": "scalar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:37.449936Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": []}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "created_at": "2021-07-21T08:01:37.434243Z", "public_uuid": null} +{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 1, "nil%": 0.0}, "type": {"type/Number": {"min": 100.0, "q1": 100.0, "q3": 100.0, "max": 100.0, "sd": null, "avg": 100.0}}}}], "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Total customers", "dashboard_count": 1, "creator_id": 2, "updated_at": "2021-07-21T08:01:41.996Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "aggregation": [["count"]]}}, "id": 3, "display": "scalar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:37.449936Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": []}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "created_at": "2021-07-21T08:01:37.434243Z", "public_uuid": null} diff --git a/tests/fixtures/mock_api/api/card/4.json b/tests/fixtures/mock_api/api/card/4.json index aeeb004d..6e1e89a1 100644 --- a/tests/fixtures/mock_api/api/card/4.json +++ b/tests/fixtures/mock_api/api/card/4.json @@ -1 +1 @@ -{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 1, "nil%": 0.0}, "type": {"type/Number": {"min": 0.0, "q1": 0.0, "q3": 0.0, "max": 0.0, "sd": null, "avg": 0.0}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customers added in the last 30 days", "dashboard_count": 1, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.000946Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "filter": ["time-interval", ["field", 42, null], -30, "day"], "aggregation": [["count"]]}}, "id": 4, "display": "scalar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:37.545719Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": []}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "created_at": "2021-07-21T08:01:37.535187Z", "public_uuid": null} \ No newline at end of file +{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 1, "nil%": 0.0}, "type": {"type/Number": {"min": 0.0, "q1": 0.0, "q3": 0.0, "max": 0.0, "sd": null, "avg": 0.0}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customers added in the last 30 days", "dashboard_count": 1, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.000946Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "filter": ["time-interval", ["field", 42, null], -30, "day"], "aggregation": [["count"]]}}, "id": 4, "display": "scalar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:37.545719Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": []}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "created_at": "2021-07-21T08:01:37.535187Z", "public_uuid": null} diff --git a/tests/fixtures/mock_api/api/card/5.json b/tests/fixtures/mock_api/api/card/5.json index 08481fd2..aafc109c 100644 --- a/tests/fixtures/mock_api/api/card/5.json +++ b/tests/fixtures/mock_api/api/card/5.json @@ -1 +1 @@ -{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 1, "nil%": 0.0}, "type": {"type/Number": {"min": 0.0, "q1": 0.0, "q3": 0.0, "max": 0.0, "sd": null, "avg": 0.0}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customers added in the last 30 days", "dashboard_count": 1, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.157282Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "filter": ["time-interval", ["field", 39, null], -30, "day"], "aggregation": [["count"]]}}, "id": 5, "display": "scalar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:37.641827Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": []}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "created_at": "2021-07-21T08:01:37.630969Z", "public_uuid": null} \ No newline at end of file +{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 1, "nil%": 0.0}, "type": {"type/Number": {"min": 0.0, "q1": 0.0, "q3": 0.0, "max": 0.0, "sd": null, "avg": 0.0}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customers added in the last 30 days", "dashboard_count": 1, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.157282Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "filter": ["time-interval", ["field", 39, null], -30, "day"], "aggregation": [["count"]]}}, "id": 5, "display": "scalar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:37.641827Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": []}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "created_at": "2021-07-21T08:01:37.630969Z", "public_uuid": null} diff --git a/tests/fixtures/mock_api/api/card/6.json b/tests/fixtures/mock_api/api/card/6.json index 507981e8..0de6019e 100644 --- a/tests/fixtures/mock_api/api/card/6.json +++ b/tests/fixtures/mock_api/api/card/6.json @@ -1 +1 @@ -{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": "type/Quantity", "coercion_strategy": null, "name": "number_of_orders", "field_ref": ["field", 40, {"binning": {"strategy": "num-bins", "min-value": 1.0, "max-value": 5.0, "num-bins": 8, "bin-width": 0.5}}], "effective_type": "type/BigInteger", "id": 40, "display_name": "number_of_orders", "fingerprint": {"global": {"distinct-count": 5, "nil%": 0.38}, "type": {"type/Number": {"min": 1.0, "q1": 1.0, "q3": 2.0901356485315583, "max": 5.0, "sd": 0.7779687173818424, "avg": 1.596774193548387}}}, "base_type": "type/Decimal"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 5, "nil%": 0.0}, "type": {"type/Number": {"min": 1.0, "q1": 4.0, "q3": 34.25, "max": 38.0, "sd": 16.492422502470642, "avg": 20.0}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customers by number_of_orders", "dashboard_count": 1, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.107313Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 40, {"binning": {"strategy": "default"}}]], "aggregation": [["count"]]}}, "id": 6, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:37.76733Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["number_of_orders"], "graph.colors": ["#EF8C8C"]}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "created_at": "2021-07-21T08:01:37.754606Z", "public_uuid": null} \ No newline at end of file +{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": "type/Quantity", "coercion_strategy": null, "name": "number_of_orders", "field_ref": ["field", 40, {"binning": {"strategy": "num-bins", "min-value": 1.0, "max-value": 5.0, "num-bins": 8, "bin-width": 0.5}}], "effective_type": "type/BigInteger", "id": 40, "display_name": "number_of_orders", "fingerprint": {"global": {"distinct-count": 5, "nil%": 0.38}, "type": {"type/Number": {"min": 1.0, "q1": 1.0, "q3": 2.0901356485315583, "max": 5.0, "sd": 0.7779687173818424, "avg": 1.596774193548387}}}, "base_type": "type/Decimal"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 5, "nil%": 0.0}, "type": {"type/Number": {"min": 1.0, "q1": 4.0, "q3": 34.25, "max": 38.0, "sd": 16.492422502470642, "avg": 20.0}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customers by number_of_orders", "dashboard_count": 1, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.107313Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 40, {"binning": {"strategy": "default"}}]], "aggregation": [["count"]]}}, "id": 6, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:37.76733Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["number_of_orders"], "graph.colors": ["#EF8C8C"]}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "created_at": "2021-07-21T08:01:37.754606Z", "public_uuid": null} diff --git a/tests/fixtures/mock_api/api/card/7.json b/tests/fixtures/mock_api/api/card/7.json index 5747f289..a39689ee 100644 --- a/tests/fixtures/mock_api/api/card/7.json +++ b/tests/fixtures/mock_api/api/card/7.json @@ -1 +1 @@ -{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "name": "customer_lifetime_value", "field_ref": ["field", 41, {"binning": {"strategy": "num-bins", "min-value": 0.0, "max-value": 100.0, "num-bins": 8, "bin-width": 12.5}}], "effective_type": "type/BigInteger", "id": 41, "display_name": "customer_lifetime_value", "fingerprint": {"global": {"distinct-count": 36, "nil%": 0.38}, "type": {"type/Number": {"min": 1.0, "q1": 13.464101615137753, "q3": 35.46410161513776, "max": 99.0, "sd": 18.812245525263663, "avg": 26.967741935483872}}}, "base_type": "type/Decimal"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 8, "nil%": 0.0}, "type": {"type/Number": {"min": 1.0, "q1": 3.0, "q3": 17.5, "max": 38.0, "sd": 12.294017127971522, "avg": 12.5}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customers by customer_lifetime_value", "dashboard_count": 1, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.20895Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 41, {"binning": {"strategy": "default"}}]], "aggregation": [["count"]]}}, "id": 7, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:37.870294Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["customer_lifetime_value"], "graph.colors": ["#A6E7F3"]}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "created_at": "2021-07-21T08:01:37.858387Z", "public_uuid": null} \ No newline at end of file +{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "name": "customer_lifetime_value", "field_ref": ["field", 41, {"binning": {"strategy": "num-bins", "min-value": 0.0, "max-value": 100.0, "num-bins": 8, "bin-width": 12.5}}], "effective_type": "type/BigInteger", "id": 41, "display_name": "customer_lifetime_value", "fingerprint": {"global": {"distinct-count": 36, "nil%": 0.38}, "type": {"type/Number": {"min": 1.0, "q1": 13.464101615137753, "q3": 35.46410161513776, "max": 99.0, "sd": 18.812245525263663, "avg": 26.967741935483872}}}, "base_type": "type/Decimal"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 8, "nil%": 0.0}, "type": {"type/Number": {"min": 1.0, "q1": 3.0, "q3": 17.5, "max": 38.0, "sd": 12.294017127971522, "avg": 12.5}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customers by customer_lifetime_value", "dashboard_count": 1, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.20895Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 41, {"binning": {"strategy": "default"}}]], "aggregation": [["count"]]}}, "id": 7, "display": "bar", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:37.870294Z"}, "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["customer_lifetime_value"], "graph.colors": ["#A6E7F3"]}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "created_at": "2021-07-21T08:01:37.858387Z", "public_uuid": null} diff --git a/tests/fixtures/mock_api/api/card/8.json b/tests/fixtures/mock_api/api/card/8.json index f103d671..c643e244 100644 --- a/tests/fixtures/mock_api/api/card/8.json +++ b/tests/fixtures/mock_api/api/card/8.json @@ -1 +1 @@ -{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "day"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Date"}, {"name": "sum", "display_name": "Sum of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 7, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 1.0200644129064447, "q3": 2.3725029928215275, "max": 7.0, "sd": 1.25650644505132, "avg": 1.9038461538461537}}}}, {"name": "avg", "display_name": "Average of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 1], "fingerprint": {"global": {"distinct-count": 8, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 1.0, "q3": 2.019031639883796, "max": 5.0, "sd": 0.7594097162561813, "avg": 1.573717948717949}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Number_of_orders over time", "dashboard_count": 1, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.368004Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "day"}]], "aggregation": [["sum", ["field", 40, null]], ["avg", ["field", 40, null]]]}}, "id": 8, "display": "line", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:38.030503Z"}, "visualization_settings": {"graph.series_labels": ["sum", "average"], "graph.metrics": ["sum", "avg"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#7172AD", "#EF8C8C"]}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "created_at": "2021-07-21T08:01:38.016244Z", "public_uuid": null} \ No newline at end of file +{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "day"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Date"}, {"name": "sum", "display_name": "Sum of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 7, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 1.0200644129064447, "q3": 2.3725029928215275, "max": 7.0, "sd": 1.25650644505132, "avg": 1.9038461538461537}}}}, {"name": "avg", "display_name": "Average of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 1], "fingerprint": {"global": {"distinct-count": 8, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 1.0, "q3": 2.019031639883796, "max": 5.0, "sd": 0.7594097162561813, "avg": 1.573717948717949}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Number_of_orders over time", "dashboard_count": 1, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.368004Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "day"}]], "aggregation": [["sum", ["field", 40, null]], ["avg", ["field", 40, null]]]}}, "id": 8, "display": "line", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:38.030503Z"}, "visualization_settings": {"graph.series_labels": ["sum", "average"], "graph.metrics": ["sum", "avg"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#7172AD", "#EF8C8C"]}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "created_at": "2021-07-21T08:01:38.016244Z", "public_uuid": null} diff --git a/tests/fixtures/mock_api/api/card/9.json b/tests/fixtures/mock_api/api/card/9.json index 880d8033..57bfb1ce 100644 --- a/tests/fixtures/mock_api/api/card/9.json +++ b/tests/fixtures/mock_api/api/card/9.json @@ -1 +1 @@ -{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "day"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Date"}, {"name": "sum", "display_name": "Sum of customer_lifetime_value", "base_type": "type/Decimal", "semantic_type": null, "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 35, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 15.0, "q3": 40.10050506338833, "max": 131.0, "sd": 26.119172295224672, "avg": 32.15384615384615}}}}, {"name": "avg", "display_name": "Average of customer_lifetime_value", "base_type": "type/Decimal", "semantic_type": null, "field_ref": ["aggregation", 1], "fingerprint": {"global": {"distinct-count": 34, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 13.17157287525381, "q3": 34.732050807568875, "max": 99.0, "sd": 17.628392521514144, "avg": 26.39102564102564}}}}], "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customer_lifetime_value over time", "dashboard_count": 1, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.456526Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "day"}]], "aggregation": [["sum", ["field", 41, null]], ["avg", ["field", 41, null]]]}}, "id": 9, "display": "line", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:38.208516Z"}, "visualization_settings": {"graph.series_labels": ["sum", "average"], "graph.metrics": ["sum", "avg"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#f9d45c", "#F1B556"]}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "created_at": "2021-07-21T08:01:38.189846Z", "public_uuid": null} \ No newline at end of file +{"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "day"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Date"}, {"name": "sum", "display_name": "Sum of customer_lifetime_value", "base_type": "type/Decimal", "semantic_type": null, "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 35, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 15.0, "q3": 40.10050506338833, "max": 131.0, "sd": 26.119172295224672, "avg": 32.15384615384615}}}}, {"name": "avg", "display_name": "Average of customer_lifetime_value", "base_type": "type/Decimal", "semantic_type": null, "field_ref": ["aggregation", 1], "fingerprint": {"global": {"distinct-count": 34, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 13.17157287525381, "q3": 34.732050807568875, "max": 99.0, "sd": 17.628392521514144, "avg": 26.39102564102564}}}}], "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "can_write": true, "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customer_lifetime_value over time", "dashboard_count": 1, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.456526Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "day"}]], "aggregation": [["sum", ["field", 41, null]], ["avg", ["field", 41, null]]]}}, "id": 9, "display": "line", "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:38.208516Z"}, "visualization_settings": {"graph.series_labels": ["sum", "average"], "graph.metrics": ["sum", "avg"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#f9d45c", "#F1B556"]}, "collection": {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, "created_at": "2021-07-21T08:01:38.189846Z", "public_uuid": null} diff --git a/tests/fixtures/mock_api/api/collection.json b/tests/fixtures/mock_api/api/collection.json index b23fe8dd..cb37621e 100644 --- a/tests/fixtures/mock_api/api/collection.json +++ b/tests/fixtures/mock_api/api/collection.json @@ -1 +1 @@ -[{"name": "Our analytics", "id": "root", "parent_id": null, "effective_location": null, "effective_ancestors": [], "can_write": true}, {"authority_level": null, "description": null, "archived": false, "slug": "alexander_butler_s_personal_collection", "color": "#31698A", "can_write": true, "name": "Alexander Butler's Personal Collection", "personal_owner_id": 1, "id": 1, "location": "/", "namespace": null}, {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "can_write": true, "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, {"authority_level": null, "description": null, "archived": false, "slug": "automatically_generated_dashboards", "color": "#509EE3", "can_write": true, "name": "Automatically Generated Dashboards", "personal_owner_id": null, "id": 2, "location": "/", "namespace": null}] \ No newline at end of file +[{"name": "Our analytics", "id": "root", "parent_id": null, "effective_location": null, "effective_ancestors": [], "can_write": true}, {"authority_level": null, "description": null, "archived": false, "slug": "dbtmetabase_s_personal_collection", "color": "#31698A", "can_write": true, "name": "dbtmetabase's Personal Collection", "personal_owner_id": 1, "id": 1, "location": "/", "namespace": null}, {"authority_level": null, "description": "Automatically generated cards.", "archived": false, "slug": "a_look_at_your_customers_table", "color": "#f9d45c", "can_write": true, "name": "A look at your customers table", "personal_owner_id": null, "id": 3, "location": "/2/", "namespace": null}, {"authority_level": null, "description": null, "archived": false, "slug": "automatically_generated_dashboards", "color": "#509EE3", "can_write": true, "name": "Automatically Generated Dashboards", "personal_owner_id": null, "id": 2, "location": "/", "namespace": null}] diff --git a/tests/fixtures/mock_api/api/collection/1.json b/tests/fixtures/mock_api/api/collection/1.json index 195c9c1a..509e1937 100644 --- a/tests/fixtures/mock_api/api/collection/1.json +++ b/tests/fixtures/mock_api/api/collection/1.json @@ -1 +1 @@ -{"authority_level": null, "description": null, "archived": false, "slug": "alexander_butler_s_personal_collection", "color": "#31698A", "can_write": true, "name": "Alexander Butler's Personal Collection", "personal_owner_id": 1, "effective_ancestors": [{"metabase.models.collection.root/is-root?": true, "name": "Our analytics", "id": "root", "can_write": true}], "effective_location": "/", "parent_id": null, "id": 1, "location": "/", "namespace": null} \ No newline at end of file +{"authority_level": null, "description": null, "archived": false, "slug": "dbtmetabase_s_personal_collection", "color": "#31698A", "can_write": true, "name": "dbtmetabase's Personal Collection", "personal_owner_id": 1, "effective_ancestors": [{"metabase.models.collection.root/is-root?": true, "name": "Our analytics", "id": "root", "can_write": true}], "effective_location": "/", "parent_id": null, "id": 1, "location": "/", "namespace": null} diff --git a/tests/fixtures/mock_api/api/collection/3/items.json b/tests/fixtures/mock_api/api/collection/3/items.json index 5c107b70..cd993187 100644 --- a/tests/fixtures/mock_api/api/collection/3/items.json +++ b/tests/fixtures/mock_api/api/collection/3/items.json @@ -1 +1 @@ -[{"description": null, "collection_position": 1, "name": "A look at your customers table", "id": 1, "last-edit-info": {"id": 1, "last_name": "Butler", "first_name": "Alexander", "email": "user@example.com", "timestamp": "2021-07-21T08:01:39.542335Z"}, "favorite": false, "model": "dashboard"}, {"description": null, "collection_position": null, "name": "Customer_lifetime_value over time", "id": 11, "display": "line", "last-edit-info": {"id": 1, "last_name": "Butler", "first_name": "Alexander", "email": "user@example.com", "timestamp": "2021-07-21T08:01:38.544961Z"}, "favorite": false, "model": "card"}, {"description": null, "collection_position": null, "name": "Customer_lifetime_value over time", "id": 9, "display": "line", "last-edit-info": {"id": 1, "last_name": "Butler", "first_name": "Alexander", "email": "user@example.com", "timestamp": "2021-07-21T08:01:38.208516Z"}, "favorite": false, "model": "card"}, {"description": null, "collection_position": null, "name": "Customers added in the last 30 days", "id": 4, "display": "scalar", "last-edit-info": {"id": 1, "last_name": "Butler", "first_name": "Alexander", "email": "user@example.com", "timestamp": "2021-07-21T08:01:37.545719Z"}, "favorite": false, "model": "card"}, {"description": null, "collection_position": null, "name": "Customers added in the last 30 days", "id": 5, "display": "scalar", "last-edit-info": {"id": 1, "last_name": "Butler", "first_name": "Alexander", "email": "user@example.com", "timestamp": "2021-07-21T08:01:37.641827Z"}, "favorite": false, "model": "card"}, {"description": null, "collection_position": null, "name": "Customers by customer_lifetime_value", "id": 7, "display": "bar", "last-edit-info": {"id": 1, "last_name": "Butler", "first_name": "Alexander", "email": "user@example.com", "timestamp": "2021-07-21T08:01:37.870294Z"}, "favorite": false, "model": "card"}, {"description": null, "collection_position": null, "name": "Customers by number_of_orders", "id": 6, "display": "bar", "last-edit-info": {"id": 1, "last_name": "Butler", "first_name": "Alexander", "email": "user@example.com", "timestamp": "2021-07-21T08:01:37.76733Z"}, "favorite": false, "model": "card"}, {"description": null, "collection_position": null, "name": "Number_of_orders over time", "id": 8, "display": "line", "last-edit-info": {"id": 1, "last_name": "Butler", "first_name": "Alexander", "email": "user@example.com", "timestamp": "2021-07-21T08:01:38.030503Z"}, "favorite": false, "model": "card"}, {"description": null, "collection_position": null, "name": "Number_of_orders over time", "id": 10, "display": "line", "last-edit-info": {"id": 1, "last_name": "Butler", "first_name": "Alexander", "email": "user@example.com", "timestamp": "2021-07-21T08:01:38.368218Z"}, "favorite": false, "model": "card"}, {"description": null, "collection_position": null, "name": "Timestamp by day of the week", "id": 12, "display": "bar", "last-edit-info": {"id": 1, "last_name": "Butler", "first_name": "Alexander", "email": "user@example.com", "timestamp": "2021-07-21T08:01:38.676704Z"}, "favorite": false, "model": "card"}, {"description": null, "collection_position": null, "name": "Timestamp by day of the week", "id": 13, "display": "bar", "last-edit-info": {"id": 1, "last_name": "Butler", "first_name": "Alexander", "email": "user@example.com", "timestamp": "2021-07-21T08:01:38.821564Z"}, "favorite": false, "model": "card"}, {"description": null, "collection_position": null, "name": "Timestamp by month of the year", "id": 15, "display": "bar", "last-edit-info": {"id": 1, "last_name": "Butler", "first_name": "Alexander", "email": "user@example.com", "timestamp": "2021-07-21T08:01:39.098141Z"}, "favorite": false, "model": "card"}, {"description": null, "collection_position": null, "name": "Timestamp by month of the year", "id": 14, "display": "bar", "last-edit-info": {"id": 1, "last_name": "Butler", "first_name": "Alexander", "email": "user@example.com", "timestamp": "2021-07-21T08:01:38.953633Z"}, "favorite": false, "model": "card"}, {"description": null, "collection_position": null, "name": "Timestamp by quarter of the year", "id": 17, "display": "bar", "last-edit-info": {"id": 1, "last_name": "Butler", "first_name": "Alexander", "email": "user@example.com", "timestamp": "2021-07-21T08:01:39.385031Z"}, "favorite": false, "model": "card"}, {"description": null, "collection_position": null, "name": "Timestamp by quarter of the year", "id": 16, "display": "bar", "last-edit-info": {"id": 1, "last_name": "Butler", "first_name": "Alexander", "email": "user@example.com", "timestamp": "2021-07-21T08:01:39.243522Z"}, "favorite": false, "model": "card"}, {"description": null, "collection_position": null, "name": "Total customers", "id": 3, "display": "scalar", "last-edit-info": {"id": 1, "last_name": "Butler", "first_name": "Alexander", "email": "user@example.com", "timestamp": "2021-07-21T08:01:37.449936Z"}, "favorite": false, "model": "card"}] \ No newline at end of file +[{"description": null, "collection_position": 1, "name": "A look at your customers table", "id": 1, "last-edit-info": {"id": 1, "last_name": "", "first_name": "dbtmetabase", "email": "user@example.com", "timestamp": "2021-07-21T08:01:39.542335Z"}, "favorite": false, "model": "dashboard"}, {"description": null, "collection_position": null, "name": "Customer_lifetime_value over time", "id": 11, "display": "line", "last-edit-info": {"id": 1, "last_name": "", "first_name": "dbtmetabase", "email": "user@example.com", "timestamp": "2021-07-21T08:01:38.544961Z"}, "favorite": false, "model": "card"}, {"description": null, "collection_position": null, "name": "Customer_lifetime_value over time", "id": 9, "display": "line", "last-edit-info": {"id": 1, "last_name": "", "first_name": "dbtmetabase", "email": "user@example.com", "timestamp": "2021-07-21T08:01:38.208516Z"}, "favorite": false, "model": "card"}, {"description": null, "collection_position": null, "name": "Customers added in the last 30 days", "id": 4, "display": "scalar", "last-edit-info": {"id": 1, "last_name": "", "first_name": "dbtmetabase", "email": "user@example.com", "timestamp": "2021-07-21T08:01:37.545719Z"}, "favorite": false, "model": "card"}, {"description": null, "collection_position": null, "name": "Customers added in the last 30 days", "id": 5, "display": "scalar", "last-edit-info": {"id": 1, "last_name": "", "first_name": "dbtmetabase", "email": "user@example.com", "timestamp": "2021-07-21T08:01:37.641827Z"}, "favorite": false, "model": "card"}, {"description": null, "collection_position": null, "name": "Customers by customer_lifetime_value", "id": 7, "display": "bar", "last-edit-info": {"id": 1, "last_name": "", "first_name": "dbtmetabase", "email": "user@example.com", "timestamp": "2021-07-21T08:01:37.870294Z"}, "favorite": false, "model": "card"}, {"description": null, "collection_position": null, "name": "Customers by number_of_orders", "id": 6, "display": "bar", "last-edit-info": {"id": 1, "last_name": "", "first_name": "dbtmetabase", "email": "user@example.com", "timestamp": "2021-07-21T08:01:37.76733Z"}, "favorite": false, "model": "card"}, {"description": null, "collection_position": null, "name": "Number_of_orders over time", "id": 8, "display": "line", "last-edit-info": {"id": 1, "last_name": "", "first_name": "dbtmetabase", "email": "user@example.com", "timestamp": "2021-07-21T08:01:38.030503Z"}, "favorite": false, "model": "card"}, {"description": null, "collection_position": null, "name": "Number_of_orders over time", "id": 10, "display": "line", "last-edit-info": {"id": 1, "last_name": "", "first_name": "dbtmetabase", "email": "user@example.com", "timestamp": "2021-07-21T08:01:38.368218Z"}, "favorite": false, "model": "card"}, {"description": null, "collection_position": null, "name": "Timestamp by day of the week", "id": 12, "display": "bar", "last-edit-info": {"id": 1, "last_name": "", "first_name": "dbtmetabase", "email": "user@example.com", "timestamp": "2021-07-21T08:01:38.676704Z"}, "favorite": false, "model": "card"}, {"description": null, "collection_position": null, "name": "Timestamp by day of the week", "id": 13, "display": "bar", "last-edit-info": {"id": 1, "last_name": "", "first_name": "dbtmetabase", "email": "user@example.com", "timestamp": "2021-07-21T08:01:38.821564Z"}, "favorite": false, "model": "card"}, {"description": null, "collection_position": null, "name": "Timestamp by month of the year", "id": 15, "display": "bar", "last-edit-info": {"id": 1, "last_name": "", "first_name": "dbtmetabase", "email": "user@example.com", "timestamp": "2021-07-21T08:01:39.098141Z"}, "favorite": false, "model": "card"}, {"description": null, "collection_position": null, "name": "Timestamp by month of the year", "id": 14, "display": "bar", "last-edit-info": {"id": 1, "last_name": "", "first_name": "dbtmetabase", "email": "user@example.com", "timestamp": "2021-07-21T08:01:38.953633Z"}, "favorite": false, "model": "card"}, {"description": null, "collection_position": null, "name": "Timestamp by quarter of the year", "id": 17, "display": "bar", "last-edit-info": {"id": 1, "last_name": "", "first_name": "dbtmetabase", "email": "user@example.com", "timestamp": "2021-07-21T08:01:39.385031Z"}, "favorite": false, "model": "card"}, {"description": null, "collection_position": null, "name": "Timestamp by quarter of the year", "id": 16, "display": "bar", "last-edit-info": {"id": 1, "last_name": "", "first_name": "dbtmetabase", "email": "user@example.com", "timestamp": "2021-07-21T08:01:39.243522Z"}, "favorite": false, "model": "card"}, {"description": null, "collection_position": null, "name": "Total customers", "id": 3, "display": "scalar", "last-edit-info": {"id": 1, "last_name": "", "first_name": "dbtmetabase", "email": "user@example.com", "timestamp": "2021-07-21T08:01:37.449936Z"}, "favorite": false, "model": "card"}] diff --git a/tests/fixtures/mock_api/api/collection/root/items.json b/tests/fixtures/mock_api/api/collection/root/items.json index 539f0247..a9651d89 100644 --- a/tests/fixtures/mock_api/api/collection/root/items.json +++ b/tests/fixtures/mock_api/api/collection/root/items.json @@ -1 +1 @@ -[{"description": null, "can_write": true, "name": "Alexander Butler's Personal Collection", "id": 1, "model": "collection"}, {"description": null, "can_write": true, "name": "Automatically Generated Dashboards", "id": 2, "model": "collection"}, {"description": null, "collection_position": null, "name": "Customers, Sum of Number Of Orders and Average of Number Of Orders, Grouped by Most Recent Order (day)", "id": 1, "display": "line", "last-edit-info": {"id": 1, "last_name": "Butler", "first_name": "Alexander", "email": "user@example.com", "timestamp": "2021-07-21T08:00:47.4892Z"}, "favorite": false, "model": "card"}, {"description": "Nice KPI", "collection_position": null, "name": "Orders, Count", "id": 2, "display": "scalar", "last-edit-info": {"id": 1, "last_name": "Butler", "first_name": "Alexander", "email": "user@example.com", "timestamp": "2021-07-21T08:01:14.3056Z"}, "favorite": false, "model": "card"}] \ No newline at end of file +[{"description": null, "can_write": true, "name": "dbtmetabase's Personal Collection", "id": 1, "model": "collection"}, {"description": null, "can_write": true, "name": "Automatically Generated Dashboards", "id": 2, "model": "collection"}, {"description": null, "collection_position": null, "name": "Customers, Sum of Number Of Orders and Average of Number Of Orders, Grouped by Most Recent Order (day)", "id": 1, "display": "line", "last-edit-info": {"id": 1, "last_name": "", "first_name": "dbtmetabase", "email": "user@example.com", "timestamp": "2021-07-21T08:00:47.4892Z"}, "favorite": false, "model": "card"}, {"description": "Nice KPI", "collection_position": null, "name": "Orders, Count", "id": 2, "display": "scalar", "last-edit-info": {"id": 1, "last_name": "", "first_name": "dbtmetabase", "email": "user@example.com", "timestamp": "2021-07-21T08:01:14.3056Z"}, "favorite": false, "model": "card"}] diff --git a/tests/fixtures/mock_api/api/dashboard.json b/tests/fixtures/mock_api/api/dashboard.json index f6bbea64..57618588 100644 --- a/tests/fixtures/mock_api/api/dashboard.json +++ b/tests/fixtures/mock_api/api/dashboard.json @@ -1 +1 @@ -[{"description": null, "archived": false, "collection_position": 1, "creator": {"email": "user@example.com", "first_name": "Alexander", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler"}, "enable_embedding": false, "collection_id": 3, "show_in_getting_started": false, "name": "A look at your customers table", "caveats": null, "creator_id": 1, "updated_at": "2021-07-21T08:01:37.328519Z", "made_public_by_id": null, "embedding_params": null, "id": 1, "position": null, "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:39.542335Z"}, "parameters": [{"id": "-1693594175", "type": "date/all-options", "name": "most_recent_order", "slug": "most_recent_order"}, {"id": "381527929", "type": "date/all-options", "name": "first_order", "slug": "first_order"}], "favorite": false, "created_at": "2021-07-21T08:01:37.328519Z", "public_uuid": null, "points_of_interest": null}] \ No newline at end of file +[{"description": null, "archived": false, "collection_position": 1, "creator": {"email": "user@example.com", "first_name": "dbtmetabase", "last_login": "2021-07-21T19:25:28.6083Z", "is_qbnewb": false, "is_superuser": true, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase"}, "enable_embedding": false, "collection_id": 3, "show_in_getting_started": false, "name": "A look at your customers table", "caveats": null, "creator_id": 1, "updated_at": "2021-07-21T08:01:37.328519Z", "made_public_by_id": null, "embedding_params": null, "id": 1, "position": null, "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:39.542335Z"}, "parameters": [{"id": "-1693594175", "type": "date/all-options", "name": "most_recent_order", "slug": "most_recent_order"}, {"id": "381527929", "type": "date/all-options", "name": "first_order", "slug": "first_order"}], "favorite": false, "created_at": "2021-07-21T08:01:37.328519Z", "public_uuid": null, "points_of_interest": null}] diff --git a/tests/fixtures/mock_api/api/dashboard/1.json b/tests/fixtures/mock_api/api/dashboard/1.json index 0726a3a7..146d0c21 100644 --- a/tests/fixtures/mock_api/api/dashboard/1.json +++ b/tests/fixtures/mock_api/api/dashboard/1.json @@ -1 +1 @@ -{"description": null, "archived": false, "collection_position": 1, "ordered_cards": [{"sizeX": 18, "series": [], "collection_authority_level": null, "card": {"query_average_duration": null}, "updated_at": "2021-07-21T08:01:37.372373Z", "col": 0, "id": 1, "parameter_mappings": [], "card_id": null, "visualization_settings": {"text": "# Summary", "virtual_card": {"name": null, "display": "text", "dataset_query": {}, "visualization_settings": {}}, "dashcard.background": false, "text.align_vertical": "bottom"}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:37.372373Z", "sizeY": 2, "row": 0}, {"sizeX": 6, "series": [], "collection_authority_level": null, "card": {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 1, "nil%": 0.0}, "type": {"type/Number": {"min": 100.0, "q1": 100.0, "q3": 100.0, "max": 100.0, "sd": null, "avg": 100.0}}}}], "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Total customers", "query_average_duration": 579, "creator_id": 1, "updated_at": "2021-07-21T08:01:41.996Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "aggregation": [["count"]]}}, "id": 3, "display": "scalar", "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": []}, "created_at": "2021-07-21T08:01:37.434243Z", "public_uuid": null}, "updated_at": "2021-07-21T08:01:37.466466Z", "col": 0, "id": 2, "parameter_mappings": [{"parameter_id": "-1693594175", "target": ["dimension", ["field", 42, null]], "card_id": 3}, {"parameter_id": "381527929", "target": ["dimension", ["field", 39, null]], "card_id": 3}], "card_id": 3, "visualization_settings": {}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:37.466466Z", "sizeY": 4, "row": 2}, {"sizeX": 6, "series": [], "collection_authority_level": null, "card": {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 1, "nil%": 0.0}, "type": {"type/Number": {"min": 0.0, "q1": 0.0, "q3": 0.0, "max": 0.0, "sd": null, "avg": 0.0}}}}], "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customers added in the last 30 days", "query_average_duration": 38, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.000946Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "filter": ["time-interval", ["field", 42, null], -30, "day"], "aggregation": [["count"]]}}, "id": 4, "display": "scalar", "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": []}, "created_at": "2021-07-21T08:01:37.535187Z", "public_uuid": null}, "updated_at": "2021-07-21T08:01:37.567169Z", "col": 6, "id": 3, "parameter_mappings": [{"parameter_id": "-1693594175", "target": ["dimension", ["field", 42, null]], "card_id": 4}, {"parameter_id": "381527929", "target": ["dimension", ["field", 39, null]], "card_id": 4}], "card_id": 4, "visualization_settings": {}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:37.567169Z", "sizeY": 4, "row": 2}, {"sizeX": 6, "series": [], "collection_authority_level": null, "card": {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 1, "nil%": 0.0}, "type": {"type/Number": {"min": 0.0, "q1": 0.0, "q3": 0.0, "max": 0.0, "sd": null, "avg": 0.0}}}}], "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customers added in the last 30 days", "query_average_duration": 132, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.157282Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "filter": ["time-interval", ["field", 39, null], -30, "day"], "aggregation": [["count"]]}}, "id": 5, "display": "scalar", "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": []}, "created_at": "2021-07-21T08:01:37.630969Z", "public_uuid": null}, "updated_at": "2021-07-21T08:01:37.652919Z", "col": 12, "id": 4, "parameter_mappings": [{"parameter_id": "-1693594175", "target": ["dimension", ["field", 42, null]], "card_id": 5}, {"parameter_id": "381527929", "target": ["dimension", ["field", 39, null]], "card_id": 5}], "card_id": 5, "visualization_settings": {}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:37.652919Z", "sizeY": 4, "row": 2}, {"sizeX": 18, "series": [], "collection_authority_level": null, "card": {"query_average_duration": null}, "updated_at": "2021-07-21T08:01:37.686857Z", "col": 0, "id": 5, "parameter_mappings": [], "card_id": null, "visualization_settings": {"text": "# How these customers are distributed", "virtual_card": {"name": null, "display": "text", "dataset_query": {}, "visualization_settings": {}}, "dashcard.background": false, "text.align_vertical": "bottom"}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:37.686857Z", "sizeY": 2, "row": 6}, {"sizeX": 6, "series": [], "collection_authority_level": null, "card": {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": "type/Quantity", "coercion_strategy": null, "name": "number_of_orders", "field_ref": ["field", 40, {"binning": {"strategy": "num-bins", "min-value": 1.0, "max-value": 5.0, "num-bins": 8, "bin-width": 0.5}}], "effective_type": "type/BigInteger", "id": 40, "display_name": "number_of_orders", "fingerprint": {"global": {"distinct-count": 5, "nil%": 0.38}, "type": {"type/Number": {"min": 1.0, "q1": 1.0, "q3": 2.0901356485315583, "max": 5.0, "sd": 0.7779687173818424, "avg": 1.596774193548387}}}, "base_type": "type/Decimal"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 5, "nil%": 0.0}, "type": {"type/Number": {"min": 1.0, "q1": 4.0, "q3": 34.25, "max": 38.0, "sd": 16.492422502470642, "avg": 20.0}}}}], "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customers by number_of_orders", "query_average_duration": 321, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.107313Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 40, {"binning": {"strategy": "default"}}]], "aggregation": [["count"]]}}, "id": 6, "display": "bar", "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["number_of_orders"], "graph.colors": ["#EF8C8C"]}, "created_at": "2021-07-21T08:01:37.754606Z", "public_uuid": null}, "updated_at": "2021-07-21T08:01:37.781517Z", "col": 0, "id": 6, "parameter_mappings": [{"parameter_id": "-1693594175", "target": ["dimension", ["field", 42, null]], "card_id": 6}, {"parameter_id": "381527929", "target": ["dimension", ["field", 39, null]], "card_id": 6}], "card_id": 6, "visualization_settings": {}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:37.781517Z", "sizeY": 4, "row": 8}, {"sizeX": 6, "series": [], "collection_authority_level": null, "card": {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "name": "customer_lifetime_value", "field_ref": ["field", 41, {"binning": {"strategy": "num-bins", "min-value": 0.0, "max-value": 100.0, "num-bins": 8, "bin-width": 12.5}}], "effective_type": "type/BigInteger", "id": 41, "display_name": "customer_lifetime_value", "fingerprint": {"global": {"distinct-count": 36, "nil%": 0.38}, "type": {"type/Number": {"min": 1.0, "q1": 13.464101615137753, "q3": 35.46410161513776, "max": 99.0, "sd": 18.812245525263663, "avg": 26.967741935483872}}}, "base_type": "type/Decimal"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 8, "nil%": 0.0}, "type": {"type/Number": {"min": 1.0, "q1": 3.0, "q3": 17.5, "max": 38.0, "sd": 12.294017127971522, "avg": 12.5}}}}], "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customers by customer_lifetime_value", "query_average_duration": 163, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.20895Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 41, {"binning": {"strategy": "default"}}]], "aggregation": [["count"]]}}, "id": 7, "display": "bar", "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["customer_lifetime_value"], "graph.colors": ["#A6E7F3"]}, "created_at": "2021-07-21T08:01:37.858387Z", "public_uuid": null}, "updated_at": "2021-07-21T08:01:37.886739Z", "col": 6, "id": 7, "parameter_mappings": [{"parameter_id": "-1693594175", "target": ["dimension", ["field", 42, null]], "card_id": 7}, {"parameter_id": "381527929", "target": ["dimension", ["field", 39, null]], "card_id": 7}], "card_id": 7, "visualization_settings": {}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:37.886739Z", "sizeY": 4, "row": 8}, {"sizeX": 18, "series": [], "collection_authority_level": null, "card": {"query_average_duration": null}, "updated_at": "2021-07-21T08:01:37.923226Z", "col": 0, "id": 8, "parameter_mappings": [], "card_id": null, "visualization_settings": {"text": "# These customers across time", "virtual_card": {"name": null, "display": "text", "dataset_query": {}, "visualization_settings": {}}, "dashcard.background": false, "text.align_vertical": "bottom"}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:37.923226Z", "sizeY": 2, "row": 12}, {"sizeX": 6, "series": [], "collection_authority_level": null, "card": {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "day"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Date"}, {"name": "sum", "display_name": "Sum of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 7, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 1.0200644129064447, "q3": 2.3725029928215275, "max": 7.0, "sd": 1.25650644505132, "avg": 1.9038461538461537}}}}, {"name": "avg", "display_name": "Average of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 1], "fingerprint": {"global": {"distinct-count": 8, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 1.0, "q3": 2.019031639883796, "max": 5.0, "sd": 0.7594097162561813, "avg": 1.573717948717949}}}}], "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Number_of_orders over time", "query_average_duration": 1044, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.368004Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "day"}]], "aggregation": [["sum", ["field", 40, null]], ["avg", ["field", 40, null]]]}}, "id": 8, "display": "line", "visualization_settings": {"graph.series_labels": ["sum", "average"], "graph.metrics": ["sum", "avg"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#7172AD", "#EF8C8C"]}, "created_at": "2021-07-21T08:01:38.016244Z", "public_uuid": null}, "updated_at": "2021-07-21T08:01:38.058235Z", "col": 0, "id": 9, "parameter_mappings": [{"parameter_id": "-1693594175", "target": ["dimension", ["field", 42, null]], "card_id": 8}, {"parameter_id": "381527929", "target": ["dimension", ["field", 39, null]], "card_id": 8}], "card_id": 8, "visualization_settings": {}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:38.058235Z", "sizeY": 4, "row": 14}, {"sizeX": 6, "series": [], "collection_authority_level": null, "card": {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "day"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Date"}, {"name": "sum", "display_name": "Sum of customer_lifetime_value", "base_type": "type/Decimal", "semantic_type": null, "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 35, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 15.0, "q3": 40.10050506338833, "max": 131.0, "sd": 26.119172295224672, "avg": 32.15384615384615}}}}, {"name": "avg", "display_name": "Average of customer_lifetime_value", "base_type": "type/Decimal", "semantic_type": null, "field_ref": ["aggregation", 1], "fingerprint": {"global": {"distinct-count": 34, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 13.17157287525381, "q3": 34.732050807568875, "max": 99.0, "sd": 17.628392521514144, "avg": 26.39102564102564}}}}], "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customer_lifetime_value over time", "query_average_duration": 1070, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.456526Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "day"}]], "aggregation": [["sum", ["field", 41, null]], ["avg", ["field", 41, null]]]}}, "id": 9, "display": "line", "visualization_settings": {"graph.series_labels": ["sum", "average"], "graph.metrics": ["sum", "avg"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#f9d45c", "#F1B556"]}, "created_at": "2021-07-21T08:01:38.189846Z", "public_uuid": null}, "updated_at": "2021-07-21T08:01:38.245167Z", "col": 6, "id": 10, "parameter_mappings": [{"parameter_id": "-1693594175", "target": ["dimension", ["field", 42, null]], "card_id": 9}, {"parameter_id": "381527929", "target": ["dimension", ["field", 39, null]], "card_id": 9}], "card_id": 9, "visualization_settings": {}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:38.245167Z", "sizeY": 4, "row": 14}, {"sizeX": 6, "series": [], "collection_authority_level": null, "card": {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day", "name": "first_order", "field_ref": ["field", 39, {"temporal-unit": "day"}], "effective_type": "type/Date", "id": 39, "display_name": "first_order", "fingerprint": {"global": {"distinct-count": 47, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-01", "latest": "2018-04-07"}}}, "base_type": "type/Date"}, {"name": "sum", "display_name": "Sum of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 6, "nil%": 0.02127659574468085}, "type": {"type/Number": {"min": 1.0, "q1": 1.1073874870150486, "q3": 3.0, "max": 5.0, "sd": 1.2643380578934107, "avg": 2.152173913043478}}}}, {"name": "avg", "display_name": "Average of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 1], "fingerprint": {"global": {"distinct-count": 8, "nil%": 0.02127659574468085}, "type": {"type/Number": {"min": 1.0, "q1": 1.019470273980893, "q3": 1.989426104361334, "max": 5.0, "sd": 0.7515349295958083, "avg": 1.596014492753623}}}}], "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Number_of_orders over time", "query_average_duration": 861, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.321381Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 39, {"temporal-unit": "day"}]], "aggregation": [["sum", ["field", 40, null]], ["avg", ["field", 40, null]]]}}, "id": 10, "display": "line", "visualization_settings": {"graph.series_labels": ["sum", "average"], "graph.metrics": ["sum", "avg"], "graph.dimensions": ["first_order"], "graph.colors": ["#7172AD", "#EF8C8C"]}, "created_at": "2021-07-21T08:01:38.347535Z", "public_uuid": null}, "updated_at": "2021-07-21T08:01:38.41171Z", "col": 12, "id": 11, "parameter_mappings": [{"parameter_id": "-1693594175", "target": ["dimension", ["field", 42, null]], "card_id": 10}, {"parameter_id": "381527929", "target": ["dimension", ["field", 39, null]], "card_id": 10}], "card_id": 10, "visualization_settings": {}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:38.41171Z", "sizeY": 4, "row": 14}, {"sizeX": 6, "series": [], "collection_authority_level": null, "card": {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day", "name": "first_order", "field_ref": ["field", 39, {"temporal-unit": "day"}], "effective_type": "type/Date", "id": 39, "display_name": "first_order", "fingerprint": {"global": {"distinct-count": 47, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-01", "latest": "2018-04-07"}}}, "base_type": "type/Date"}, {"name": "sum", "display_name": "Sum of customer_lifetime_value", "base_type": "type/Decimal", "semantic_type": null, "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 33, "nil%": 0.02127659574468085}, "type": {"type/Number": {"min": 1.0, "q1": 17.0, "q3": 55.93725393319377, "max": 129.0, "sd": 25.492672054973276, "avg": 36.34782608695652}}}}, {"name": "avg", "display_name": "Average of customer_lifetime_value", "base_type": "type/Decimal", "semantic_type": null, "field_ref": ["aggregation", 1], "fingerprint": {"global": {"distinct-count": 35, "nil%": 0.02127659574468085}, "type": {"type/Number": {"min": 1.0, "q1": 15.0, "q3": 33.53589838486224, "max": 65.0, "sd": 17.057530000270994, "avg": 27.342391304347824}}}}], "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customer_lifetime_value over time", "query_average_duration": 843, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.665585Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 39, {"temporal-unit": "day"}]], "aggregation": [["sum", ["field", 41, null]], ["avg", ["field", 41, null]]]}}, "id": 11, "display": "line", "visualization_settings": {"graph.series_labels": ["sum", "average"], "graph.metrics": ["sum", "avg"], "graph.dimensions": ["first_order"], "graph.colors": ["#f9d45c", "#F1B556"]}, "created_at": "2021-07-21T08:01:38.52841Z", "public_uuid": null}, "updated_at": "2021-07-21T08:01:38.575083Z", "col": 0, "id": 12, "parameter_mappings": [{"parameter_id": "-1693594175", "target": ["dimension", ["field", 42, null]], "card_id": 11}, {"parameter_id": "381527929", "target": ["dimension", ["field", 39, null]], "card_id": 11}], "card_id": 11, "visualization_settings": {}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:38.575083Z", "sizeY": 4, "row": 18}, {"sizeX": 6, "series": [], "collection_authority_level": null, "card": {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day-of-week", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "day-of-week"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 5, "nil%": 0.0}, "type": {"type/Number": {"min": 6.0, "q1": 7.414213562373095, "q3": 15.782357300628025, "max": 38.0, "sd": 10.488088481701515, "avg": 12.5}}}}], "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by day of the week", "query_average_duration": 277, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.346492Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "day-of-week"}]], "aggregation": [["count"]]}}, "id": 12, "display": "bar", "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#A6E7F3"], "graph.x_axis.title_text": "Timestamp"}, "created_at": "2021-07-21T08:01:38.662485Z", "public_uuid": null}, "updated_at": "2021-07-21T08:01:38.705264Z", "col": 6, "id": 13, "parameter_mappings": [{"parameter_id": "-1693594175", "target": ["dimension", ["field", 42, null]], "card_id": 12}, {"parameter_id": "381527929", "target": ["dimension", ["field", 39, null]], "card_id": 12}], "card_id": 12, "visualization_settings": {}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:38.705264Z", "sizeY": 4, "row": 18}, {"sizeX": 6, "series": [], "collection_authority_level": null, "card": {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day-of-week", "name": "first_order", "field_ref": ["field", 39, {"temporal-unit": "day-of-week"}], "effective_type": "type/Date", "id": 39, "display_name": "first_order", "fingerprint": {"global": {"distinct-count": 47, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-01", "latest": "2018-04-07"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 6, "nil%": 0.0}, "type": {"type/Number": {"min": 6.0, "q1": 7.414213562373095, "q3": 11.757359312880714, "max": 38.0, "sd": 10.528871870107588, "avg": 12.5}}}}], "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by day of the week", "query_average_duration": 195, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.483723Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 39, {"temporal-unit": "day-of-week"}]], "aggregation": [["count"]]}}, "id": 13, "display": "bar", "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["first_order"], "graph.colors": ["#F1B556"], "graph.x_axis.title_text": "Timestamp"}, "created_at": "2021-07-21T08:01:38.808186Z", "public_uuid": null}, "updated_at": "2021-07-21T08:01:38.850161Z", "col": 12, "id": 14, "parameter_mappings": [{"parameter_id": "-1693594175", "target": ["dimension", ["field", 42, null]], "card_id": 13}, {"parameter_id": "381527929", "target": ["dimension", ["field", 39, null]], "card_id": 13}], "card_id": 13, "visualization_settings": {}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:38.850161Z", "sizeY": 4, "row": 18}, {"sizeX": 6, "series": [], "collection_authority_level": null, "card": {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "month-of-year", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "month-of-year"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 5, "nil%": 0.0}, "type": {"type/Number": {"min": 8.0, "q1": 10.25, "q3": 30.5, "max": 38.0, "sd": 12.62933094031509, "avg": 20.0}}}}], "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by month of the year", "query_average_duration": 159, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.562877Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "month-of-year"}]], "aggregation": [["count"]]}}, "id": 14, "display": "bar", "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#A6E7F3"], "graph.x_axis.title_text": "Timestamp"}, "created_at": "2021-07-21T08:01:38.938688Z", "public_uuid": null}, "updated_at": "2021-07-21T08:01:38.983764Z", "col": 0, "id": 15, "parameter_mappings": [{"parameter_id": "-1693594175", "target": ["dimension", ["field", 42, null]], "card_id": 14}, {"parameter_id": "381527929", "target": ["dimension", ["field", 39, null]], "card_id": 14}], "card_id": 14, "visualization_settings": {}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:38.983764Z", "sizeY": 4, "row": 22}, {"sizeX": 6, "series": [], "collection_authority_level": null, "card": {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "month-of-year", "name": "first_order", "field_ref": ["field", 39, {"temporal-unit": "month-of-year"}], "effective_type": "type/Date", "id": 39, "display_name": "first_order", "fingerprint": {"global": {"distinct-count": 47, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-01", "latest": "2018-04-07"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 4, "nil%": 0.0}, "type": {"type/Number": {"min": 2.0, "q1": 11.298221281347036, "q3": 27.5, "max": 38.0, "sd": 12.96148139681572, "avg": 20.0}}}}], "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by month of the year", "query_average_duration": 119, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.52292Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 39, {"temporal-unit": "month-of-year"}]], "aggregation": [["count"]]}}, "id": 15, "display": "bar", "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["first_order"], "graph.colors": ["#F1B556"], "graph.x_axis.title_text": "Timestamp"}, "created_at": "2021-07-21T08:01:39.084258Z", "public_uuid": null}, "updated_at": "2021-07-21T08:01:39.132463Z", "col": 6, "id": 16, "parameter_mappings": [{"parameter_id": "-1693594175", "target": ["dimension", ["field", 42, null]], "card_id": 15}, {"parameter_id": "381527929", "target": ["dimension", ["field", 39, null]], "card_id": 15}], "card_id": 15, "visualization_settings": {}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:39.132463Z", "sizeY": 4, "row": 22}, {"sizeX": 6, "series": [], "collection_authority_level": null, "card": {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "quarter-of-year", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "quarter-of-year"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 3, "nil%": 0.0}, "type": {"type/Number": {"min": 8.0, "q1": 15.5, "q3": 50.0, "max": 54.0, "sd": 23.35237318418266, "avg": 33.333333333333336}}}}], "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by quarter of the year", "query_average_duration": 73, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.567707Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "quarter-of-year"}]], "aggregation": [["count"]]}}, "id": 16, "display": "bar", "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#A6E7F3"], "graph.x_axis.title_text": "Timestamp"}, "created_at": "2021-07-21T08:01:39.228965Z", "public_uuid": null}, "updated_at": "2021-07-21T08:01:39.274309Z", "col": 12, "id": 17, "parameter_mappings": [{"parameter_id": "-1693594175", "target": ["dimension", ["field", 42, null]], "card_id": 16}, {"parameter_id": "381527929", "target": ["dimension", ["field", 39, null]], "card_id": 16}], "card_id": 16, "visualization_settings": {}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:39.274309Z", "sizeY": 4, "row": 22}, {"sizeX": 6, "series": [], "collection_authority_level": null, "card": {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "quarter-of-year", "name": "first_order", "field_ref": ["field", 39, {"temporal-unit": "quarter-of-year"}], "effective_type": "type/Date", "id": 39, "display_name": "first_order", "fingerprint": {"global": {"distinct-count": 47, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-01", "latest": "2018-04-07"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 3, "nil%": 0.0}, "type": {"type/Number": {"min": 2.0, "q1": 11.0, "q3": 54.5, "max": 60.0, "sd": 29.280255007997, "avg": 33.333333333333336}}}}], "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by quarter of the year", "query_average_duration": 74, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.603496Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 39, {"temporal-unit": "quarter-of-year"}]], "aggregation": [["count"]]}}, "id": 17, "display": "bar", "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["first_order"], "graph.colors": ["#F1B556"], "graph.x_axis.title_text": "Timestamp"}, "created_at": "2021-07-21T08:01:39.371067Z", "public_uuid": null}, "updated_at": "2021-07-21T08:01:39.426126Z", "col": 0, "id": 18, "parameter_mappings": [{"parameter_id": "-1693594175", "target": ["dimension", ["field", 42, null]], "card_id": 17}, {"parameter_id": "381527929", "target": ["dimension", ["field", 39, null]], "card_id": 17}], "card_id": 17, "visualization_settings": {}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:39.426126Z", "sizeY": 4, "row": 26}], "param_values": null, "can_write": true, "enable_embedding": false, "collection_id": 3, "show_in_getting_started": false, "name": "A look at your customers table", "caveats": null, "collection_authority_level": null, "creator_id": 1, "updated_at": "2021-07-21T08:01:37.328519Z", "made_public_by_id": null, "embedding_params": null, "id": 1, "position": null, "param_fields": {"42": {"id": 42, "table_id": 7, "display_name": "most_recent_order", "base_type": "type/Date", "semantic_type": null, "has_field_values": "none", "name_field": null, "dimensions": []}, "39": {"id": 39, "table_id": 7, "display_name": "first_order", "base_type": "type/Date", "semantic_type": null, "has_field_values": "none", "name_field": null, "dimensions": []}}, "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "Alexander", "last_name": "Butler", "timestamp": "2021-07-21T08:01:39.542335Z"}, "parameters": [{"id": "-1693594175", "type": "date/all-options", "name": "most_recent_order", "slug": "most_recent_order"}, {"id": "381527929", "type": "date/all-options", "name": "first_order", "slug": "first_order"}], "created_at": "2021-07-21T08:01:37.328519Z", "public_uuid": null, "points_of_interest": null} \ No newline at end of file +{"description": null, "archived": false, "collection_position": 1, "ordered_cards": [{"sizeX": 18, "series": [], "collection_authority_level": null, "card": {"query_average_duration": null}, "updated_at": "2021-07-21T08:01:37.372373Z", "col": 0, "id": 1, "parameter_mappings": [], "card_id": null, "visualization_settings": {"text": "# Summary", "virtual_card": {"name": null, "display": "text", "dataset_query": {}, "visualization_settings": {}}, "dashcard.background": false, "text.align_vertical": "bottom"}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:37.372373Z", "sizeY": 2, "row": 0}, {"sizeX": 6, "series": [], "collection_authority_level": null, "card": {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 1, "nil%": 0.0}, "type": {"type/Number": {"min": 100.0, "q1": 100.0, "q3": 100.0, "max": 100.0, "sd": null, "avg": 100.0}}}}], "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Total customers", "query_average_duration": 579, "creator_id": 1, "updated_at": "2021-07-21T08:01:41.996Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "aggregation": [["count"]]}}, "id": 3, "display": "scalar", "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": []}, "created_at": "2021-07-21T08:01:37.434243Z", "public_uuid": null}, "updated_at": "2021-07-21T08:01:37.466466Z", "col": 0, "id": 2, "parameter_mappings": [{"parameter_id": "-1693594175", "target": ["dimension", ["field", 42, null]], "card_id": 3}, {"parameter_id": "381527929", "target": ["dimension", ["field", 39, null]], "card_id": 3}], "card_id": 3, "visualization_settings": {}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:37.466466Z", "sizeY": 4, "row": 2}, {"sizeX": 6, "series": [], "collection_authority_level": null, "card": {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 1, "nil%": 0.0}, "type": {"type/Number": {"min": 0.0, "q1": 0.0, "q3": 0.0, "max": 0.0, "sd": null, "avg": 0.0}}}}], "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customers added in the last 30 days", "query_average_duration": 38, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.000946Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "filter": ["time-interval", ["field", 42, null], -30, "day"], "aggregation": [["count"]]}}, "id": 4, "display": "scalar", "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": []}, "created_at": "2021-07-21T08:01:37.535187Z", "public_uuid": null}, "updated_at": "2021-07-21T08:01:37.567169Z", "col": 6, "id": 3, "parameter_mappings": [{"parameter_id": "-1693594175", "target": ["dimension", ["field", 42, null]], "card_id": 4}, {"parameter_id": "381527929", "target": ["dimension", ["field", 39, null]], "card_id": 4}], "card_id": 4, "visualization_settings": {}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:37.567169Z", "sizeY": 4, "row": 2}, {"sizeX": 6, "series": [], "collection_authority_level": null, "card": {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 1, "nil%": 0.0}, "type": {"type/Number": {"min": 0.0, "q1": 0.0, "q3": 0.0, "max": 0.0, "sd": null, "avg": 0.0}}}}], "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customers added in the last 30 days", "query_average_duration": 132, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.157282Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "filter": ["time-interval", ["field", 39, null], -30, "day"], "aggregation": [["count"]]}}, "id": 5, "display": "scalar", "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": []}, "created_at": "2021-07-21T08:01:37.630969Z", "public_uuid": null}, "updated_at": "2021-07-21T08:01:37.652919Z", "col": 12, "id": 4, "parameter_mappings": [{"parameter_id": "-1693594175", "target": ["dimension", ["field", 42, null]], "card_id": 5}, {"parameter_id": "381527929", "target": ["dimension", ["field", 39, null]], "card_id": 5}], "card_id": 5, "visualization_settings": {}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:37.652919Z", "sizeY": 4, "row": 2}, {"sizeX": 18, "series": [], "collection_authority_level": null, "card": {"query_average_duration": null}, "updated_at": "2021-07-21T08:01:37.686857Z", "col": 0, "id": 5, "parameter_mappings": [], "card_id": null, "visualization_settings": {"text": "# How these customers are distributed", "virtual_card": {"name": null, "display": "text", "dataset_query": {}, "visualization_settings": {}}, "dashcard.background": false, "text.align_vertical": "bottom"}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:37.686857Z", "sizeY": 2, "row": 6}, {"sizeX": 6, "series": [], "collection_authority_level": null, "card": {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": "type/Quantity", "coercion_strategy": null, "name": "number_of_orders", "field_ref": ["field", 40, {"binning": {"strategy": "num-bins", "min-value": 1.0, "max-value": 5.0, "num-bins": 8, "bin-width": 0.5}}], "effective_type": "type/BigInteger", "id": 40, "display_name": "number_of_orders", "fingerprint": {"global": {"distinct-count": 5, "nil%": 0.38}, "type": {"type/Number": {"min": 1.0, "q1": 1.0, "q3": 2.0901356485315583, "max": 5.0, "sd": 0.7779687173818424, "avg": 1.596774193548387}}}, "base_type": "type/Decimal"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 5, "nil%": 0.0}, "type": {"type/Number": {"min": 1.0, "q1": 4.0, "q3": 34.25, "max": 38.0, "sd": 16.492422502470642, "avg": 20.0}}}}], "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customers by number_of_orders", "query_average_duration": 321, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.107313Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 40, {"binning": {"strategy": "default"}}]], "aggregation": [["count"]]}}, "id": 6, "display": "bar", "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["number_of_orders"], "graph.colors": ["#EF8C8C"]}, "created_at": "2021-07-21T08:01:37.754606Z", "public_uuid": null}, "updated_at": "2021-07-21T08:01:37.781517Z", "col": 0, "id": 6, "parameter_mappings": [{"parameter_id": "-1693594175", "target": ["dimension", ["field", 42, null]], "card_id": 6}, {"parameter_id": "381527929", "target": ["dimension", ["field", 39, null]], "card_id": 6}], "card_id": 6, "visualization_settings": {}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:37.781517Z", "sizeY": 4, "row": 8}, {"sizeX": 6, "series": [], "collection_authority_level": null, "card": {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "name": "customer_lifetime_value", "field_ref": ["field", 41, {"binning": {"strategy": "num-bins", "min-value": 0.0, "max-value": 100.0, "num-bins": 8, "bin-width": 12.5}}], "effective_type": "type/BigInteger", "id": 41, "display_name": "customer_lifetime_value", "fingerprint": {"global": {"distinct-count": 36, "nil%": 0.38}, "type": {"type/Number": {"min": 1.0, "q1": 13.464101615137753, "q3": 35.46410161513776, "max": 99.0, "sd": 18.812245525263663, "avg": 26.967741935483872}}}, "base_type": "type/Decimal"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 8, "nil%": 0.0}, "type": {"type/Number": {"min": 1.0, "q1": 3.0, "q3": 17.5, "max": 38.0, "sd": 12.294017127971522, "avg": 12.5}}}}], "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customers by customer_lifetime_value", "query_average_duration": 163, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.20895Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 41, {"binning": {"strategy": "default"}}]], "aggregation": [["count"]]}}, "id": 7, "display": "bar", "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["customer_lifetime_value"], "graph.colors": ["#A6E7F3"]}, "created_at": "2021-07-21T08:01:37.858387Z", "public_uuid": null}, "updated_at": "2021-07-21T08:01:37.886739Z", "col": 6, "id": 7, "parameter_mappings": [{"parameter_id": "-1693594175", "target": ["dimension", ["field", 42, null]], "card_id": 7}, {"parameter_id": "381527929", "target": ["dimension", ["field", 39, null]], "card_id": 7}], "card_id": 7, "visualization_settings": {}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:37.886739Z", "sizeY": 4, "row": 8}, {"sizeX": 18, "series": [], "collection_authority_level": null, "card": {"query_average_duration": null}, "updated_at": "2021-07-21T08:01:37.923226Z", "col": 0, "id": 8, "parameter_mappings": [], "card_id": null, "visualization_settings": {"text": "# These customers across time", "virtual_card": {"name": null, "display": "text", "dataset_query": {}, "visualization_settings": {}}, "dashcard.background": false, "text.align_vertical": "bottom"}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:37.923226Z", "sizeY": 2, "row": 12}, {"sizeX": 6, "series": [], "collection_authority_level": null, "card": {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "day"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Date"}, {"name": "sum", "display_name": "Sum of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 7, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 1.0200644129064447, "q3": 2.3725029928215275, "max": 7.0, "sd": 1.25650644505132, "avg": 1.9038461538461537}}}}, {"name": "avg", "display_name": "Average of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 1], "fingerprint": {"global": {"distinct-count": 8, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 1.0, "q3": 2.019031639883796, "max": 5.0, "sd": 0.7594097162561813, "avg": 1.573717948717949}}}}], "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Number_of_orders over time", "query_average_duration": 1044, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.368004Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "day"}]], "aggregation": [["sum", ["field", 40, null]], ["avg", ["field", 40, null]]]}}, "id": 8, "display": "line", "visualization_settings": {"graph.series_labels": ["sum", "average"], "graph.metrics": ["sum", "avg"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#7172AD", "#EF8C8C"]}, "created_at": "2021-07-21T08:01:38.016244Z", "public_uuid": null}, "updated_at": "2021-07-21T08:01:38.058235Z", "col": 0, "id": 9, "parameter_mappings": [{"parameter_id": "-1693594175", "target": ["dimension", ["field", 42, null]], "card_id": 8}, {"parameter_id": "381527929", "target": ["dimension", ["field", 39, null]], "card_id": 8}], "card_id": 8, "visualization_settings": {}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:38.058235Z", "sizeY": 4, "row": 14}, {"sizeX": 6, "series": [], "collection_authority_level": null, "card": {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "day"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Date"}, {"name": "sum", "display_name": "Sum of customer_lifetime_value", "base_type": "type/Decimal", "semantic_type": null, "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 35, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 15.0, "q3": 40.10050506338833, "max": 131.0, "sd": 26.119172295224672, "avg": 32.15384615384615}}}}, {"name": "avg", "display_name": "Average of customer_lifetime_value", "base_type": "type/Decimal", "semantic_type": null, "field_ref": ["aggregation", 1], "fingerprint": {"global": {"distinct-count": 34, "nil%": 0.01886792452830189}, "type": {"type/Number": {"min": 1.0, "q1": 13.17157287525381, "q3": 34.732050807568875, "max": 99.0, "sd": 17.628392521514144, "avg": 26.39102564102564}}}}], "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customer_lifetime_value over time", "query_average_duration": 1070, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.456526Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "day"}]], "aggregation": [["sum", ["field", 41, null]], ["avg", ["field", 41, null]]]}}, "id": 9, "display": "line", "visualization_settings": {"graph.series_labels": ["sum", "average"], "graph.metrics": ["sum", "avg"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#f9d45c", "#F1B556"]}, "created_at": "2021-07-21T08:01:38.189846Z", "public_uuid": null}, "updated_at": "2021-07-21T08:01:38.245167Z", "col": 6, "id": 10, "parameter_mappings": [{"parameter_id": "-1693594175", "target": ["dimension", ["field", 42, null]], "card_id": 9}, {"parameter_id": "381527929", "target": ["dimension", ["field", 39, null]], "card_id": 9}], "card_id": 9, "visualization_settings": {}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:38.245167Z", "sizeY": 4, "row": 14}, {"sizeX": 6, "series": [], "collection_authority_level": null, "card": {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day", "name": "first_order", "field_ref": ["field", 39, {"temporal-unit": "day"}], "effective_type": "type/Date", "id": 39, "display_name": "first_order", "fingerprint": {"global": {"distinct-count": 47, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-01", "latest": "2018-04-07"}}}, "base_type": "type/Date"}, {"name": "sum", "display_name": "Sum of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 6, "nil%": 0.02127659574468085}, "type": {"type/Number": {"min": 1.0, "q1": 1.1073874870150486, "q3": 3.0, "max": 5.0, "sd": 1.2643380578934107, "avg": 2.152173913043478}}}}, {"name": "avg", "display_name": "Average of number_of_orders", "base_type": "type/Decimal", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 1], "fingerprint": {"global": {"distinct-count": 8, "nil%": 0.02127659574468085}, "type": {"type/Number": {"min": 1.0, "q1": 1.019470273980893, "q3": 1.989426104361334, "max": 5.0, "sd": 0.7515349295958083, "avg": 1.596014492753623}}}}], "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Number_of_orders over time", "query_average_duration": 861, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.321381Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 39, {"temporal-unit": "day"}]], "aggregation": [["sum", ["field", 40, null]], ["avg", ["field", 40, null]]]}}, "id": 10, "display": "line", "visualization_settings": {"graph.series_labels": ["sum", "average"], "graph.metrics": ["sum", "avg"], "graph.dimensions": ["first_order"], "graph.colors": ["#7172AD", "#EF8C8C"]}, "created_at": "2021-07-21T08:01:38.347535Z", "public_uuid": null}, "updated_at": "2021-07-21T08:01:38.41171Z", "col": 12, "id": 11, "parameter_mappings": [{"parameter_id": "-1693594175", "target": ["dimension", ["field", 42, null]], "card_id": 10}, {"parameter_id": "381527929", "target": ["dimension", ["field", 39, null]], "card_id": 10}], "card_id": 10, "visualization_settings": {}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:38.41171Z", "sizeY": 4, "row": 14}, {"sizeX": 6, "series": [], "collection_authority_level": null, "card": {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day", "name": "first_order", "field_ref": ["field", 39, {"temporal-unit": "day"}], "effective_type": "type/Date", "id": 39, "display_name": "first_order", "fingerprint": {"global": {"distinct-count": 47, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-01", "latest": "2018-04-07"}}}, "base_type": "type/Date"}, {"name": "sum", "display_name": "Sum of customer_lifetime_value", "base_type": "type/Decimal", "semantic_type": null, "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 33, "nil%": 0.02127659574468085}, "type": {"type/Number": {"min": 1.0, "q1": 17.0, "q3": 55.93725393319377, "max": 129.0, "sd": 25.492672054973276, "avg": 36.34782608695652}}}}, {"name": "avg", "display_name": "Average of customer_lifetime_value", "base_type": "type/Decimal", "semantic_type": null, "field_ref": ["aggregation", 1], "fingerprint": {"global": {"distinct-count": 35, "nil%": 0.02127659574468085}, "type": {"type/Number": {"min": 1.0, "q1": 15.0, "q3": 33.53589838486224, "max": 65.0, "sd": 17.057530000270994, "avg": 27.342391304347824}}}}], "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Customer_lifetime_value over time", "query_average_duration": 843, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.665585Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 39, {"temporal-unit": "day"}]], "aggregation": [["sum", ["field", 41, null]], ["avg", ["field", 41, null]]]}}, "id": 11, "display": "line", "visualization_settings": {"graph.series_labels": ["sum", "average"], "graph.metrics": ["sum", "avg"], "graph.dimensions": ["first_order"], "graph.colors": ["#f9d45c", "#F1B556"]}, "created_at": "2021-07-21T08:01:38.52841Z", "public_uuid": null}, "updated_at": "2021-07-21T08:01:38.575083Z", "col": 0, "id": 12, "parameter_mappings": [{"parameter_id": "-1693594175", "target": ["dimension", ["field", 42, null]], "card_id": 11}, {"parameter_id": "381527929", "target": ["dimension", ["field", 39, null]], "card_id": 11}], "card_id": 11, "visualization_settings": {}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:38.575083Z", "sizeY": 4, "row": 18}, {"sizeX": 6, "series": [], "collection_authority_level": null, "card": {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day-of-week", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "day-of-week"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 5, "nil%": 0.0}, "type": {"type/Number": {"min": 6.0, "q1": 7.414213562373095, "q3": 15.782357300628025, "max": 38.0, "sd": 10.488088481701515, "avg": 12.5}}}}], "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by day of the week", "query_average_duration": 277, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.346492Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "day-of-week"}]], "aggregation": [["count"]]}}, "id": 12, "display": "bar", "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#A6E7F3"], "graph.x_axis.title_text": "Timestamp"}, "created_at": "2021-07-21T08:01:38.662485Z", "public_uuid": null}, "updated_at": "2021-07-21T08:01:38.705264Z", "col": 6, "id": 13, "parameter_mappings": [{"parameter_id": "-1693594175", "target": ["dimension", ["field", 42, null]], "card_id": 12}, {"parameter_id": "381527929", "target": ["dimension", ["field", 39, null]], "card_id": 12}], "card_id": 12, "visualization_settings": {}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:38.705264Z", "sizeY": 4, "row": 18}, {"sizeX": 6, "series": [], "collection_authority_level": null, "card": {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "day-of-week", "name": "first_order", "field_ref": ["field", 39, {"temporal-unit": "day-of-week"}], "effective_type": "type/Date", "id": 39, "display_name": "first_order", "fingerprint": {"global": {"distinct-count": 47, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-01", "latest": "2018-04-07"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 6, "nil%": 0.0}, "type": {"type/Number": {"min": 6.0, "q1": 7.414213562373095, "q3": 11.757359312880714, "max": 38.0, "sd": 10.528871870107588, "avg": 12.5}}}}], "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by day of the week", "query_average_duration": 195, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.483723Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 39, {"temporal-unit": "day-of-week"}]], "aggregation": [["count"]]}}, "id": 13, "display": "bar", "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["first_order"], "graph.colors": ["#F1B556"], "graph.x_axis.title_text": "Timestamp"}, "created_at": "2021-07-21T08:01:38.808186Z", "public_uuid": null}, "updated_at": "2021-07-21T08:01:38.850161Z", "col": 12, "id": 14, "parameter_mappings": [{"parameter_id": "-1693594175", "target": ["dimension", ["field", 42, null]], "card_id": 13}, {"parameter_id": "381527929", "target": ["dimension", ["field", 39, null]], "card_id": 13}], "card_id": 13, "visualization_settings": {}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:38.850161Z", "sizeY": 4, "row": 18}, {"sizeX": 6, "series": [], "collection_authority_level": null, "card": {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "month-of-year", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "month-of-year"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 5, "nil%": 0.0}, "type": {"type/Number": {"min": 8.0, "q1": 10.25, "q3": 30.5, "max": 38.0, "sd": 12.62933094031509, "avg": 20.0}}}}], "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by month of the year", "query_average_duration": 159, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.562877Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "month-of-year"}]], "aggregation": [["count"]]}}, "id": 14, "display": "bar", "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#A6E7F3"], "graph.x_axis.title_text": "Timestamp"}, "created_at": "2021-07-21T08:01:38.938688Z", "public_uuid": null}, "updated_at": "2021-07-21T08:01:38.983764Z", "col": 0, "id": 15, "parameter_mappings": [{"parameter_id": "-1693594175", "target": ["dimension", ["field", 42, null]], "card_id": 14}, {"parameter_id": "381527929", "target": ["dimension", ["field", 39, null]], "card_id": 14}], "card_id": 14, "visualization_settings": {}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:38.983764Z", "sizeY": 4, "row": 22}, {"sizeX": 6, "series": [], "collection_authority_level": null, "card": {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "month-of-year", "name": "first_order", "field_ref": ["field", 39, {"temporal-unit": "month-of-year"}], "effective_type": "type/Date", "id": 39, "display_name": "first_order", "fingerprint": {"global": {"distinct-count": 47, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-01", "latest": "2018-04-07"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 4, "nil%": 0.0}, "type": {"type/Number": {"min": 2.0, "q1": 11.298221281347036, "q3": 27.5, "max": 38.0, "sd": 12.96148139681572, "avg": 20.0}}}}], "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by month of the year", "query_average_duration": 119, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.52292Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 39, {"temporal-unit": "month-of-year"}]], "aggregation": [["count"]]}}, "id": 15, "display": "bar", "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["first_order"], "graph.colors": ["#F1B556"], "graph.x_axis.title_text": "Timestamp"}, "created_at": "2021-07-21T08:01:39.084258Z", "public_uuid": null}, "updated_at": "2021-07-21T08:01:39.132463Z", "col": 6, "id": 16, "parameter_mappings": [{"parameter_id": "-1693594175", "target": ["dimension", ["field", 42, null]], "card_id": 15}, {"parameter_id": "381527929", "target": ["dimension", ["field", 39, null]], "card_id": 15}], "card_id": 15, "visualization_settings": {}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:39.132463Z", "sizeY": 4, "row": 22}, {"sizeX": 6, "series": [], "collection_authority_level": null, "card": {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "quarter-of-year", "name": "most_recent_order", "field_ref": ["field", 42, {"temporal-unit": "quarter-of-year"}], "effective_type": "type/Date", "id": 42, "display_name": "most_recent_order", "fingerprint": {"global": {"distinct-count": 53, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-09", "latest": "2018-04-09"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 3, "nil%": 0.0}, "type": {"type/Number": {"min": 8.0, "q1": 15.5, "q3": 50.0, "max": 54.0, "sd": 23.35237318418266, "avg": 33.333333333333336}}}}], "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by quarter of the year", "query_average_duration": 73, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.567707Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 42, {"temporal-unit": "quarter-of-year"}]], "aggregation": [["count"]]}}, "id": 16, "display": "bar", "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["most_recent_order"], "graph.colors": ["#A6E7F3"], "graph.x_axis.title_text": "Timestamp"}, "created_at": "2021-07-21T08:01:39.228965Z", "public_uuid": null}, "updated_at": "2021-07-21T08:01:39.274309Z", "col": 12, "id": 17, "parameter_mappings": [{"parameter_id": "-1693594175", "target": ["dimension", ["field", 42, null]], "card_id": 16}, {"parameter_id": "381527929", "target": ["dimension", ["field", 39, null]], "card_id": 16}], "card_id": 16, "visualization_settings": {}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:39.274309Z", "sizeY": 4, "row": 22}, {"sizeX": 6, "series": [], "collection_authority_level": null, "card": {"description": null, "archived": false, "collection_position": null, "table_id": 7, "result_metadata": [{"semantic_type": null, "coercion_strategy": null, "unit": "quarter-of-year", "name": "first_order", "field_ref": ["field", 39, {"temporal-unit": "quarter-of-year"}], "effective_type": "type/Date", "id": 39, "display_name": "first_order", "fingerprint": {"global": {"distinct-count": 47, "nil%": 0.38}, "type": {"type/DateTime": {"earliest": "2018-01-01", "latest": "2018-04-07"}}}, "base_type": "type/Integer"}, {"name": "count", "display_name": "Count", "base_type": "type/BigInteger", "semantic_type": "type/Quantity", "field_ref": ["aggregation", 0], "fingerprint": {"global": {"distinct-count": 3, "nil%": 0.0}, "type": {"type/Number": {"min": 2.0, "q1": 11.0, "q3": 54.5, "max": 60.0, "sd": 29.280255007997, "avg": 33.333333333333336}}}}], "database_id": 2, "enable_embedding": false, "collection_id": 3, "query_type": "query", "name": "Timestamp by quarter of the year", "query_average_duration": 74, "creator_id": 1, "updated_at": "2021-07-21T08:01:42.603496Z", "made_public_by_id": null, "embedding_params": null, "cache_ttl": null, "dataset_query": {"type": "query", "database": 2, "query": {"source-table": 7, "breakout": [["field", 39, {"temporal-unit": "quarter-of-year"}]], "aggregation": [["count"]]}}, "id": 17, "display": "bar", "visualization_settings": {"graph.series_labels": ["number"], "graph.metrics": ["count"], "graph.dimensions": ["first_order"], "graph.colors": ["#F1B556"], "graph.x_axis.title_text": "Timestamp"}, "created_at": "2021-07-21T08:01:39.371067Z", "public_uuid": null}, "updated_at": "2021-07-21T08:01:39.426126Z", "col": 0, "id": 18, "parameter_mappings": [{"parameter_id": "-1693594175", "target": ["dimension", ["field", 42, null]], "card_id": 17}, {"parameter_id": "381527929", "target": ["dimension", ["field", 39, null]], "card_id": 17}], "card_id": 17, "visualization_settings": {}, "dashboard_id": 1, "created_at": "2021-07-21T08:01:39.426126Z", "sizeY": 4, "row": 26}], "param_values": null, "can_write": true, "enable_embedding": false, "collection_id": 3, "show_in_getting_started": false, "name": "A look at your customers table", "caveats": null, "collection_authority_level": null, "creator_id": 1, "updated_at": "2021-07-21T08:01:37.328519Z", "made_public_by_id": null, "embedding_params": null, "id": 1, "position": null, "param_fields": {"42": {"id": 42, "table_id": 7, "display_name": "most_recent_order", "base_type": "type/Date", "semantic_type": null, "has_field_values": "none", "name_field": null, "dimensions": []}, "39": {"id": 39, "table_id": 7, "display_name": "first_order", "base_type": "type/Date", "semantic_type": null, "has_field_values": "none", "name_field": null, "dimensions": []}}, "last-edit-info": {"id": 1, "email": "user@example.com", "first_name": "dbtmetabase", "last_name": "", "timestamp": "2021-07-21T08:01:39.542335Z"}, "parameters": [{"id": "-1693594175", "type": "date/all-options", "name": "most_recent_order", "slug": "most_recent_order"}, {"id": "381527929", "type": "date/all-options", "name": "first_order", "slug": "first_order"}], "created_at": "2021-07-21T08:01:37.328519Z", "public_uuid": null, "points_of_interest": null} diff --git a/tests/fixtures/mock_api/api/user.json b/tests/fixtures/mock_api/api/user.json index c33b15a3..0b426cd4 100644 --- a/tests/fixtures/mock_api/api/user.json +++ b/tests/fixtures/mock_api/api/user.json @@ -1 +1 @@ -[{"email": "user@example.com", "ldap_auth": false, "first_name": "Alexander", "locale": null, "last_login": "2021-07-21T19:25:28.6083Z", "is_active": true, "is_qbnewb": false, "updated_at": "2021-07-21T19:25:28.6083", "group_ids": [1, 2], "is_superuser": true, "login_attributes": null, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "personal_collection_id": 1, "common_name": "Alexander Butler", "google_auth": false}] \ No newline at end of file +[{"email": "user@example.com", "ldap_auth": false, "first_name": "dbtmetabase", "locale": null, "last_login": "2021-07-21T19:25:28.6083Z", "is_active": true, "is_qbnewb": false, "updated_at": "2021-07-21T19:25:28.6083", "group_ids": [1, 2], "is_superuser": true, "login_attributes": null, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "personal_collection_id": 1, "common_name": "dbtmetabase", "google_auth": false}] diff --git a/tests/fixtures/mock_api/api/user/1.json b/tests/fixtures/mock_api/api/user/1.json index 3b107489..b0aa0c1f 100644 --- a/tests/fixtures/mock_api/api/user/1.json +++ b/tests/fixtures/mock_api/api/user/1.json @@ -1 +1 @@ -{"email": "user@example.com", "ldap_auth": false, "first_name": "Alexander", "locale": null, "last_login": "2021-07-21T19:25:28.6083Z", "is_active": true, "is_qbnewb": false, "updated_at": "2021-07-21T19:25:28.6083", "group_ids": [1, 2], "is_superuser": true, "login_attributes": null, "id": 1, "last_name": "Butler", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "Alexander Butler", "google_auth": false} \ No newline at end of file +{"email": "user@example.com", "ldap_auth": false, "first_name": "dbtmetabase", "locale": null, "last_login": "2021-07-21T19:25:28.6083Z", "is_active": true, "is_qbnewb": false, "updated_at": "2021-07-21T19:25:28.6083", "group_ids": [1, 2], "is_superuser": true, "login_attributes": null, "id": 1, "last_name": "", "date_joined": "2021-07-21T05:38:53.637091Z", "common_name": "dbtmetabase", "google_auth": false} diff --git a/tests/fixtures/sample_project/.gitignore b/tests/fixtures/sample_project/.gitignore deleted file mode 100644 index 6aa80b0f..00000000 --- a/tests/fixtures/sample_project/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -dbt_modules/ -logs/ diff --git a/tests/fixtures/sample_project/LICENSE b/tests/fixtures/sample_project/LICENSE deleted file mode 100644 index 8dada3ed..00000000 --- a/tests/fixtures/sample_project/LICENSE +++ /dev/null @@ -1,201 +0,0 @@ - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/tests/fixtures/sample_project/README.md b/tests/fixtures/sample_project/README.md deleted file mode 100644 index 280ae515..00000000 --- a/tests/fixtures/sample_project/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# Sample dbt project - -Based on the official [jaffle_shop](https://github.com/dbt-labs/jaffle_shop) sample with several additions and modifications to test certain dbt-metabase features. diff --git a/tests/fixtures/sample_project/etc/dbdiagram_definition.txt b/tests/fixtures/sample_project/etc/dbdiagram_definition.txt deleted file mode 100644 index 3a6e12c0..00000000 --- a/tests/fixtures/sample_project/etc/dbdiagram_definition.txt +++ /dev/null @@ -1,23 +0,0 @@ -Table orders { - id int PK - user_id int - order_date date - status varchar -} - -Table payments { - id int - order_id int - payment_method int - amount int -} - -Table customers { - id int PK - first_name varchar - last_name varchar -} - -Ref: orders.user_id > customers.id - -Ref: payments.order_id > orders.id diff --git a/tests/fixtures/sample_project/etc/jaffle_shop_erd.png b/tests/fixtures/sample_project/etc/jaffle_shop_erd.png deleted file mode 100644 index dd147390..00000000 Binary files a/tests/fixtures/sample_project/etc/jaffle_shop_erd.png and /dev/null differ diff --git a/tests/fixtures/sample_project/models/docs.md b/tests/fixtures/sample_project/models/docs.md deleted file mode 100644 index c6ae93be..00000000 --- a/tests/fixtures/sample_project/models/docs.md +++ /dev/null @@ -1,14 +0,0 @@ -{% docs orders_status %} - -Orders can be one of the following statuses: - -| status | description | -|----------------|------------------------------------------------------------------------------------------------------------------------| -| placed | The order has been placed but has not yet left the warehouse | -| shipped | The order has ben shipped to the customer and is currently in transit | -| completed | The order has been received by the customer | -| return_pending | The customer has indicated that they would like to return the order, but it has not yet been received at the warehouse | -| returned | The order has been returned by the customer and received at the warehouse | - - -{% enddocs %} diff --git a/tests/fixtures/sample_project/models/overview.md b/tests/fixtures/sample_project/models/overview.md deleted file mode 100644 index 0544c42b..00000000 --- a/tests/fixtures/sample_project/models/overview.md +++ /dev/null @@ -1,11 +0,0 @@ -{% docs __overview__ %} - -## Data Documentation for Jaffle Shop - -`jaffle_shop` is a fictional ecommerce store. - -This [dbt](https://www.getdbt.com/) project is for testing out code. - -The source code can be found [here](https://github.com/clrcrl/jaffle_shop). - -{% enddocs %} diff --git a/tests/fixtures/sample_project/target/compiled/jaffle_shop/models/customers.sql b/tests/fixtures/sample_project/target/compiled/jaffle_shop/models/customers.sql deleted file mode 100644 index a2666f36..00000000 --- a/tests/fixtures/sample_project/target/compiled/jaffle_shop/models/customers.sql +++ /dev/null @@ -1,66 +0,0 @@ -with customers as ( - - select * from "test"."public"."stg_customers" - -), - -orders as ( - - select * from "test"."public"."stg_orders" - -), - -payments as ( - - select * from "test"."public"."stg_payments" - -), - -customer_orders as ( - - select - customer_id, - - min(order_date) as first_order, - max(order_date) as most_recent_order, - count(order_id) as number_of_orders - from orders - - group by 1 - -), - -customer_payments as ( - - select - orders.customer_id, - sum(amount) as total_amount - - from payments - - left join orders using (order_id) - - group by 1 - -), - -final as ( - - select - customers.customer_id, - customers.first_name, - customers.last_name, - customer_orders.first_order, - customer_orders.most_recent_order, - customer_orders.number_of_orders, - customer_payments.total_amount as customer_lifetime_value - - from customers - - left join customer_orders using (customer_id) - - left join customer_payments using (customer_id) - -) - -select * from final \ No newline at end of file diff --git a/tests/fixtures/sample_project/target/compiled/jaffle_shop/models/orders.sql b/tests/fixtures/sample_project/target/compiled/jaffle_shop/models/orders.sql deleted file mode 100644 index 4396af12..00000000 --- a/tests/fixtures/sample_project/target/compiled/jaffle_shop/models/orders.sql +++ /dev/null @@ -1,56 +0,0 @@ - - -with orders as ( - - select * from "test"."public"."stg_orders" - -), - -payments as ( - - select * from "test"."public"."stg_payments" - -), - -order_payments as ( - - select - order_id, - - sum(case when payment_method = 'credit_card' then amount else 0 end) as credit_card_amount, - sum(case when payment_method = 'coupon' then amount else 0 end) as coupon_amount, - sum(case when payment_method = 'bank_transfer' then amount else 0 end) as bank_transfer_amount, - sum(case when payment_method = 'gift_card' then amount else 0 end) as gift_card_amount, - sum(amount) as total_amount - - from payments - - group by 1 - -), - -final as ( - - select - orders.order_id, - orders.customer_id, - orders.order_date, - orders.status, - - order_payments.credit_card_amount, - - order_payments.coupon_amount, - - order_payments.bank_transfer_amount, - - order_payments.gift_card_amount, - - order_payments.total_amount as amount - - from orders - - left join order_payments using (order_id) - -) - -select * from final \ No newline at end of file diff --git a/tests/fixtures/sample_project/target/compiled/jaffle_shop/models/staging/stg_customers.sql b/tests/fixtures/sample_project/target/compiled/jaffle_shop/models/staging/stg_customers.sql deleted file mode 100644 index 8a16d5d6..00000000 --- a/tests/fixtures/sample_project/target/compiled/jaffle_shop/models/staging/stg_customers.sql +++ /dev/null @@ -1,17 +0,0 @@ -with source as ( - select * from "test"."public"."raw_customers" - -), - -renamed as ( - - select - id as customer_id, - first_name, - last_name - - from source - -) - -select * from renamed \ No newline at end of file diff --git a/tests/fixtures/sample_project/target/compiled/jaffle_shop/models/staging/stg_orders.sql b/tests/fixtures/sample_project/target/compiled/jaffle_shop/models/staging/stg_orders.sql deleted file mode 100644 index 20edbb73..00000000 --- a/tests/fixtures/sample_project/target/compiled/jaffle_shop/models/staging/stg_orders.sql +++ /dev/null @@ -1,18 +0,0 @@ -with source as ( - select * from "test"."public"."raw_orders" - -), - -renamed as ( - - select - id as order_id, - user_id as customer_id, - order_date, - status - - from source - -) - -select * from renamed \ No newline at end of file diff --git a/tests/fixtures/sample_project/target/compiled/jaffle_shop/models/staging/stg_payments.sql b/tests/fixtures/sample_project/target/compiled/jaffle_shop/models/staging/stg_payments.sql deleted file mode 100644 index f2d943a5..00000000 --- a/tests/fixtures/sample_project/target/compiled/jaffle_shop/models/staging/stg_payments.sql +++ /dev/null @@ -1,20 +0,0 @@ -with source as ( - select * from "test"."public"."raw_payments" - -), - -renamed as ( - - select - id as payment_id, - order_id, - payment_method, - - --`amount` is currently stored in cents, so we convert it to dollars - amount / 100 as amount - - from source - -) - -select * from renamed \ No newline at end of file diff --git a/tests/fixtures/sample_project/target/graph.gpickle b/tests/fixtures/sample_project/target/graph.gpickle deleted file mode 100644 index 1c2015e9..00000000 Binary files a/tests/fixtures/sample_project/target/graph.gpickle and /dev/null differ diff --git a/tests/fixtures/sample_project/target/manifest.json b/tests/fixtures/sample_project/target/manifest.json deleted file mode 100644 index 1d0c7cac..00000000 --- a/tests/fixtures/sample_project/target/manifest.json +++ /dev/null @@ -1 +0,0 @@ -{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/manifest/v2.json", "dbt_version": "0.20.0", "generated_at": "2021-07-21T07:41:33.196162Z", "invocation_id": "425a0ecf-fdf8-4f90-a96d-e094466d3853", "env": {}, "project_id": "06e5b98c2db46f8a72cc4f66410e9b3b", "user_id": "aa538d43-e1f3-44a7-8a02-ab1328c70052", "send_anonymous_usage_stats": true, "adapter_type": "postgres"}, "nodes": {"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 1\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 left join order_payments using (order_id)\n\n)\n\nselect * from final", "compiled": true, "resource_type": "model", "depends_on": {"macros": ["macro.dbt.run_hooks", "macro.dbt.statement", "macro.dbt.create_indexes", "macro.dbt.persist_docs", "macro.dbt.drop_relation_if_exists"], "nodes": ["model.jaffle_shop.stg_orders", "model.jaffle_shop.stg_payments"]}, "config": {"enabled": true, "materialized": "table", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": null, "database": null, "tags": [], "full_refresh": null, "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public", "fqn": ["jaffle_shop", "orders"], "unique_id": "model.jaffle_shop.orders", "package_name": "jaffle_shop", "root_path": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "path": "orders.sql", "original_file_path": "models/orders.sql", "name": "orders", "alias": "orders", "checksum": {"name": "sha256", "checksum": "ec3e8884f18110dd6d9b1ababdd85a6c04bf665ee0f57cade273e442f90e9994"}, "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": "target/run/jaffle_shop/models/orders.sql", "deferred": false, "unrendered_config": {"materialized": "table"}, "created_at": 1626853293, "compiled_sql": "\n\nwith orders as (\n\n select * from \"test\".\"public\".\"stg_orders\"\n\n),\n\npayments as (\n\n select * from \"test\".\"public\".\"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 1\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 left join order_payments using (order_id)\n\n)\n\nselect * from final", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"test\".\"public\".\"orders\""}, "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 1\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 using (order_id)\n\n group by 1\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 using (customer_id)\n\n left join customer_payments using (customer_id)\n\n)\n\nselect * from final", "compiled": true, "resource_type": "model", "depends_on": {"macros": ["macro.dbt.run_hooks", "macro.dbt.statement", "macro.dbt.create_indexes", "macro.dbt.persist_docs", "macro.dbt.drop_relation_if_exists"], "nodes": ["model.jaffle_shop.stg_customers", "model.jaffle_shop.stg_orders", "model.jaffle_shop.stg_payments"]}, "config": {"enabled": true, "materialized": "table", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": null, "database": null, "tags": [], "full_refresh": null, "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public", "fqn": ["jaffle_shop", "customers"], "unique_id": "model.jaffle_shop.customers", "package_name": "jaffle_shop", "root_path": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "path": "customers.sql", "original_file_path": "models/customers.sql", "name": "customers", "alias": "customers", "checksum": {"name": "sha256", "checksum": "7f193a2c3af2faa53e0bb7b75d2663f39db8c6b3913e9cafd245dc62f98a8d09"}, "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": "target/run/jaffle_shop/models/customers.sql", "deferred": false, "unrendered_config": {"materialized": "table"}, "created_at": 1626853293, "compiled_sql": "with customers as (\n\n select * from \"test\".\"public\".\"stg_customers\"\n\n),\n\norders as (\n\n select * from \"test\".\"public\".\"stg_orders\"\n\n),\n\npayments as (\n\n select * from \"test\".\"public\".\"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 1\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 using (order_id)\n\n group by 1\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 using (customer_id)\n\n left join customer_payments using (customer_id)\n\n)\n\nselect * from final", "extra_ctes_injected": true, "extra_ctes": [], "relation_name": "\"test\".\"public\".\"customers\""}, "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": ["macro.dbt.run_hooks", "macro.dbt.statement", "macro.dbt.persist_docs", "macro.dbt.drop_relation_if_exists"], "nodes": ["seed.jaffle_shop.raw_orders"]}, "config": {"enabled": true, "materialized": "view", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": null, "database": null, "tags": [], "full_refresh": null, "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public", "fqn": ["jaffle_shop", "staging", "stg_orders"], "unique_id": "model.jaffle_shop.stg_orders", "package_name": "jaffle_shop", "root_path": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "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": "target/run/jaffle_shop/models/staging/stg_orders.sql", "deferred": false, "unrendered_config": {"materialized": "view"}, "created_at": 1626853293, "compiled_sql": "with source as (\n select * from \"test\".\"public\".\"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": "\"test\".\"public\".\"stg_orders\""}, "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": ["macro.dbt.run_hooks", "macro.dbt.statement", "macro.dbt.persist_docs", "macro.dbt.drop_relation_if_exists"], "nodes": ["seed.jaffle_shop.raw_payments"]}, "config": {"enabled": true, "materialized": "view", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": null, "database": null, "tags": [], "full_refresh": null, "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public", "fqn": ["jaffle_shop", "staging", "stg_payments"], "unique_id": "model.jaffle_shop.stg_payments", "package_name": "jaffle_shop", "root_path": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "path": "staging/stg_payments.sql", "original_file_path": "models/staging/stg_payments.sql", "name": "stg_payments", "alias": "stg_payments", "checksum": {"name": "sha256", "checksum": "113502ed19f04efb2af0629ff139f57f7463347b6d5218f3b80a8d128cc96852"}, "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": "target/run/jaffle_shop/models/staging/stg_payments.sql", "deferred": false, "unrendered_config": {"materialized": "view"}, "created_at": 1626853293, "compiled_sql": "with source as (\n select * from \"test\".\"public\".\"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": "\"test\".\"public\".\"stg_payments\""}, "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": ["macro.dbt.run_hooks", "macro.dbt.statement", "macro.dbt.persist_docs", "macro.dbt.drop_relation_if_exists"], "nodes": ["seed.jaffle_shop.raw_customers"]}, "config": {"enabled": true, "materialized": "view", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": null, "database": null, "tags": [], "full_refresh": null, "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public", "fqn": ["jaffle_shop", "staging", "stg_customers"], "unique_id": "model.jaffle_shop.stg_customers", "package_name": "jaffle_shop", "root_path": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "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": "target/run/jaffle_shop/models/staging/stg_customers.sql", "deferred": false, "unrendered_config": {"materialized": "view"}, "created_at": 1626853293, "compiled_sql": "with source as (\n select * from \"test\".\"public\".\"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": "\"test\".\"public\".\"stg_customers\""}, "seed.jaffle_shop.raw_customers": {"raw_sql": "", "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "materialized": "seed", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": null, "database": null, "tags": [], "full_refresh": null, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public", "fqn": ["jaffle_shop", "raw_customers"], "unique_id": "seed.jaffle_shop.raw_customers", "package_name": "jaffle_shop", "root_path": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "path": "raw_customers.csv", "original_file_path": "seeds/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": 1626853293}, "seed.jaffle_shop.raw_payments": {"raw_sql": "", "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "materialized": "seed", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": null, "database": null, "tags": [], "full_refresh": null, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public", "fqn": ["jaffle_shop", "raw_payments"], "unique_id": "seed.jaffle_shop.raw_payments", "package_name": "jaffle_shop", "root_path": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "path": "raw_payments.csv", "original_file_path": "seeds/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": 1626853293}, "seed.jaffle_shop.raw_orders": {"raw_sql": "", "resource_type": "seed", "depends_on": {"macros": [], "nodes": []}, "config": {"enabled": true, "materialized": "seed", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": null, "database": null, "tags": [], "full_refresh": null, "quote_columns": null, "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public", "fqn": ["jaffle_shop", "raw_orders"], "unique_id": "seed.jaffle_shop.raw_orders", "package_name": "jaffle_shop", "root_path": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "path": "raw_orders.csv", "original_file_path": "seeds/raw_orders.csv", "name": "raw_orders", "alias": "raw_orders", "checksum": {"name": "sha256", "checksum": "c5f309d84ba32f2a39235c59f2d4f6c855aedba7e215847c957f1a5f2fa80d3e"}, "tags": [], "refs": [], "sources": [], "description": "", "columns": {}, "meta": {}, "docs": {"show": true}, "patch_path": null, "compiled_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293}, "test.jaffle_shop.unique_customers_customer_id.d48e126d80": {"raw_sql": "{{ test_unique(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "unique", "kwargs": {"column_name": "customer_id", "model": "{% if config.get('where') %}(select * from {{ ref('customers') }} where {{config.get('where')}}) customers{% else %}{{ ref('customers') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique"], "nodes": ["model.jaffle_shop.customers"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_dbt_test__audit", "fqn": ["jaffle_shop", "schema_test", "unique_customers_customer_id"], "unique_id": "test.jaffle_shop.unique_customers_customer_id.d48e126d80", "package_name": "jaffle_shop", "root_path": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "customer_id"}, "test.jaffle_shop.not_null_customers_customer_id.923d2d910a": {"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_id", "model": "{% if config.get('where') %}(select * from {{ ref('customers') }} where {{config.get('where')}}) customers{% else %}{{ ref('customers') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.jaffle_shop.customers"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_dbt_test__audit", "fqn": ["jaffle_shop", "schema_test", "not_null_customers_customer_id"], "unique_id": "test.jaffle_shop.not_null_customers_customer_id.923d2d910a", "package_name": "jaffle_shop", "root_path": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "customer_id"}, "test.jaffle_shop.unique_orders_order_id.0d77ddcf59": {"raw_sql": "{{ test_unique(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "unique", "kwargs": {"column_name": "order_id", "model": "{% if config.get('where') %}(select * from {{ ref('orders') }} where {{config.get('where')}}) orders{% else %}{{ ref('orders') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique"], "nodes": ["model.jaffle_shop.orders"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_dbt_test__audit", "fqn": ["jaffle_shop", "schema_test", "unique_orders_order_id"], "unique_id": "test.jaffle_shop.unique_orders_order_id.0d77ddcf59", "package_name": "jaffle_shop", "root_path": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "order_id"}, "test.jaffle_shop.not_null_orders_order_id.4daff5eed7": {"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_id", "model": "{% if config.get('where') %}(select * from {{ ref('orders') }} where {{config.get('where')}}) orders{% else %}{{ ref('orders') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.jaffle_shop.orders"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_dbt_test__audit", "fqn": ["jaffle_shop", "schema_test", "not_null_orders_order_id"], "unique_id": "test.jaffle_shop.not_null_orders_order_id.4daff5eed7", "package_name": "jaffle_shop", "root_path": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "order_id"}, "test.jaffle_shop.not_null_orders_customer_id.70722cc05f": {"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_id", "model": "{% if config.get('where') %}(select * from {{ ref('orders') }} where {{config.get('where')}}) orders{% else %}{{ ref('orders') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.jaffle_shop.orders"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_dbt_test__audit", "fqn": ["jaffle_shop", "schema_test", "not_null_orders_customer_id"], "unique_id": "test.jaffle_shop.not_null_orders_customer_id.70722cc05f", "package_name": "jaffle_shop", "root_path": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "customer_id"}, "test.jaffle_shop.relationships_orders_customer_id__customer_id__ref_customers_.e153c026e4": {"raw_sql": "{{ test_relationships(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "relationships", "kwargs": {"to": "ref('customers')", "field": "customer_id", "column_name": "customer_id", "model": "{% if config.get('where') %}(select * from {{ ref('orders') }} where {{config.get('where')}}) orders{% else %}{{ ref('orders') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_relationships", "macro.dbt.default__test_relationships"], "nodes": ["model.jaffle_shop.customers", "model.jaffle_shop.orders"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_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_.e153c026e4", "package_name": "jaffle_shop", "root_path": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "customer_id"}, "test.jaffle_shop.accepted_values_orders_status__placed__shipped__completed__return_pending__returned.2e6d271b93": {"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": "{% if config.get('where') %}(select * from {{ ref('orders') }} where {{config.get('where')}}) orders{% else %}{{ ref('orders') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.default__test_accepted_values"], "nodes": ["model.jaffle_shop.orders"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": "accepted_values_orders_1ce6ab157c285f7cd2ac656013faf758", "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_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.2e6d271b93", "package_name": "jaffle_shop", "root_path": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "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": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_orders_1ce6ab157c285f7cd2ac656013faf758"}, "created_at": 1626853293, "column_name": "status"}, "test.jaffle_shop.not_null_orders_amount.f7bae8de1b": {"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "amount", "model": "{% if config.get('where') %}(select * from {{ ref('orders') }} where {{config.get('where')}}) orders{% else %}{{ ref('orders') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.jaffle_shop.orders"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_dbt_test__audit", "fqn": ["jaffle_shop", "schema_test", "not_null_orders_amount"], "unique_id": "test.jaffle_shop.not_null_orders_amount.f7bae8de1b", "package_name": "jaffle_shop", "root_path": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "amount"}, "test.jaffle_shop.not_null_orders_credit_card_amount.f6f7978042": {"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "credit_card_amount", "model": "{% if config.get('where') %}(select * from {{ ref('orders') }} where {{config.get('where')}}) orders{% else %}{{ ref('orders') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.jaffle_shop.orders"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_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.f6f7978042", "package_name": "jaffle_shop", "root_path": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "credit_card_amount"}, "test.jaffle_shop.not_null_orders_coupon_amount.edd08a4b47": {"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "coupon_amount", "model": "{% if config.get('where') %}(select * from {{ ref('orders') }} where {{config.get('where')}}) orders{% else %}{{ ref('orders') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.jaffle_shop.orders"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_dbt_test__audit", "fqn": ["jaffle_shop", "schema_test", "not_null_orders_coupon_amount"], "unique_id": "test.jaffle_shop.not_null_orders_coupon_amount.edd08a4b47", "package_name": "jaffle_shop", "root_path": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "coupon_amount"}, "test.jaffle_shop.not_null_orders_bank_transfer_amount.402a8a1daa": {"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "bank_transfer_amount", "model": "{% if config.get('where') %}(select * from {{ ref('orders') }} where {{config.get('where')}}) orders{% else %}{{ ref('orders') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.jaffle_shop.orders"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_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.402a8a1daa", "package_name": "jaffle_shop", "root_path": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "bank_transfer_amount"}, "test.jaffle_shop.not_null_orders_gift_card_amount.6205906a88": {"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "gift_card_amount", "model": "{% if config.get('where') %}(select * from {{ ref('orders') }} where {{config.get('where')}}) orders{% else %}{{ ref('orders') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.jaffle_shop.orders"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_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.6205906a88", "package_name": "jaffle_shop", "root_path": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "gift_card_amount"}, "test.jaffle_shop.unique_stg_customers_customer_id.5530022331": {"raw_sql": "{{ test_unique(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "unique", "kwargs": {"column_name": "customer_id", "model": "{% if config.get('where') %}(select * from {{ ref('stg_customers') }} where {{config.get('where')}}) stg_customers{% else %}{{ ref('stg_customers') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique"], "nodes": ["model.jaffle_shop.stg_customers"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_dbt_test__audit", "fqn": ["jaffle_shop", "schema_test", "unique_stg_customers_customer_id"], "unique_id": "test.jaffle_shop.unique_stg_customers_customer_id.5530022331", "package_name": "jaffle_shop", "root_path": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "customer_id"}, "test.jaffle_shop.not_null_stg_customers_customer_id.4ab9034fe1": {"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "customer_id", "model": "{% if config.get('where') %}(select * from {{ ref('stg_customers') }} where {{config.get('where')}}) stg_customers{% else %}{{ ref('stg_customers') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.jaffle_shop.stg_customers"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_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.4ab9034fe1", "package_name": "jaffle_shop", "root_path": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "customer_id"}, "test.jaffle_shop.unique_stg_orders_order_id.99e62d7d48": {"raw_sql": "{{ test_unique(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "unique", "kwargs": {"column_name": "order_id", "model": "{% if config.get('where') %}(select * from {{ ref('stg_orders') }} where {{config.get('where')}}) stg_orders{% else %}{{ ref('stg_orders') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique"], "nodes": ["model.jaffle_shop.stg_orders"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_dbt_test__audit", "fqn": ["jaffle_shop", "schema_test", "unique_stg_orders_order_id"], "unique_id": "test.jaffle_shop.unique_stg_orders_order_id.99e62d7d48", "package_name": "jaffle_shop", "root_path": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "order_id"}, "test.jaffle_shop.not_null_stg_orders_order_id.052f14ae90": {"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "order_id", "model": "{% if config.get('where') %}(select * from {{ ref('stg_orders') }} where {{config.get('where')}}) stg_orders{% else %}{{ ref('stg_orders') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.jaffle_shop.stg_orders"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_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.052f14ae90", "package_name": "jaffle_shop", "root_path": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "order_id"}, "test.jaffle_shop.accepted_values_stg_orders_status__placed__shipped__completed__return_pending__returned.1b7358ad3f": {"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": "{% if config.get('where') %}(select * from {{ ref('stg_orders') }} where {{config.get('where')}}) stg_orders{% else %}{{ ref('stg_orders') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.default__test_accepted_values"], "nodes": ["model.jaffle_shop.stg_orders"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": "accepted_values_stg_orders_4f514bf94b77b7ea437830eec4421c58", "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_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.1b7358ad3f", "package_name": "jaffle_shop", "root_path": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "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": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_stg_orders_4f514bf94b77b7ea437830eec4421c58"}, "created_at": 1626853293, "column_name": "status"}, "test.jaffle_shop.unique_stg_payments_payment_id.5f5522e7d6": {"raw_sql": "{{ test_unique(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "unique", "kwargs": {"column_name": "payment_id", "model": "{% if config.get('where') %}(select * from {{ ref('stg_payments') }} where {{config.get('where')}}) stg_payments{% else %}{{ ref('stg_payments') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_unique"], "nodes": ["model.jaffle_shop.stg_payments"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_dbt_test__audit", "fqn": ["jaffle_shop", "schema_test", "unique_stg_payments_payment_id"], "unique_id": "test.jaffle_shop.unique_stg_payments_payment_id.5f5522e7d6", "package_name": "jaffle_shop", "root_path": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "payment_id"}, "test.jaffle_shop.not_null_stg_payments_payment_id.ece096e012": {"raw_sql": "{{ test_not_null(**_dbt_schema_test_kwargs) }}", "test_metadata": {"name": "not_null", "kwargs": {"column_name": "payment_id", "model": "{% if config.get('where') %}(select * from {{ ref('stg_payments') }} where {{config.get('where')}}) stg_payments{% else %}{{ ref('stg_payments') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": ["model.jaffle_shop.stg_payments"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_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.ece096e012", "package_name": "jaffle_shop", "root_path": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "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": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1626853293, "column_name": "payment_id"}, "test.jaffle_shop.accepted_values_stg_payments_payment_method__credit_card__coupon__bank_transfer__gift_card.59d3da1081": {"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": "{% if config.get('where') %}(select * from {{ ref('stg_payments') }} where {{config.get('where')}}) stg_payments{% else %}{{ ref('stg_payments') }}{% endif %}"}, "namespace": null}, "resource_type": "test", "depends_on": {"macros": ["macro.dbt.test_accepted_values", "macro.dbt.default__test_accepted_values"], "nodes": ["model.jaffle_shop.stg_payments"]}, "config": {"enabled": true, "materialized": "test", "persist_docs": {}, "vars": {}, "quoting": {}, "column_types": {}, "alias": "accepted_values_stg_payments_c7909fb19b1f0177c2bf99c7912f06ef", "schema": "dbt_test__audit", "database": null, "tags": [], "full_refresh": null, "severity": "ERROR", "store_failures": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0", "post-hook": [], "pre-hook": []}, "database": "test", "schema": "public_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.59d3da1081", "package_name": "jaffle_shop", "root_path": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "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": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "accepted_values_stg_payments_c7909fb19b1f0177c2bf99c7912f06ef"}, "created_at": 1626853293, "column_name": "payment_method"}}, "sources": {}, "macros": {"macro.dbt_postgres.postgres__create_table_as": {"unique_id": "macro.dbt_postgres.postgres__create_table_as", "package_name": "dbt_postgres", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__get_create_index_sql": {"unique_id": "macro.dbt_postgres.postgres__get_create_index_sql", "package_name": "dbt_postgres", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__create_schema": {"unique_id": "macro.dbt_postgres.postgres__create_schema", "package_name": "dbt_postgres", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__drop_schema": {"unique_id": "macro.dbt_postgres.postgres__drop_schema", "package_name": "dbt_postgres", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__get_columns_in_relation": {"unique_id": "macro.dbt_postgres.postgres__get_columns_in_relation", "package_name": "dbt_postgres", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__list_relations_without_caching": {"unique_id": "macro.dbt_postgres.postgres__list_relations_without_caching", "package_name": "dbt_postgres", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__information_schema_name": {"unique_id": "macro.dbt_postgres.postgres__information_schema_name", "package_name": "dbt_postgres", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__list_schemas": {"unique_id": "macro.dbt_postgres.postgres__list_schemas", "package_name": "dbt_postgres", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__check_schema_exists": {"unique_id": "macro.dbt_postgres.postgres__check_schema_exists", "package_name": "dbt_postgres", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__current_timestamp": {"unique_id": "macro.dbt_postgres.postgres__current_timestamp", "package_name": "dbt_postgres", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__snapshot_string_as_time": {"unique_id": "macro.dbt_postgres.postgres__snapshot_string_as_time", "package_name": "dbt_postgres", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__snapshot_get_time": {"unique_id": "macro.dbt_postgres.postgres__snapshot_get_time", "package_name": "dbt_postgres", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__make_temp_relation": {"unique_id": "macro.dbt_postgres.postgres__make_temp_relation", "package_name": "dbt_postgres", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres_escape_comment": {"unique_id": "macro.dbt_postgres.postgres_escape_comment", "package_name": "dbt_postgres", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__alter_relation_comment": {"unique_id": "macro.dbt_postgres.postgres__alter_relation_comment", "package_name": "dbt_postgres", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__alter_column_comment": {"unique_id": "macro.dbt_postgres.postgres__alter_column_comment", "package_name": "dbt_postgres", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__get_catalog": {"unique_id": "macro.dbt_postgres.postgres__get_catalog", "package_name": "dbt_postgres", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres_get_relations": {"unique_id": "macro.dbt_postgres.postgres_get_relations", "package_name": "dbt_postgres", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt_postgres.postgres__snapshot_merge_sql": {"unique_id": "macro.dbt_postgres.postgres__snapshot_merge_sql", "package_name": "dbt_postgres", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.statement": {"unique_id": "macro.dbt.statement", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.noop_statement": {"unique_id": "macro.dbt.noop_statement", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.get_columns_in_query": {"unique_id": "macro.dbt.get_columns_in_query", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__get_columns_in_query": {"unique_id": "macro.dbt.default__get_columns_in_query", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.create_schema": {"unique_id": "macro.dbt.create_schema", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__create_schema": {"unique_id": "macro.dbt.default__create_schema", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.drop_schema": {"unique_id": "macro.dbt.drop_schema", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__drop_schema": {"unique_id": "macro.dbt.default__drop_schema", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.create_table_as": {"unique_id": "macro.dbt.create_table_as", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(temporary, relation, sql) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__create_table_as"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1626853293}, "macro.dbt.default__create_table_as": {"unique_id": "macro.dbt.default__create_table_as", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.get_create_index_sql": {"unique_id": "macro.dbt.get_create_index_sql", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__get_create_index_sql": {"unique_id": "macro.dbt.default__get_create_index_sql", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.create_indexes": {"unique_id": "macro.dbt.create_indexes", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__create_indexes": {"unique_id": "macro.dbt.default__create_indexes", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.create_view_as": {"unique_id": "macro.dbt.create_view_as", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(relation, sql) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__create_view_as"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1626853293}, "macro.dbt.default__create_view_as": {"unique_id": "macro.dbt.default__create_view_as", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.get_catalog": {"unique_id": "macro.dbt.get_catalog", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(information_schema, schemas)) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_catalog"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1626853293}, "macro.dbt.default__get_catalog": {"unique_id": "macro.dbt.default__get_catalog", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.get_columns_in_relation": {"unique_id": "macro.dbt.get_columns_in_relation", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(relation)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_columns_in_relation"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1626853293}, "macro.dbt.sql_convert_columns_in_relation": {"unique_id": "macro.dbt.sql_convert_columns_in_relation", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.default__get_columns_in_relation": {"unique_id": "macro.dbt.default__get_columns_in_relation", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.alter_column_type": {"unique_id": "macro.dbt.alter_column_type", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.alter_column_comment": {"unique_id": "macro.dbt.alter_column_comment", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__alter_column_comment": {"unique_id": "macro.dbt.default__alter_column_comment", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.alter_relation_comment": {"unique_id": "macro.dbt.alter_relation_comment", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(relation, 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": 1626853293}, "macro.dbt.default__alter_relation_comment": {"unique_id": "macro.dbt.default__alter_relation_comment", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.persist_docs": {"unique_id": "macro.dbt.persist_docs", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(relation, model, for_relation, for_columns)) }}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.default__persist_docs"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1626853293}, "macro.dbt.default__persist_docs": {"unique_id": "macro.dbt.default__persist_docs", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.default__alter_column_type": {"unique_id": "macro.dbt.default__alter_column_type", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.drop_relation": {"unique_id": "macro.dbt.drop_relation", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__drop_relation": {"unique_id": "macro.dbt.default__drop_relation", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.truncate_relation": {"unique_id": "macro.dbt.truncate_relation", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__truncate_relation": {"unique_id": "macro.dbt.default__truncate_relation", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.rename_relation": {"unique_id": "macro.dbt.rename_relation", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__rename_relation": {"unique_id": "macro.dbt.default__rename_relation", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.information_schema_name": {"unique_id": "macro.dbt.information_schema_name", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__information_schema_name": {"unique_id": "macro.dbt.default__information_schema_name", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.list_schemas": {"unique_id": "macro.dbt.list_schemas", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__list_schemas": {"unique_id": "macro.dbt.default__list_schemas", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.check_schema_exists": {"unique_id": "macro.dbt.check_schema_exists", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__check_schema_exists": {"unique_id": "macro.dbt.default__check_schema_exists", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.list_relations_without_caching": {"unique_id": "macro.dbt.list_relations_without_caching", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__list_relations_without_caching": {"unique_id": "macro.dbt.default__list_relations_without_caching", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.current_timestamp": {"unique_id": "macro.dbt.current_timestamp", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')() }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1626853293}, "macro.dbt.default__current_timestamp": {"unique_id": "macro.dbt.default__current_timestamp", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.collect_freshness": {"unique_id": "macro.dbt.collect_freshness", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__collect_freshness": {"unique_id": "macro.dbt.default__collect_freshness", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.make_temp_relation": {"unique_id": "macro.dbt.make_temp_relation", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__make_temp_relation": {"unique_id": "macro.dbt.default__make_temp_relation", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.set_sql_header": {"unique_id": "macro.dbt.set_sql_header", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.generate_schema_name": {"unique_id": "macro.dbt.generate_schema_name", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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\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": 1626853293}, "macro.dbt.generate_schema_name_for_env": {"unique_id": "macro.dbt.generate_schema_name_for_env", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.generate_database_name": {"unique_id": "macro.dbt.generate_database_name", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__generate_database_name": {"unique_id": "macro.dbt.default__generate_database_name", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.convert_datetime": {"unique_id": "macro.dbt.convert_datetime", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.dates_in_range": {"unique_id": "macro.dbt.dates_in_range", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.partition_range": {"unique_id": "macro.dbt.partition_range", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.py_current_timestring": {"unique_id": "macro.dbt.py_current_timestring", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.is_incremental": {"unique_id": "macro.dbt.is_incremental", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.run_query": {"unique_id": "macro.dbt.run_query", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.generate_alias_name": {"unique_id": "macro.dbt.generate_alias_name", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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\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": 1626853293}, "macro.dbt.run_hooks": {"unique_id": "macro.dbt.run_hooks", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.column_list": {"unique_id": "macro.dbt.column_list", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.column_list_for_create_table": {"unique_id": "macro.dbt.column_list_for_create_table", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.make_hook_config": {"unique_id": "macro.dbt.make_hook_config", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.before_begin": {"unique_id": "macro.dbt.before_begin", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.in_transaction": {"unique_id": "macro.dbt.in_transaction", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.after_commit": {"unique_id": "macro.dbt.after_commit", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.drop_relation_if_exists": {"unique_id": "macro.dbt.drop_relation_if_exists", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.load_relation": {"unique_id": "macro.dbt.load_relation", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.should_full_refresh": {"unique_id": "macro.dbt.should_full_refresh", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.should_store_failures": {"unique_id": "macro.dbt.should_store_failures", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.get_test_sql": {"unique_id": "macro.dbt.get_test_sql", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__get_test_sql": {"unique_id": "macro.dbt.default__get_test_sql", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.materialization_test_default": {"unique_id": "macro.dbt.materialization_test_default", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.create_csv_table": {"unique_id": "macro.dbt.create_csv_table", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.reset_csv_table": {"unique_id": "macro.dbt.reset_csv_table", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.load_csv_rows": {"unique_id": "macro.dbt.load_csv_rows", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__create_csv_table": {"unique_id": "macro.dbt.default__create_csv_table", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.default__reset_csv_table": {"unique_id": "macro.dbt.default__reset_csv_table", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.get_seed_column_quoted_csv": {"unique_id": "macro.dbt.get_seed_column_quoted_csv", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.basic_load_csv_rows": {"unique_id": "macro.dbt.basic_load_csv_rows", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/site-packages/dbt/include/global_project", "path": "macros/materializations/seed/seed.sql", "original_file_path": "macros/materializations/seed/seed.sql", "name": "basic_load_csv_rows", "macro_sql": "{% macro basic_load_csv_rows(model, batch_size, agate_table) %}\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 %s\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_seed_column_quoted_csv"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1626853293}, "macro.dbt.default__load_csv_rows": {"unique_id": "macro.dbt.default__load_csv_rows", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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 {{ return(basic_load_csv_rows(model, 10000, agate_table) )}}\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt.basic_load_csv_rows"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1626853293}, "macro.dbt.materialization_seed_default": {"unique_id": "macro.dbt.materialization_seed_default", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.snapshot_merge_sql": {"unique_id": "macro.dbt.snapshot_merge_sql", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__snapshot_merge_sql": {"unique_id": "macro.dbt.default__snapshot_merge_sql", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.create_columns": {"unique_id": "macro.dbt.create_columns", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__create_columns": {"unique_id": "macro.dbt.default__create_columns", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.post_snapshot": {"unique_id": "macro.dbt.post_snapshot", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__post_snapshot": {"unique_id": "macro.dbt.default__post_snapshot", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.snapshot_staging_table": {"unique_id": "macro.dbt.snapshot_staging_table", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.build_snapshot_table": {"unique_id": "macro.dbt.build_snapshot_table", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.get_or_create_relation": {"unique_id": "macro.dbt.get_or_create_relation", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.build_snapshot_staging_table": {"unique_id": "macro.dbt.build_snapshot_staging_table", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.materialization_snapshot_default": {"unique_id": "macro.dbt.materialization_snapshot_default", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.strategy_dispatch": {"unique_id": "macro.dbt.strategy_dispatch", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.snapshot_hash_arguments": {"unique_id": "macro.dbt.snapshot_hash_arguments", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__snapshot_hash_arguments": {"unique_id": "macro.dbt.default__snapshot_hash_arguments", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.snapshot_get_time": {"unique_id": "macro.dbt.snapshot_get_time", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')() }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__snapshot_get_time"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1626853293}, "macro.dbt.default__snapshot_get_time": {"unique_id": "macro.dbt.default__snapshot_get_time", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.snapshot_timestamp_strategy": {"unique_id": "macro.dbt.snapshot_timestamp_strategy", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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/fishtown-analytics/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": 1626853293}, "macro.dbt.snapshot_string_as_time": {"unique_id": "macro.dbt.snapshot_string_as_time", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(timestamp) }}\n{%- endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": ["macro.dbt_postgres.postgres__snapshot_string_as_time"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1626853293}, "macro.dbt.default__snapshot_string_as_time": {"unique_id": "macro.dbt.default__snapshot_string_as_time", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.snapshot_check_all_get_existing_columns": {"unique_id": "macro.dbt.snapshot_check_all_get_existing_columns", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.snapshot_check_strategy": {"unique_id": "macro.dbt.snapshot_check_strategy", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.materialization_incremental_default": {"unique_id": "macro.dbt.materialization_incremental_default", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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\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 {% if existing_relation is none %}\n {% set build_sql = create_table_as(False, target_relation, sql) %}\n {% elif existing_relation.is_view or should_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\n {% set intermediate_relation = existing_relation.incorporate(path={\"identifier\": tmp_identifier}) %}\n {% set backup_relation = existing_relation.incorporate(path={\"identifier\": backup_identifier}) %}\n\n {% do adapter.drop_relation(intermediate_relation) %}\n {% do adapter.drop_relation(backup_relation) %}\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 {% set tmp_relation = make_temp_relation(target_relation) %}\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 {% set build_sql = incremental_upsert(tmp_relation, target_relation, unique_key=unique_key) %}\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.run_hooks", "macro.dbt.create_table_as", "macro.dbt.should_full_refresh", "macro.dbt.make_temp_relation", "macro.dbt.run_query", "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": 1626853293}, "macro.dbt.incremental_upsert": {"unique_id": "macro.dbt.incremental_upsert", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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 {%- 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": 1626853293}, "macro.dbt.get_merge_sql": {"unique_id": "macro.dbt.get_merge_sql", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.get_delete_insert_merge_sql": {"unique_id": "macro.dbt.get_delete_insert_merge_sql", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.get_insert_overwrite_merge_sql": {"unique_id": "macro.dbt.get_insert_overwrite_merge_sql", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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')(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": 1626853293}, "macro.dbt.default__get_merge_sql": {"unique_id": "macro.dbt.default__get_merge_sql", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.get_quoted_csv": {"unique_id": "macro.dbt.get_quoted_csv", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.common_get_delete_insert_merge_sql": {"unique_id": "macro.dbt.common_get_delete_insert_merge_sql", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.default__get_delete_insert_merge_sql": {"unique_id": "macro.dbt.default__get_delete_insert_merge_sql", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.default__get_insert_overwrite_merge_sql": {"unique_id": "macro.dbt.default__get_insert_overwrite_merge_sql", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.handle_existing_table": {"unique_id": "macro.dbt.handle_existing_table", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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', macro_namespace = '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": 1626853293}, "macro.dbt.default__handle_existing_table": {"unique_id": "macro.dbt.default__handle_existing_table", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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 {{ 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": 1626853293}, "macro.dbt.create_or_replace_view": {"unique_id": "macro.dbt.create_or_replace_view", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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(run_outside_transaction_hooks=True) %}\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 {% if run_outside_transaction_hooks %}\n -- no transactions on BigQuery\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n {% endif %}\n\n -- `BEGIN` happens here on Snowflake\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\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, inside_transaction=True) }}\n\n {{ adapter.commit() }}\n\n {% if run_outside_transaction_hooks %}\n -- No transactions on BigQuery\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n {% endif %}\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": 1626853293}, "macro.dbt.materialization_view_default": {"unique_id": "macro.dbt.materialization_view_default", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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\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\n {%- set exists_as_view = (old_relation is not none and old_relation.is_view) -%}\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n -- drop the temp relations if they exists for some reason\n {{ adapter.drop_relation(intermediate_relation) }}\n {{ adapter.drop_relation(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(target_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.statement", "macro.dbt.create_view_as", "macro.dbt.persist_docs", "macro.dbt.drop_relation_if_exists"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1626853293}, "macro.dbt.materialization_table_default": {"unique_id": "macro.dbt.materialization_table_default", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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\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\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\n -- drop the temp relations if they exists for some reason\n {{ adapter.drop_relation(intermediate_relation) }}\n {{ adapter.drop_relation(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(target_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.run_hooks", "macro.dbt.statement", "macro.dbt.create_table_as", "macro.dbt.create_indexes", "macro.dbt.persist_docs", "macro.dbt.drop_relation_if_exists"]}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1626853293}, "macro.dbt.default__test_unique": {"unique_id": "macro.dbt.default__test_unique", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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 }},\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": 1626853293}, "macro.dbt.test_unique": {"unique_id": "macro.dbt.test_unique", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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') %}\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": 1626853293}, "macro.dbt.default__test_not_null": {"unique_id": "macro.dbt.default__test_not_null", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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": 1626853293}, "macro.dbt.test_not_null": {"unique_id": "macro.dbt.test_not_null", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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') %}\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": 1626853293}, "macro.dbt.default__test_relationships": {"unique_id": "macro.dbt.default__test_relationships", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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\nselect\n child.{{ column_name }}\n\nfrom {{ model }} as child\n\nleft join {{ to }} as parent\n on child.{{ column_name }} = parent.{{ field }}\n\nwhere child.{{ column_name }} is not null\n and parent.{{ field }} is null\n\n{% endmacro %}", "resource_type": "macro", "tags": [], "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true}, "patch_path": null, "arguments": [], "created_at": 1626853293}, "macro.dbt.test_relationships": {"unique_id": "macro.dbt.test_relationships", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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') %}\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": 1626853293}, "macro.dbt.default__test_accepted_values": {"unique_id": "macro.dbt.default__test_accepted_values", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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 1\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": 1626853293}, "macro.dbt.test_accepted_values": {"unique_id": "macro.dbt.test_accepted_values", "package_name": "dbt", "root_path": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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') %}\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": 1626853293}}, "docs": {"jaffle_shop.__overview__": {"unique_id": "jaffle_shop.__overview__", "package_name": "jaffle_shop", "root_path": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "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": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "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": "/home/alexb/dbt-metabase/.venv/lib/python3.8/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.orders": ["model.jaffle_shop.stg_orders", "model.jaffle_shop.stg_payments"], "model.jaffle_shop.customers": ["model.jaffle_shop.stg_customers", "model.jaffle_shop.stg_orders", "model.jaffle_shop.stg_payments"], "model.jaffle_shop.stg_orders": ["seed.jaffle_shop.raw_orders"], "model.jaffle_shop.stg_payments": ["seed.jaffle_shop.raw_payments"], "model.jaffle_shop.stg_customers": ["seed.jaffle_shop.raw_customers"], "seed.jaffle_shop.raw_customers": [], "seed.jaffle_shop.raw_payments": [], "seed.jaffle_shop.raw_orders": [], "test.jaffle_shop.unique_customers_customer_id.d48e126d80": ["model.jaffle_shop.customers"], "test.jaffle_shop.not_null_customers_customer_id.923d2d910a": ["model.jaffle_shop.customers"], "test.jaffle_shop.unique_orders_order_id.0d77ddcf59": ["model.jaffle_shop.orders"], "test.jaffle_shop.not_null_orders_order_id.4daff5eed7": ["model.jaffle_shop.orders"], "test.jaffle_shop.not_null_orders_customer_id.70722cc05f": ["model.jaffle_shop.orders"], "test.jaffle_shop.relationships_orders_customer_id__customer_id__ref_customers_.e153c026e4": ["model.jaffle_shop.customers", "model.jaffle_shop.orders"], "test.jaffle_shop.accepted_values_orders_status__placed__shipped__completed__return_pending__returned.2e6d271b93": ["model.jaffle_shop.orders"], "test.jaffle_shop.not_null_orders_amount.f7bae8de1b": ["model.jaffle_shop.orders"], "test.jaffle_shop.not_null_orders_credit_card_amount.f6f7978042": ["model.jaffle_shop.orders"], "test.jaffle_shop.not_null_orders_coupon_amount.edd08a4b47": ["model.jaffle_shop.orders"], "test.jaffle_shop.not_null_orders_bank_transfer_amount.402a8a1daa": ["model.jaffle_shop.orders"], "test.jaffle_shop.not_null_orders_gift_card_amount.6205906a88": ["model.jaffle_shop.orders"], "test.jaffle_shop.unique_stg_customers_customer_id.5530022331": ["model.jaffle_shop.stg_customers"], "test.jaffle_shop.not_null_stg_customers_customer_id.4ab9034fe1": ["model.jaffle_shop.stg_customers"], "test.jaffle_shop.unique_stg_orders_order_id.99e62d7d48": ["model.jaffle_shop.stg_orders"], "test.jaffle_shop.not_null_stg_orders_order_id.052f14ae90": ["model.jaffle_shop.stg_orders"], "test.jaffle_shop.accepted_values_stg_orders_status__placed__shipped__completed__return_pending__returned.1b7358ad3f": ["model.jaffle_shop.stg_orders"], "test.jaffle_shop.unique_stg_payments_payment_id.5f5522e7d6": ["model.jaffle_shop.stg_payments"], "test.jaffle_shop.not_null_stg_payments_payment_id.ece096e012": ["model.jaffle_shop.stg_payments"], "test.jaffle_shop.accepted_values_stg_payments_payment_method__credit_card__coupon__bank_transfer__gift_card.59d3da1081": ["model.jaffle_shop.stg_payments"]}, "child_map": {"model.jaffle_shop.orders": ["test.jaffle_shop.accepted_values_orders_status__placed__shipped__completed__return_pending__returned.2e6d271b93", "test.jaffle_shop.not_null_orders_amount.f7bae8de1b", "test.jaffle_shop.not_null_orders_bank_transfer_amount.402a8a1daa", "test.jaffle_shop.not_null_orders_coupon_amount.edd08a4b47", "test.jaffle_shop.not_null_orders_credit_card_amount.f6f7978042", "test.jaffle_shop.not_null_orders_customer_id.70722cc05f", "test.jaffle_shop.not_null_orders_gift_card_amount.6205906a88", "test.jaffle_shop.not_null_orders_order_id.4daff5eed7", "test.jaffle_shop.relationships_orders_customer_id__customer_id__ref_customers_.e153c026e4", "test.jaffle_shop.unique_orders_order_id.0d77ddcf59"], "model.jaffle_shop.customers": ["test.jaffle_shop.not_null_customers_customer_id.923d2d910a", "test.jaffle_shop.relationships_orders_customer_id__customer_id__ref_customers_.e153c026e4", "test.jaffle_shop.unique_customers_customer_id.d48e126d80"], "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.1b7358ad3f", "test.jaffle_shop.not_null_stg_orders_order_id.052f14ae90", "test.jaffle_shop.unique_stg_orders_order_id.99e62d7d48"], "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.59d3da1081", "test.jaffle_shop.not_null_stg_payments_payment_id.ece096e012", "test.jaffle_shop.unique_stg_payments_payment_id.5f5522e7d6"], "model.jaffle_shop.stg_customers": ["model.jaffle_shop.customers", "test.jaffle_shop.not_null_stg_customers_customer_id.4ab9034fe1", "test.jaffle_shop.unique_stg_customers_customer_id.5530022331"], "seed.jaffle_shop.raw_customers": ["model.jaffle_shop.stg_customers"], "seed.jaffle_shop.raw_payments": ["model.jaffle_shop.stg_payments"], "seed.jaffle_shop.raw_orders": ["model.jaffle_shop.stg_orders"], "test.jaffle_shop.unique_customers_customer_id.d48e126d80": [], "test.jaffle_shop.not_null_customers_customer_id.923d2d910a": [], "test.jaffle_shop.unique_orders_order_id.0d77ddcf59": [], "test.jaffle_shop.not_null_orders_order_id.4daff5eed7": [], "test.jaffle_shop.not_null_orders_customer_id.70722cc05f": [], "test.jaffle_shop.relationships_orders_customer_id__customer_id__ref_customers_.e153c026e4": [], "test.jaffle_shop.accepted_values_orders_status__placed__shipped__completed__return_pending__returned.2e6d271b93": [], "test.jaffle_shop.not_null_orders_amount.f7bae8de1b": [], "test.jaffle_shop.not_null_orders_credit_card_amount.f6f7978042": [], "test.jaffle_shop.not_null_orders_coupon_amount.edd08a4b47": [], "test.jaffle_shop.not_null_orders_bank_transfer_amount.402a8a1daa": [], "test.jaffle_shop.not_null_orders_gift_card_amount.6205906a88": [], "test.jaffle_shop.unique_stg_customers_customer_id.5530022331": [], "test.jaffle_shop.not_null_stg_customers_customer_id.4ab9034fe1": [], "test.jaffle_shop.unique_stg_orders_order_id.99e62d7d48": [], "test.jaffle_shop.not_null_stg_orders_order_id.052f14ae90": [], "test.jaffle_shop.accepted_values_stg_orders_status__placed__shipped__completed__return_pending__returned.1b7358ad3f": [], "test.jaffle_shop.unique_stg_payments_payment_id.5f5522e7d6": [], "test.jaffle_shop.not_null_stg_payments_payment_id.ece096e012": [], "test.jaffle_shop.accepted_values_stg_payments_payment_method__credit_card__coupon__bank_transfer__gift_card.59d3da1081": []}} diff --git a/tests/fixtures/sample_project/target/partial_parse.msgpack b/tests/fixtures/sample_project/target/partial_parse.msgpack deleted file mode 100644 index 40d3f66f..00000000 Binary files a/tests/fixtures/sample_project/target/partial_parse.msgpack and /dev/null differ diff --git a/tests/fixtures/sample_project/target/run/jaffle_shop/models/customers.sql b/tests/fixtures/sample_project/target/run/jaffle_shop/models/customers.sql deleted file mode 100644 index 56cb3eaa..00000000 --- a/tests/fixtures/sample_project/target/run/jaffle_shop/models/customers.sql +++ /dev/null @@ -1,71 +0,0 @@ - - - create table "test"."public"."customers__dbt_tmp" - as ( - with customers as ( - - select * from "test"."public"."stg_customers" - -), - -orders as ( - - select * from "test"."public"."stg_orders" - -), - -payments as ( - - select * from "test"."public"."stg_payments" - -), - -customer_orders as ( - - select - customer_id, - - min(order_date) as first_order, - max(order_date) as most_recent_order, - count(order_id) as number_of_orders - from orders - - group by 1 - -), - -customer_payments as ( - - select - orders.customer_id, - sum(amount) as total_amount - - from payments - - left join orders using (order_id) - - group by 1 - -), - -final as ( - - select - customers.customer_id, - customers.first_name, - customers.last_name, - customer_orders.first_order, - customer_orders.most_recent_order, - customer_orders.number_of_orders, - customer_payments.total_amount as customer_lifetime_value - - from customers - - left join customer_orders using (customer_id) - - left join customer_payments using (customer_id) - -) - -select * from final - ); \ No newline at end of file diff --git a/tests/fixtures/sample_project/target/run/jaffle_shop/models/orders.sql b/tests/fixtures/sample_project/target/run/jaffle_shop/models/orders.sql deleted file mode 100644 index 78e64c08..00000000 --- a/tests/fixtures/sample_project/target/run/jaffle_shop/models/orders.sql +++ /dev/null @@ -1,61 +0,0 @@ - - - create table "test"."public"."orders__dbt_tmp" - as ( - - -with orders as ( - - select * from "test"."public"."stg_orders" - -), - -payments as ( - - select * from "test"."public"."stg_payments" - -), - -order_payments as ( - - select - order_id, - - sum(case when payment_method = 'credit_card' then amount else 0 end) as credit_card_amount, - sum(case when payment_method = 'coupon' then amount else 0 end) as coupon_amount, - sum(case when payment_method = 'bank_transfer' then amount else 0 end) as bank_transfer_amount, - sum(case when payment_method = 'gift_card' then amount else 0 end) as gift_card_amount, - sum(amount) as total_amount - - from payments - - group by 1 - -), - -final as ( - - select - orders.order_id, - orders.customer_id, - orders.order_date, - orders.status, - - order_payments.credit_card_amount, - - order_payments.coupon_amount, - - order_payments.bank_transfer_amount, - - order_payments.gift_card_amount, - - order_payments.total_amount as amount - - from orders - - left join order_payments using (order_id) - -) - -select * from final - ); \ No newline at end of file diff --git a/tests/fixtures/sample_project/target/run/jaffle_shop/models/staging/stg_customers.sql b/tests/fixtures/sample_project/target/run/jaffle_shop/models/staging/stg_customers.sql deleted file mode 100644 index fc19a385..00000000 --- a/tests/fixtures/sample_project/target/run/jaffle_shop/models/staging/stg_customers.sql +++ /dev/null @@ -1,20 +0,0 @@ - - create view "test"."public"."stg_customers__dbt_tmp" as ( - with source as ( - select * from "test"."public"."raw_customers" - -), - -renamed as ( - - select - id as customer_id, - first_name, - last_name - - from source - -) - -select * from renamed - ); diff --git a/tests/fixtures/sample_project/target/run/jaffle_shop/models/staging/stg_orders.sql b/tests/fixtures/sample_project/target/run/jaffle_shop/models/staging/stg_orders.sql deleted file mode 100644 index 36fd8ff9..00000000 --- a/tests/fixtures/sample_project/target/run/jaffle_shop/models/staging/stg_orders.sql +++ /dev/null @@ -1,21 +0,0 @@ - - create view "test"."public"."stg_orders__dbt_tmp" as ( - with source as ( - select * from "test"."public"."raw_orders" - -), - -renamed as ( - - select - id as order_id, - user_id as customer_id, - order_date, - status - - from source - -) - -select * from renamed - ); diff --git a/tests/fixtures/sample_project/target/run/jaffle_shop/models/staging/stg_payments.sql b/tests/fixtures/sample_project/target/run/jaffle_shop/models/staging/stg_payments.sql deleted file mode 100644 index 1840d57f..00000000 --- a/tests/fixtures/sample_project/target/run/jaffle_shop/models/staging/stg_payments.sql +++ /dev/null @@ -1,23 +0,0 @@ - - create view "test"."public"."stg_payments__dbt_tmp" as ( - with source as ( - select * from "test"."public"."raw_payments" - -), - -renamed as ( - - select - id as payment_id, - order_id, - payment_method, - - --`amount` is currently stored in cents, so we convert it to dollars - amount / 100 as amount - - from source - -) - -select * from renamed - ); diff --git a/tests/fixtures/sample_project/target/run_results.json b/tests/fixtures/sample_project/target/run_results.json deleted file mode 100644 index f2d29738..00000000 --- a/tests/fixtures/sample_project/target/run_results.json +++ /dev/null @@ -1 +0,0 @@ -{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/run-results/v2.json", "dbt_version": "0.20.0", "generated_at": "2021-07-21T07:41:34.100487Z", "invocation_id": "425a0ecf-fdf8-4f90-a96d-e094466d3853", "env": {}}, "results": [{"status": "success", "timing": [{"name": "compile", "started_at": "2021-07-21T07:41:33.776210Z", "completed_at": "2021-07-21T07:41:33.778925Z"}, {"name": "execute", "started_at": "2021-07-21T07:41:33.779087Z", "completed_at": "2021-07-21T07:41:33.907623Z"}], "thread_id": "Thread-2", "execution_time": 0.13429689407348633, "adapter_response": {"_message": "CREATE VIEW", "code": "CREATE VIEW", "rows_affected": -1}, "message": "CREATE VIEW", "failures": null, "unique_id": "model.jaffle_shop.stg_payments"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2021-07-21T07:41:33.772979Z", "completed_at": "2021-07-21T07:41:33.784241Z"}, {"name": "execute", "started_at": "2021-07-21T07:41:33.784416Z", "completed_at": "2021-07-21T07:41:33.909393Z"}], "thread_id": "Thread-1", "execution_time": 0.1389603614807129, "adapter_response": {"_message": "CREATE VIEW", "code": "CREATE VIEW", "rows_affected": -1}, "message": "CREATE VIEW", "failures": null, "unique_id": "model.jaffle_shop.stg_orders"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2021-07-21T07:41:33.914654Z", "completed_at": "2021-07-21T07:41:33.917583Z"}, {"name": "execute", "started_at": "2021-07-21T07:41:33.917782Z", "completed_at": "2021-07-21T07:41:33.992740Z"}], "thread_id": "Thread-2", "execution_time": 0.07942318916320801, "adapter_response": {"_message": "CREATE VIEW", "code": "CREATE VIEW", "rows_affected": -1}, "message": "CREATE VIEW", "failures": null, "unique_id": "model.jaffle_shop.stg_customers"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2021-07-21T07:41:33.922552Z", "completed_at": "2021-07-21T07:41:33.927826Z"}, {"name": "execute", "started_at": "2021-07-21T07:41:33.928025Z", "completed_at": "2021-07-21T07:41:34.044447Z"}], "thread_id": "Thread-1", "execution_time": 0.12371253967285156, "adapter_response": {"_message": "SELECT 99", "code": "SELECT", "rows_affected": 99}, "message": "SELECT 99", "failures": null, "unique_id": "model.jaffle_shop.orders"}, {"status": "success", "timing": [{"name": "compile", "started_at": "2021-07-21T07:41:33.997168Z", "completed_at": "2021-07-21T07:41:34.004857Z"}, {"name": "execute", "started_at": "2021-07-21T07:41:34.005108Z", "completed_at": "2021-07-21T07:41:34.081386Z"}], "thread_id": "Thread-2", "execution_time": 0.08559751510620117, "adapter_response": {"_message": "SELECT 100", "code": "SELECT", "rows_affected": 100}, "message": "SELECT 100", "failures": null, "unique_id": "model.jaffle_shop.customers"}], "elapsed_time": 0.4319753646850586, "args": {"log_format": "default", "write_json": true, "use_experimental_parser": false, "profiles_dir": "/home/alexb/dbt-metabase/tests/fixtures/sample_project", "use_cache": true, "version_check": true, "which": "run", "rpc_method": "run"}} \ No newline at end of file diff --git a/tests/test_dbt.py b/tests/test_dbt.py index 0350a26d..698c9763 100644 --- a/tests/test_dbt.py +++ b/tests/test_dbt.py @@ -15,13 +15,7 @@ class TestDbtReader(unittest.TestCase): def setUp(self): """Must specify dbt root dir""" self.reader = DbtReader( - manifest_path=str( - Path("tests") - / "fixtures" - / "sample_project" - / "target" - / "manifest.json" - ), + manifest_path=str(Path("tests") / "fixtures" / "dbt" / "manifest.json"), database="test", schema="public", )