Skip to content

Commit

Permalink
Fix spark list relation without caching
Browse files Browse the repository at this point in the history
  • Loading branch information
JCZuurmond committed Jun 2, 2024
1 parent 8407a56 commit 02d01a4
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docs/source/_static/dbt_project/macros/spark_adapter.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{% macro spark__list_relations_without_caching(relation) %}
{% call statement('list_relations_without_caching', fetch_result=True) -%}
show table extended in default like '*'
{% endcall %}

{% do return(load_result('list_relations_without_caching').table) %}
{% endmacro %}

0 comments on commit 02d01a4

Please sign in to comment.