Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
Release 2.9.2

This release contains bug fixes since the 2.9.1 release.
We recommend that you upgrade at the next available opportunity.

**Bugfixes**
* timescale#5152 Fix adding column with NULL constraint to compressed hypertable
* timescale#5133 Fix CAgg on CAgg different column order on the original hypertable
* timescale#5114 Fix issue with deleting data node and dropping database
* timescale#5170 Fix CAgg on CAgg variable bucket size validation
* timescale#5180 Fix default data node availability status
* timescale#5181 Fix ChunkAppend, ConstraintAwareAppend child subplan
* timescale#5193 Fix repartition behavior when attaching data node
  • Loading branch information
sb230132 committed Jan 19, 2023
1 parent 1676259 commit 23a4563
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,20 @@ accidentally triggering the load of a previous DB version.**

**Bugfixes**
* #4926 Fix corruption when inserting into compressed chunks
* #5114 Fix issue with deleting data node and dropping database
* #5133 Fix CAgg on CAgg using different column order on the original hypertable

## 2.9.2 (2023-01-18)

This release contains bug fixes since the 2.9.1 release.
We recommend that you upgrade at the next available opportunity.

**Bugfixes**
* #5152 Fix adding column with NULL constraint to compressed hypertable
* #5133 Fix CAgg on CAgg different column order on the original hypertable
* #5114 Fix issue with deleting data node and dropping database
* #5170 Fix CAgg on CAgg variable bucket size validation
* #5180 Fix default data node availability status
* #5181 Fix ChunkAppend, ConstraintAwareAppend child subplan
* #5193 Fix repartition behavior when attaching data node

**Thanks**
* @ikkala for reporting error when adding column with NULL constraint to compressed hypertable
Expand Down
3 changes: 2 additions & 1 deletion sql/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ set(MOD_FILES
updates/2.7.2--2.8.0.sql
updates/2.8.0--2.8.1.sql
updates/2.8.1--2.9.0.sql
updates/2.9.0--2.9.1.sql)
updates/2.9.0--2.9.1.sql
updates/2.9.1--2.9.2.sql)

# The downgrade file to generate a downgrade script for the current version, as
# specified in version.config
Expand Down
Empty file added sql/updates/2.9.1--2.9.2.sql
Empty file.
2 changes: 1 addition & 1 deletion version.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version = 2.10.0-dev
update_from_version = 2.9.1
update_from_version = 2.9.2
downgrade_to_version = 2.9.1

0 comments on commit 23a4563

Please sign in to comment.