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

36 lines
986 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('teams_ab2') }}
select
{{ dbt_utils.surrogate_key([
'_id',
'code',
adapter.quote('desc'),
2022-05-10 14:30:53 +00:00
object_to_string('logo'),
2022-03-22 04:03:52 +00:00
adapter.quote('name'),
2022-05-10 14:30:53 +00:00
adapter.quote('temp'),
object_to_string(adapter.quote('level')),
2022-03-22 04:03:52 +00:00
boolean_to_string('active'),
boolean_to_string('isfull'),
'citycode',
'adminuser',
'createdat',
2022-05-10 14:30:53 +00:00
object_to_string('statistic'),
2022-03-22 04:03:52 +00:00
'updatedat',
'invitelink',
2022-05-10 14:30:53 +00:00
object_to_string('information'),
2022-03-22 04:03:52 +00:00
'searchstring',
'inactivereason',
'changingnamecount',
]) }} as _airbyte_teams_hashid,
tmp.*
from {{ ref('teams_ab2') }} tmp
-- teams
where 1 = 1