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

22 lines
882 B
SQL

{{ config(
indexes = [{'columns':['_airbyte_emitted_at'],'type':'btree'}],
schema = "_airbyte_unibag",
tags = [ "nested-intermediate" ]
) }}
-- SQL model to cast each column to its adequate SQL type converted from the JSON schema type
-- depends_on: {{ ref('inventories_location_ab1') }}
select
_airbyte_inventories_hashid,
cast(ward as {{ dbt_utils.type_string() }}) as ward,
cast(address as {{ dbt_utils.type_string() }}) as address,
cast(district as {{ dbt_utils.type_string() }}) as district,
cast({{ adapter.quote('location') }} as {{ type_json() }}) as {{ adapter.quote('location') }},
cast(province as {{ dbt_utils.type_string() }}) as province,
_airbyte_ab_id,
_airbyte_emitted_at,
{{ current_timestamp() }} as _airbyte_normalized_at
from {{ ref('inventories_location_ab1') }}
-- location at inventories/location
where 1 = 1