We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bec417e commit 820918bCopy full SHA for 820918b
dbt/include/sqlserver/macros/adapters/relation.sql
@@ -1,9 +1,9 @@
1
{% macro sqlserver__make_temp_relation(base_relation, suffix) %}
2
- {% set tmp_identifier = '#' ~ base_relation.identifier ~ suffix %}
3
- {% set tmp_relation = base_relation.incorporate(
4
- path={"identifier": tmp_identifier}) -%}
+ {%- set temp_identifier = '#' ~ base_relation.identifier ~ suffix -%}
+ {%- set temp_relation = base_relation.incorporate(
+ path={"identifier": temp_identifier}) -%}
5
6
- {% do return(tmp_relation) %}
+ {{ return(temp_relation) }}
7
{% endmacro %}
8
9
{% macro sqlserver__drop_relation(relation) -%}
0 commit comments