Skip to content

Commit

Permalink
Fix creation of replicated tables when using legacy materialization (C…
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenReitsma authored and Savid committed Jan 17, 2024
1 parent 2494763 commit 7f9890f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
{{ create_distributed_local_table(distributed_intermediate_relation, intermediate_relation, existing_relation) }}
{% else %}
{% call statement('main') %}
create table {{ intermediate_relation }} as {{ new_data_relation }} {{ on_cluster_clause(existing_relation) }}
create table {{ intermediate_relation }} {{ on_cluster_clause(existing_relation) }} as {{ new_data_relation }}
{% endcall %}
{% endif %}

Expand Down

0 comments on commit 7f9890f

Please sign in to comment.