Back to Clickhouse

2025 Changelog

docs/changelogs/v25.5.5.19-stable.md

26.4.1.1-new3.4 KB
Original Source

2025 Changelog

ClickHouse release v25.5.5.19-stable (c7635f09ae1) FIXME as compared to v25.5.4.38-stable (304d67604cf)

Improvement

  • Backported in #82594: Keeper improvement: add new config keeper_server.cleanup_old_and_ignore_new_acl. If enabled, all nodes will have their ACLs cleared while ACL for new requests will be ignored. If the goal is to completely remove ACL from nodes, it's important to leave the config enabled until a new snapshot is created. #82496 (Antonio Andelic).
  • Backported in #82860: After https://github.com/ClickHouse/ClickHouse/pull/73834, the X-ClickHouse-Progress and X-ClickHouse-Summary header formats have been modified to omit zero values. This PR intends to return the previous behaviour for X-ClickHouse-Summary only, because it makes sense. #82727 (Nikita Mikhaylov).
  • Backported in #82926: Keeper improvement: support specific permissions for world:anyone ACL. #82755 (Antonio Andelic).

Bug Fix (user-visible misbehavior in an official stable release)

  • Backported in #82779: Fix filter analysis when only a constant alias column is used in the query. Fixes #79448. #82037 (Dmitry Novik).
  • Backported in #82559: Fix possible deadlock for remote queries when server is under memory pressure. #82160 (Kirill).
  • Backported in #82688: Fix LOGICAL_ERROR during row policy expression analysis for correlated columns. #82618 (Dmitry Novik).
  • Backported in #82735: Functions trim{Left,Right,Both} now support input strings of type "FixedString(N)". For example, SELECT trimBoth(toFixedString('abc', 3), 'ac') now works. #82691 (Robert Schulze).
  • Backported in #82800: Fix deserialization of groupArraySample/groupArrayLast in case of empty elements (deserialization could skip part of the binary if the input was empty, this can lead to corruption during data read and UNKNOWN_PACKET_FROM_SERVER in TCP protocol). This does not affect numbers and date time types. #82763 (Pedro Ferreira).

Build/Testing/Packaging Improvement