From 2462be748c6f1d5fccb45c011c21b8c9f479bde6 Mon Sep 17 00:00:00 2001 From: SamHarting <91211918+SamHarting@users.noreply.github.com> Date: Thu, 21 Nov 2024 12:30:14 -0500 Subject: [PATCH] Update README.md (#114) updated example to match actual macro name --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fa00a512..c25d8e89 100644 --- a/README.md +++ b/README.md @@ -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"], @@ -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"],