dbt-selly/models/generated/airbyte_ctes/unibag/session_deliveries_location...

23 lines
642 B
SQL

{{ config(
indexes = [{'columns':['_airbyte_emitted_at'],'type':'btree'}],
schema = "_airbyte_unibag",
tags = [ "nested-intermediate" ]
) }}
-- SQL model to build a hash column based on the values of this record
-- depends_on: {{ ref('session_deliveries_location_ab2') }}
select
{{ dbt_utils.surrogate_key([
'_airbyte_session_deliveries_hashid',
'_id',
'ward',
'address',
'district',
'province',
'fulladdress',
]) }} as _airbyte_location_hashid,
tmp.*
from {{ ref('session_deliveries_location_ab2') }} tmp
-- location at session-deliveries/location
where 1 = 1