mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-14 01:10:37 +08:00
Release 2.13.1
This release contains bug fixes since the 2.13.0 release. We recommend that you upgrade at the next available opportunity. **Bugfixes** * #6365 Use numrows_pre_compression in approximate row count * #6377 Use processed group clauses in PG16 * #6384 Change bgw_log_level to use PGC_SUSET * #6393 Disable vectorized sum for expressions. * #6408 Fix groupby pathkeys for gapfill in PG16 * #6428 Fix index matching during DML decompression * #6439 Fix compressed chunk permission handling on PG16 * #6443 Fix lost concurrent CAgg updates * #6454 Fix unique expression indexes on compressed chunks * #6465 Fix use of freed path in decompression sort logic **Thanks** * @MA-MacDonald for reporting an issue with gapfill in PG16 * @aarondglover for reporting an issue with unique expression indexes on compressed chunks * @adriangb for reporting an issue with security barrier views on pg16
This commit is contained in:
parent
c8b0f83a31
commit
a69c4682ce
@ -1 +0,0 @@
|
||||
Fixes: #6365 Use numrows_pre_compression in approximate row count
|
@ -1 +0,0 @@
|
||||
Fixes: #6377 Use processed group clauses in PG16
|
@ -1 +0,0 @@
|
||||
Fixes: #6384 Change bgw_log_level to use PGC_SUSET
|
@ -1,2 +0,0 @@
|
||||
Fixes: #6393 Disable vectorized sum for expressions.
|
||||
|
@ -1,2 +0,0 @@
|
||||
Fixes: #6408 Fix groupby pathkeys for gapfill in PG16
|
||||
Thanks: @MA-MacDonald for reporting an issue with gapfill in PG16
|
@ -1 +0,0 @@
|
||||
Fixes: #6428 Fix index matching during DML decompression
|
@ -1 +0,0 @@
|
||||
Fixes: #6443 Fix lost concurrent CAgg updates
|
@ -1 +0,0 @@
|
||||
Fixes: #6465 Fix use of freed path in decompression sort logic
|
@ -1,3 +0,0 @@
|
||||
Fixes: #6439 Fix compressed chunk permission handling on PG16
|
||||
|
||||
Thanks: @adriangb for reporting an issue with security barrier views on pg16
|
@ -1,2 +0,0 @@
|
||||
Fixes: #6454 Fix unique expression indexes on compressed chunks
|
||||
Thanks: @aarondglover for reporting an issue with unique expression indexes on compressed chunks
|
23
CHANGELOG.md
23
CHANGELOG.md
@ -4,6 +4,29 @@
|
||||
`psql` with the `-X` flag to prevent any `.psqlrc` commands from
|
||||
accidentally triggering the load of a previous DB version.**
|
||||
|
||||
## 2.13.1 (2024-01-08)
|
||||
|
||||
This release contains bug fixes since the 2.13.0 release.
|
||||
We recommend that you upgrade at the next available opportunity.
|
||||
|
||||
**Bugfixes**
|
||||
* #6365 Use numrows_pre_compression in approximate row count
|
||||
* #6377 Use processed group clauses in PG16
|
||||
* #6384 Change bgw_log_level to use PGC_SUSET
|
||||
* #6393 Disable vectorized sum for expressions.
|
||||
* #6405 Read CAgg watermark from materialized data
|
||||
* #6408 Fix groupby pathkeys for gapfill in PG16
|
||||
* #6428 Fix index matching during DML decompression
|
||||
* #6439 Fix compressed chunk permission handling on PG16
|
||||
* #6443 Fix lost concurrent CAgg updates
|
||||
* #6454 Fix unique expression indexes on compressed chunks
|
||||
* #6465 Fix use of freed path in decompression sort logic
|
||||
|
||||
**Thanks**
|
||||
* @MA-MacDonald for reporting an issue with gapfill in PG16
|
||||
* @aarondglover for reporting an issue with unique expression indexes on compressed chunks
|
||||
* @adriangb for reporting an issue with security barrier views on pg16
|
||||
|
||||
## 2.13.0 (2023-11-28)
|
||||
|
||||
This release contains performance improvements, an improved hypertable DDL API
|
||||
|
@ -185,9 +185,9 @@ function(generate_downgrade_script)
|
||||
# Save the current PROJECT_VERSION_MOD
|
||||
set(SAVED_PROJECT_VERSION_MOD ${PROJECT_VERSION_MOD})
|
||||
# To use PROJECT_VERSION_MOD variable as a target version in downgrade scripts
|
||||
# we should set it as the UPDATE_FROM_VERSION because it means the target version
|
||||
# we should set it as the DOWNGRADE_TO_VERSION because it means the target version
|
||||
# when executing the downgrade scripts
|
||||
set(PROJECT_VERSION_MOD ${UPDATE_FROM_VERSION})
|
||||
set(PROJECT_VERSION_MOD ${DOWNGRADE_TO_VERSION})
|
||||
generate_script(
|
||||
VERSION
|
||||
${_downgrade_TARGET_VERSION}
|
||||
|
@ -41,7 +41,8 @@ set(MOD_FILES
|
||||
updates/2.11.2--2.12.0.sql
|
||||
updates/2.12.0--2.12.1.sql
|
||||
updates/2.12.1--2.12.2.sql
|
||||
updates/2.12.2--2.13.0.sql)
|
||||
updates/2.12.2--2.13.0.sql
|
||||
updates/2.13.0--2.13.1.sql)
|
||||
|
||||
# The downgrade file to generate a downgrade script for the current version, as
|
||||
# specified in version.config
|
||||
|
0
sql/updates/2.13.0--2.13.1.sql
Normal file
0
sql/updates/2.13.0--2.13.1.sql
Normal file
@ -1,3 +1,3 @@
|
||||
version = 2.14.0-dev
|
||||
update_from_version = 2.13.0
|
||||
update_from_version = 2.13.1
|
||||
downgrade_to_version = 2.13.0
|
||||
|
Loading…
x
Reference in New Issue
Block a user