Skip to content

Commit

Permalink
Update README.md (#114)
Browse files Browse the repository at this point in the history
updated example to match actual macro name
  • Loading branch information
SamHarting authored Nov 21, 2024
1 parent 6499107 commit 2462be7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ Each relation must have the same columns with the same names, but they do not ha

{% set dbt_relation = ref('fct_orders') %}

{{ audit_helper.compare_which_columns_differ(
{{ audit_helper.compare_which_relation_columns_differ(
a_relation = old_relation,
b_relation = dbt_relation,
primary_key_columns = ["order_id"],
Expand All @@ -291,7 +291,7 @@ Each relation must have the same columns with the same names, but they do not ha

{% set columns = dbt_utils.get_filtered_columns_in_relation(old_relation, exclude=["loaded_at"]) %}

{{ audit_helper.compare_which_columns_differ(
{{ audit_helper.compare_which_relation_columns_differ(
a_relation = old_relation,
b_relation = dbt_relation,
primary_key_columns = ["order_id"],
Expand Down

0 comments on commit 2462be7

Please sign in to comment.