mirror of
https://github.com/dbt-labs/dbt-project-evaluator.git
synced 2025-12-18 02:11:27 +00:00
7 lines
221 B
SQL
7 lines
221 B
SQL
{% macro wrap_string_with_quotes(str) %}
|
|
{% if str is none %}
|
|
{{ return('cast(NULL as ' ~ dbt_project_evaluator.type_string_dpe() ~ ')') }}
|
|
{% else %}
|
|
{{ dbt.string_literal(str) }}
|
|
{% endif %}
|
|
{% endmacro %} |