8 lines
222 B
SQL
8 lines
222 B
SQL
{% macro generate_schema_name(custom_schema_name, node) -%}
|
|
{%- if custom_schema_name is none -%}
|
|
{{ default_schema }}
|
|
{%- else -%}
|
|
{{ custom_schema_name | trim }}
|
|
{%- endif -%}
|
|
{%- endmacro %}
|