Skip to content

Commit

Permalink
Allow different data types (#300)
Browse files Browse the repository at this point in the history
  • Loading branch information
bkimjin authored Feb 16, 2024
1 parent bc64c92 commit f645ef3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ with column_values as (
unpivot_columns as (

{% for column in columns %}
select row_index, '{{ column }}' as column_name, {{ column }} as column_value from column_values
select row_index, '{{ column }}' as column_name, md5({{ column }}) as column_value from column_values
{% if not loop.last %}union all{% endif %}
{% endfor %}
),
Expand Down

0 comments on commit f645ef3

Please sign in to comment.