38 lines
1.8 KiB
SQL
38 lines
1.8 KiB
SQL
{{ 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('events_ab1') }}
|
|
select
|
|
cast(_id as {{ dbt_utils.type_string() }}) as _id,
|
|
cast(code as {{ dbt_utils.type_string() }}) as code,
|
|
cast({{ adapter.quote('desc') }} as {{ dbt_utils.type_string() }}) as {{ adapter.quote('desc') }},
|
|
cast(icon as {{ type_json() }}) as icon,
|
|
cast({{ adapter.quote('name') }} as {{ dbt_utils.type_string() }}) as {{ adapter.quote('name') }},
|
|
cast({{ adapter.quote('type') }} as {{ dbt_utils.type_string() }}) as {{ adapter.quote('type') }},
|
|
cast(cover as {{ type_json() }}) as cover,
|
|
cast(endat as {{ dbt_utils.type_string() }}) as endat,
|
|
{{ cast_to_boolean('active') }} as active,
|
|
cast(notice as {{ type_json() }}) as notice,
|
|
cast(article as {{ dbt_utils.type_string() }}) as article,
|
|
cast({{ adapter.quote('options') }} as {{ type_json() }}) as {{ adapter.quote('options') }},
|
|
cast(startat as {{ dbt_utils.type_string() }}) as startat,
|
|
cast(segments as {{ type_json() }}) as segments,
|
|
cast(createdat as {{ dbt_utils.type_string() }}) as createdat,
|
|
suppliers,
|
|
cast(updatedat as {{ dbt_utils.type_string() }}) as updatedat,
|
|
information,
|
|
cast(displayendat as {{ dbt_utils.type_string() }}) as displayendat,
|
|
{{ cast_to_boolean('isapplyforall') }} as isapplyforall,
|
|
cast(displaystartat as {{ dbt_utils.type_string() }}) as displaystartat,
|
|
_airbyte_ab_id,
|
|
_airbyte_emitted_at,
|
|
{{ current_timestamp() }} as _airbyte_normalized_at
|
|
from {{ ref('events_ab1') }}
|
|
-- events
|
|
where 1 = 1
|
|
|