dbt-selly/models/generated/airbyte_ctes/unibag/user_courses_ab2.sql

24 lines
995 B
MySQL
Raw Normal View History

2022-06-01 10:30:33 +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('user_courses_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(course as {{ dbt_utils.type_string() }}) as course,
cast(hoolaid as {{ dbt_utils.type_string() }}) as hoolaid,
cast(createdat as {{ dbt_utils.type_string() }}) as createdat,
cast(updatedat as {{ dbt_utils.type_string() }}) as updatedat,
cast(academyaccount as {{ dbt_utils.type_string() }}) as academyaccount,
_airbyte_ab_id,
_airbyte_emitted_at,
{{ current_timestamp() }} as _airbyte_normalized_at
from {{ ref('user_courses_ab1') }}
-- user_courses
where 1 = 1