Skip to content

Commit

Permalink
put back original relation_name
Browse files Browse the repository at this point in the history
  • Loading branch information
Freia Vercruysse committed Jun 7, 2022
1 parent 24a1a17 commit c874ae5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbt/include/sqlserver/macros/adapters/indexes.sql
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% macro sqlserver__create_clustered_columnstore_index(relation) -%}
{%- set cci_name = (relation.schema ~ '_' ~ relation.identifier ~ '_cci') | replace(".", "") | replace(" ", "") -%}
{%- set relation_name = '"' ~ relation.schema ~ '"."' ~ relation.identifier ~ '"' -%}
{%- set relation_name = relation.schema ~ '_' ~ relation.identifier -%}
{%- set full_relation = '"' ~ relation.schema ~ '"."' ~ relation.identifier ~ '"' -%}
use [{{ relation.database }}];
if EXISTS (
Expand Down

0 comments on commit c874ae5

Please sign in to comment.