Skip to content

Commit

Permalink
Correct quick_are_queries_identical code example (#115)
Browse files Browse the repository at this point in the history
* Correct code example

* Correct arg names in code example
  • Loading branch information
epapineau authored Dec 11, 2024
1 parent 7407285 commit b8f3a33
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,9 @@ This can be calculated relatively quickly compared to other macros in this packa
select * from {{ ref('dim_product') }}
{% endset %}

{{ audit_helper.compare_column_values(
a_query = old_query,
b_query = new_query,
{{ audit_helper.quick_are_queries_identical(
query_a = old_query,
query_b = new_query,
columns=['order_id', 'amount', 'customer_id']
)
}}
Expand Down

0 comments on commit b8f3a33

Please sign in to comment.