Skip to content

Commit

Permalink
Dynamic default incremental_strategy for dbt-postgres
Browse files Browse the repository at this point in the history
  • Loading branch information
dbeatty10 authored Dec 14, 2023
1 parent aaf88e9 commit b5274a8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions website/docs/reference/resource-configs/postgres-configs.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ In dbt-postgres, the following incremental materialization strategies are suppor

<VersionBlock lastVersion="1.5">

- `append` (default)
- `delete+insert`
- `append` (default when `unique_key` is not defined)
- `delete+insert` (default when `unique_key` is defined)

</VersionBlock>

<VersionBlock firstVersion="1.6">

- `append` (default)
- `append` (default when `unique_key` is not defined)
- `merge`
- `delete+insert`
- `delete+insert` (default when `unique_key` is defined)

</VersionBlock>

Expand Down

0 comments on commit b5274a8

Please sign in to comment.