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('inventories_ab1') }}
|
|
|
|
select
|
|
|
|
cast(_id as {{ dbt_utils.type_string() }}) as _id,
|
|
|
|
cast(code as {{ dbt_utils.type_float() }}) as code,
|
|
|
|
cast({{ adapter.quote('name') }} as {{ dbt_utils.type_string() }}) as {{ adapter.quote('name') }},
|
|
|
|
cast(slug as {{ dbt_utils.type_string() }}) as slug,
|
|
|
|
{{ cast_to_boolean('active') }} as active,
|
2022-05-10 14:30:53 +00:00
|
|
|
cast(contact as {{ type_json() }}) as contact,
|
|
|
|
cast(partner as {{ type_json() }}) as partner,
|
2022-03-22 04:03:52 +00:00
|
|
|
cast(checksum as {{ dbt_utils.type_string() }}) as checksum,
|
2022-05-10 14:30:53 +00:00
|
|
|
cast({{ adapter.quote('location') }} as {{ type_json() }}) as {{ adapter.quote('location') }},
|
|
|
|
cast(supplier as {{ type_json() }}) as supplier,
|
2022-03-22 04:03:52 +00:00
|
|
|
cast(createdat as {{ dbt_utils.type_string() }}) as createdat,
|
|
|
|
cast(updatedat as {{ dbt_utils.type_string() }}) as updatedat,
|
|
|
|
cast(minimumvalue as {{ dbt_utils.type_float() }}) as minimumvalue,
|
|
|
|
cast(searchstring as {{ dbt_utils.type_string() }}) as searchstring,
|
2022-05-10 14:30:53 +00:00
|
|
|
cast(paymentmethods as {{ type_json() }}) as paymentmethods,
|
2022-03-22 04:03:52 +00:00
|
|
|
{{ cast_to_boolean('canissueinvoice') }} as canissueinvoice,
|
|
|
|
deliverymethods,
|
|
|
|
{{ cast_to_boolean('canautosendemail') }} as canautosendemail,
|
|
|
|
cast(invoicedeliverymethod as {{ dbt_utils.type_string() }}) as invoicedeliverymethod,
|
|
|
|
{{ cast_to_boolean('doessupportsellyexpress') }} as doessupportsellyexpress,
|
|
|
|
prioritydeliveryservicecodes,
|
|
|
|
_airbyte_ab_id,
|
|
|
|
_airbyte_emitted_at,
|
|
|
|
{{ current_timestamp() }} as _airbyte_normalized_at
|
|
|
|
from {{ ref('inventories_ab1') }}
|
|
|
|
-- inventories
|
|
|
|
where 1 = 1
|
|
|
|
|