Skip to content

Commit

Permalink
Release 2.0.2
Browse files Browse the repository at this point in the history
This maintenance release contains bugfixes since the 2.0.1 release. We
deem it high priority for upgrading.

The bug fixes in this release address issues with joins, the status of
background jobs, and disabling compression. It also includes
enhancements to continuous aggregates, including improved validation
of policies and optimizations for faster refreshes when there are a
lot of invalidations.

**Minor features**
* timescale#2926 Optimize cagg refresh for small invalidations

**Bugfixes**
* timescale#2850 Set status for backend in background jobs
* timescale#2883 Fix join qual propagation for nested joins
* timescale#2884 Add GUC to control join qual propagation
* timescale#2885 Fix compressed chunk check when disabling compression
* timescale#2908 Fix changing column type of clustered hypertables
* timescale#2942 Validate continuous aggregate policy

**Thanks**
* @zeeshanshabbir93 for reporting the issue with full outer joins
* @Antiarchitect for reporting the issue with slow refreshes of
* @diego-hermida for reporting the issue about being unable to disable
  compression
* @mtin for reporting the issue about wrong job status
  • Loading branch information
erimatnor committed Feb 19, 2021
1 parent cc287f9 commit 7919a68
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 4 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,36 @@ accidentally triggering the load of a previous DB version.**

**Minor features**
* #2736 Support adding columns to hypertables with compression enabled

## 2.0.2 (2021-02-19)

This maintenance release contains bugfixes since the 2.0.1 release. We
deem it high priority for upgrading.

The bug fixes in this release address issues with joins, the status of
background jobs, and disabling compression. It also includes
enhancements to continuous aggregates, including improved validation
of policies and optimizations for faster refreshes when there are a
lot of invalidations.

**Minor features**
* #2926 Optimize cagg refresh for small invalidations

**Bugfixes**
* #2850 Set status for backend in background jobs
* #2883 Fix join qual propagation for nested joins
* #2884 Add GUC to control join qual propagation
* #2885 Fix compressed chunk check when disabling compression
* #2908 Fix changing column type of clustered hypertables
* #2942 Validate continuous aggregate policy

**Thanks**
* @zeeshanshabbir93 for reporting an issue with joins
* @Antiarchitect for reporting the issue with slow refreshes of
continuous aggregates.
* @diego-hermida for reporting the issue about being unable to disable
compression
* @mtin for reporting the issue about wrong job status

## 1.7.5 (2021-02-12)

Expand Down
1 change: 1 addition & 0 deletions sql/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ set(MOD_FILES
updates/2.0.0-rc3--2.0.0-rc4.sql
updates/2.0.0-rc4--2.0.0.sql
updates/2.0.0--2.0.1.sql
updates/2.0.1--2.0.2.sql
)

set(MODULE_PATHNAME "$libdir/timescaledb-${PROJECT_VERSION_MOD}")
Expand Down
2 changes: 2 additions & 0 deletions sql/updates/2.0.1--2.0.2.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- set compressed_chunk_id to NULL for dropped chunks
UPDATE _timescaledb_catalog.chunk SET compressed_chunk_id = NULL WHERE dropped = true AND compressed_chunk_id IS NOT NULL;
3 changes: 0 additions & 3 deletions sql/updates/latest-dev.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@

-- set compressed_chunk_id to NULL for dropped chunks
UPDATE _timescaledb_catalog.chunk SET compressed_chunk_id = NULL WHERE dropped = true AND compressed_chunk_id IS NOT NULL;

2 changes: 1 addition & 1 deletion version.config
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version = 2.1.0-dev
update_from_version = 2.0.1
update_from_version = 2.0.2

0 comments on commit 7919a68

Please sign in to comment.