Files
mars-elt/dbt/macros/error_handlers/check_variable.sql
Grzegorz Michalski 2c225d68ac init
2026-03-02 09:47:35 +01:00

7 lines
227 B
SQL

{% macro check_variable(var_name) %}
{% if var(var_name, none) is none %}
{{ exceptions.raise_compiler_error("The required global variable " ~ var_name ~ " hasn't been provided!") }}
{% endif %}
{% endmacro %}