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('customers_ab2') }}
|
|
|
|
select
|
|
|
|
{{ dbt_utils.surrogate_key([
|
|
|
|
'_id',
|
2022-05-10 14:30:53 +00:00
|
|
|
object_to_string('info'),
|
2022-03-22 04:03:52 +00:00
|
|
|
adapter.quote('name'),
|
|
|
|
adapter.quote('user'),
|
|
|
|
'phone',
|
|
|
|
adapter.quote('source'),
|
|
|
|
array_to_string(adapter.quote('location')),
|
|
|
|
'createdat',
|
|
|
|
boolean_to_string('isdeleted'),
|
2022-05-10 14:30:53 +00:00
|
|
|
object_to_string('statistic'),
|
2022-03-22 04:03:52 +00:00
|
|
|
'updatedat',
|
|
|
|
'searchstring',
|
|
|
|
]) }} as _airbyte_customers_hashid,
|
|
|
|
tmp.*
|
|
|
|
from {{ ref('customers_ab2') }} tmp
|
|
|
|
-- customers
|
|
|
|
where 1 = 1
|
|
|
|
|