Transient - Historical

{{  
    config(
        materialized='table',
        transient=true,
        schema='edw_transient',
        unique_key = 'ROW_WID',          
        comment='Warehouse Transient WC_CAR_CLIENT_HISTORICAL',
        tags = ['analytics']
    )
}}
with
    WC_ASSET_PERSON_H as (
        select * from {{ source('wh_DW', 'WC_CAR_CLIENT_H') }}  
    )
select
        *
from WC_CAR_CLIENT_H