diff --git a/macros/utils.sql b/macros/utils.sql index 0277802..082da6e 100644 --- a/macros/utils.sql +++ b/macros/utils.sql @@ -191,6 +191,14 @@ {% endif %} {%- endmacro %} +{% macro spark__quote_identifier(identifier) %} + {% if identifier.startswith('`') %} + {{ return(identifier) }} + {% else %} + {{ return('`' ~ identifier ~ '`') }} + {% endif %} +{% endmacro %} + {% macro bigquery__quote_identifier(identifier) %} {% if identifier.startswith('`') %} {{ return(identifier) }}