22 lines
878 B
SQL
22 lines
878 B
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('social_post_views_ab1') }}
|
|
select
|
|
cast(_id as {{ dbt_utils.type_string() }}) as _id,
|
|
cast({{ adapter.quote('user') }} as {{ dbt_utils.type_string() }}) as {{ adapter.quote('user') }},
|
|
cast(clientip as {{ dbt_utils.type_string() }}) as clientip,
|
|
cast(lastviewat as {{ dbt_utils.type_string() }}) as lastviewat,
|
|
cast(socialpost as {{ dbt_utils.type_string() }}) as socialpost,
|
|
_airbyte_ab_id,
|
|
_airbyte_emitted_at,
|
|
{{ current_timestamp() }} as _airbyte_normalized_at
|
|
from {{ ref('social_post_views_ab1') }}
|
|
-- social_post_views
|
|
where 1 = 1
|
|
|