Skip to content

Commit

Permalink
Try to figure out what the right None semantics are.
Browse files Browse the repository at this point in the history
  • Loading branch information
VersusFacit committed Aug 29, 2024
1 parent 1887208 commit 32ad646
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dbt/include/snowflake/macros/relations/table/create.sql
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@
{%- elif is_temporary -%}
{{ return('temporary') }}

{# -- Always supply transient on table create DDL unless user specifically sets transient to false. #}
{%- elif config.get('transient', default=true) -%}
{# -- Always supply transient on table create DDL unless user specifically sets transient to false or None. #}
{%- elif config.get('transient') != None or config.get('transient') == True -%}
{{ return('transient') }}

{%- else -%}
Expand Down

0 comments on commit 32ad646

Please sign in to comment.