Files
data-platform/dbt/macros/elementary_compat.sql
Stijnvandenbroek 7902a5e354 fix: data testing
2026-03-05 17:17:19 +00:00

6 lines
355 B
SQL

-- Compatibility shim: dbt 1.11 changed macro resolution so unnamespaced intra-package
-- calls from elementary no longer resolve. Forwarding macro makes it findable globally.
{% macro get_upload_artifact_method(table_relation, metadata_hashes) %}
{% do return(elementary.get_upload_artifact_method(table_relation, metadata_hashes)) %}
{% endmacro %}