mirror of
https://github.com/dbt-labs/dbt-project-evaluator.git
synced 2025-12-18 02:11:27 +00:00
13 lines
282 B
SQL
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 %} |