aleo-models/macros/create_sps.sql
Mike Stepanovic cfd0dcfe4f repo setup
2024-10-07 11:33:57 -06:00

12 lines
436 B
SQL

{% macro create_sps() %}
{% if target.database == 'aleo' %}
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 == 'aleo' %}
ALTER TABLE {{ schema_name }}.{{ table_name }} ADD SEARCH OPTIMIZATION {{ condition }}
{% endif %}
{% endmacro %}