From f645ef3a3a723a28774550673abbdf684e194509 Mon Sep 17 00:00:00 2001 From: Brian Kim <49793984+bkimjin@users.noreply.github.com> Date: Fri, 16 Feb 2024 15:05:22 -0800 Subject: [PATCH] Allow different data types (#300) --- .../expect_select_column_values_to_be_unique_within_record.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macros/schema_tests/multi-column/expect_select_column_values_to_be_unique_within_record.sql b/macros/schema_tests/multi-column/expect_select_column_values_to_be_unique_within_record.sql index e75f7300..6991dd6b 100644 --- a/macros/schema_tests/multi-column/expect_select_column_values_to_be_unique_within_record.sql +++ b/macros/schema_tests/multi-column/expect_select_column_values_to_be_unique_within_record.sql @@ -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 %} ),