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_deliveries_ab1') }}
|
|
|
|
select
|
|
|
|
cast(_id as {{ dbt_utils.type_string() }}) as _id,
|
|
|
|
cast(code as {{ dbt_utils.type_string() }}) as code,
|
|
|
|
cast({{ adapter.quote('order') }} as {{ dbt_utils.type_string() }}) as {{ adapter.quote('order') }},
|
|
|
|
cast(title as {{ dbt_utils.type_string() }}) as title,
|
|
|
|
cast(status as {{ dbt_utils.type_string() }}) as status,
|
|
|
|
cast(service as {{ dbt_utils.type_string() }}) as service,
|
2022-05-11 04:21:03 +00:00
|
|
|
cast(customer as {{ dbt_utils.type_string() }}) as customer,
|
|
|
|
cast(delivery as {{ dbt_utils.type_string() }}) as delivery,
|
|
|
|
cast({{ adapter.quote('location') }} as {{ dbt_utils.type_string() }}) as {{ adapter.quote('location') }},
|
2022-03-22 04:03:52 +00:00
|
|
|
cast(createdat as {{ dbt_utils.type_string() }}) as createdat,
|
2022-05-11 04:21:03 +00:00
|
|
|
cast(promotion as {{ dbt_utils.type_string() }}) as promotion,
|
2022-03-22 04:03:52 +00:00
|
|
|
cast(updatedat as {{ dbt_utils.type_string() }}) as updatedat,
|
|
|
|
cast(trackingcode as {{ dbt_utils.type_string() }}) as trackingcode,
|
2022-05-11 04:21:03 +00:00
|
|
|
cast(trackingtime as {{ dbt_utils.type_string() }}) as trackingtime,
|
2022-03-22 04:03:52 +00:00
|
|
|
{{ cast_to_boolean('isadminchange') }} as isadminchange,
|
|
|
|
cast(trackingordercode as {{ dbt_utils.type_string() }}) as trackingordercode,
|
2022-05-11 04:21:03 +00:00
|
|
|
cast(weight as {{ dbt_utils.type_string() }}) as weight,
|
2022-03-22 04:03:52 +00:00
|
|
|
_airbyte_ab_id,
|
|
|
|
_airbyte_emitted_at,
|
|
|
|
{{ current_timestamp() }} as _airbyte_normalized_at
|
|
|
|
from {{ ref('order_deliveries_ab1') }}
|
|
|
|
-- order_deliveries
|
|
|
|
where 1 = 1
|
|
|
|
|