Skip to content

Commit f645ef3

Browse files
authored
Allow different data types (#300)
1 parent bc64c92 commit f645ef3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

macros/schema_tests/multi-column/expect_select_column_values_to_be_unique_within_record.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ with column_values as (
5555
unpivot_columns as (
5656

5757
{% for column in columns %}
58-
select row_index, '{{ column }}' as column_name, {{ column }} as column_value from column_values
58+
select row_index, '{{ column }}' as column_name, md5({{ column }}) as column_value from column_values
5959
{% if not loop.last %}union all{% endif %}
6060
{% endfor %}
6161
),

0 commit comments

Comments
 (0)