Skip to content

Commit

Permalink
refactor(measures.sql): set row_count type as int (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
vicmattos authored Oct 16, 2024
1 parent b7327ee commit 30c5bc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion macros/measures.sql
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{%- endmacro -%}

{%- macro default__measure_row_count(column_name, data_type) -%}
cast(count(*) as {{ dbt.type_numeric() }})
cast(count(*) as {{ dbt.type_int() }})
{%- endmacro -%}


Expand Down

0 comments on commit 30c5bc2

Please sign in to comment.