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('promotions_ab2') }}
|
|
|
|
select
|
|
|
|
{{ dbt_utils.surrogate_key([
|
|
|
|
'_id',
|
2022-05-10 14:30:53 +00:00
|
|
|
'code',
|
2022-03-22 04:03:52 +00:00
|
|
|
'rest',
|
|
|
|
adapter.quote('type'),
|
|
|
|
'endat',
|
|
|
|
'title',
|
|
|
|
boolean_to_string('active'),
|
2022-05-10 14:30:53 +00:00
|
|
|
object_to_string(adapter.quote('options')),
|
2022-03-22 04:03:52 +00:00
|
|
|
'startat',
|
2022-05-10 14:30:53 +00:00
|
|
|
object_to_string('applyfor'),
|
2022-03-22 04:03:52 +00:00
|
|
|
'quantity',
|
|
|
|
'articleid',
|
|
|
|
'createdat',
|
2022-05-10 14:30:53 +00:00
|
|
|
object_to_string('statistic'),
|
2022-03-22 04:03:52 +00:00
|
|
|
'updatedat',
|
|
|
|
'searchstring',
|
2022-05-10 14:30:53 +00:00
|
|
|
object_to_string('conditionforuser'),
|
|
|
|
object_to_string('suppliercommission'),
|
2022-03-22 04:03:52 +00:00
|
|
|
boolean_to_string('isunlimitedquantity'),
|
2022-05-10 14:30:53 +00:00
|
|
|
'maximumlimitperuser',
|
|
|
|
array_to_string('milestonesstatistic'),
|
2022-03-22 04:03:52 +00:00
|
|
|
boolean_to_string('isapplyfororderwholesale'),
|
|
|
|
]) }} as _airbyte_promotions_hashid,
|
|
|
|
tmp.*
|
|
|
|
from {{ ref('promotions_ab2') }} tmp
|
|
|
|
-- promotions
|
|
|
|
where 1 = 1
|
|
|
|
|