Skip to content

Commit

Permalink
feat: improve names of custom_dictionaries macro
Browse files Browse the repository at this point in the history
  • Loading branch information
folhesgabriel committed May 3, 2024
1 parent 021bf1b commit 8c5953d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/generic/custom_dictionaries.sql
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

{%- for column_name in columns_covered_by_dictionary %}
{% set subquery_name = "exceptions_" ~ loop.index %}
{% set left_table_name = "left_table_" ~ loop.index %}
{% set right_table_name = "right_table_" ~ loop.index %}
{% set left_table_name = "data_table_" ~ loop.index %}
{% set right_table_name = "dictionary_table_" ~ loop.index %}

{% set subquery %}
{{ left_table_name }} as (
Expand Down

0 comments on commit 8c5953d

Please sign in to comment.