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

34 lines
882 B
MySQL
Raw Normal View History

2022-05-04 08:28:55 +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('vouchers_ab2') }}
select
{{ dbt_utils.surrogate_key([
'_id',
'code',
adapter.quote('desc'),
2022-05-11 04:21:03 +00:00
'logo',
2022-05-04 08:28:55 +00:00
adapter.quote('type'),
'endat',
'title',
boolean_to_string('active'),
array_to_string('covers'),
2022-05-11 04:21:03 +00:00
adapter.quote('options'),
2022-05-04 08:28:55 +00:00
'startat',
2022-05-11 04:21:03 +00:00
'applyfor',
2022-05-04 08:28:55 +00:00
'articleid',
'createdat',
'updatedat',
'searchstring',
boolean_to_string('isapplyfororderwholesale'),
]) }} as _airbyte_vouchers_hashid,
tmp.*
from {{ ref('vouchers_ab2') }} tmp
-- vouchers
where 1 = 1