Skip to content

Commit d0f7c18

Browse files
committed
fixed bracket placement
1 parent 5bbb765 commit d0f7c18

File tree

1 file changed

+2
-2
lines changed
  • dbt/include/oracle/macros/materializations/snapshot

1 file changed

+2
-2
lines changed

dbt/include/oracle/macros/materializations/snapshot/snapshot.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -377,8 +377,8 @@
377377
{%- endmacro %}
378378

379379
{% macro oracle__get_dbt_valid_to_current(strategy, columns) %}
380-
{% set dbt_valid_to_current = config.get('dbt_valid_to_current') or "CAST(null as TIMESTAMP(9)" %}
381-
coalesce(nullif({{ strategy.updated_at }}, {{ strategy.updated_at }}), {{dbt_valid_to_current}}))
380+
{% set dbt_valid_to_current = config.get('dbt_valid_to_current') or "CAST(null as TIMESTAMP(9))" %}
381+
coalesce(nullif({{ strategy.updated_at }}, {{ strategy.updated_at }}), {{dbt_valid_to_current}})
382382
as {{ columns.dbt_valid_to }}
383383
{% endmacro %}
384384

0 commit comments

Comments
 (0)