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 d2cf3e1 commit 8cfc387Copy full SHA for 8cfc387
dbt/include/sqlserver/macros/adapters/schema.sql
@@ -1,5 +1,5 @@
1
{% macro sqlserver__create_schema(relation) -%}
2
-{% auth = config.get("schema_authorization") %}
+ {% set schema_authorization = config.get("schema_authorization") %}
3
{% call statement('create_schema') -%}
4
USE [{{ relation.database }}];
5
IF NOT EXISTS (SELECT * FROM sys.schemas WHERE name = '{{ relation.schema }}')
0 commit comments