Skip to content

Commit

Permalink
Release 2.10.3
Browse files Browse the repository at this point in the history
**Bugfixes**
* #5583 Fix parameterization in DecompressChunk path generation
* #5602 Fix broken CAgg with JOIN repair function
  • Loading branch information
fabriziomello committed Apr 26, 2023
1 parent 676b5a7 commit 5e62e82
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,20 @@ accidentally triggering the load of a previous DB version.**
* #5442 Decompression may have lost DEFAULT values
* #5459 Fix issue creating dimensional constraints
* #5570 Improve interpolate error message on datatype mismatch
* #5583 Fix parameterization in DecompressChunk path generation
* #5602 Fix broken CAgg with JOIN repair function
* #5573 Fix unique constraint on compressed tables

**Thanks**
* @kovetskiy and @DZDomi for reporting peformance regression in Realtime Continuous Aggregates
* @ollz272 for reporting an issue with interpolate error messages


## 2.10.3 (2023-04-26)

**Bugfixes**
* #5583 Fix parameterization in DecompressChunk path generation
* #5602 Fix broken CAgg with JOIN repair function


## 2.10.2 (2023-04-20)

**Bugfixes**
Expand Down
8 changes: 5 additions & 3 deletions sql/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,12 @@ set(MOD_FILES
updates/2.9.2--2.9.3.sql
updates/2.9.3--2.10.0.sql
updates/2.10.0--2.10.1.sql
updates/2.10.1--2.10.2.sql)
updates/2.10.1--2.10.2.sql
updates/2.10.2--2.10.3.sql)

# The downgrade file to generate a downgrade script for the current version, as
# specified in version.config
set(CURRENT_REV_FILE reverse-dev.sql)
set(CURRENT_REV_FILE 2.10.3--2.10.2.sql)

# Files for generating old downgrade scripts. This should only include files for
# downgrade from one version to its previous version since we do not support
Expand All @@ -76,7 +77,8 @@ set(OLD_REV_FILES
2.9.3--2.9.2.sql
2.10.0--2.9.3.sql
2.10.1--2.10.0.sql
2.10.2--2.10.1.sql)
2.10.2--2.10.1.sql
2.10.3--2.10.2.sql)

set(MODULE_PATHNAME "$libdir/timescaledb-${PROJECT_VERSION_MOD}")
set(LOADER_PATHNAME "$libdir/timescaledb")
Expand Down
Empty file added sql/updates/2.10.2--2.10.3.sql
Empty file.
Empty file added sql/updates/2.10.3--2.10.2.sql
Empty file.

0 comments on commit 5e62e82

Please sign in to comment.