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

33 lines
1.5 KiB
MySQL
Raw Normal View History

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('wards_ab1') }}
select
cast(_id as {{ dbt_utils.type_string() }}) as _id,
cast(city as {{ dbt_utils.type_string() }}) as city,
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(tncid as {{ dbt_utils.type_float() }}) as tncid,
cast(cityid as {{ dbt_utils.type_float() }}) as cityid,
cast({{ adapter.quote('source') }} as {{ dbt_utils.type_string() }}) as {{ adapter.quote('source') }},
cast(tnccode as {{ dbt_utils.type_string() }}) as tnccode,
cast(district as {{ dbt_utils.type_string() }}) as district,
cast(gidocode as {{ dbt_utils.type_float() }}) as gidocode,
cast(osirisid as {{ dbt_utils.type_float() }}) as osirisid,
cast(updatedat as {{ dbt_utils.type_string() }}) as updatedat,
cast(districtid as {{ dbt_utils.type_float() }}) as districtid,
cast(provinceid as {{ dbt_utils.type_float() }}) as provinceid,
cast(searchstring as {{ dbt_utils.type_string() }}) as searchstring,
_airbyte_ab_id,
_airbyte_emitted_at,
{{ current_timestamp() }} as _airbyte_normalized_at
from {{ ref('wards_ab1') }}
-- wards
where 1 = 1