Back to Clickhouse

2025 Changelog

docs/changelogs/v25.4.6.67-stable.md

26.4.1.1-new10.3 KB
Original Source

2025 Changelog

ClickHouse release v25.4.6.67-stable (407b1e14129) FIXME as compared to v25.4.5.24-stable (0f9619ed591)

Backward Incompatible Change

Improvement

  • Backported in #80769: Adjust compatibility values for max_merge_delayed_streams_for_parallel_write. #80760 (Azat Khuzhin).
  • Backported in #81228: Upgrade libarchive to 3.7.9 to address: CVE-2024-20696 CVE-2025-25724 CVE-2024-48958 CVE-2024-57970 CVE-2025-1632 CVE-2024-48957 CVE-2024-48615. #81174 (larryluogit).
  • Backported in #81315: MemoryResidentWithoutPageCache provides the amount of physical memory used by the server process, excluding userspace page cache, in bytes. This provides a more accurate view of actual memory usage when userspace page cache is utilized. When userspace page cache is disabled, this value equals MemoryResident. #81233 (Jayme Bird).

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

  • Backported in #80475: Analyzer: Fix column projection name after column type promotion in join. Closes #63345. #63519 (Dmitry Novik).
  • Backported in #79892: Fix some cases where secondary index was not applied with analyzer. Fixes #65607 , fixes #69373. #78485 (Nikolai Kochetov).
  • Backported in #80531: Fix the sorting order of the NaNs with a negative sign bit. #79847 (Pervakov Grigorii).
  • Backported in #80456: Fix logical error in Arrow format with LowCardinality(FixedString). #80156 (Pavel Kruglov).
  • Backported in #80323: Fix incorrect count optimization for string prefix filters like LIKE 'ab_c%' when using implicit projections. This fixes #80250. #80261 (Amos Bird).
  • Backported in #80578: Perform less strict metadata checks for RMT in the Replicated database. Closes #80296. #80298 (Nikolay Degterinsky).
  • Backported in #80961: Disable filter-push-down for the predicate with a non-deterministic function in case the query plan step changes the number of rows. Fixes #40273. #80329 (Nikolai Kochetov).
  • Backported in #80556: Fixed refreshable materialized view DROP getting stuck if the view was paused using SYSTEM STOP REPLICATED VIEW. #80543 (Michael Kolupaev).
  • Backported in #80671: Fix 'Cannot find column' with constant tuple in distributed query. #80596 (Yakov Olkhovskiy).
  • Backported in #80753: Fix possible crash in case of dictionary registration failed (when CREATE DICTIONARY failed with CANNOT_SCHEDULE_TASK it is possible to leave dangling pointer in the dictionary registry, which later lead to crash). #80714 (Azat Khuzhin).
  • Backported in #81141: Fix wrong result type of comparison functions with Tuple(Dynamic) and String that led to logical error. #80728 (Pavel Kruglov).
  • Backported in #80899: Fix THERE_IS_NO_COLUMN error for distributed queries with IN cte. Fixes #75032. #80757 (Nikolai Kochetov).
  • Backported in #80969: Fix excessive number of files (leads to excessive memory usage) for external ORDER BY. #80777 (Azat Khuzhin).
  • Backported in #80870: Fix crash in Kafka due to get_member_id() was creating std::string from NULL (it was likely an issue only in case of connection to broker had been failed). #80793 (Azat Khuzhin).
  • Backported in #80910: Properly wait consumers before shutting down Kafka engine (active consumers after shutdown can trigger various debug assertions and also may read data from brokers in background after table has been dropped/detached). #80795 (Azat Khuzhin).
  • Backported in #80934: Fix memory accounting for Iceberg metadata files cache. #80904 (Azat Khuzhin).
  • Backported in #81059: Fix wrong partitioning with nullable partition key. #80913 (Pervakov Grigorii).
  • Backported in #81097: Fix the logical error in the nested functions with named windows. #80926 (Pervakov Grigorii).
  • Backported in #81001: Fix extremes for nullable and floating-point columns. #80970 (Pervakov Grigorii).
  • Backported in #80985: Fix possible crash while querying from system.tables (likely the case under memory pressure). #80976 (Azat Khuzhin).
  • Backported in #81008: Fix atomic rename with truncate for files which compression is inferred from their file extension. #80979 (Pablo Marcos).
  • Backported in #81079: Now ClickHouse will ignore errors and unexpected responses from data lake catalogs in SHOW TABLES query. Fixes #79725. #81046 (alesapin).
  • Backported in #81278: Fix parsing of DateTime64 from integers in JSONExtract and JSON type parsing. #81050 (Pavel Kruglov).
  • Backported in #81153: Reflect date_time_input_format setting in schema inference cache. #81052 (Pavel Kruglov).
  • Backported in #81205: Fixed Too large size ... passed to allocator errors or possible crashes on inserts via http protocol with text formats (JSON, Values, ...) and omitted Enum fields. #81145 (Anton Popov).

NOT FOR CHANGELOG / INSIGNIFICANT