external-models/macros/create_sps.sql

9 lines
259 B
MySQL
Raw Normal View History

2023-01-20 01:34:24 +00:00
{% macro create_sps() %}
{% if var("UPDATE_UDFS_AND_SPS") %}
{% if target.database == 'EXTERNAL' %}
CREATE schema IF NOT EXISTS _internal;
{{ sp_create_prod_clone('_internal') }};
{% endif %}
{% endif %}
{% endmacro %}