Files
dbt-project-evaluator/macros/is_not_empty_string.sql
2022-06-07 14:52:39 -04:00

13 lines
282 B
SQL

{% macro is_not_empty_string(str) %}
{{ return(adapter.dispatch('is_not_empty_string', 'dbt_project_evaluator')(str)) }}
{% endmacro %}
{% macro default__is_not_empty_string(str) %}
{% if str %}
{{ true }}
{% else %}
{{ false }}
{% endif %}
{% endmacro %}