Skip to content

Commit a8aedd4

Browse files
committed
Merge remote-tracking branch 'origin/main' into HEAD
2 parents 04aa108 + 9393f74 commit a8aedd4

112 files changed

Lines changed: 5662 additions & 2707 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/llm-fuzzer.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ jobs:
342342
sudo journalctl --system -q --facility=kern --grep "Killed process" || true
343343
344344
- name: Stack trace
345-
if: always() && steps.collectlogs.outputs.coredumps == 'true'
345+
if: always() && steps.collectlogs.outputs.coredumps == 'true' && steps.repro.outputs.found == 'true'
346346
run: |
347347
sudo coredumpctl gdb <<<"
348348
set verbose on

.unreleased/adaptive-chunking

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Backward-Incompatible Change: #9934 Remove adaptive chunking

.unreleased/fix_9902

Lines changed: 0 additions & 1 deletion
This file was deleted.

.unreleased/pr_9895

Lines changed: 0 additions & 1 deletion
This file was deleted.

.unreleased/pr_9908

Lines changed: 0 additions & 1 deletion
This file was deleted.

.unreleased/pr_9938

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Implements: #9938 Add rebuild_sparse_index function

.unreleased/pr_9955

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fixes: #9955 Fix wrong results when using Batch Sorted Merge with no first-last index on a non-leading order by column

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
**Please note: When updating your database, you should connect using `psql` with the `-X` flag to prevent any `.psqlrc` commands from accidentally triggering the load of a previous TimescaleDB version.**
44

5+
## 2.27.2 (2026-06-02)
6+
7+
This release contains bug fixes since the 2.27.1 release. We recommend that you upgrade at the next available opportunity.
8+
9+
**Bugfixes**
10+
* [#9895](https://github.com/timescale/timescaledb/pull/9895) Remove refresh policy check when adding columnstore policy
11+
* [#9902](https://github.com/timescale/timescaledb/pull/9902) Fix wrong results and crashes when grouping by columns that are not in the `SELECT` list with vectorized aggregation or columnar index scan
12+
* [#9908](https://github.com/timescale/timescaledb/pull/9908) Skip `ColumnarIndexScan` when the qual contains a SubPlan
13+
514
## 2.27.1 (2026-05-19)
615

716
This release contains performance improvements and bug fixes since the 2.27.0 release. We recommend that you upgrade at the next available opportunity.

cmake/ScriptFiles.cmake

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ set(SOURCE_FILES
4444
uuidv7.sql
4545
ts_stats.sql
4646
views.sql
47+
views_compat.sql
4748
views_experimental.sql
4849
gapfill.sql
4950
compression.sql

coverage/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ else()
7272
--rc
7373
lcov_branch_coverage=1
7474
--rc
75-
"lcov_excl_br_line=Assert\\(|Ensure\\(|ereport\\("
75+
"lcov_excl_br_line=TestAssert(Int64Eq|True)\\(|Assert\\(|Ensure\\(|ereport\\("
7676
--no-external
7777
--base-directory
7878
${CMAKE_SOURCE_DIR}

0 commit comments

Comments
 (0)