Skip to content

Commit

Permalink
Fix creation of replicated tables when using legacy materialization
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenReitsma committed Nov 28, 2023
1 parent 1f17ec2 commit a75eeb9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,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 a75eeb9

Please sign in to comment.