diff --git a/website/docs/reference/resource-configs/postgres-configs.md b/website/docs/reference/resource-configs/postgres-configs.md index d4f6958ae27..2e603ba8111 100644 --- a/website/docs/reference/resource-configs/postgres-configs.md +++ b/website/docs/reference/resource-configs/postgres-configs.md @@ -150,9 +150,10 @@ models: ### Limitations +Below are current limitations that we hope to address in a future release. #### Changing materialization to and from "materialized_view" -Swapping an already materialized model to be a materialized view and vise versa. The workaround is the manually drop the existing materialization in the data warehouse before calling `dbt run` again. +Swapping an already materialized model to be a materialized view and vise versa. The workaround is the manually drop the existing materialization in the data warehouse before calling `dbt run` again. Normally, re-running with the `--full-refresh` flag would resolve this, but not in this case. To illustrate, assume for the example model below, `my_model`, that it has already been materialized to the underlying data platform via `dbt run`. If a user then changes the model's config to be `materialized="materialized_view"`, they will get an error. The workaround is to execute `DROP TABLE my_model` on the data warehouse before trying the model again. diff --git a/website/docs/reference/resource-configs/redshift-configs.md b/website/docs/reference/resource-configs/redshift-configs.md index 00dfe517cea..0991afc21db 100644 --- a/website/docs/reference/resource-configs/redshift-configs.md +++ b/website/docs/reference/resource-configs/redshift-configs.md @@ -138,6 +138,7 @@ models: ### Limitations +Below are current limitations that we hope to address in a future release. #### Changing materialization from "materialized_view" to table or view Swapping a materialized view to be a table or view is not supported. The workaround is to manually drop the existing materialized view in the data warehouse before calling `dbt run` again. diff --git a/website/docs/reference/resource-configs/snowflake-configs.md b/website/docs/reference/resource-configs/snowflake-configs.md index 154f8795eea..da110fd50df 100644 --- a/website/docs/reference/resource-configs/snowflake-configs.md +++ b/website/docs/reference/resource-configs/snowflake-configs.md @@ -362,7 +362,7 @@ The following examples create a dynamic table: config( materialized = 'dynamic_table', warehouse = 'MY_WAREHOUSE', - target_lag = '10 min', + target_lag = '10 minutes', ) }} ``` @@ -376,7 +376,7 @@ models: path: materialized: dynamic_table warehouse: MY_WAREHOUSE - target_lag: '10 min' + target_lag: '10 minutes' ```