2022-03-22 04:03:52 +00:00
|
|
|
{{ config(
|
|
|
|
indexes = [{'columns':['_airbyte_emitted_at'],'type':'btree'}],
|
|
|
|
unique_key = '_airbyte_ab_id',
|
|
|
|
schema = "_airbyte_unibag",
|
|
|
|
tags = [ "top-level-intermediate" ]
|
|
|
|
) }}
|
|
|
|
-- SQL model to cast each column to its adequate SQL type converted from the JSON schema type
|
|
|
|
-- depends_on: {{ ref('order_items_ab1') }}
|
|
|
|
select
|
|
|
|
cast(_id as {{ dbt_utils.type_string() }}) as _id,
|
2022-05-11 04:21:03 +00:00
|
|
|
cast(sku as {{ dbt_utils.type_string() }}) as sku,
|
2022-03-22 04:03:52 +00:00
|
|
|
cast({{ adapter.quote('date') }} as {{ dbt_utils.type_string() }}) as {{ adapter.quote('date') }},
|
|
|
|
cast({{ adapter.quote('user') }} as {{ dbt_utils.type_string() }}) as {{ adapter.quote('user') }},
|
2022-05-11 04:21:03 +00:00
|
|
|
cast(brand as {{ dbt_utils.type_string() }}) as brand,
|
2022-03-22 04:03:52 +00:00
|
|
|
cast({{ adapter.quote('order') }} as {{ dbt_utils.type_string() }}) as {{ adapter.quote('order') }},
|
2022-05-11 04:21:03 +00:00
|
|
|
cast(price as {{ dbt_utils.type_string() }}) as price,
|
2022-03-22 04:03:52 +00:00
|
|
|
cast(status as {{ dbt_utils.type_string() }}) as status,
|
2022-05-11 04:21:03 +00:00
|
|
|
cast(teamid as {{ dbt_utils.type_string() }}) as teamid,
|
2022-03-22 04:03:52 +00:00
|
|
|
cast(product as {{ dbt_utils.type_string() }}) as product,
|
2022-05-11 04:21:03 +00:00
|
|
|
cast(voucher as {{ dbt_utils.type_string() }}) as voucher,
|
2022-03-22 04:03:52 +00:00
|
|
|
cast(customer as {{ dbt_utils.type_string() }}) as customer,
|
|
|
|
cast(quantity as {{ dbt_utils.type_float() }}) as quantity,
|
|
|
|
cast(createdat as {{ dbt_utils.type_string() }}) as createdat,
|
2022-05-11 04:21:03 +00:00
|
|
|
cast(inventory as {{ dbt_utils.type_string() }}) as inventory,
|
2022-03-22 04:03:52 +00:00
|
|
|
cast(totalsell as {{ dbt_utils.type_float() }}) as totalsell,
|
|
|
|
cast(updatedat as {{ dbt_utils.type_string() }}) as updatedat,
|
|
|
|
cast(cashbackat as {{ dbt_utils.type_string() }}) as cashbackat,
|
2022-05-11 04:21:03 +00:00
|
|
|
promotions,
|
2022-03-22 04:03:52 +00:00
|
|
|
cast(totalprice as {{ dbt_utils.type_float() }}) as totalprice,
|
|
|
|
cast(deliveredat as {{ dbt_utils.type_string() }}) as deliveredat,
|
2022-05-11 04:21:03 +00:00
|
|
|
cast(teammemberid as {{ dbt_utils.type_string() }}) as teammemberid,
|
|
|
|
{{ cast_to_boolean('isassigncoupon') }} as isassigncoupon,
|
|
|
|
cast(totalpromotion as {{ dbt_utils.type_float() }}) as totalpromotion,
|
|
|
|
{{ cast_to_boolean('inwholesalerange') }} as inwholesalerange,
|
|
|
|
cast(vouchercashtotal as {{ dbt_utils.type_float() }}) as vouchercashtotal,
|
|
|
|
cast(wholesalerangeid as {{ dbt_utils.type_string() }}) as wholesalerangeid,
|
|
|
|
cast(totalwholesalebonus as {{ dbt_utils.type_float() }}) as totalwholesalebonus,
|
|
|
|
cast(totalsellywholesalebonus as {{ dbt_utils.type_float() }}) as totalsellywholesalebonus,
|
2022-03-22 04:03:52 +00:00
|
|
|
_airbyte_ab_id,
|
|
|
|
_airbyte_emitted_at,
|
|
|
|
{{ current_timestamp() }} as _airbyte_normalized_at
|
|
|
|
from {{ ref('order_items_ab1') }}
|
|
|
|
-- order_items
|
|
|
|
where 1 = 1
|
|
|
|
|