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 build a hash column based on the values of this record
|
|
|
|
-- depends_on: {{ ref('order_deliveries_ab2') }}
|
|
|
|
select
|
|
|
|
{{ dbt_utils.surrogate_key([
|
|
|
|
'_id',
|
|
|
|
'code',
|
|
|
|
adapter.quote('order'),
|
|
|
|
'title',
|
|
|
|
'status',
|
|
|
|
'service',
|
2022-05-11 04:21:03 +00:00
|
|
|
'customer',
|
|
|
|
'delivery',
|
|
|
|
adapter.quote('location'),
|
2022-03-22 04:03:52 +00:00
|
|
|
'createdat',
|
2022-05-11 04:21:03 +00:00
|
|
|
'promotion',
|
2022-03-22 04:03:52 +00:00
|
|
|
'updatedat',
|
|
|
|
'trackingcode',
|
2022-05-11 04:21:03 +00:00
|
|
|
'trackingtime',
|
2022-03-22 04:03:52 +00:00
|
|
|
boolean_to_string('isadminchange'),
|
|
|
|
'trackingordercode',
|
2022-05-11 04:21:03 +00:00
|
|
|
'weight',
|
2022-03-22 04:03:52 +00:00
|
|
|
]) }} as _airbyte_order_deliveries_hashid,
|
|
|
|
tmp.*
|
|
|
|
from {{ ref('order_deliveries_ab2') }} tmp
|
|
|
|
-- order_deliveries
|
|
|
|
where 1 = 1
|
|
|
|
|