From febc2208965476c1e042e29c56893c319163b9db Mon Sep 17 00:00:00 2001 From: Geoff Genz Date: Fri, 2 Feb 2024 09:26:40 -0700 Subject: [PATCH] Update changelog --- CHANGELOG.md | 5 +++++ README.md | 3 +-- dbt/adapters/clickhouse/__version__.py | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 35f64950..1cbef238 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +### Release [1.7.2], 2024-02-09 +#### Bug Fix +- Fixed an issue where Materialize Views would break with a custom schema. Thanks to [Rory Sawyer](https://github.com/SoryRawyer) +for the PR! + ### Release [1.7.1], 2023-12-13 #### Bug Fixes - Some models with LIMIT clauses were broken in recent releases. This has been fixed. Thanks to diff --git a/README.md b/README.md index 8022f214..8e413f67 100644 --- a/README.md +++ b/README.md @@ -156,8 +156,7 @@ operations, because they don't require rewriting ClickHouse data parts. The inc incremental materializations that perform significantly better than the "legacy" strategy. However, there are important caveats to using this strategy: - Lightweight deletes must be enabled on your ClickHouse server using the setting `allow_experimental_lightweight_delete=1` or you must set `use_lw_deletes=true` in your profile (which will enable that setting for your dbt sessions) -- As suggested by the setting name, lightweight delete functionality is still experimental and there are still known issues that must be resolved before the feature is considered production ready, -so usage should be limited to datasets that are easily recreated +- Lightweight deletes are now production ready, but there may be performance and other problems on ClickHouse versions earlier than 23.3. - This strategy operates directly on the affected table/relation (with creating any intermediate or temporary tables), so if there is an issue during the operation, the data in the incremental model is likely to be in an invalid state - When using lightweight deletes, dbt-clickhouse enabled the setting `allow_nondeterministic_mutations`. In some very rare cases using non-deterministic incremental_predicates diff --git a/dbt/adapters/clickhouse/__version__.py b/dbt/adapters/clickhouse/__version__.py index 1f796f9b..41aad93f 100644 --- a/dbt/adapters/clickhouse/__version__.py +++ b/dbt/adapters/clickhouse/__version__.py @@ -1 +1 @@ -version = '1.7.1' +version = '1.7.2'