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

32 lines
859 B
MySQL
Raw Permalink 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('promotion_orders_ab2') }}
select
{{ dbt_utils.surrogate_key([
'_id',
adapter.quote('user'),
adapter.quote('order'),
'title',
'status',
2022-05-11 04:21:03 +00:00
'supplier',
2022-03-22 04:03:52 +00:00
'createdat',
'promotion',
'updatedat',
'cashbackat',
'commission',
boolean_to_string('isrejected'),
'quantitypromotion',
2022-05-11 04:21:03 +00:00
'supplierCommission',
'supplierCommissionTotal',
2022-03-22 04:03:52 +00:00
]) }} as _airbyte_promotion_orders_hashid,
tmp.*
from {{ ref('promotion_orders_ab2') }} tmp
-- promotion_orders
where 1 = 1