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

43 lines
1.9 KiB
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 cast each column to its adequate SQL type converted from the JSON schema type
-- depends_on: {{ ref('suppliers_ab1') }}
select
cast(_id as {{ dbt_utils.type_string() }}) as _id,
cast(tax as {{ dbt_utils.type_string() }}) as tax,
2022-05-10 14:30:53 +00:00
cast(bank as {{ type_json() }}) as bank,
cast(logo as {{ type_json() }}) as logo,
2022-03-22 04:03:52 +00:00
cast({{ adapter.quote('name') }} as {{ dbt_utils.type_string() }}) as {{ adapter.quote('name') }},
{{ cast_to_boolean('active') }} as active,
2022-05-10 14:30:53 +00:00
cast(balance as {{ type_json() }}) as balance,
2022-03-22 04:03:52 +00:00
cast(checksum as {{ dbt_utils.type_string() }}) as checksum,
cast(checksum_1 as {{ dbt_utils.type_string() }}) as checksum_1,
2022-05-10 14:30:53 +00:00
cast({{ adapter.quote('location') }} as {{ type_json() }}) as {{ adapter.quote('location') }},
2022-03-22 04:03:52 +00:00
contracts,
cast(createdat as {{ dbt_utils.type_string() }}) as createdat,
documents,
2022-05-10 14:30:53 +00:00
cast(statistic as {{ type_json() }}) as statistic,
2022-03-22 04:03:52 +00:00
cast(updatedat as {{ dbt_utils.type_string() }}) as updatedat,
categories,
inventories,
cast(identifycode as {{ dbt_utils.type_float() }}) as identifycode,
cast(searchstring as {{ dbt_utils.type_string() }}) as searchstring,
2022-05-10 14:30:53 +00:00
reconciledays,
2022-03-22 04:03:52 +00:00
cast(contractnumber as {{ dbt_utils.type_string() }}) as contractnumber,
2022-05-10 14:30:53 +00:00
cast(reviewstatistic as {{ type_json() }}) as reviewstatistic,
2022-03-22 04:03:52 +00:00
cast(contractsignedat as {{ dbt_utils.type_string() }}) as contractsignedat,
emailforinvoices,
cast(contractexpiredat as {{ dbt_utils.type_string() }}) as contractexpiredat,
{{ cast_to_boolean('sendinvoicerequesteveryday') }} as sendinvoicerequesteveryday,
_airbyte_ab_id,
_airbyte_emitted_at,
{{ current_timestamp() }} as _airbyte_normalized_at
from {{ ref('suppliers_ab1') }}
-- suppliers
where 1 = 1