changed name
This commit is contained in:
parent
0fd8c21e38
commit
aaa0b1a5dd
6 changed files with 42 additions and 42 deletions
|
|
@ -39,11 +39,11 @@ select
|
|||
calculated_payout_currency as calculated_payout_currency,
|
||||
calculated_payout_amount_in_usd as calculated_payout_amount_in_usd,
|
||||
calculated_payout_amount_in_gbp as calculated_payout_amount_in_gbp,
|
||||
calculated_guest_charge_amount_in_txn_currency
|
||||
as calculated_guest_charge_amount_in_txn_currency,
|
||||
calculated_guest_charge_currency as calculated_guest_charge_currency,
|
||||
calculated_guest_charge_amount_in_usd as calculated_guest_charge_amount_in_usd,
|
||||
calculated_guest_charge_amount_in_gbp as calculated_guest_charge_amount_in_gbp,
|
||||
submitted_guest_charge_amount_in_txn_currency
|
||||
as submitted_guest_charge_amount_in_txn_currency,
|
||||
submitted_guest_charge_currency as submitted_guest_charge_currency,
|
||||
submitted_guest_charge_amount_in_usd as submitted_guest_charge_amount_in_usd,
|
||||
submitted_guest_charge_amount_in_gbp as submitted_guest_charge_amount_in_gbp,
|
||||
id_user_host as id_user_host,
|
||||
host_account_name as host_account_name,
|
||||
host_email as host_email,
|
||||
|
|
|
|||
|
|
@ -211,32 +211,32 @@ models:
|
|||
min_value: 0
|
||||
strictly: false
|
||||
|
||||
- name: calculated_guest_charge_amount_in_txn_currency
|
||||
data_type: text
|
||||
description: "Calculated guest charge amount in local currency."
|
||||
- name: submitted_guest_charge_amount_in_txn_currency
|
||||
data_type: numeric
|
||||
description: "Submitted guest charge amount in local currency."
|
||||
data_tests:
|
||||
- dbt_expectations.expect_column_values_to_be_between:
|
||||
min_value: 0
|
||||
strictly: false
|
||||
|
||||
- name: calculated_guest_charge_currency
|
||||
- name: submitted_guest_charge_currency
|
||||
data_type: text
|
||||
description: "Currency of the calculated guest charge amount."
|
||||
description: "Currency of the submitted guest charge amount."
|
||||
data_tests:
|
||||
- not_null:
|
||||
where: "calculated_guest_charge_amount_in_txn_currency > 0"
|
||||
where: "submitted_guest_charge_amount_in_txn_currency > 0"
|
||||
|
||||
- name: calculated_guest_charge_amount_in_usd
|
||||
data_type: text
|
||||
description: "Calculated guest charge amount in USD."
|
||||
- name: submitted_guest_charge_amount_in_usd
|
||||
data_type: numeric
|
||||
description: "Submitted guest charge amount in USD."
|
||||
data_tests:
|
||||
- dbt_expectations.expect_column_values_to_be_between:
|
||||
min_value: 0
|
||||
strictly: false
|
||||
|
||||
- name: calculated_guest_charge_amount_in_gbp
|
||||
- name: submitted_guest_charge_amount_in_gbp
|
||||
data_type: text
|
||||
description: "Calculated guest charge amount in GBP."
|
||||
description: "Submitted guest charge amount in GBP."
|
||||
data_tests:
|
||||
- dbt_expectations.expect_column_values_to_be_between:
|
||||
min_value: 0
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue