Skip to content

Commit 24182fb

Browse files
committed
Changed length to max for varchar
1 parent c90e645 commit 24182fb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{% macro sqlserver__snapshot_hash_arguments(args) %}
22
CONVERT(VARCHAR(32), HashBytes('MD5', {% for arg in args %}
3-
coalesce(cast({{ arg }} as varchar ), '') {% if not loop.last %} + '|' + {% endif %}
3+
coalesce(cast({{ arg }} as varchar(max)), '') {% if not loop.last %} + '|' + {% endif %}
44
{% endfor %}), 2)
55
{% endmacro %}
66

0 commit comments

Comments
 (0)