Skip to content

Commit

Permalink
refactor: on_configuration_change default to continue (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
MattiasMTS authored Mar 1, 2024
1 parent aba7b35 commit 663d031
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
{{ create_indexes(target_relation) }}
{% else %}
-- get config options
{% set on_configuration_change = config.get('on_configuration_change') %}
{% set on_configuration_change = config.get('on_configuration_change', "continue") %}
{% set configuration_changes = get_materialized_view_configuration_changes(old_relation, config) %}

{% if configuration_changes is none %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
{{ create_indexes(target_relation) }}
{% else %}
-- get config options
{% set on_configuration_change = config.get('on_configuration_change') %}
{% set on_configuration_change = config.get('on_configuration_change', "continue") %}
{% set configuration_changes = get_materialized_view_configuration_changes(old_relation, config) %}

{% if configuration_changes is none %}
Expand Down

0 comments on commit 663d031

Please sign in to comment.