Skip to content

Commit 8cfc387

Browse files
committed
fix syntax
1 parent d2cf3e1 commit 8cfc387

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dbt/include/sqlserver/macros/adapters/schema.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% macro sqlserver__create_schema(relation) -%}
2-
{% auth = config.get("schema_authorization") %}
2+
{% set schema_authorization = config.get("schema_authorization") %}
33
{% call statement('create_schema') -%}
44
USE [{{ relation.database }}];
55
IF NOT EXISTS (SELECT * FROM sys.schemas WHERE name = '{{ relation.schema }}')

0 commit comments

Comments
 (0)