You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
368 B
14 lines
368 B
{% set old_etl_relation_query %}
|
|
select * from dbt_gkarthik.raw_customers
|
|
{% endset %}
|
|
|
|
{% set new_etl_relation_query %}
|
|
select * from {{ ref('raw_customers') }}
|
|
{% endset %}
|
|
|
|
{% set audit_query = audit_helper.compare_column_values(
|
|
a_query=old_etl_relation_query,
|
|
b_query=new_etl_relation_query,
|
|
primary_key="id",
|
|
column_to_compare="test"
|
|
) %}
|