stellar-models/macros/create_sps.sql
2025-01-17 16:11:03 -05:00

12 lines
442 B
SQL

{% macro create_sps() %}
{% if target.database == 'STELLAR' %}
CREATE SCHEMA IF NOT EXISTS _internal;
{{ sp_create_prod_clone('_internal') }};
{% endif %}
{% endmacro %}
{% macro enable_search_optimization(schema_name, table_name, condition = '') %}
{% if target.database == 'STELLAR' %}
ALTER TABLE {{ schema_name }}.{{ table_name }} ADD SEARCH OPTIMIZATION {{ condition }}
{% endif %}
{% endmacro %}