Skip to content

Commit

Permalink
add table to replace
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed Aug 31, 2023
1 parent 59e042c commit 0427da8
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions core/dbt/include/global_project/macros/relations/table/replace.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{% macro get_replace_table_sql(relation, sql) %}
{{- adapter.dispatch('get_replace_table_sql', 'dbt')(relation, sql) -}}
{% endmacro %}


{% macro default__get_replace_table_sql(relation, sql) %}
{{ exceptions.raise_compiler_error(
"`get_replace_table_sql` has not been implemented for this adapter."
) }}
{% endmacro %}

0 comments on commit 0427da8

Please sign in to comment.