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.2 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.

**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

**Thanks**
* @zeeshanshabbir93 for reporting an issue with joins
* @diego-hermida for reporting the issue about being unable to disable
  compression
* @mtin for reporting the issue about wrong job status
* @zeeshanshabbir93 for reporting the issue with full outer joins
  • Loading branch information
erimatnor committed Feb 18, 2021
1 parent 00b84d2 commit e01f751
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Expand Up @@ -9,12 +9,22 @@ 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)

**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

**Thanks**
* @zeeshanshabbir93 for reporting an issue with joins
* @diego-hermida for reporting the issue about being unable to disable
compression
* @mtin for reporting the issue about wrong job status
* @zeeshanshabbir93 for reporting the issue with full outer joins

## 1.7.5 (2021-02-12)

Expand Down
1 change: 1 addition & 0 deletions sql/CMakeLists.txt
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
3 changes: 0 additions & 3 deletions sql/updates/latest-dev.sql
@@ -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
@@ -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 e01f751

Please sign in to comment.