fix: data testing

This commit is contained in:
Stijnvandenbroek
2026-03-05 17:17:19 +00:00
parent c6f5adf621
commit 7902a5e354
6 changed files with 13 additions and 8 deletions

View File

@@ -0,0 +1,5 @@
-- 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 %}