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

36 lines
960 B
MySQL
Raw Normal View History

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',
'rest',
adapter.quote('type'),
'endat',
'title',
boolean_to_string('active'),
2022-05-11 04:21:03 +00:00
adapter.quote('options'),
2022-03-22 04:03:52 +00:00
'startat',
2022-05-11 04:21:03 +00:00
'applyfor',
2022-03-22 04:03:52 +00:00
'quantity',
'articleid',
'createdat',
'updatedat',
'searchstring',
2022-05-11 04:21:03 +00:00
'sharepercent',
'conditionforuser',
2022-03-22 04:03:52 +00:00
boolean_to_string('isunlimitedquantity'),
boolean_to_string('isapplyfororderwholesale'),
2022-05-11 04:21:03 +00:00
'supplierCommission',
2022-03-22 04:03:52 +00:00
]) }} as _airbyte_promotions_hashid,
tmp.*
from {{ ref('promotions_ab2') }} tmp
-- promotions
where 1 = 1