Skip to content

Commit

Permalink
Release 2.9.2
Browse files Browse the repository at this point in the history
This release contains bug fixes since the 2.9.1 release.
We recommend that you upgrade at the next available opportunity.

**Bugfixes**
* #5114 Fix issue with deleting data node and dropping the database on multi-node
* #5133 Fix creating a CAgg on a CAgg where the time column is in a different order of the original hypertable
* #5152 Fix adding column with NULL constraint to compressed hypertable
* #5170 Fix CAgg on CAgg variable bucket size validation
* #5180 Fix default data node availability status on multi-node
* #5181 Fix ChunkAppend and ConstraintAwareAppend with TidRangeScan child subplan
* #5193 Fix repartition behavior when attaching data node on multi-node
  • Loading branch information
sb230132 committed Jan 23, 2023
1 parent d2254cb commit f211294
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
17 changes: 14 additions & 3 deletions CHANGELOG.md
Expand Up @@ -8,15 +8,26 @@ 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-26)

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

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

**Thanks**
* @ikkala for reporting error when adding column with NULL constraint to compressed hypertable
* @salquier-appvizer for reporting error on CAgg on CAgg using different column order on the original hypertable
* @ikkala for reporting error when adding column with NULL constraint to compressed hypertable
* @ssmoss, @adbnexxtlab and @ivanzamanov for reporting error on CAgg on CAgg variable bucket size validation
* @ronnyas for reporting a bug "Invalid child of chunk" on specific ctid filtering

## 2.9.1 (2022-12-23)

Expand Down
3 changes: 2 additions & 1 deletion sql/CMakeLists.txt
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
@@ -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 f211294

Please sign in to comment.