Documentación offline PostgreSQL REL_17_STABLE
por @raupulus

Release 17.11

REL_17_STABLE Ver versión oficial en línea Licencia PostgreSQLDescargado el 2026-09-15 Bundle .md (7.3 MB) ↓

En esta página

Release 17.11#

Release date:

2026-08-13

This release contains a variety of fixes from 17.10. For information about new features in major release 17, see Release 17.

Migration to Version 17.11#

A dump/restore is not required for those running 17.X.

However, the first three security entries below describe configuration adjustments and data cleanups that you may need to make after updating.

Also, if you use contrib/btree_gist or contrib/ltree, you may need to reindex indexes made with those extensions; see the relevant entries below.

Also, if you are upgrading from a version earlier than 17.6, see Release 17.6.

Changes#

  • Restrict logical decoding output plugins to the set specified by a new server parameter output_plugin_libraries (Jacob Champion)

Previously, a replication user could select any loadable library for logical decoding, allowing exploits of various sorts. To allow locking this down without breaking setups that worked before, introduce a whitelist of allowed output plugins.

By default, only the output plugins shipped as part of PostgreSQL (pgoutput and test_decoding) are included in output_plugin_libraries. Installations that rely on other output plugins must add them after updating the server, for example

  output_plugin_libraries = 'pgoutput, test_decoding, my_trusted_decoder'

Additionally, pg_upgrade --check will fail if the output_plugin_libraries parameter on the new cluster does not permit the plugins of logical replication slots on the old cluster, when migrating from versions 17 and later. Make necessary additions to the new cluster's setting before performing pg_upgrade.

The PostgreSQL Project thanks Vladimir Tokarev and Yu Kunpeng for reporting this problem. (CVE-2026-6471)

  • Fix contrib/pgcrypto's PGP encryption to detect unsupported ciphers (Daniel Gustafsson)

Previously, if OpenSSL rejected the requested cipher (for example, because it is running in FIPS mode, or the legacy provider hasn't been loaded), pgcrypto failed to notice the failure and simply XOR'd the non-encrypted block with the plaintext, rendering the “encryption” trivially breakable. This will typically occur with deprecated or non-FIPS cipher algorithms (cipher-algo=blowfish/bf, twofish, cast5, or 3des).

By default, pgcrypto will now fail to decrypt any messages that were affected in this way. To allow retrieval of such data, a new option ignore-cipher-failure has been added to pgp_pub_decrypt() and pgp_sym_decrypt(). Setting ignore-cipher-failure=1 will restore their previous behavior, allowing the faulty encryption wrapper to be stripped off:

  pgp_sym_decrypt(encrypted_column, any key, 'ignore-cipher-failure=1')

Once the affected messages are identified and stripped of their wrappers, they can then be re-encrypted with a modern algorithm. It is important however that the behavior of OpenSSL be the same as it was when the faulty messages were created: if the set of unsupported algorithms is not the same, this approach will not work. See the documentation for ignore-cipher-failure.

The PostgreSQL Project thanks Shishir Sharma for reporting this problem. (CVE-2026-14663)

  • Fix psql to skip in-line data following a scripted COPY ... FROM STDIN command, even if the COPY fails before sending PGRES_COPY_IN (Tom Lane)

Previously, if a COPY command failed at startup (for instance, because the target table doesn't exist) psql would not realize that and would proceed to read the following in-line data as SQL commands. In the best case that's wrong and in the worst case it's a SQL-injection hazard. Teach psql to recognize syntactically-valid COPY ... FROM STDIN commands and to skip data on its own authority if the server doesn't respond with PGRES_COPY_IN.

While this fix is unlikely to affect any production SQL scripts, test scripts might intentionally exercise failing COPY ... FROM STDIN commands. Those will need to gain a \. data terminator line after each such command.

The PostgreSQL Project thanks Alexander Lakhin for reporting this problem. (CVE-2026-6464)

  • Cross-check the output row type of a portal running EXECUTE or FETCH (Robert Haas)

EXECUTE and FETCH use two portals: an outer one for the statement itself, and an inner one running the query being executed on its behalf. It was previously possible to make the declared row types of the two portals diverge, leading to server memory disclosure and arbitrary code execution.

The PostgreSQL Project thanks Ben Morris (in collaboration with Claude and Anthropic Research) and Peter Geoghegan for reporting this problem. (CVE-2026-16239)

  • Fix buffer overrun with long time zone abbreviation in to_char() (Tom Lane)

This can easily crash the server, and exploits leading to arbitrary code execution have been reported.

The PostgreSQL Project thanks Hcamael, Amjad Shahzad, Tan Zhen of AntAISecurityLab, Tomer Fichman, Zheng Yu, Amy Burnett (OpenAI Codex Security), Rick de Jager, Heewon Song, Sylvie Mayer, Aleksander Alekseev, and Hillai Ben Sasson for reporting this problem. (CVE-2026-14669)

  • Fix buffer overrun in regexp match/split functions (Masahiko Sawada)

If passed invalidly-encoded data, these functions could write past the end of their conversion buffer.

The PostgreSQL Project thanks Francesco Verardi for reporting this problem. (CVE-2026-14664)

  • Harden the ascii() function against invalid input (Michael Paquier)

By supplying invalidly-encoded input, this function could be coaxed to read and return a few bytes of data that it shouldn't. In assert-enabled builds, its assertions could be triggered too.

The PostgreSQL Project thanks Hcamael for reporting this problem. (CVE-2026-18024)

  • Make scalarineqsel() check that a constant it expects to be of type tid actually is (Tom Lane)

This expectation will hold for all the built-in operators that use this estimator, but a maliciously-constructed operator could violate it, leading to a crash or server memory disclosure.

The PostgreSQL Project thanks Hcamael for reporting this problem. (CVE-2026-14668)

  • Harden tsvector and tsquery code against overly long values (both individual lexemes and total vector/query length) (Tom Lane)

The documented limits were not enforced in all code paths.

The PostgreSQL Project thanks Yuhang Wu, Zhenpeng Lin, Zheng Yu, and Hcamael for reporting these problems. (CVE-2026-14662)

  • Fix various places that mistakenly assumed they would not have to deal with more than FUNC_MAX_ARGS function arguments (Tom Lane)

Notably, the server's actual limit on the number of arguments to an aggregate function is FUNC_MAX_ARGS - 1, but the parser failed to enforce that, creating hazards downstream.

The PostgreSQL Project thanks Zheng Yu, ylwangtju, and Masahiko Sawada for reporting these problems. (CVE-2026-14679)

  • Reject calls from SQL to functions that take or return type internal (Tom Lane)

The existing defenses against doing this have been shown to be insufficient, so add more explicit checks.

The PostgreSQL Project thanks Amy Burnett (OpenAI Codex Security) for reporting this problem. (CVE-2026-14680)

  • Preserve the ownership of extended statistics objects when they are rebuilt by ALTER TABLE (Masahiko Sawada)

Previously, the role running ALTER TABLE gained ownership of such objects, but that seems inappropriate.

The PostgreSQL Project thanks Noah Misch for reporting this problem. (CVE-2026-6469)

  • When deparsing an EXTRACT() function call, quote the field name if needed (Nathan Bossart)

The parser accepts any string literal as a field name in EXTRACT(), deferring validation to execution. If the call is stored and deparsed (for example during pg_dump), the string body was regurgitated verbatim, allowing SQL injection.

The PostgreSQL Project thanks Ben Morris (in collaboration with Claude and Anthropic Research) for reporting this problem. (CVE-2026-15741)

  • Check for USAGE privilege on data types in places that formerly failed to check that (Nathan Bossart)

CREATE TYPE AS RANGE did not check, nor did ALTER TABLE OF, nor did commands that create stored expressions. These omissions allowed roles without USAGE privilege to nonetheless create objects depending on the type, possibly blocking the type's owner from changing the type later.

The PostgreSQL Project thanks Jingzhou Fu for reporting this problem. (CVE-2026-6470)

  • Invalidate role-dependent cached plans after role changes (Ilya Staroverov, Shinya Kato, Nathan Bossart)

Role membership, role attribute, and database ownership changes may impact the expected behavior of row-level security policies, but previously we'd continue to use cached plans that were made according to the old state of affairs.

The PostgreSQL Project thanks Ilya Staroverov and Shinya Kato for reporting this problem. (CVE-2026-14666)

  • Reject GSSEncRequest after direct SSL connection (Michael Paquier)

After establishing a TLS-encrypted connection, the server would still accept a request for GSSAPI encryption. If that succeeded, the connection would proceed using TLS encryption, but it would look like a GSS connection to the pg_hba rules. Thus, a pg_hba policy intending to disallow TLS would not be enforced correctly.

The PostgreSQL Project thanks p4p3r for reporting this problem. (CVE-2026-14681)

  • Make mock SCRAM authentication secrets more plausible (Nathan Bossart)

If a SCRAM login is attempted against a role that doesn't exist or doesn't have a SCRAM secret, we generate a mock secret and carry out the authentication handshake anyway, to avoid revealing these facts to an attacker. But the mock secret was made with a fixed iteration count, which in itself can be an observable response discrepancy. Use the configuration setting scram_iterations instead, to make the mock secret look more like the installation's real secrets.

The PostgreSQL Project thanks Radim Marek for reporting this problem. (CVE-2026-14672)

  • Fix out-of-bounds writes in ecpg applications caused by invalid bytea data received from the server (Michael Paquier)

ecpg assumed without checking that any bytea value must begin with \x. A broken or malicious server might send a string shorter than 2 bytes, resulting in memory clobber in the application.

The PostgreSQL Project thanks ylwangtju for reporting this problem. (CVE-2026-16241)

  • Do not do backquote expansion on the argument of psql's \unrestrict command (Nathan Bossart)

This oversight in the fix for CVE-2025-8714 allows a malicious server to inject shell commands into plain-text dump output that will be run at restore time on the machine running psql, the exact scenario that CVE-2025-8714 intended to prevent.

The PostgreSQL Project thanks Lucas Velgus, Filip Janus, and Daniel Bakker for reporting this problem. (CVE-2026-18408)

  • Remove pg_dump's assumption that pg_proc.protrftypes cannot have more than FUNC_MAX_ARGS entries (Tom Lane)

Since there could be entries for both input and output arguments, it's feasible for this array's length to exceed FUNC_MAX_ARGS (which constrains only input arguments). Even if that were not so, pg_dump cannot assume that the server was built with the same value of FUNC_MAX_ARGS that it has. An overrun would lead to a memory clobber inside pg_dump.

The PostgreSQL Project thanks Masahiko Sawada for reporting this problem. (CVE-2026-19385)

  • Harden PL/Perl against “tied” Perl arrays and hashes (Tom Lane)

A tied object that doesn't behave like a regular one could lead to memory overwrite, or to constructing a corrupt result array (which would likely cause problems later).

The PostgreSQL Project thanks Hcamael for reporting this problem. (CVE-2026-14670)

  • Fix integer overflows in memory-allocation calculations in PL/Perl and PL/Tcl (Heikki Linnakangas)

This is the same type of problem as CVE-2026-6473, just in a different part of the code, and is fixed in the same way.

The PostgreSQL Project thanks the Tulya Project (Team Dhiutsa, Bitecope Technologies Private Ltd) for reporting this problem. (CVE-2026-14677)

  • Ensure that contrib/amcheck functions restrict search_path before executing index expressions (Noah Misch)

Because amcheck will run such index expressions as the owner of their tables, a caller could potentially hijack search_path-dependent functions to run arbitrary code as the table owner. By default this is not a vulnerability because only superusers are allowed to call amcheck functions; but if that privilege was granted out, it created a larger hazard than the documentation suggests.

The PostgreSQL Project thanks Yuelin Wang and Jacob Brazeal for reporting this problem. (CVE-2026-14673)

  • Fix integer overflows in contrib/fuzzystrmatch's levenshtein() and levenshtein_less_equal() functions (Nathan Bossart)

Passing large cost values to these functions could cause integer overflows, thereby producing nonsensical results, and even causing out-of-bounds writes in some cases.

The PostgreSQL Project thanks Ben Morris (in collaboration with Claude and Anthropic Research) for reporting this problem. (CVE-2026-15742)

  • Fix datatype error in contrib/pg_trgm's GiST picksplit function (Heikki Linnakangas)

This mistake resulted in reading past the end of the buffer, typically causing bad split decisions; but a crash could ensue if you're very unlucky.

The PostgreSQL Project thanks Mehmet D. Ince for reporting this problem. (CVE-2026-14678)

  • Remove the plan cache in contrib/refint (Ayush Tiwari)

This caching behavior has several serious bugs, notably that check_foreign_key() embeds the new key values in its cascade-UPDATE queries, so a cached plan reuses the originally-needed values rather than the key values that should be used. The simplest solution is to remove it.

The PostgreSQL Project thanks Hcamael for reporting this problem. (CVE-2026-14671)

  • Fix mis-handling of asynchronous reads when rescanning an asynchronous Append plan node (Alexander Korotkov, Gleb Kashkin, Etsuro Fujita)

When an upper plan node rescans an Append before having read the entire Append output, we need to discard any in-flight requests sent to external servers (by postgres_fdw for example). This was not done correctly in cases where a subplan has parameter changes or is discarded by partition pruning in the next scan. The outcome could be incorrect query results, an infinite loop, or an assertion failure.

  • Fix error in partition pruning for RANGE-partitioned tables (David Rowley)

In some cases the DEFAULT partition would be skipped when it should not be, which could lead to rows missing from query results.

  • Fix planner's nullability and strictness checks for value IN (array) expressions (Ayush Tiwari)

These checks should only succeed if the array operand is known to be non-empty, but that consideration was missed, allowing optimizations to be applied that should not be. This could result in wrong query answers if the array actually was empty.

  • Fix incorrect join removal logic (Matheus Alcantara, Richard Guo)

In edge cases, it was possible for a constant output value coming from within the nullable side of an outer join to not be replaced by NULL when it should be.

  • Add missed checks for hashability of equality comparisons on container datatypes (arrays, composites, ranges) (Andrei Lepikhov, Tom Lane)

The planner must verify hashability of the container's component type(s) before deciding it can use a hash-based plan type. This step was missed in some places, leading to “could not identify a hash function” failures at execution.

  • Fix mis-optimization of COUNT window functions that have an EXCLUDE clause or lack ORDER BY (Chengpeng Yan, David Rowley)

These window functions were treated as monotonic when they should not be, allowing wrong answers to be computed.

  • Fix ALTER COLUMN ... DROP EXPRESSION to work when there are multiple levels of partitions (Alberto Piai)

  • Fix attaching partitions of indexes that are exclusion constraints (Japin Li)

Notably, this oversight broke dump/restore of partitioned exclusion constraints.

  • Disallow renaming a rule to _RETURN (Tom Lane)

That name is reserved for a view's ON SELECT rule, but ALTER RULE allowed renaming other rules to _RETURN, causing trouble later.

  • Fix missing lock release for role membership grants in DROP OWNED BY (Jeff Davis)

This oversight resulted in a warning message, followed by retaining a lock on the membership grant until the end of the transaction.

  • Fix failure of EXPLAIN when deparsing SQL/JSON aggregates (Richard Guo)

Some plan structures resulted in “invalid JsonConstructorExpr underlying node type” errors.

  • Fix use of REINDEX CONCURRENTLY with a deferred uniqueness constraint (Nitin Motiani)

The transient index copy created during REINDEX CONCURRENTLY was incorrectly marked as enforcing immediate uniqueness, causing spurious reports of constraint violation.

  • Fix matching of localized month/day names in to_date() (Heikki Linnakangas)

The matching logic misbehaved in cases where case-folding changes the byte length of the string.

  • Fix incorrect NFC recomposition for Hangul U+11A7 (TBASE) (Diego Frias, Michael Paquier)

This character was treated as a valid T syllable, which it is not, and hence silently swallowed during normalization.

  • Avoid possible truncation of output lexemes in case-insensitive synonym dictionaries (Jeff Davis)

If folding to lower case increased the byte length of a lexeme, it was incorrectly truncated to its original byte length when emitted.

  • Defend against truncated UTF-8 characters in case-conversion logic (Jeff Davis)

  • Fix typo in hash_record_extended() (Man Zeng)

The code failed to initialize the second isnull argument passed to FunctionCallInvoke(). This is harmless for existing in-core extended hash support functions, which will not examine that value. However, extension-provided hash functions could be affected if they inspect PG_ARGISNULL(1).

  • Fix pg_get_publication_tables() to not fail if a publishable table is dropped concurrently (Bharath Rupireddy)

  • Prevent satisfies_hash_partition() from crashing with VARIADIC NULL (Robert Haas)

  • Report invalid-weight errors more cleanly and consistently in tsvector_filter() and allied functions (Ewan Young)

In particular, report weight characters that are not printable ASCII in octal form (\nnn), as charout() would render them. This avoids possibly producing an invalidly-encoded error message.

  • Fix mishandling of namespace nodes in xpath() (Michael Paquier)

This fix avoids an unexpected “could not copy node” error.

  • Fix jsonpath's .decimal method to not throw a hard error for incorrect precision or scale (Ewan Young)

Silent mode should suppress these errors, but failed to.

  • Fix NULL-pointer crash when IS JSON or similar constructs have an argument that is of string category but lacks a cast to type text (Ayush Tiwari)

There are no such data types in core PostgreSQL, but the problem is reachable with some extension types.

  • Ensure that SQL/JSON ON EMPTY / ON ERROR DEFAULT values are coerced to the correct typmod (Ewan Young)

For example, the declared precision and scale of a numeric target column were not applied to the default value.

  • Avoid machine-dependent behavior when dividing the smallest possible money value by -1 (Andrey Rachitskiy)

  • Fix crash after out-of-memory failure partway through creation of a cache entry for a text search dictionary (Tom Lane)

  • Fix memory-safety bugs in processing of incorrect ispell/hunspell dictionary files (Andrey Rachitskiy)

  • Prevent access to other sessions' temporary tables (Jim Jones, Daniil Davydov, Alexander Korotkov)

Some code paths failed to prevent this, leading to silently wrong (inconsistent) results.

  • Fix the order in which autovacuum processes databases (Rustam Khamidullin)

It was unintentionally processing databases from lowest to highest score, when it should be doing the reverse.

  • Fix memory leak in parallel vacuum worker processes (Baji Shaik)

Progress reports from a parallel worker leaked about 1kB per report, with the waste accumulating for the life of the worker process.

  • Honor query cancel and vacuum delay during GIN index posting-tree cleanup (Paul Kim, Alexander Korotkov)

The posting tree for a common value can be large, so that this missed check could allow vacuum to run for a long time before noticing an interrupt.

  • Fix possible mis-decoding of index tuples during GiST and SP-GiST index-only scans (Peter Geoghegan)

This error could lead to emitting corrupted data from an index-only scan plan. The only affected core opclass is GiST's range_ops, and it could only fail if the range column were not the first index column.

  • Ensure that the new last block of a bulk-extended table is added to its free space map promptly (Jingtang Zhang)

An off-by-one error caused the last block of a multi-block table extension to not be marked as free in the map. This would eventually get corrected by vacuum, but meanwhile the space wouldn't be used.

  • Avoid possible double-free or infinite error recovery loop in resource cleanup during transaction abort (Tom Lane)

  • When creating directories, tolerate concurrent creation of the same directory (Andrew Dunstan, Tom Lane)

  • Prevent creation of dangling object dependencies by acquiring a shared lock on any object being depended on (Bertrand Drouvot)

The shared lock will conflict with any attempt to drop the depended-on object, eliminating the race condition that formerly existed. For example, if one session drops a schema (that appears empty to it) concurrently with some other session creating a function in that schema, previously both transactions could commit, leaving an invalid function definition behind. Now, one transaction or the other will fail.

  • Fix race condition in conflict detection for SERIALIZABLE isolation mode (Peter Geoghegan)

A conflict could be missed when examining an initially-empty btree index, allowing failure of serializability due to improperly allowing conflicting transactions to commit.

  • Fix race condition in ProcSignalBarrier code (Masahiko Sawada)

This error could result in processes getting stuck, typically after reporting “still waiting for backend with PID \<nnnn> to accept ProcSignalBarrier”.

  • Fix race conditions when a set of processes that belong to the same lock group exit at the same time (Vlad Lesin)

These errors could lead to PANIC aborts, with messages such as “latch already owned”. The issue does not normally arise in regular parallel query, since the leader won't exit before seeing its workers finish; but some extensions reach the problem.

  • Fix WAL logging of operations that clear bits in tables' visibility maps (Melanie Plageman, Andres Freund)

Such VM changes were missed by the WAL summarizer, potentially leading to incorrect incremental backups. We also failed to log full-page images of such VM pages when needed, potentially allowing torn page writes to go uncorrected. This could lead to misbehavior later, such as wrong results from index-only scans.

  • Prevent WAL summarizer process from getting stuck at a timeline switch (Robert Haas)

  • Fix race with timeline selection in logical decoding during standby promotion (Bertrand Drouvot)

Logical decoding being performed on the standby could fail with a “requested WAL segment has already been removed” error. A repeat attempt would succeed, so there was no permanent problem but there was an availability hazard.

  • Avoid exposing a WAL receiver's full connection string during timeline jumps (Chao Li)

The pg_stat_wal_receiver view should show a sanitized version of the connection string, without sensitive data. But it transiently showed the full string when we re-use an existing WAL receiver.

  • Use run-time checks, not just Asserts, to verify the correct number of columns in tuples received during logical replication (Varik Matevosyan)

A malicious or buggy publisher could send inconsistent numbers of columns. While we could not find a scenario in which this would have serious ill effects, extra caution seems warranted.

  • Clean up quoting of string parameters within constructed replication commands (Tom Lane)

Various places that generate replication commands were not being adequately careful about quoting replication slot names and other parameters that need to be inserted into those commands. This could result in unexpected syntax errors in those commands. In principle, a crafted replication slot name could result in SQL injection; but such a scenario seems very unlikely to occur in practice, since replication operations can only be invoked by highly-privileged users and there is no reason for them to use a slot name coming from an untrustworthy source.

  • Fix logical decoding of empty prepared transactions (Masahiko Sawada)

A prepared transaction that did not cause any decodable updates could result in sending COMMIT/ROLLBACK PREPARED to the output plugin with no preceding PREPARE. For the built-in subscriber this breaks replication, and other plugins will probably not like it either.

  • Fix corruption of unlogged sequences after standby promotion (Fujii Masao)

Previously, if an unlogged sequence was created on the primary and replicated to a standby, accessing the sequence after promoting the standby could fail with “bad magic number in sequence” or related errors.

  • Fix cascading standby reconnect failure after archive fallback (Marco Nenciarini)

A cascading standby could fail to reconnect to its upstream standby with “requested starting point ... is ahead of the WAL flush position” after falling back to archive recovery.

  • Do not try to clear pg_database.dathasloginevt locally on a standby server (Ayush Tiwari)

Event trigger cleanup tried to perform that action on standby servers as well as the primary. That can't work on a standby, and there's no need anyway since replay of the primary's database change will soon fix it.

  • Avoid race condition while dropping obsolete replication slots (Xuneng Zhou)

An incorrect unlock and log message could occur if another session immediately re-used the dropped slot's shared-memory entry.

  • Avoid race condition while dropping ephemeral replication slots (Zhijie Hou)

The slot-releasing code performed some additional updates to the replication slot's shared-memory entry after releasing the slot. This is unsafe since another session could immediately re-use the dropped slot's shared-memory entry. Skip those updates in the case of an ephemeral slot.

  • Fix stale progress reports during logical replication table synchronization (Shinya Kato)

Previously, the pg_stat_progress_copy view in the subscriber would continue to show the initial COPY operation as active even after the data copy had finished. The stale entry remained visible until synchronization caught up with the publisher.

  • Clear base backup progress on backup failure (Chao Li)

Previously the pg_stat_progress_basebackup view would continue to show a stale progress entry after a failure, until the replication client disconnected. pg_basebackup normally disconnects immediately, but other clients might not.

  • Fix possible PANIC due to concurrent drop of pgstats entries when track_functions is enabled (Sami Imseih, Michael Paquier)

  • Clean up broken local pgstats entry after failing to obtain space for the corresponding shared hashtable entry (Niall Newman)

Failure to do this led to a null-pointer dereference the next time the local entry was used.

  • In PL/Perl, avoid NULL pointer dereference crash when working with an invalid PostgreSQL::InServer::ARRAY object (Xing Guo)

  • In PL/Python, properly check for errors when working with sequence and mapping objects (Richard Guo)

Previously, a broken object or an unhandled exception could result in a NULL pointer dereference crash.

  • In libpq, always drain all pending bytes from the SSL or GSS decryption buffer during pqReadData() (Jacob Champion)

This avoids edge cases where libpq or its calling application waits for more data to arrive on the socket, but actually all the data has already arrived.

  • Allow libpq to accept ParameterDescription messages exceeding 30000 bytes (Ning Sun)

Previously, this message type was not among those that libpq's validity heuristics believed could be long. The limit resulted in failure for prepared queries having more than 7498 parameters, which is unlikely but supported.

  • Reject multiple descriptor header items in ecpg's GET/SET DESCRIPTOR statements (Masashi Kamura)

Previously the grammar allowed this syntax, but broken C code was generated. Adjust the grammar and the documentation to allow only one header item.

  • Make line widths match in psql's expanded aligned output format (Pavel Stehule)

When the table's data rows are narrower than the record header lines, widen the data rows to match the headers, avoiding unsightly output.

  • Fix psql's privilege check for showing database size in \l+ (Christoph Berg)

The underlying server function permits users who have pg_read_all_stats privileges to see the sizes of all databases, even if they lack CONNECT privilege. But psql was unaware of that provision and would not call the function unless the user has CONNECT privilege.

  • Fix psql's tab completion for \df to consider procedures too (Erik Wienhold)

  • Fix thread-safety bug in pgbench (Fujii Masao)

When pgbench runs with multiple threads and the --verbose-errors option, different threads could attempt to use the same buffer to construct error messages, leading to corrupted log output.

  • In pg_combinebackup, prevent infinite loop if the source file is shorter than expected (Peter Eisentraut)

  • Fix cleanup of publisher-side objects after errors in pg_createsubscriber (Nisha Moond)

When pg_createsubscriber fails after creating logical replication objects, it should remove the publication and replication slot that it created on the publisher. Some error cases failed to do so.

  • Use the source cluster's group-read file permissions for pg_recvlogical output files (Fujii Masao)

pg_recvlogical was documented to behave this way, but it never actually enabled group-read.

  • In contrib/amcheck, handle short-header varlena datums correctly (Andrey Borodin)

This error could result in doing excess work while verifying a btree index, but seems not to have had any worse consequences.

  • In contrib/btree_gist, fix NaN handling in the float4 and float8 opclasses (Bill Kim, Tom Lane)

Comparisons, as well as the GiST penalty and distance functions, did not account for NaN and would give the wrong answer when handed one. It is recommended to reindex btree_gist indexes on float columns after installing this update, if there is any possibility that there are NaN entries in those columns.

  • In contrib/btree_gist, fix searches using a not-equal operator (Ayush Tiwari)

For variable-length data types, the code for scanning non-leaf index pages applied the wrong comparison function, leading to wrong results and potentially crashes.

  • Fix unguarded recursion and loops in contrib/hstore_plperl, contrib/jsonb_plperl, and contrib/jsonb_plpython (Aleksander Alekseev)

Prevent stack overflow when dealing with deeply nested jsonb values, and allow interruption of the infinite loop caused when attempting to dereference circular chains of Perl object references.

  • Fix missed release of statistics catcache entry in contrib/intarray (Man Zeng)

This oversight led to warnings like “resource was not closed: cache pg_statistic”.

  • In contrib/ltree, fix integer overflow in comparisons (Ayush Tiwari)

ltree values containing more than about 14,653 labels resulted in wrong comparison answers due to overflow. If a btree index contains such values, it is probably corrupt and should be reindexed after installing this update.

  • In contrib/pgcrypto, avoid double-free crash after encountering an error while using an OSSLCipher object (Yuelin Wang)

  • Fix array overrun in contrib/pg_surgery's heap_force_kill and heap_force_freeze functions (Michael Paquier)

Attempting to change a TID whose offset number equals MaxHeapTuplesPerPage wrote one byte past the end of the allocated array, potentially crashing the server.

  • In contrib/pg_surgery, avoid infinite loop with TID arrays having more than 64K elements (Andrey Rachitskiy)

  • Avoid NULL-pointer dereference in contrib/refint's check_foreign_key() (Ayush Tiwari)

In the on-update-cascade case, a null value of a referenced column led to a crash. This is an oversight in the fix for CVE-2026-6637, but the code that was there before that wasn't really right either.

  • Fix contrib/seg to print segments with ~ certainty indicators correctly (Ewan Young)

Due to a typo, seg_out() did not print a ~ certainty indicator attached to a segment's upper boundary. Worse, if the lower boundary had ~ while the upper boundary had no indicator, the upper boundary was not printed at all, incorrectly converting the value into an open interval.

  • Fix crash with namespace nodes in contrib/xml2's xpath_nodeset() function (Andrey Chernyy, Michael Paquier)

  • Support building PostgreSQL with OpenSSL 4 (Daniel Gustafsson)

  • Update time zone data files to tzdata release 2026c (Tom Lane)

Alberta (America/Edmonton) will be on year-round UTC-06 (effectively, permanent DST) beginning in November 2026. This release assumes that their TZ abbreviation will be CST from that time forward. That seems likely to change, but it's unclear what new abbreviation will be used.

Morocco (Africa/Casablanca) will move to permanent UTC+00, without daylight saving time transitions, on 2026-09-20.

Release 17.10#

Release date:

2026-05-14

This release contains a variety of fixes from 17.9. For information about new features in major release 17, see Release 17.

Migration to Version 17.10#

A dump/restore is not required for those running 17.X.

However, if you are upgrading from a version earlier than 17.6, see Release 17.6.

Changes#

  • Prevent unbounded recursion while processing startup packets (Michael Paquier)

A malicious client could crash the connected backend by alternating rejected SSL and GSS encryption requests indefinitely.

The PostgreSQL Project thanks Calif.io (in collaboration with Claude and Anthropic Research) for reporting this problem. (CVE-2026-6479)

  • Fix assorted integer overflows in memory-allocation calculations (Tom Lane, Nathan Bossart, Heikki Linnakangas)

Various places were incautious about the possibility of integer overflow in calculations of how much memory to allocate. Overflow would lead to allocating a too-small buffer which the caller would then write past the end of. This would at least trigger server crashes, and probably could be exploited for arbitrary code execution. In many but by no means all cases, the hazard exists only in 32-bit builds.

The PostgreSQL Project thanks Xint Code, Bruce Dang, Sven Klemm, and Pavel Kohout for reporting these problems. (CVE-2026-6473)

  • Properly quote subscription names in pg_createsubscriber (Nathan Bossart)

The given subscription name was inserted into SQL commands without quoting, so that SQL injection could be achieved in the (perhaps unlikely) case that the subscription name comes from an untrusted source.

The PostgreSQL Project thanks Yu Kunpeng for reporting this problem. (CVE-2026-6476)

  • Properly quote object names in logical replication origin checks (Pavel Kohout)

ALTER SUBSCRIPTION ... REFRESH PUBLICATION interpolated schema and relation names into SQL commands without quoting them, allowing execution of arbitrary SQL on the publisher.

The PostgreSQL Project thanks Pavel Kohout for reporting this problem. (CVE-2026-6638)

  • Reject over-length options in ts_headline() (Michael Paquier)

The StartSel, StopSel and FragmentDelimiter strings must not exceed 32Kb in length, but this was not checked for. An over-length value would typically crash the server.

The PostgreSQL Project thanks Xint Code for reporting this problem. (CVE-2026-6473)

  • Guard against malicious time zone names in timeofday() and pg_strftime() (Tom Lane)

A crafted time zone setting could pass % sequences to snprintf(), potentially causing crashes or disclosure of server memory. Another path to similar results was to overflow the limited-size output buffer used by pg_strftime().

The PostgreSQL Project thanks Xint Code for reporting this problem. (CVE-2026-6474)

  • When creating a multirange type, ensure the user has CREATE privilege on the schema specified for the multirange type (Jelte Fennema-Nio)

The multirange type can be put into a different schema than its parent range type, but we neglected to apply the required privilege check when doing so.

The PostgreSQL Project thanks Jelte Fennema-Nio for reporting this problem. (CVE-2026-6472)

  • Use timing-safe string comparisons in authentication code (Michael Paquier)

Use timingsafe_bcmp() instead of memcmp() or strcmp() when checking passwords, hashes, etc. It is not known whether the data dependency of those functions is usefully exploitable in any of these places, but in the interests of safety, replace them.

The PostgreSQL Project thanks Joe Conway for reporting this problem. (CVE-2026-6478)

  • Mark PQfn() as unsafe, and avoid using it within libpq (Nathan Bossart)

For a non-integral result type, PQfn() is not passed the size of the output buffer, so it cannot check that the data returned by the server will fit. A malicious server could therefore overwrite client memory. This is unfixable without an API change, so mark the function as deprecated. Internally to libpq, use a variant version that can apply the missing check.

The PostgreSQL Project thanks Yu Kunpeng and Martin Heistermann for reporting this problem. (CVE-2026-6477)

  • Prevent path traversal in pg_basebackup and pg_rewind (Michael Paquier)

These applications failed to validate output file paths read from their input, so that a malicious source could overwrite any file writable by these applications. Constrain where data can be written by rejecting paths that are absolute or contain parent-directory references.

The PostgreSQL Project thanks XlabAI Team of Tencent Xuanwu Lab and Valery Gubanov for reporting this problem. (CVE-2026-6475)

  • Guard against field overflow within contrib/intarray's query_int type and contrib/ltree's ltxtquery type (Tom Lane)

Parsing of these query structures did not check for overflow of 16-bit fields, so that construction of an invalid query tree was possible. This can crash the server when executing the query.

The PostgreSQL Project thanks Xint Code for reporting this problem. (CVE-2026-6473)

  • Guard against overly long values of contrib/ltree's lquery type (Michael Paquier)

Values with more than 64K items caused internal overflows, potentially resulting in stack smashes or wrong answers.

The PostgreSQL Project thanks Vergissmeinnicht, A1ex, and Jihe Wang for reporting this problem. (CVE-2026-6473)

  • Prevent SQL injection and buffer overruns in contrib/spi (Nathan Bossart)

check_foreign_key() was insufficiently careful about quoting key values, and also used fixed-length buffers for constructing queries. While this module is only meant as example code, it still shouldn't contain such dangerous errors.

The PostgreSQL Project thanks Nikolay Samokhvalov for reporting this problem. (CVE-2026-6637)

  • Check for nondeterministic collations before assuming that an equality condition on a collatable type implies uniqueness (Richard Guo)

Numerous planner optimizations assume that, for example, at most one table row can satisfy WHERE x = 'abc' if there is a unique index on x. However this conclusion is unsafe in general if the index and the WHERE clause have different collations attached. It is safe when both collations are deterministic, because that property essentially requires that equality of two strings means bitwise equality. But nondeterministic collations don't act that way, so that optimizing on the assumption of unique matches can give wrong query answers if either the WHERE clause or the index has a nondeterministic collation.

  • Fix incomplete removal of relation references in RestrictInfo structs during join removal (Tom Lane)

This oversight has been shown to result in planner failures such as unexpected “FULL JOIN is only supported with merge-joinable or hash-joinable join conditions” errors. It may also have caused failure to consider valid plans in other cases.

  • Fix incorrect handling of NEW generated columns in rule actions and rule qualifications (Richard Guo, Dean Rasheed)

Previously, such column references would produce NULL in INSERT cases, or be equivalent to the OLD value in UPDATE cases.

  • Fix spurious “generated columns are not supported in COPY FROM WHERE conditions” errors (Tom Lane)

Use of a system column in a COPY FROM WHERE condition could sometimes incorrectly report this error.

  • Correctly report a serialization failure when MERGE encounters a concurrently-updated tuple in repeatable-read or serializable mode (Tender Wang)

Previously, such cases behaved the same as in lower isolation levels.

  • Fix CREATE TABLE ... LIKE ... INCLUDING STATISTICS for cases where the source table has dropped column(s) (Julien Tachoires)

In such cases, extended statistics objects could be copied incorrectly, or the command could give an incorrect error.

  • Allow ALTER INDEX ... ATTACH PARTITION to mark the parent index valid if appropriate (Sami Imseih)

There are edge cases in which a partitioned index might remain marked as invalid even when all its leaf indexes are valid. This change provides a mechanism whereby a user can correct such a situation without resorting to manual catalog updates.

  • Fix ALTER FOREIGN DATA WRAPPER to not drop the wrapper object's dependency on its handler function (Jeff Davis)

  • Disallow making a composite type be a member of itself via a multirange (Heikki Linnakangas)

We already forbade such cases when the intermediate type is a domain, array, composite type, or range; but multiranges were overlooked.

  • Fix datum-image comparisons to be insensitive to sign-extension variations (David Rowley)

This fixes some situations that previously led to “could not find memoization table entry” errors or wrong query results.

  • Fix incorrect logic for hashed IN/NOT IN with non-strict equality operator (Chengpeng Yan)

The previous coding could crash or give wrong answers. All built-in data types have strict equality operators, so that this issue could only arise with an extension data type.

  • Truncate overly-long locale-specific numeric symbols in to_char() (Tom Lane)

If a locale specified a currency symbol, thousands separator, or decimal or sign symbol more than 8 bytes long, a buffer overrun was possible. No such locales exist in the real world, and it's impractical for an unprivileged attacker to install a malicious locale definition underneath a Postgres server; but for safety's sake check for overlength symbols and truncate if needed.

  • Prevent buffer overruns when parsing an affix file for an Ispell dictionary (Tom Lane)

A corrupt or malicious affix file could crash the server. This is not considered a security issue because text search configuration files are presumed trustworthy, but it still seems worth fixing.

  • Guard against integer overflow in calculations of frame start and end positions for window aggregates (Richard Guo)

Very large user-specified offsets (close to INT64_MAX) could result in errors or incorrect query results.

  • Fix array_agg_array_combine() to combine the arrays' null bitmaps correctly (Dmytro Astapov)

This mistake resulted in sometimes-incorrect output from parallelized array_agg(anyarray) calculations.

  • Retry sync_file_range() if it returns error code EINTR (DaeMyung Kang)

  • Fix incorrect behavior of pg_stat_reset_single_table_counters() on a shared catalog (Chao Li)

Such cases had a side-effect of resetting the current database's stat_reset_timestamp, which was unintended.

  • Update activity statistics when a parallel apply worker is idle (Zhijie Hou)

Previously, statistics from a recently-completed transaction might go unreported for long intervals, particularly if the workload is light.

  • Fix “no relation entry for relid 0” failure while estimating array lengths in set operations (Tender Wang)

  • Fix buffer overread when pglz_decompress() receives corrupt input (Andrew Dunstan)

It was possible to read a few bytes past the end of the input, which in very unlucky cases might cause a crash.

  • Fix incremental JSON parser's handling of numeric tokens that cross input buffer boundaries (Andrew Dunstan)

It was possible to accept an incorrectly-formatted number, leading to failures later.

  • Prevent bloating relation visibility maps during restore of an incremental backup (Robert Haas)

Restore could append many blocks of zeroes to a visibility map, due to incorrect computation of the expected file length. This does not result in data corruption, but it could waste a substantial amount of disk space.

  • Use C collation, not the database's default collation, in catalog cache lookups on text columns (Jeff Davis)

This avoids failures in edge cases such as physical replication startup, where there is no identified database so that a default collation cannot be determined.

  • Prevent stuck slotsync worker processes from blocking promotion of a standby server (Nisha Moond, Ajin Cherian)

A worker process that was vainly waiting for a response from the primary would delay promotion for an unreasonable amount of time.

  • Fix excessive log output from idle slotsync worker processes (Zhijie Hou)

  • Ensure that tuplestore data structures are internally consistent even after an error (Tom Lane)

The code was previously careless about this, which is fine most of the time but is problematic for the tuplestore backing a WITH HOLD cursor. In v15 and before this leads to easily-reproducible crashes; later branches are not known to be vulnerable, but it seems best to preserve consistency in all.

  • Fix premature NULL lag reporting in pg_stat_replication (Shinya Kato)

The lag columns frequently read as NULL even while replication activity was happening.

  • Avoid rare flush failure when working with non-WAL-logged GiST indexes (Tomas Vondra)

A non-logged GiST index could nonetheless sometimes produce “xlog flush request \<n/nnnn> is not satisfied” errors, due to incorrect selection of a “fake LSN” to represent an insertion point.

  • Fix underestimate of required size of DSA page maps for odd-size segments (Paul Bunn)

This miscalculation led to out-of-bounds accesses and hence server crashes.

  • Fix indexing of oldest-multixact arrays in shared memory (Yura Sokolov)

This mistake could cause a prepared-but-not-yet-committed transaction's row locks to appear invisible to other sessions, or other visibility issues for the results of such a transaction. With a very small max_connections setting, memory stomps were also possible.

  • Fix possible server crash when processing extended statistics on expressions of extension data types (Michael Paquier)

NULL pointer dereferences were possible if the data type's typanalyze function does not compute any useful statistics. No in-core typanalyze function behaves that way, but extensions could.

  • Fix minor memory leaks in ICU-based string processing (Jeff Davis)

  • If the startup process fails, properly shut down other child processes before exiting the postmaster (Ayush Tiwari)

The handling of this situation relied on a long-obsolete assumption that no other postmaster children exist while the startup process is running, so that immediate postmaster exit is acceptable. Orphaned children would eventually notice the postmaster's death and exit on their own, but a cleaner shutdown procedure is desirable.

  • Fix race condition between WAL replay of checkpoints and multixact ID creations (Heikki Linnakangas)

A standby server following WAL from a primary of an older minor version could get into a crash-and-restart loop complaining about “could not access status of transaction”.

  • Prevent indefinite wait in shutdown of a walsender process (Anthonin Bonnefoy)

At shutdown of a cluster that is publishing logical replication data, the walsender waits for all pending WAL to be written out. But it did not correctly request that to happen, so that in some cases this could become an indefinite wait.

  • Ensure that changes to tables' free space maps are persisted during recovery (Alexey Makhmutov)

Previously, while WAL replay did update the free space map while replaying operations that should change it, the map page buffer did not get marked dirty if checksums are enabled, so that the changes might never get written out. On a standby server, over time this would result in a map wildly at variance with the table's actual contents. While the map is only used as a hint, this condition could cause significant performance degradation for some period of time after the standby server is promoted to be active, until most of the map has been repaired by updates.

  • Fix crashes in some ecpg functions when called without any established connection (Shruthi Gowda)

  • Fix assorted bugs in backup decompression and tar-parsing code (Andrew Dunstan, Tom Lane, Chao Li)

The decompression and tar-file reading code used in pg_basebackup and pg_verifybackup mishandled tar-file padding data, could corrupt LZ4-compressed data in edge cases, failed to check for some unusual error conditions, failed to exit after compression/decompression errors (leading to cascading error reports), and leaked memory.

  • In pg_dumpall, don't skip role GRANTs with dangling grantor OIDs (Tom Lane)

Instead, handle such cases by emitting GRANT without any GRANTED BY clause, as we did before v16. This avoids losing the grant in foreseeable cases, since pre-v16 servers didn't prevent dropping the grantor role. Continue to emit a warning about the missing grantor, but only if the source server is v16 or later.

  • In pg_upgrade, take care to use the correct protocol version when connecting to older source servers (Jacob Champion)

This could be problematic when attempting to upgrade from a pre-2018 server.

  • In contrib/basic_archive, allow the archive directory to be missing at startup (Nathan Bossart)

Previously, the setting of basic_archive.archive_directory was rejected if it didn't point to an existing directory. This is undesirable because archiving will be stuck indefinitely, even if the directory appears later.

  • Fix contrib/ltree to cope when case-folding changes a string's byte length (Jeff Davis)

Previously, lquery patterns specifying case-insensitive matching might fail to match labels they should match.

  • In contrib/pg_stat_statements, don't leak memory if an error occurs while parsing the pgss_query_texts.stat file (Heikki Linnakangas)

  • In contrib/postgres_fdw, avoid crash due to premature cleanup of a failed connection (Etsuro Fujita)

If a remote connection fails abort cleanup, we can't use it any longer. But delay closing the connection object until end of transaction, because there might still be references to it within data structures such as open cursors.

  • Update time zone data files to tzdata release 2026b (Tom Lane)

British Columbia (America/Vancouver) will be on year-round UTC-07 (effectively, permanent DST) beginning in November 2026. This release assumes that their TZ abbreviation will be MST from that time forward. That seems likely to change, but it's unclear what new abbreviation will be used. Also a historical correction for Moldova: they have followed EU DST transition times since 2022.

Release 17.9#

Release date:

2026-02-26

This release contains a small number of fixes from 17.8. For information about new features in major release 17, see Release 17.

Migration to Version 17.9#

A dump/restore is not required for those running 17.X.

However, if you are upgrading from a version earlier than 17.6, see Release 17.6.

Changes#

  • Fix failure after replaying a multixid truncation record from WAL that was generated by an older minor version (Heikki Linnakangas)

Erroneous logic for coping with the way that previous versions handled multixid wraparound led to replay failure, with messages like “could not access status of transaction”. A typical scenario in which this could occur is a standby server of the latest minor version consuming WAL from a primary server of an older version.

  • Avoid incorrect complaint of invalid encoding when substring() is applied to “toasted” data (Noah Misch)

The fix for CVE-2026-2006 was too aggressive and could raise an error about an incomplete character in cases that are actually valid.

  • Fix computation of the set of potentially-nulling outer joins for the output of a LATERAL UNION ALL subquery (Richard Guo)

This error could lead to skipping NOT NULL tests in the mistaken belief that they were unnecessary, resulting in wrong query output.

  • Fix pg_stat_get_backend_wait_event() and pg_stat_get_backend_wait_event_type() to report values for auxiliary processes (Heikki Linnakangas)

Previously these functions returned NULL for auxiliary processes, but that's inconsistent with the pg_stat_activity view.

  • Fix casting a composite-type variable to a domain type when returning its value from a PL/pgSQL function (Tom Lane)

If the variable's value is NULL, a “cache lookup failed for type 0” error resulted.

  • Fix potential null pointer dereference in contrib/hstore's binary input function (Michael Paquier)

hstore's receive function crashed on input containing duplicate keys. hstore values generated by Postgres would never contain duplicate keys, so this mistake has gone unnoticed. The crash could be provoked by malicious or corrupted data.

Release 17.8#

Release date:

2026-02-12

This release contains a variety of fixes from 17.7. For information about new features in major release 17, see Release 17.

Migration to Version 17.8#

A dump/restore is not required for those running 17.X.

However, if you are upgrading from a version earlier than 17.6, see Release 17.6.

Changes#

  • Guard against unexpected dimensions of oidvector/int2vector (Tom Lane)

These data types are expected to be 1-dimensional arrays containing no nulls, but there are cast pathways that permit violating those expectations. Add checks to some functions that were depending on those expectations without verifying them, and could misbehave in consequence.

The PostgreSQL Project thanks Altan Birler for reporting this problem. (CVE-2026-2003)

  • Harden selectivity estimators against being attached to operators that accept unexpected data types (Tom Lane)

contrib/intarray contained a selectivity estimation function that could be abused for arbitrary code execution, because it did not check that its input was of the expected data type. Third-party extensions should check for similar hazards and add defenses using the technique intarray now uses. Since such extension fixes will take time, we now require superuser privilege to attach a non-built-in selectivity estimator to an operator.

The PostgreSQL Project thanks Daniel Firer, as part of zeroday.cloud, for reporting this problem. (CVE-2026-2004)

  • Fix buffer overrun in contrib/pgcrypto's PGP decryption functions (Michael Paquier)

Decrypting a crafted message with an overlength session key caused a buffer overrun, with consequences as bad as arbitrary code execution.

The PostgreSQL Project thanks Team Xint Code, as part of zeroday.cloud, for reporting this problem. (CVE-2026-2005)

  • Fix inadequate validation of multibyte character lengths (Thomas Munro, Noah Misch)

Assorted bugs allowed an attacker able to issue crafted SQL to overrun string buffers, with consequences as bad as arbitrary code execution. After these fixes, applications may observe “invalid byte sequence for encoding” errors when string functions process invalid text that has been stored in the database.

The PostgreSQL Project thanks Paul Gerste and Moritz Sanft, as part of zeroday.cloud, for reporting this problem. (CVE-2026-2006)

  • Don't allow CTE references in sub-selects to determine semantic levels of aggregate functions (Tom Lane)

This change undoes a change made two minor releases ago, instead throwing an error if a sub-select references a CTE that's below the semantic level that standard SQL rules would assign to the aggregate based on contained column references and aggregates. The attempted fix turned out to cause problems of its own, and it's unclear what to do instead. Since sub-selects within aggregates are disallowed altogether by the SQL standard, treating such cases as errors seems sufficient.

  • Fix trigger transition table capture for MERGE in CTE queries (Dean Rasheed)

When executing a data-modifying CTE query containing both a MERGE and another DML operation on a table with statement-level AFTER triggers, the transition tables passed to the triggers would not include the rows affected by the MERGE, only those affected by the other operation(s).

  • Fix failure when all children of a partitioned target table of an update or delete have been pruned (Amit Langote)

In such cases, the executor could report “could not find junk ctid column” errors, even though nothing needs to be done.

  • Avoid possible planner failure when a query contains duplicate window function calls (Meng Zhang, David Rowley)

Confusion over de-duplication of such calls could result in errors like “WindowFunc with winref 2 assigned to WindowAgg with winref 1”.

  • Allow indexscans on partial hash indexes even when the index's predicate implies the truth of the WHERE clause (Tom Lane)

Normally we drop a WHERE clause that is implied by the predicate, since it's pointless to test it; it must hold for every index entry. However that can prevent creation of an indexscan plan if the index is one that requires a WHERE clause on the leading index key, as hash indexes do. Don't drop implied clauses when considering such an index.

  • Do not emit WAL for unlogged BRIN indexes (Kirill Reshke)

One seldom-taken code path incorrectly emitted a WAL record relating to a BRIN index even if the index was marked unlogged. Crash recovery would then fail to replay that record, complaining that the file already exists.

  • Prevent truncation of CLOG that is still needed by unread NOTIFY messages (Joel Jacobson, Heikki Linnakangas)

This fix prevents “could not access status of transaction” errors when a backend is slow to absorb NOTIFY messages.

  • Escalate errors occurring during NOTIFY message processing to FATAL, i.e. close the connection (Heikki Linnakangas)

Formerly, if a backend got an error while absorbing a NOTIFY message, it would advance past that message, report the error to the client, and move on. That behavior was fraught with problems though. One big concern is that the client has no good way to know that a notification was lost, and certainly no way to know what was in it. Depending on the application logic, missing a notification could cause the application to get stuck waiting, for example. Also, any remaining messages would not get processed until someone sent a new NOTIFY.

Also, if the connection is idle at the time of receiving a NOTIFY signal, any ERROR would be escalated to FATAL anyway, due to unrelated concerns. Therefore, we've chosen to make that happen in all cases, for consistency and to provide a clear signal to the application that it might have missed some notifications.

  • Fix erroneous counting of updates in EXPLAIN ANALYZE MERGE with a concurrent update (Dean Rasheed)

This situation led to an incorrect count of “skipped” tuples in EXPLAIN's output, or to an assertion failure in an assert-enabled build.

  • Fix bug in following update chain when locking a tuple (Jasper Smit)

This code path neglected to check the xmin of the first new tuple in the update chain, making it possible to lock an unrelated tuple if the original updater aborted and the space was immediately reclaimed by VACUUM and then re-used. That could cause unexpected transaction delays or deadlocks. Errors associated with having identified the wrong tuple have also been observed.

  • Fix issues around in-place catalog updates (Noah Misch)

Send a nontransactional invalidation message for an in-place update, since such an update will survive transaction rollback. Also ensure that the update is WAL-logged before other sessions can see it. These fixes primarily prevent scenarios in which relations' frozen-XID attributes become inconsistent, possibly allowing premature CLOG truncation and subsequent “could not access status of transaction” errors.

  • Fix incorrect handling of incremental backups of large tables (Robert Haas, Oleg Tkachenko)

If a table exceeding 1GB (or in general, the installation's segment size) is truncated by VACUUM between the base backup and the incremental backup, pg_combinebackup could fail with an error about “truncation block length in excess of segment size”. This prevented restoring the incremental backup.

  • Fix potential backend process crash at process exit due to trying to release a lock in an already-unmapped shared memory segment (Rahila Syed)

  • Guard against incorrect truncation of the multixact log after a crash (Heikki Linnakangas)

  • Fix possibly mis-encoded result of pg_stat_get_backend_activity() (Chao Li)

The shared-memory buffer holding a session's activity string can end with an incomplete multibyte character. Readers are supposed to truncate off any such incomplete character, but this function failed to do so.

  • Guard against recursive memory context logging (Fujii Masao)

A constant flow of signals requesting memory context logging could cause recursive execution of the logging code, which in theory could lead to stack overflow.

  • Fix memory context usage when reinitializing a parallel execution context (Jakub Wartak, Jeevan Chalke)

This error could result in a crash due to a subsidiary data structure having a shorter lifespan than the parallel context. The problem is not known to be reachable using only core PostgreSQL, but we have reports of trouble in extensions.

  • Set next multixid's offset when creating a new multixid, to remove the wait loop that was needed in corner cases (Andrey Borodin)

The previous logic could get stuck waiting for an update that would never occur.

  • Avoid rewriting data-modifying CTEs more than once (Bernice Southey, Dean Rasheed)

Formerly, when updating an auto-updatable view or a relation with rules, if the original query had any data-modifying CTEs, the rewriter would rewrite those CTEs multiple times due to recursion. This was inefficient and could produce false errors if a CTE included an update of an always-generated column.

  • Allow retrying initialization of a DSM registry entry (Nathan Bossart)

If we fail partway through initialization of a dynamic shared memory entry, allow the next attempt to use that entry to retry initialization. Previously the entry was left in a permanently-failed state.

  • Fail recovery if WAL does not exist back to the redo point indicated by the checkpoint record (Nitin Jadhav)

Add an explicit check for this before starting recovery, so that no harm is done and a useful error message is provided. Previously, recovery might crash or corrupt the database in this situation.

  • Avoid scribbling on the source query tree during ALTER PUBLICATION (Sunil S)

This error had the visible effect that an event trigger fired for the query would see only the first publish option, even if several had been specified. If such a query were set up as a prepared statement, re-executions would misbehave too.

  • Pass connection options specified in CREATE SUBSCRIPTION ... CONNECTION to the publisher's walsender (Fujii Masao)

Before this fix, the options connection option (if any) was ignored, thus for example preventing setting custom server parameter values in the walsender session. It was intended for that to work, and it did work before refactoring in PostgreSQL version 15 broke it, so restore the previous behavior.

  • Prevent invalidation of newly created or newly synced replication slots (Zhijie Hou)

A race condition with a concurrent checkpoint could allow WAL to be removed that is needed by the replication slot, causing the slot to immediately get marked invalid.

  • Fix race condition in computing a replication slot's required xmin (Zhijie Hou)

This could lead to the error “cannot build an initial slot snapshot as oldest safe xid follows snapshot's xmin”.

  • During initial synchronization of a logical replication subscription, commit the addition of a pg_replication_origin entry before starting to copy data (Zhijie Hou)

Previously, if the copy step failed, the new pg_replication_origin entry would be lost due to transaction rollback. This led to inconsistent state in shared memory.

  • Don't advance logical replication progress after a parallel worker apply failure (Zhijie Hou)

The previous behavior allowed transactions to be lost by a subscriber.

  • Fix logical replication slotsync worker processes to handle LOCK_TIMEOUT signals correctly (Zhijie Hou)

Previously, timeout signals were effectively ignored.

  • Fix possible failure with “unexpected data beyond EOF” during restart of a streaming replica server (Anthonin Bonnefoy)

  • Fix error reporting for SQL/JSON path type mismatches (Jian He)

The code could produce a “cache lookup failed for type 0” error instead of the intended complaint about the path expression not being of the right type.

  • Fix erroneous tracking of column position when parsing partition range bounds (myzhen)

This could, for example, lead to the wrong column name being cited in error messages about casting partition bound values to the column's data type.

  • Fix assorted minor errors in error messages (Man Zeng, Tianchen Zhang)

For example, an error report about mismatched timeline number in a backup manifest showed the starting timeline number where it meant to show the ending timeline number.

  • Fix failure to perform function inlining when doing JIT compilation with LLVM version 17 or later (Anthonin Bonnefoy)

  • Adjust our JIT code to work with LLVM 21 (Holger Hoffstätte)

The previous coding failed to compile on aarch64 machines.

  • Add new server parameter ??? to control use of posix_fallocate() (Thomas Munro)

PostgreSQL version 16 and later will use posix_fallocate(), if the platform provides it, to extend relation files. However, this has been reported to interact poorly with some file systems: BTRFS compression is disabled by the use of posix_fallocate(), and XFS could produce spurious ENOSPC errors in older Linux kernel versions. To provide a workaround, introduce this new server parameter. Setting file_extend_method to write_zeros will cause the server to return to the old method of extending files by writing blocks of zeroes.

  • Honor open()'s O_CLOEXEC flag on Windows (Bryan Green, Thomas Munro)

Make this flag work like it does on POSIX platforms, so that we don't leak file handles into child processes such as COPY TO/FROM PROGRAM. While that leakage hasn't caused many problems, it seems undesirable.

  • Fix failure to parse long options on the server command line in Solaris executables built with meson (Tom Lane)

  • Support process title changes on GNU/Hurd (Michael Banck)

  • Avoid pg_dump assertion failure in binary-upgrade mode (Vignesh C)

Failure to handle subscription-relation objects in the object sorting code triggered an assertion, though there were no serious ill effects in production builds.

  • Fix incorrect error handling in pgbench with multiple \syncpipeline commands in pipeline mode (Yugo Nagata)

If multiple \syncpipeline commands are encountered after a query error, pgbench would report “failed to exit pipeline mode”, or get an assertion failure in an assert-enabled build.

  • Make pg_resetwal print the updated value when changing OldestXID (Heikki Linnakangas)

It already did that for every other variable it can change.

  • Make pg_resetwal allow setting next multixact xid to 0 or next multixact offset to UINT32_MAX (Maxim Orlov)

These are valid values, so rejecting them was incorrect. In the worst case, if a pg_upgrade is attempted when exactly at the point of multixact wraparound, the upgrade would fail.

  • In contrib/amcheck, use the correct snapshot for btree index parent checks (Mihail Nikalayeu)

The previous coding caused spurious errors when examining indexes created with CREATE INDEX CONCURRENTLY.

  • Fix contrib/amcheck to handle “half-dead” btree index pages correctly (Heikki Linnakangas)

amcheck expected such a page to have a parent downlink, but it does not, leading to a false error report about “mismatch between parent key and child high key”.

  • Fix contrib/amcheck to handle incomplete btree root page splits correctly (Heikki Linnakangas)

amcheck could report a false error about “block is not true root”.

  • Fix edge-case integer overflow in contrib/intarray's selectivity estimator for @@ (Chao Li)

This could cause poor selectivity estimates to be produced for cases involving the maximum integer value.

  • Fix multibyte-encoding issue in contrib/ltree (Jeff Davis)

The previous coding could pass an incomplete multibyte character to lower(), probably resulting in incorrect behavior.

  • Update time zone data files to tzdata release 2025c (Tom Lane)

The only change is in historical data for pre-1976 timestamps in Baja California.

Release 17.7#

Release date:

2025-11-13

This release contains a variety of fixes from 17.6. For information about new features in major release 17, see Release 17.

Migration to Version 17.7#

A dump/restore is not required for those running 17.X.

However, if you are upgrading from a version earlier than 17.6, see Release 17.6.

Changes#

  • Check for CREATE privileges on the schema in CREATE STATISTICS (Jelte Fennema-Nio)

This omission allowed table owners to create statistics in any schema, potentially leading to unexpected naming conflicts.

The PostgreSQL Project thanks Jelte Fennema-Nio for reporting this problem. (CVE-2025-12817)

  • Avoid integer overflow in allocation-size calculations within libpq (Jacob Champion)

Several places in libpq were not sufficiently careful about computing the required size of a memory allocation. Sufficiently large inputs could cause integer overflow, resulting in an undersized buffer, which would then lead to writing past the end of the buffer.

The PostgreSQL Project thanks Aleksey Solovev of Positive Technologies for reporting this problem. (CVE-2025-12818)

  • Prevent “unrecognized node type” errors when a SQL/JSON function such as JSON_VALUE has a DEFAULT clause containing a COLLATE expression (Jian He)

  • Correctly treat JSON constructor expressions, such as JSON_OBJECT(), as non-strict (Tender Wang, Richard Guo)

In some cases these expressions can yield a non-null result despite having one or more null inputs, making them non-strict. The planner incorrectly classified them as strict and could perform incorrect query transformations as a result.

  • Further fix processing of character classes within SIMILAR TO regular expressions (Laurenz Albe)

The previous fix for translating SIMILAR TO pattern matching expressions to POSIX-style regular expressions broke a corner case that formerly worked: if there is an escape character right after the opening bracket and then a closing bracket right after the escape sequence (for example [\w]), the closing bracket was no longer seen as terminating the character class.

  • Fix parsing of aggregate functions whose arguments contain a sub-select with a FROM reference to a CTE outside the aggregate function (Tom Lane)

Such a CTE reference must act like a outer-level column reference when determining the aggregate's semantic level; but it was not being accounted for, leading to obscure planner or executor errors.

  • Fix “no relation entry for relid” errors in corner cases while estimating SubPlan costs (Richard Guo)

  • Avoid unlikely use-after-free in planner's expansion of partitioned tables (Bernd Reiß)

There was a hazard only when the last live partition was concurrently dropped.

  • Remove faulty assertion in btree index cleanup (Peter Geoghegan)

  • Fix possible infinite loop in GIN index scans with multiple scan conditions (Tom Lane)

GIN can handle scan conditions that can reject non-matching entries but are not useful for searching for relevant entries, for example a tsquery clause like !term. But such a condition must not be first in the array of scan conditions. The code failed to ensure that in all cases, with the result that a query having a mix of such conditions with normal conditions might work or not depending on the order in which the conditions were given in the query.

  • Ensure that GIN index scans can be canceled (Tom Lane)

Some code paths were capable of running for a long time without checking for interrupts.

  • Ensure that BRIN autosummarization provides a snapshot for index expressions that need one (Álvaro Herrera)

Previously, autosummarization would fail for such indexes, and then leave placeholder index tuples behind, causing the index to bloat over time.

  • Fix integer-overflow hazard in BRIN index scans when the table contains close to 232 pages (Sunil S)

This oversight could result in an infinite loop or scanning of unneeded table pages.

  • Fix incorrect zero-extension of stored values in JIT-generated tuple deforming code (David Rowley)

When not using JIT, the equivalent code does sign-extension not zero-extension, leading to a different Datum representation of small integer data types. This inconsistency was masked in most cases, but it is known to lead to “could not find memoization table entry” errors when using Memoize plan nodes, and there might be other symptoms.

  • Fix incorrect logic for caching result-relation information for triggers (David Rowley, Amit Langote)

In cases where partitions' column sets aren't physically identical to their parent partitioned tables' column sets, this oversight could lead to crashes.

  • Add missing EvalPlanQual rechecks for TID Scan and TID Range Scan plan nodes (Sophie Alpert, David Rowley)

This omission led to possibly not rechecking a condition on ctid during concurrent-update situations, causing the update's behavior to vary depending on which plan type had been selected.

  • Fix EvalPlanQual handling of foreign or custom joins that do not have an alternative local-join plan prepared for EPQ (Masahiko Sawada, Etsuro Fujita)

In such cases the foreign or custom access method should be invoked normally, but that did not happen, typically leading to a crash.

  • Avoid duplicating hash partition constraints during DETACH CONCURRENTLY (Haiyang Li)

ALTER TABLE DETACH PARTITION CONCURRENTLY was written to add a copy of the partitioning constraint to the now-detached partition. This was misguided, partially because non-concurrent DETACH doesn't do that, but mostly because in the case of hash partitioning the constraint expression contains references to the parent table's OID. That causes problems during dump/restore, or if the parent table is dropped after DETACH. In v19 and later, we'll no longer create any such copied constraints at all. In released branches, to minimize the risk of unforeseen consequences, only skip adding a copied constraint if it is for hash partitioning.

  • Disallow generated columns in partition keys (Jian He, Ashutosh Bapat)

This was already not allowed, but the check missed some cases, such as where the column reference is implicit in a whole-row reference.

  • Disallow generated columns in COPY ... FROM ... WHERE clauses (Peter Eisentraut, Jian He)

Previously, incorrect behavior or an obscure error message resulted from attempting to reference such a column, since generated columns have not yet been computed at the point where WHERE filtering is done.

  • Avoid potential use-after-free in parallel vacuum (Kevin Oommen Anish)

This bug seems to have no consequences in standard builds, but it's theoretically a hazard.

  • Fix visibility checking for statistics objects in pg_temp (Noah Misch)

A statistics object located in a temporary schema cannot be named without schema qualification, but pg_statistics_obj_is_visible() missed that memo and could return “true” regardless. In turn, functions such as pg_describe_object() could fail to schema-qualify the object's name as expected.

  • Fix pg_event_trigger_dropped_objects()'s reporting of temporary status (Antoine Violin, Tom Lane)

If a dropped column default, trigger, or RLS policy belongs to a temporary table, report it with is_temporary true.

  • Fix memory leakage in hashed subplans (Haiyang Li)

Any memory consumed by the hash functions used for hashing tuples constituted a query-lifespan memory leak. One way that could happen is if the values being hashed require de-toasting.

  • Avoid leaking SMgrRelation objects in the startup process (Jingtang Zhang)

In a long-running standby server, the hashtable holding these objects could bloat substantially, because there was no mechanism for freeing no-longer-interesting entries.

  • Fix minor memory leak during WAL replay of database creation (Nathan Bossart)

  • Fix corruption of the shared statistics table after out-of-memory failures (Mikhail Kot)

Previously, an out-of-memory failure partway through creating a new hash table entry left a broken entry behind, potentially causing errors in other sessions later.

  • Fix concurrent update issue in MERGE (Yugo Nagata)

When executing a MERGE UPDATE action, if there is more than one concurrent update of the target row, the lock-and-retry code would sometimes incorrectly identify the latest version of the target tuple, leading to incorrect results.

  • Add missing replica identity checks in MERGE and INSERT ... ON CONFLICT DO UPDATE (Zhijie Hou)

If MERGE may require update or delete actions, and the target table publishes updates or deletes, insist that it have a REPLICA IDENTITY defined. Failing to require this can silently break replication. Likewise, INSERT with an UPDATE option must require REPLICA IDENTITY if the target table publishes either inserts or updates.

  • Avoid deadlock during DROP SUBSCRIPTION when publisher is on the same server as subscriber (Dilip Kumar)

  • Fix incorrect reporting of replication lag in pg_stat_replication view (Fujii Masao)

If any standby server's replay LSN stopped advancing, the write_lag and flush_lag columns would eventually stop updating.

  • Avoid duplicative log messages about invalid primary_slot_name settings (Fujii Masao)

  • Avoid failures when synchronized_standby_slots references nonexistent replication slots (Shlok Kyal)

  • Remove the unfinished slot state file after failing to write a replication slot's state to disk (Michael Paquier)

Previously, a failure such as out-of-disk-space resulted in leaving a temporary state.tmp file behind. That's problematic because it would block all subsequent attempts to write the state, requiring manual intervention to clean up.

  • Fix mishandling of lock timeout signals in parallel apply workers for logical replication (Hayato Kuroda)

The same signal number was being used for both worker shutdown and lock timeout, leading to confusion.

  • Avoid unwanted WAL receiver shutdown when switching from streaming to archive WAL source (Xuneng Zhou)

During a timeline change, a standby server's WAL receiver should remain alive, waiting for a new WAL streaming start point. Instead it was repeatedly shutting down and immediately getting restarted, which could confuse status monitoring code.

  • Avoid failures in logical replication due to chance collisions of file numbers between regular and temporary tables (Vignesh C)

This low-probability problem manifested as transient errors like “unexpected duplicate for tablespace \<X>, relfilenode \<Y>”. contrib/autoprewarm was also affected. A side-effect of the fix is that the SQL function pg_filenode_relation() will now ignore temporary tables.

  • Fix use-after-free issue in the relation synchronization cache maintained by the pgoutput logical decoding plugin (Vignesh C, Masahiko Sawada)

An error during logical decoding could result in crashes in subsequent logical decoding attempts in the same session. The case is only reachable when pgoutput is invoked via SQL functions.

  • Avoid unnecessary invalidation of logical replication slots (Bertrand Drouvot)

  • Avoid assertion failure when trying to release a replication slot in single-user mode (Hayato Kuroda)

  • Fix incorrect printing of messages about failures in checking whether the user has Windows administrator privilege (Bryan Green)

This code would have crashed or at least printed garbage. No such cases have been reported though, indicating that failure of these system calls is extremely rare.

  • Avoid startup failure on macOS and BSD platforms when there is a collision with a pre-existing semaphore set (Tom Lane)

If the pre-existing set has fewer semaphores than we asked for, these platforms return EINVAL not EEXIST as our code expected, resulting in failure to start the database.

  • Avoid crash when attempting to test PostgreSQL with certain libsanitizer options (Emmanuel Sibi, Jacob Champion)

  • Fix false memory-context-checking warnings in debug builds on 64-bit Windows (David Rowley)

  • Correctly handle GROUP BY DISTINCT in PL/pgSQL assignment statements (Tom Lane)

The parser failed to record the DISTINCT option in this context, so that the command would act as if it were plain GROUP BY.

  • Avoid leaking memory when handling a SQL error within PL/Python (Tom Lane)

This fixes a session-lifespan memory leak introduced in our previous minor releases.

  • Fix libpq's trace output of characters with the high bit set (Ran Benita)

On platforms where char is considered signed, the output included unsightly \xffffff decoration.

  • Fix libpq's handling of socket-related errors on Windows within its GSSAPI logic (Ning Wu, Tom Lane)

The code for encrypting/decrypting transmitted data using GSSAPI did not correctly recognize error conditions on the connection socket, since Windows reports those differently than other platforms. This led to failure to make such connections on Windows.

  • Fix dumping of non-inherited not-null constraints on inherited table columns (Dilip Kumar)

pg_dump failed to preserve such constraints when dumping from a pre-v18 server.

  • In pg_dump, dump security labels on subscriptions and event triggers (Jian He, Fujii Masao)

Labels on these types of objects were previously missed.

  • Fix pg_dump's sorting of default ACLs and foreign key constraints (Kirill Reshke, Álvaro Herrera)

Ensure consistent ordering of these database object types, as was already done for other object types.

  • In pg_dump, label comments for separately-dumped domain constraints with the proper dependency (Noah Misch)

This error could lead to parallel pg_restore attempting to create the comment before the constraint itself has been restored.

  • In pg_restore, skip comments and security labels for publications and subscriptions that are not being restored (Jian He, Fujii Masao)

Do not emit COMMENT or SECURITY LABEL commands for these objects when --no-publications or --no-subscriptions is specified.

  • Fix assorted errors in the data compression logic in pg_dump and pg_restore (Daniel Gustafsson, Tom Lane)

Error checking was missing or incorrect in several places, and there were also portability issues that would manifest on big-endian hardware. These problems had been missed because this code is only used to read compressed TOC files within directory-format dumps. pg_dump never produces such a dump; the case can be reached only by manually compressing the TOC file after the fact, which is a supported thing to do but very uncommon.

  • Fix pgbench to error out cleanly if a COPY operation is started (Anthonin Bonnefoy)

pgbench doesn't intend to support this case, but previously it went into an infinite loop.

  • Fix pgbench's reporting of multiple errors (Yugo Nagata)

In cases where two successive PQgetResult calls both fail, pgbench might report the wrong error message.

  • In pgbench, fix faulty assertion about errors in pipeline mode (Yugo Nagata)

  • Fix per-file memory leakage in pg_combinebackup (Tom Lane)

  • Ensure that contrib/pg_buffercache functions can be canceled (Satyanarayana Narlapuram, Yuhang Qiu)

Some code paths were capable of running for a long time without checking for interrupts.

  • Fix contrib/pg_prewarm's privilege checks for indexes (Ayush Vatsa, Nathan Bossart)

pg_prewarm() requires SELECT privilege on relations to be prewarmed. However, since indexes have no SQL privileges of their own, this resulted in non-superusers being unable to prewarm indexes. Instead, check for SELECT privilege on the index's table.

  • Make contrib/pgstattuple more robust about empty or invalid index pages (Nitin Motiani)

Count all-zero pages as free space, and ignore pages that are invalid according to a check of the page's special-space size. The code for btree indexes already counted all-zero pages as free, but the hash and gist code would error out, which has been found to be much less user-friendly. Similarly, make all three cases agree on ignoring corrupted pages rather than throwing errors.

  • Harden our read and write barrier macros to satisfy Clang (Thomas Munro)

We supposed that __atomic_thread_fence() is a sufficient barrier to prevent the C compiler from re-ordering memory accesses around it, but it appears that that's not true for Clang, allowing it to generate incorrect code for at least RISC-V, MIPS, and LoongArch machines. Add explicit compiler barriers to fix that.

  • Fix building with LLVM version 21 and later (Holger Hoffstätte)

  • When building with meson, apply the same special optimization flags for numeric.c and checksum.c as the makefile build does (Nathan Bossart, Jeff Davis)

Use -ftree-vectorize for both files, as well as -funroll-loops for checksum.c, to match what the makefiles have long done.

  • Fix PGXS build infrastructure to support building NLS po files for extensions (Ryo Matsumura)

Release 17.6#

Release date:

2025-08-14

This release contains a variety of fixes from 17.5. For information about new features in major release 17, see Release 17.

Migration to Version 17.6#

A dump/restore is not required for those running 17.X.

However, if you have any BRIN numeric_minmax_multi_ops indexes, it is advisable to reindex them after updating. See the fourth changelog entry below.

Also, if you are upgrading from a version earlier than 17.5, see Release 17.5.

Changes#

  • Tighten security checks in planner estimation functions (Dean Rasheed)

The fix for CVE-2017-7484, plus followup fixes, intended to prevent leaky functions from being applied to statistics data for columns that the calling user does not have permission to read. Two gaps in that protection have been found. One gap applies to partitioning and inheritance hierarchies where RLS policies on the tables should restrict access to statistics data, but did not.

The other gap applies to cases where the query accesses a table via a view, and the view owner has permissions to read the underlying table but the calling user does not have permissions on the view. The view owner's permissions satisfied the security checks, and the leaky function would get applied to the underlying table's statistics before we check the calling user's permissions on the view. This has been fixed by making security checks on views occur at the start of planning. That might cause permissions failures to occur earlier than before.

The PostgreSQL Project thanks Dean Rasheed for reporting this problem. (CVE-2025-8713)

  • Prevent pg_dump scripts from being used to attack the user running the restore (Nathan Bossart)

Since dump/restore operations typically involve running SQL commands as superuser, the target database installation must trust the source server. However, it does not follow that the operating system user who executes psql to perform the restore should have to trust the source server. The risk here is that an attacker who has gained superuser-level control over the source server might be able to cause it to emit text that would be interpreted as psql meta-commands. That would provide shell-level access to the restoring user's own account, independently of access to the target database.

To provide a positive guarantee that this can't happen, extend psql with a \restrict command that prevents execution of further meta-commands, and teach pg_dump to issue that before any data coming from the source server.

The PostgreSQL Project thanks Martin Rakhmanov, Matthieu Denais, and RyotaK for reporting this problem. (CVE-2025-8714)

  • Convert newlines to spaces in names included in comments in pg_dump output (Noah Misch)

Object names containing newlines offered the ability to inject arbitrary SQL commands into the output script. (Without the preceding fix, injection of psql meta-commands would also be possible this way.) CVE-2012-0868 fixed this class of problem at the time, but later work reintroduced several cases.

The PostgreSQL Project thanks Noah Misch for reporting this problem. (CVE-2025-8715)

  • Fix incorrect distance calculation in BRIN numeric_minmax_multi_ops support function (Peter Eisentraut, Tom Lane)

The results were sometimes wrong on 64-bit platforms, and wildly wrong on 32-bit platforms. This did not produce obvious failures because the logic is only used to choose how to merge values into ranges; at worst the index would become inefficient and bloated. Nonetheless it's recommended to reindex any BRIN indexes that use the numeric_minmax_multi_ops operator class.

  • Avoid regression in the size of XML input that we will accept (Michael Paquier, Erik Wienhold)

Our workaround for a bug in early 2.13.x releases of libxml2 made use of a code path that rejects text chunks exceeding 10MB, whereas the previous coding did not. Those early releases are presumably extinct in the wild by now, so revert to the previous coding.

  • Fix MERGE problems with concurrent updates (Dean Rasheed)

If a MERGE inside a CTE attempts an update or delete on a table with BEFORE ROW triggers, and a concurrent UPDATE or DELETE changes the target row, the MERGE command would fail (crashing in the case of an update action, and potentially executing the wrong action in the case of a delete action).

  • Fix MERGE into a plain-inheritance parent table (Dean Rasheed)

Insertions into such a target table could crash or produce incorrect query results due to failing to handle WITH CHECK OPTION and RETURNING actions.

  • Allow tables with statement-level triggers to become partitions or inheritance children (Etsuro Fujita)

We do not allow partitions or inheritance child tables to have row-level triggers with transition tables, because an operation on the whole inheritance tree would need to maintain a separate transition table for each such child table. But that problem does not apply for statement-level triggers, because only the parent's statement-level triggers will be fired. The code that checks whether an existing table can become a partition or inheritance child nonetheless rejected both kinds of trigger.

  • Disallow collecting transition tuples from child foreign tables (Etsuro Fujita)

We do not support triggers with transition tables on foreign tables. However, the case of a partition or inheritance child that is a foreign table was overlooked. If the parent has such a trigger, incorrect transition tuples were collected from the foreign child. Instead throw an error, reporting that the case is not supported.

  • Allow resetting unknown custom parameters with reserved prefixes (Nathan Bossart)

Previously, if a parameter setting had been stored using ALTER DATABASE/ROLE/SYSTEM, the stored setting could not be removed if the parameter was unknown but had a reserved prefix. This case could arise if an extension used to have a parameter, but that parameter had been removed in an upgrade.

  • Fix a potential deadlock during ALTER SUBSCRIPTION ... DROP PUBLICATION (Ajin Cherian)

Ensure that server processes acquire catalog locks in a consistent order during replication origin drops.

  • Shorten the race condition window for creating indexes with conflicting names (Tom Lane)

When choosing an auto-generated name for an index, avoid conflicting with not-yet-committed pg_class rows as well as fully-valid ones. This avoids possibly choosing the same name as some concurrent CREATE INDEX did, when that command is still in process of filling its index, or is done but is part of a not-yet-committed transaction. There's still a window for trouble, but it's only as long as the time needed to validate a new index's parameters and insert its pg_class row.

  • Prevent usage of incorrect VACUUM options in some cases where multiple tables are vacuumed in a single command (Nathan Bossart, Michael Paquier)

The TRUNCATE and INDEX_CLEANUP options of one table could be applied to others.

  • Ensure that the table's free-space map is updated in a timely way when vacuuming a table that has no indexes (Masahiko Sawada)

A previous optimization caused FSM vacuuming to sometimes be skipped for such tables.

  • Fix processing of character classes within SIMILAR TO regular expressions (Laurenz Albe)

The code that translates SIMILAR TO pattern matching expressions to POSIX-style regular expressions did not consider that square brackets can be nested. For example, in a pattern like [[:alpha:]%_], the code treated the % and _ characters as metacharacters when they should be literals.

  • When deparsing queries, always add parentheses around the expression in FETCH FIRST expression ROWS WITH TIES clauses (Heikki Linnakangas)

This avoids some cases where the deparsed result wasn't syntactically valid.

  • Limit the checkpointer process's fsync request queue size (Alexander Korotkov, Xuneng Zhou)

With very large shared_buffers settings, it was possible for the checkpointer to attempt to allocate more than 1GB for fsync requests, leading to failure and an infinite loop. Clamp the queue size to prevent this scenario.

  • Avoid infinite wait in logical decoding when reading a partially-written WAL record (Vignesh C)

If the server crashes after writing the first part of a WAL record that would span multiple pages, subsequent logical decoding of the WAL stream would wait for data to arrive on the next WAL page. That might never happen if the server is now idle.

  • Fix inconsistent spelling of LWLock names for MultiXactOffsetSLRU and MultiXactMemberSLRU (Bertrand Drouvot)

This resulted in different wait-event names being displayed in pg_wait_events and pg_stat_activity, potentially breaking monitoring queries that join those views.

  • Fix inconsistent quoting of role names in ACL strings (Tom Lane)

The previous quoting rule was locale-sensitive, which could lead to portability problems when transferring aclitem values across installations. (pg_dump does not do that, but other tools might.) To ensure consistency, always quote non-ASCII characters in aclitem output; but to preserve backward compatibility, never require that they be quoted during aclitem input.

  • Reject equal signs (=) in the names of relation options and foreign-data options (Tom Lane)

There's no evident use-case for option names like this, and allowing them creates ambiguity in the stored representation.

  • Fix potentially-incorrect decompression of LZ4-compressed archive data (Mikhail Gribkov)

This error seems to manifest only with not-very-compressible input data, which may explain why it escaped detection.

  • Avoid a rare scenario where a btree index scan could mark the wrong index entries as dead (Peter Geoghegan)

  • Avoid re-distributing cache invalidation messages from other transactions during logical replication (vignesh C)

Our previous round of minor releases included a bug fix to ensure that replication receiver processes would respond to cross-process cache invalidation messages, preventing them from using stale catalog data while performing replication updates. However, the fix unintentionally made them also redistribute those messages again, leading to an exponential increase in the number of invalidation messages, which would often end in a memory allocation failure. Fix by not redistributing received messages.

  • Avoid unexpected server shutdown when replication slot synchronization is misconfigured (Fujii Masao)

The postmaster process would report an error (and then stop) if sync_replication_slots was set to true while wal_level was less than logical. The desired behavior is just that slot synchronization should be disabled, so reduce this error message's level to avoid postmaster shutdown.

  • Avoid premature removal of old WAL during checkpoints (Vitaly Davydov)

If a replication slot's restart point is advanced while a checkpoint is in progress, no-longer-needed WAL segments could get removed too soon, leading to recovery failure if the database crashes immediately afterwards. Fix by keeping them for one additional checkpoint cycle.

  • Never move a replication slot's confirmed-flush position backwards (Shveta Malik)

In some cases a replication client could acknowledge an LSN that's past what it has stored persistently, and then perhaps send an older LSN after a restart. We consider this not-a-bug so long as the client did not have anything it needed to do for the WAL between the two points. However, we should not re-send that WAL for fear of data duplication, so make sure we always believe the latest confirmed LSN for a given slot.

  • Prevent excessive delays before launching new logical replication workers (Tom Lane)

In some cases the logical replication launcher could sleep considerably longer than the configured wal_retrieve_retry_interval before launching a new worker.

  • Fix use-after-free during logical replication of INSERT ... ON CONFLICT (Ethan Mertz, Michael Paquier)

This could result in incorrect progress reporting, or with very bad luck it could result in a crash of the WAL sender process.

  • Allow waiting for a transaction on a standby server to be interrupted (Kevin K Biju)

Creation of a replication slot on a standby server may require waiting for some active transaction(s) to finish on the primary and then be replayed on the standby. Since that could be an indefinite wait, it's desirable to allow the operation to be cancelled, but there was no check for query cancel in the loop.

  • Do not let cascading logical WAL senders try to send data that's beyond what has been replayed on their standby server (Alexey Makhmutov)

This avoids a situation where such WAL senders could get stuck at standby server shutdown, waiting for replay work that will not happen because the server's startup process is already shut down.

  • Fix per-relation memory leakage in autovacuum (Tom Lane)

  • Fix session-lifespan memory leaks in XMLSERIALIZE(... INDENT) (Dmitry Kovalenko, Tom Lane)

  • Fix possible crash after out-of-memory when allocating large chunks with the “bump” allocator (Tom Lane)

  • Fix some places that might try to fetch toasted fields of system catalogs without any snapshot (Nathan Bossart)

This could result in an assertion failure or “cannot fetch toast data without an active snapshot” error.

  • Avoid assertion failure during cross-table constraint updates (Tom Lane, Jian He)

  • Remove faulty assertion that a command tag must have been determined by the end of PortalRunMulti() (Álvaro Herrera)

This failed in edge cases such as an empty prepared statement.

  • Fix assertion failure in XMLTABLE parsing (Richard Guo)

  • Restore the ability to run PL/pgSQL expressions in parallel (Dipesh Dhameliya)

PL/pgSQL's notion of an “expression” is very broad, encompassing any SQL SELECT query that returns a single column and no more than one row. So there are cases, for example evaluation of an aggregate function, where the query involves significant work and it'd be useful to run it with parallel workers. This used to be possible, but a previous bug fix unintentionally disabled it.

  • Fix edge-case resource leaks in PL/Python error reporting (Tom Lane)

An out-of-memory failure while reporting an error from Python could result in failure to drop reference counts on Python objects, leading to session-lifespan memory leakage.

  • Fix libpq's PQcancelCreate() function for the case where the server's address was specified using hostaddr (Sergei Kornilov)

libpq would crash if the resulting cancel object was actually used.

  • Fix libpq's PQport() function to never return NULL unless the passed connection is NULL (Daniele Varrazzo)

This is the documented behavior, but recent libpq versions would return NULL in some cases where the user had not provided a port specification. Revert to our historical behavior of returning an empty string in such cases. (v18 and later will return the compiled-in default port number, typically "5432", instead.)

  • Avoid failure when GSSAPI authentication requires packets larger than 16kB (Jacob Champion, Tom Lane)

Larger authentication packets are needed for Active Directory users who belong to many AD groups. This limitation manifested in connection failures with unintelligible error messages, typically “GSSAPI context establishment error: The routine must be called again to complete its function: Unknown error”.

  • Fix timing-dependent failures in SSL and GSSAPI data transmission (Tom Lane)

When using SSL or GSSAPI encryption in non-blocking mode, libpq sometimes failed with “SSL error: bad length” or “GSSAPI caller failed to retransmit all data needing to be retried”.

  • Avoid null-pointer dereference during connection lookup in ecpg applications (Aleksander Alekseev)

The case could occur only if the application has some connections that are named and some that are not.

  • Improve psql's tab completion for COPY and \copy options (Atsushi Torikoshi)

The same completions were offered for both COPY FROM and COPY TO, although some options are only valid for one case or the other. Distinguish these cases to provide more accurate suggestions.

  • Avoid assertion failure in pgbench when multiple pipeline sync messages are received (Fujii Masao)

  • Fix duplicate transaction replay when initializing a subscription with pg_createsubscriber (Shlok Kyal)

It was possible for the last transaction processed during subscriber recovery to be sent again once normal replication begins.

  • Ensure that pg_dump dumps comments on not-null constraints on domain types (Jian He, Álvaro Herrera)

  • Ensure that pg_dump dumps comments on domain constraints in a valid order (Jian He)

In some cases the comment command could appear before creation of the constraint.

  • Ensure stable sort ordering in pg_dump for all types of database objects (Noah Misch, Andreas Karlsson)

pg_dump sorts objects by their logical names before performing dependency-driven reordering. This sort did not account for the full unique key identifying certain object types such as rules and constraints, and thus it could produce dissimilar sort orders for logically-identical databases. That made it difficult to compare databases by diff'ing pg_dump output, so improve the logic to ensure stable sort ordering in all cases.

  • Fix incorrect parsing of object types in pg_dump filter files (Fujii Masao)

Treat keywords as extending to the next whitespace, rather than stopping at the first non-alphanumeric character as before. This makes no difference for valid keywords, but it allows some error cases to be recognized properly. For example, table-data will now be rejected, whereas previously it was misinterpreted as table.

  • pg_restore failed to restore large objects (BLOBs) from directory-format dumps made by pg_dump versions before PostgreSQL v12 (Pavel Stehule)

  • In pg_upgrade, check for inconsistent inherited not-null constraints (Ali Akbar)

PostgreSQL versions before 18 allow an inherited column not-null constraint to be dropped. However, this results in a schema that cannot be restored, leading to failure in pg_upgrade. Detect such cases during pg_upgrade's preflight checks to allow users to fix them before initiating the upgrade.

  • Don't require that the target installation have max_slot_wal_keep_size set to its default during pg_upgrade (Dilip Kumar)

  • Avoid assertion failure if track_commit_timestamp is enabled during initdb (Hayato Kuroda, Andy Fan)

  • Fix pg_waldump to show information about dropped statistics in PREPARE TRANSACTION WAL records (Daniil Davydov)

  • Avoid possible leak of the open connection during contrib/dblink connection establishment (Tom Lane)

In the rare scenario where we hit out-of-memory while inserting the new connection object into dblink's hashtable, the open connection would be leaked until end of session, leaving an idle session sitting on the remote server.

  • Make contrib/pg_prewarm cope with very large shared_buffers settings (Daria Shanina)

Autoprewarm failed with a memory allocation error if shared_buffers was larger than about 50 million buffers (400GB).

  • Prevent assertion failure in contrib/pg_prewarm (Masahiro Ikeda)

Applying pg_prewarm() to a relation lacking storage (such as a view) caused an assertion failure, although there was no ill effect in non-assert builds. Add an error check to reject that case.

  • In contrib/pg_stat_statements, avoid leaving gaps in the set of parameter numbers used in a normalized query (Sami Imseih)

  • Fix memory leakage in contrib/postgres_fdw's DirectModify methods (Tom Lane)

The PGresult holding the results of the remote modify command would be leaked for the rest of the session if the query fails between invocations of the DirectModify methods, which could happen when there's RETURNING data to process.

  • Ensure that directories listed in configure's --with-includes and --with-libraries options are searched before system-supplied directories (Tom Lane)

A common reason for using these options is to allow a user-built version of some library to override the system-supplied version. However, that failed to work in some environments because of careless ordering of switches in the commands issued by the makefiles.

  • Fix configure's checks for __cpuid() and __cpuidex() (Lukas Fittl, Michael Paquier)

configure failed to detect these Windows-specific functions, so that they would not be used, leading to slower-than-necessary CRC computations since the availability of hardware instructions could not be verified. The practical impact of this error was limited, because production builds for Windows typically do not use the Autoconf toolchain.

  • Fix build failure with --with-pam option on Solaris-based platforms (Tom Lane)

Solaris is inconsistent with other Unix platforms about the API for PAM authentication. This manifested as an “inconsistent pointer” compiler warning, which we never did anything about. But as of GCC 14 it's an error not warning by default, so fix it.

  • Make our code portable to GNU Hurd (Michael Banck, Christoph Berg, Samuel Thibault)

Fix assumptions about IOV_MAX and O_RDONLY that don't hold on Hurd.

  • Make our usage of memset_s() conform strictly to the C11 standard (Tom Lane)

This avoids compile failures on some platforms.

  • Silence compatibility warning when using Meson to build with MSVC (Peter Eisentraut)

  • Prevent uninitialized-value compiler warnings in JSONB comparison code (Tom Lane)

  • Avoid deprecation warnings when building with libxml2 2.14 and later (Michael Paquier)

  • Avoid problems when compiling pg_locale.h under C++ (John Naylor)

PostgreSQL header files generally need to be wrapped in extern "C" { ... } in order to be included in extensions written in C++. This failed for pg_locale.h because of its use of libicu headers, but we can work around that by suppressing C++-only declarations in those headers. C++ extensions that want to use libicu's C++ APIs can do so by including the libicu headers ahead of pg_locale.h.

Release 17.5#

Release date:

2025-05-08

This release contains a variety of fixes from 17.4. For information about new features in major release 17, see Release 17.

Migration to Version 17.5#

A dump/restore is not required for those running 17.X.

However, if you have any self-referential foreign key constraints on partitioned tables, it may be necessary to recreate those constraints to ensure that they are being enforced correctly. See the second changelog entry below.

Also, if you have any BRIN bloom indexes, it may be advisable to reindex them after updating. See the third changelog entry below.

Also, if you are upgrading from a version earlier than 17.1, see Release 17.1.

Changes#

  • Avoid one-byte buffer overread when examining invalidly-encoded strings that are claimed to be in GB18030 encoding (Noah Misch, Andres Freund)

While unlikely, a SIGSEGV crash could occur if an incomplete multibyte character appeared at the end of memory. This was possible both in the server and in libpq-using applications. (CVE-2025-4207)

  • Handle self-referential foreign keys on partitioned tables correctly (Álvaro Herrera)

Creating or attaching partitions failed to make the required catalog entries for a foreign-key constraint, if the table referenced by the constraint was the same partitioned table. This resulted in failure to enforce the constraint fully.

To fix this, you should drop and recreate any self-referential foreign keys on partitioned tables, if partitions have been created or attached since the constraint was created. Bear in mind that violating rows might already be present, in which case recreating the constraint will fail, and you'll need to fix up those rows before trying again.

  • Avoid data loss when merging compressed BRIN summaries in brin_bloom_union() (Tomas Vondra)

The code failed to account for decompression results not being identical to the input objects, which would result in failure to add some of the data to the merged summary, leading to missed rows in index searches.

This mistake was present back to v14 where BRIN bloom indexes were introduced, but this code path was only rarely reached then. It's substantially more likely to be hit in v17 because parallel index builds now use the code.

  • Fix unexpected “attribute has wrong type” errors in UPDATE, DELETE, and MERGE queries that use whole-row table references to views or functions in FROM (Tom Lane)

  • Fix MERGE into a partitioned table with DO NOTHING actions (Tender Wang)

Some cases failed with “unknown action in MERGE WHEN clause” errors.

  • Prevent failure in INSERT commands when the table has a GENERATED column of a domain data type and the domain's constraints disallow null values (Jian He)

Constraint failure was reported even if the generation expression produced a perfectly okay result.

  • Correctly process references to outer CTE names that appear within a WITH clause attached to an INSERT/UPDATE/DELETE/MERGE command that's inside WITH (Tom Lane)

The parser failed to detect disallowed recursion cases, nor did it account for such references when sorting CTEs into a usable order.

  • Fix misprocessing of casts within the keys of JSON constructor expressions (Amit Langote)

  • Don't try to parallelize array_agg() when the argument is of an anonymous record type (Richard Guo, Tom Lane)

The protocol for communicating with parallel workers doesn't support identifying the concrete record type that a worker is returning.

  • Fix ARRAY(subquery) and ARRAY[expression, ...] constructs to produce sane results when the input is of type int2vector or oidvector (Tom Lane)

This patch restores the behavior that existed before PostgreSQL 9.5: the result is of type int2vector[] or oidvector[].

  • Fix possible erroneous reports of invalid affixes while parsing Ispell dictionaries (Jacob Brazeal)

  • Fix ALTER TABLE ADD COLUMN to correctly handle the case of a domain type that has a default (Jian He, Tom Lane, Tender Wang)

If a domain type has a default, adding a column of that type (without any explicit DEFAULT clause) failed to install the domain's default value in existing rows, instead leaving the new column null.

  • Repair misbehavior when there are duplicate column names in a foreign key constraint's ON DELETE SET DEFAULT or SET NULL action (Tom Lane)

  • Improve the error message for disallowed attempts to alter the properties of a foreign key constraint (Álvaro Herrera)

  • Avoid error when resetting the relhassubclass flag of a temporary table that's marked ON COMMIT DELETE ROWS (Noah Misch)

  • Add missing deparsing of the INDENT option of XMLSERIALIZE() (Jim Jones)

Previously, views or rules using XMLSERIALIZE(... INDENT) were dumped without the INDENT clause, causing incorrect results after restore.

  • Avoid premature evaluation of the arguments of an aggregate function that has both FILTER and ORDER BY (or DISTINCT) options (David Rowley)

If there is ORDER BY or DISTINCT, we consider pre-sorting the aggregate input values rather than doing the sort within the Agg plan node. But this is problematic if the aggregate inputs include expressions that could fail (for example, a division where some of the input divisors could be zero) and there is a FILTER clause that's meant to prevent such failures. Pre-sorting would push the expression evaluations to before the FILTER test, allowing the failures to happen anyway. Avoid this by not pre-sorting if there's a FILTER and the input expressions are anything more complex than a simple Var or Const.

  • Fix erroneous deductions from column NOT NULL constraints in the presence of outer joins (Richard Guo)

In some cases the planner would discard an IS NOT NULL query condition, even though the condition applies after an outer join and thus is not redundant.

  • Avoid incorrect optimizations based on IS [NOT] NULL tests that are applied to composite values (Bruce Momjian)

  • Fix planner's failure to identify more than one hashable ScalarArrayOpExpr subexpression within a top-level expression (David Geier)

This resulted in unnecessarily-inefficient execution of any additional subexpressions that could have been processed with a hash table (that is, IN, NOT IN, or = ANY clauses with all-constant right-hand sides).

  • Fix incorrect table size estimate with low fill factor (Tomas Vondra)

When the planner estimates the number of rows in a never-yet-analyzed table, it uses the table's fillfactor setting in the estimation, but it neglected to clamp the result to at least one row per page. A low fillfactor could thus result in an unreasonably small estimate.

  • Disable “skip fetch” optimization in bitmap heap scan (Matthias van de Meent)

It turns out that this optimization can result in returning dead tuples when a concurrent vacuum marks a page all-visible.

  • Fix performance issues in GIN index search startup when there are many search keys (Tom Lane, Vinod Sridharan)

An indexable clause with many keys (for example, jsonbcol ?| array[...] with tens of thousands of array elements) took O(N2) time to start up, and was uncancelable for that interval too.

  • Detect missing support procedures in a BRIN index operator class, and report an error instead of crashing (Álvaro Herrera)

  • Respond to interrupts (such as query cancel) while waiting for asynchronous subplans of an Append plan node (Heikki Linnakangas)

Previously, nothing would happen until one of the subplans becomes ready.

  • Report the I/O statistics of active WAL senders more frequently (Bertrand Drouvot)

Previously, the pg_stat_io view failed to accumulate I/O performed by a WAL sender until that process exited. Now such I/O will be reported after at most one second's delay.

  • Fix race condition in handling of synchronous_standby_names immediately after startup (Melnikov Maksim, Michael Paquier)

For a short period after system startup, backends might fail to wait for synchronous commit even though synchronous_standby_names is enabled.

  • Cope with possible intra-query changes of io_combine_limit (Thomas Munro)

  • Avoid infinite loop if scram_iterations is set to INT_MAX (Kevin K Biju)

  • Avoid possible crashes due to double transformation of json_array()'s subquery (Tom Lane)

  • Fix pg_strtof() to not crash with null endptr (Alexander Lakhin, Tom Lane)

  • Fix crash after out-of-memory in certain GUC assignments (Daniel Gustafsson)

  • Avoid crash when a Snowball stemmer encounters an out-of-memory condition (Maksim Korotkov)

  • Fix over-enthusiastic freeing of SpecialJoinInfo structs during planning (Richard Guo)

This led to crashes during planning if partitionwise joining is enabled.

  • Disallow copying of invalidated replication slots (Shlok Kyal)

This prevents trouble when the invalid slot points to WAL that's already been removed.

  • Disallow restoring logical replication slots on standby servers that are not in hot-standby mode (Masahiko Sawada)

This prevents a scenario where the slot could remain valid after promotion even if wal_level is too low.

  • Prevent over-advancement of catalog xmin in “fast forward” mode of logical decoding (Zhijie Hou)

This mistake could allow deleted catalog entries to be vacuumed away even though they were still potentially needed by the WAL-reading process.

  • Avoid data loss when DDL operations that don't take a strong lock affect tables that are being logically replicated (Shlok Kyal, Hayato Kuroda)

The catalog changes caused by the DDL command were not reflected into WAL-decoding processes, allowing them to decode subsequent changes using stale catalog data, probably resulting in data corruption.

  • Prevent incorrect reset of replication origin when an apply worker encounters an error but the error is caught and does not result in worker exit (Hayato Kuroda)

This mistake could allow duplicate data to be applied.

  • Fix crash in logical replication if the subscriber's partitioned table has a BRIN index (Tom Lane)

  • Avoid duplicate snapshot creation in logical replication index lookups (Heikki Linnakangas)

  • Improve detection of mixed-origin subscriptions (Hou Zhijie, Shlok Kyal)

Subscription creation gives a warning if a subscribed-to table is also being followed through other publications, since that could cause duplicate data to be received. This change improves that logic to also detect cases where a partition parent or child table is the one being followed through another publication.

  • Fix wrong checkpoint details in error message about incorrect recovery timeline choice (David Steele)

If the requested recovery timeline is not reachable, the reported checkpoint and timeline should be the values read from the backup_label, if there is one. This message previously reported values from the control file, which is correct when recovering from the control file without a backup_label, but not when there is a backup_label.

  • Fix order of operations in smgropen() (Andres Freund)

Ensure that the SMgrRelation object is fully initialized before calling the smgr_open callback, so that it can be cleaned up properly if the callback fails.

  • Remove incorrect assertion in pgstat_report_stat() (Michael Paquier)

  • Fix overly-strict assertion in gistFindCorrectParent() (Heikki Linnakangas)

  • Avoid assertion failure in parallel vacuum when maintenance_work_mem has a very small value (Masahiko Sawada)

  • Fix rare assertion failure in standby servers when the primary is restarted (Heikki Linnakangas)

  • In PL/pgSQL, avoid “unexpected plan node type” error when a scrollable cursor is defined on a simple SELECT expression query (Andrei Lepikhov)

  • Don't try to drop individual index partitions in pg_dump's --clean mode (Jian He)

The server rejects such DROP commands. That has no real consequences, since the partitions will go away anyway in the subsequent DROPs of either their parent tables or their partitioned index. However, the error reported for the attempted drop causes problems when restoring in --single-transaction mode.

  • In pg_dumpall, avoid emitting invalid role GRANT commands if pg_auth_members contains invalid role OIDs (Tom Lane)

Instead, print a warning and skip the entry. This copes better with catalog corruption that has been seen to occur in back branches as a result of race conditions between GRANT and DROP ROLE.

  • In pg_amcheck and pg_upgrade, use the correct function to free allocations made by libpq (Michael Paquier, Ranier Vilela)

These oversights could result in crashes in certain Windows build configurations, such as a debug build of libpq used by a non-debug build of the calling application.

  • Fix reindexdb's scheduling of parallel reindex operations (Alexander Korotkov)

The original coding failed to achieve the expected amount of parallelism.

  • Avoid crashing with corrupt input data in contrib/pageinspect's heap_page_items() (Dmitry Kovalenko)

  • Prevent assertion failure in contrib/pg_freespacemap's pg_freespacemap() (Tender Wang)

Applying pg_freespacemap() to a relation lacking storage (such as a view) caused an assertion failure, although there was no ill effect in non-assert builds. Add an error check to reject that case.

  • In contrib/postgres_fdw, avoid pulling up restriction conditions from subqueries (Alexander Pyhalov)

This fix prevents rare cases of “unexpected expression in subquery output” errors.

  • Fix build failure when an old version of libpq_fe.h is present in system include directories (Tom Lane)

  • Fix build failure on macOS 15.4 (Tom Lane, Peter Eisentraut)

This macOS update broke our configuration probe for strchrnul().

  • Fix valgrind labeling of per-buffer data of read streams (Thomas Munro)

This affects no core code in released versions of PostgreSQL, but an extension using the per-buffer data feature might have encountered spurious failures when being tested under valgrind.

  • Avoid valgrind complaints about string hashing code (John Naylor)

  • Update time zone data files to tzdata release 2025b for DST law changes in Chile, plus historical corrections for Iran (Tom Lane)

There is a new time zone America/Coyhaique for Chile's Aysén Region, to account for it changing to UTC-03 year-round and thus diverging from America/Santiago.

Release 17.4#

Release date:

2025-02-20

This release contains a few fixes from 17.3. For information about new features in major release 17, see Release 17.

Migration to Version 17.4#

A dump/restore is not required for those running 17.X.

However, if you are upgrading from a version earlier than 17.1, see Release 17.1.

Changes#

  • Improve behavior of libpq's quoting functions (Andres Freund, Tom Lane)

The changes made for CVE-2025-1094 had one serious oversight: PQescapeLiteral() and PQescapeIdentifier() failed to honor their string length parameter, instead always reading to the input string's trailing null. This resulted in including unwanted text in the output, if the caller intended to truncate the string via the length parameter. With very bad luck it could cause a crash due to reading off the end of memory.

In addition, modify all these quoting functions so that when invalid encoding is detected, an invalid sequence is substituted for just the first byte of the presumed character, not all of it. This reduces the risk of problems if a calling application performs additional processing on the quoted string.

  • Fix small memory leak in pg_createsubscriber (Ranier Vilela)

  • Fix meson build system to correctly detect availability of the bsd_auth.h system header (Nazir Bilal Yavuz)

Release 17.3#

Release date:

2025-02-13

This release contains a variety of fixes from 17.2. For information about new features in major release 17, see Release 17.

Migration to Version 17.3#

A dump/restore is not required for those running 17.X.

However, if you are upgrading from a version earlier than 17.1, see Release 17.1.

Changes#

  • Harden PQescapeString and allied functions against invalidly-encoded input strings (Andres Freund, Noah Misch)

Data-quoting functions supplied by libpq now fully check the encoding validity of their input. If invalid characters are detected, they report an error if possible. For the ones that lack an error return convention, the output string is adjusted to ensure that the server will report invalid encoding and no intervening processing will be fooled by bytes that might happen to match single quote, backslash, etc.

The purpose of this change is to guard against SQL-injection attacks that are possible if one of these functions is used to quote crafted input. There is no hazard when the resulting string is sent directly to a PostgreSQL server (which would check its encoding anyway), but there is a risk when it is passed through psql or other client-side code. Historically such code has not carefully vetted encoding, and in many cases it's not clear what it should do if it did detect such a problem.

This fix is effective only if the data-quoting function, the server, and any intermediate processing agree on the character encoding that's being used. Applications that insert untrusted input into SQL commands should take special care to ensure that that's true.

Applications and drivers that quote untrusted input without using these libpq functions may be at risk of similar problems. They should first confirm the data is valid in the encoding expected by the server.

The PostgreSQL Project thanks Stephen Fewer for reporting this problem. (CVE-2025-1094)

  • Restore auto-truncation of database and user names appearing in connection requests (Nathan Bossart)

This reverts a v17 change that proved to cause trouble for some users. Over-length names should be truncated in an encoding-aware fashion, but for now just return to the former behavior of blind truncation at NAMEDATALEN-1 bytes.

  • Exclude parallel workers from connection privilege checks and limits (Tom Lane)

Do not check datallowconn, rolcanlogin, and ACL_CONNECT privileges when starting a parallel worker, instead assuming that it's enough for the leader process to have passed similar checks originally. This avoids, for example, unexpected failures of parallelized queries when the leader is running as a role that lacks login privilege. In the same vein, enforce ReservedConnections, datconnlimit, and rolconnlimit limits only against regular backends, and count only regular backends while checking if the limits were already reached. Those limits are meant to prevent excessive consumption of process slots for regular backends --- but parallel workers and other special processes have their own pools of process slots with their own limit checks.

  • Drop “Lock” suffix from LWLock wait event names (Bertrand Drouvot)

Refactoring unintentionally caused the pg_stat_activity view to show lock-related wait event names with a “Lock” suffix, which among other things broke joining it to pg_wait_events.

  • Fix possible failure to return all matching tuples for a btree index scan with a ScalarArrayOp (= ANY) condition (Peter Geoghegan)

  • Fix possible re-use of stale results in window aggregates (David Rowley)

A window aggregate with a “run condition” optimization and a pass-by-reference result type might incorrectly return the result from the previous partition instead of performing a fresh calculation.

  • Keep TransactionXmin in sync with MyProc->xmin (Heikki Linnakangas)

This oversight could permit a process to try to access data that had already been vacuumed away. One known consequence is transient “could not access status of transaction” errors.

  • Fix race condition that could cause failure to add a newly-inserted catalog entry to a catalog cache list (Heikki Linnakangas)

This could result, for example, in failure to use a newly-created function within an existing session.

  • Prevent possible catalog corruption when a system catalog is vacuumed concurrently with an update (Noah Misch)

  • Fix data corruption when relation truncation fails (Thomas Munro)

The filesystem calls needed to perform relation truncation could fail, leaving inconsistent state on disk (for example, effectively reviving deleted data). We can't really prevent that, but we can recover by dint of making such failures into PANICs, so that consistency is restored by replaying from WAL up to just before the attempted truncation. This isn't a hugely desirable behavior, but such failures are rare enough that it seems an acceptable solution.

  • Prevent checkpoints from starting during relation truncation (Robert Haas)

This avoids a race condition wherein the modified file might not get fsync'd before completing the checkpoint, creating a risk of data corruption if the operating system crashes soon after.

  • Avoid possibly losing an update of pg_database.datfrozenxid when VACUUM runs concurrently with a REASSIGN OWNED that changes that database's owner (Kirill Reshke)

  • Fix incorrect tg_updatedcols values passed to AFTER UPDATE triggers (Tom Lane)

In some cases the tg_updatedcols bitmap could describe the set of columns updated by an earlier command in the same transaction, fooling the trigger into doing the wrong thing.

Also, prevent memory bloat caused by making too many copies of the tg_updatedcols bitmap.

  • Fix detach of a partition that has its own foreign-key constraint referencing a partitioned table (Amul Sul)

In common cases, foreign keys are defined on a partitioned table's top level; but if instead one is defined on a partition and references a partitioned table, and the referencing partition is detached, the relevant pg_constraint entries were updated incorrectly. This led to errors like “could not find ON INSERT check triggers of foreign key constraint”.

  • Fix pg_get_constraintdef's support for NOT NULL constraints on domains (Álvaro Herrera)

  • Fix mis-processing of to_timestamp's FFn format codes (Tom Lane)

An integer format code immediately preceding FFn would consume all available digits, leaving none for FFn.

  • When deparsing a PASSING clause in a SQL/JSON query function, ensure that variable names are double-quoted when necessary (Dean Rasheed)

  • When deparsing an XMLTABLE() expression, ensure that XML namespace names are double-quoted when necessary (Dean Rasheed)

  • Include the ldapscheme option in pg_hba_file_rules() output (Laurenz Albe)

  • Fix planning of pre-sorted UNION operations for cases where the input column datatypes don't all match (David Rowley)

This error could lead to sorting data with the wrong sort operator, with consequences ranging from no visible problem to core dumps.

  • Don't merge UNION operations if their column collations aren't consistent (Tom Lane)

Previously we ignored collations when deciding if it's safe to merge UNION steps into a single N-way UNION operation. This was arguably valid before the introduction of nondeterministic collations, but it's not anymore, since the collation in use can affect the definition of uniqueness.

  • Prevent “wrong varnullingrels” planner errors after pulling up a subquery that's underneath an outer join (Tom Lane)

  • Ignore nulling-relation marker bits when looking up statistics (Richard Guo)

This oversight could lead to failure to use relevant statistics about expressions, or to “corrupt MVNDistinct entry” errors.

  • Fix missed expression processing for partition pruning steps (Tom Lane)

This oversight could lead to “unrecognized node type” errors, and perhaps other problems, in queries accessing partitioned tables.

  • Give the slotsync worker process its own process slot (Tom Lane, Hou Zhijie)

This was overlooked in the addition of the slotsync worker, with the result that its process slot effectively came out of the pool meant for regular backend processes. This could result in failure to launch the worker, or to subsequent failures of connection requests that should have succeeded according to the configured settings, if the number of regular backend processes approached max_connections.

  • Allow dshash tables to grow past 1GB (Matthias van de Meent)

This avoids errors like “invalid DSA memory alloc request size”. The case can occur for example in transactions that process several million tables.

  • Avoid possible integer overflow in bringetbitmap() (James Hunter, Evgeniy Gorbanyov)

Since the result is only used for statistical purposes, the effects of this error were mostly cosmetic.

  • Correct miscalculation of SLRU bank numbers (Yura Sokolov)

This error led to using a smaller number of banks than intended, causing more contention but no functional misbehavior.

  • Ensure that an already-set process latch doesn't prevent the postmaster from noticing socket events (Thomas Munro)

An extremely heavy workload of backends launching workers and workers exiting could prevent the postmaster from responding to incoming client connections in a timely fashion.

  • Prevent streaming standby servers from looping infinitely when reading a WAL record that crosses pages (Kyotaro Horiguchi, Alexander Kukushkin)

This would happen when the record's continuation is on a page that needs to be read from a different WAL source.

  • Fix unintended promotion of FATAL errors to PANIC during early process startup (Noah Misch)

This fixes some unlikely cases that would result in “PANIC: proc_exit() called in child process”.

  • Fix cases where an operator family member operator or support procedure could become a dangling reference (Tom Lane)

In some cases a data type could be dropped while references to its OID still remain in pg_amop or pg_amproc. While that caused no immediate issues, an attempt to drop the owning operator family would fail, and pg_dump would produce bogus output when dumping the operator family. This fix causes creation and modification of operator families/classes to add needed dependency entries so that dropping a data type will also drop any dependent operator family elements. That does not help vulnerable pre-existing operator families, though, so a band-aid has also been added to DROP OPERATOR FAMILY to prevent failure when dropping a family that has dangling members.

  • Fix multiple memory leaks in logical decoding output (Vignesh C, Masahiko Sawada, Boyu Yang)

  • Fix small memory leak when updating the application_name or cluster_name settings (Tofig Aliev)

  • Avoid crash when a background process tries to check a new value of synchronized_standby_slots (Álvaro Herrera)

  • Avoid integer overflow while testing wal_skip_threshold condition (Tom Lane)

A transaction that created a very large relation could mistakenly decide to ensure durability by copying the relation into WAL instead of fsync'ing it, thereby negating the point of wal_skip_threshold. (This only matters when wal_level is set to minimal, else a WAL copy is required anyway.)

  • Fix unsafe order of operations during cache lookups (Noah Misch)

The only known consequence was a usually-harmless “you don't own a lock of type ExclusiveLock” warning during GRANT TABLESPACE.

  • Avoid potential use-after-free in parallel vacuum (Vallimaharajan G, John Naylor)

This bug seems to have no consequences in standard builds, but it's theoretically a hazard.

  • Fix possible “failed to resolve name” failures when using JIT on older ARM platforms (Thomas Munro)

This could occur as a consequence of inconsistency about the default setting of -moutline-atomics between gcc and clang. At least Debian and Ubuntu are known to ship gcc and clang compilers that target armv8-a but differ on the use of outline atomics by default.

  • Fix assertion failure in WITH RECURSIVE ... UNION queries (David Rowley)

  • Avoid assertion failure in rule deparsing if a set operation leaf query contains set operations (Man Zeng, Tom Lane)

  • Avoid edge-case assertion failure in parallel query startup (Tom Lane)

  • Fix assertion failure at shutdown when writing out the statistics file (Michael Paquier)

  • Avoid valgrind complaints about string hashing code (John Naylor)

  • In NULLIF(), avoid passing a read-write expanded object pointer to the data type's equality function (Tom Lane)

The equality function could modify or delete the object if it's given a read-write pointer, which would be bad if we decide to return it as the NULLIF() result. There is probably no problem with any built-in equality function, but it's easy to demonstrate a failure with one coded in PL/pgSQL.

  • Ensure that expression preprocessing is applied to a default null value in INSERT (Tom Lane)

If the target column is of a domain type, the planner must insert a coerce-to-domain step not just a null constant, and this expression missed going through some required processing steps. There is no known consequence with domains based on core data types, but in theory an error could occur with domains based on extension types.

  • Avoid data loss when starting a bulk write on a relation fork that already contains data (Matthias van de Meent)

Any pre-existing data was overwritten with zeroes. This is not an issue for core PostgreSQL, which never does that. Some extensions would like to, however.

  • Avoid crash if a server process tried to iterate over a shared radix tree that it didn't create (Masahiko Sawada)

There is no code in core PostgreSQL that does this, but an extension might wish to.

  • Repair memory leaks in PL/Python (Mat Arye, Tom Lane)

Repeated use of PLyPlan.execute or plpy.cursor resulted in memory leakage for the duration of the calling PL/Python function.

  • Fix PL/Tcl to compile with Tcl 9 (Peter Eisentraut)

  • In the ecpg preprocessor, fix possible misprocessing of cursors that reference out-of-scope variables (Tom Lane)

  • In ecpg, fix compile-time warnings about unsupported use of COPY ... FROM STDIN (Ryo Kanbayashi)

Previously, the intended warning was not issued due to a typo.

  • Fix psql to safely handle file path names that are encoded in SJIS (Tom Lane)

Some two-byte characters in SJIS have a second byte that is equal to ASCII backslash (\). These characters were corrupted by path name normalization, preventing access to files whose names include such characters.

  • Add psql tab completion for COPY (MERGE INTO) (Jian He)

  • Fix use of wrong version of pqsignal() in pgbench and psql (Fujii Masao, Tom Lane)

This error could lead to misbehavior when using the -T option in pgbench or the \watch command in psql, due to interrupted system calls not being resumed as expected.

  • Fix misexecution of some nested \if constructs in pgbench (Michail Nikolaev)

An \if command appearing within a false (not-being-executed) \if branch was incorrectly treated the same as \elif.

  • In pgbench, fix possible misdisplay of progress messages during table initialization (Yushi Ogiwara, Tatsuo Ishii, Fujii Masao)

  • Make pg_controldata more robust against corrupted pg_control files (Ilyasov Ian, Anton Voloshin)

Since pg_controldata will attempt to print the contents of pg_control even if the CRC check fails, it must take care not to misbehave for invalid field values. This patch fixes some issues triggered by invalid timestamps and apparently-negative WAL segment sizes.

  • Fix possible crash in pg_dump with identity sequences attached to tables that are extension members (Tom Lane)

  • Fix memory leak in pg_restore with zstd-compressed data (Tom Lane)

The leak was per-decompression-operation, so would be most noticeable with a dump containing many tables or large objects.

  • Fix pg_basebackup to correctly handle pg_wal.tar files exceeding 2GB on Windows (Davinder Singh, Thomas Munro)

  • Use SQL-standard function bodies in the declarations of contrib/earthdistance's SQL-language functions (Tom Lane, Ronan Dunklau)

This change allows their references to contrib/cube to be resolved during extension creation, reducing the risk of search-path-based failures and possible attacks.

In particular, this restores their usability in contexts like generated columns, for which PostgreSQL v17 restricts the search path on security grounds. We have received reports of databases failing to be upgraded to v17 because of that. This patch has been included in v16 to provide a workaround: updating the earthdistance extension to this version beforehand should allow an upgrade to succeed.

  • Detect version mismatch between contrib/pageinspect's SQL declarations and the underlying shared library (Tomas Vondra)

Previously, such a mismatch could result in a crash while calling brin_page_items(). Instead throw an error recommending updating the extension.

  • When trying to cancel a remote query in contrib/postgres_fdw, re-issue the cancel request a few times if it didn't seem to do anything (Tom Lane)

This fixes a race condition where we might try to cancel a just-sent query before the remote server has started to process it, so that the initial cancel request is ignored.

  • Update configuration probes that determine the compiler switches needed to access ARM CRC instructions (Tom Lane)

On ARM platforms where the baseline CPU target lacks CRC instructions, we need to supply a -march switch to persuade the compiler to compile such instructions. Recent versions of gcc reject the value we were trying, leading to silently falling back to software CRC.

  • Fix meson build system to support old OpenSSL libraries on Windows (Darek Slusarczyk)

Add support for the legacy library names ssleay32 and libeay32.

  • In Windows builds using meson, ensure all libcommon and libpgport functions are exported (Vladlen Popolitov, Heikki Linnakangas)

This fixes “unresolved external symbol” build errors for extensions.

  • Fix meson configuration process to correctly detect OSSP's uuid.h header file under MSVC (Andrew Dunstan)

  • When building with meson, install pgevent in \<pkglibdir> not \<bindir> (Peter Eisentraut)

This matches the behavior of the make-based build system and the old MSVC build system.

  • When building with meson, install sepgsql.sql under share/contrib/ not share/extension/ (Peter Eisentraut)

This matches what the make-based build system does.

  • Update time zone data files to tzdata release 2025a for DST law changes in Paraguay, plus historical corrections for the Philippines (Tom Lane)

Release 17.2#

Release date:

2024-11-21

This release contains a few fixes from 17.1. For information about new features in major release 17, see Release 17.

Migration to Version 17.2#

A dump/restore is not required for those running 17.X.

However, if you are upgrading from a version earlier than 17.1, see Release 17.1.

Changes#

  • Repair ABI break for extensions that work with struct ResultRelInfo (Tom Lane)

Last week's minor releases unintentionally broke binary compatibility with timescaledb and several other extensions. Restore the affected structure to its previous size, so that such extensions need not be rebuilt.

  • Restore functionality of ALTER {ROLE|DATABASE} SET role (Tom Lane, Noah Misch)

The fix for CVE-2024-10978 accidentally caused settings for role to not be applied if they come from non-interactive sources, including previous ALTER {ROLE|DATABASE} commands and the PGOPTIONS environment variable.

  • Fix cases where a logical replication slot's restart_lsn could go backwards (Masahiko Sawada)

Previously, restarting logical replication could sometimes cause the slot's restart point to be recomputed as an older value than had previously been advertised in pg_replication_slots. This is bad, since for example WAL files might have been removed on the basis of the later restart_lsn value, in which case replication would fail to restart.

  • Avoid deleting still-needed WAL files during pg_rewind (Polina Bungina, Alexander Kukushkin)

Previously, in unlucky cases, it was possible for pg_rewind to remove important WAL files from the rewound demoted primary. In particular this happens if those files have been marked for archival (i.e., their .ready files were created) but not yet archived. Then the newly promoted node no longer has such files because of them having been recycled, but likely they are needed for recovery in the demoted node. If pg_rewind removes them, recovery is not possible anymore.

  • Fix race conditions associated with dropping shared statistics entries (Kyotaro Horiguchi, Michael Paquier)

These bugs could lead to loss of statistics data, assertion failures, or “can only drop stats once” errors.

  • Count index scans in contrib/bloom indexes in the statistics views, such as the pg_stat_user_indexes.idx_scan counter (Masahiro Ikeda)

  • Fix crash when checking to see if an index's opclass options have changed (Alexander Korotkov)

Some forms of ALTER TABLE would fail if the table has an index with non-default operator class options.

  • Avoid assertion failure caused by disconnected NFA sub-graphs in regular expression parsing (Tom Lane)

This bug does not appear to have any visible consequences in non-assert builds.

Release 17.1#

Release date:

2024-11-14

This release contains a variety of fixes from 17.0. For information about new features in major release 17, see Release 17.

Migration to Version 17.1#

A dump/restore is not required for those running 17.X.

However, if you have ever detached a partition from a partitioned table that has a foreign-key reference to another partitioned table, and not dropped the former partition, then you may have catalog and/or data corruption to repair, as detailed in the fifth changelog entry below.

Also, in the uncommon case that a database's LC_CTYPE setting is C while its LC_COLLATE setting is some other locale, indexes on textual columns should be reindexed, as described in the sixth changelog entry below.

Changes#

  • Ensure cached plans are marked as dependent on the calling role when RLS applies to a non-top-level table reference (Nathan Bossart)

If a CTE, subquery, sublink, security invoker view, or coercion projection in a query references a table with row-level security policies, we neglected to mark the resulting plan as potentially dependent on which role is executing it. This could lead to later query executions in the same session using the wrong plan, and then returning or hiding rows that should have been hidden or returned instead.

The PostgreSQL Project thanks Wolfgang Walther for reporting this problem. (CVE-2024-10976)

  • Make libpq discard error messages received during SSL or GSS protocol negotiation (Jacob Champion)

An error message received before encryption negotiation is completed might have been injected by a man-in-the-middle, rather than being real server output. Reporting it opens the door to various security hazards; for example, the message might spoof a query result that a careless user could mistake for correct output. The best answer seems to be to discard such data and rely only on libpq's own report of the connection failure.

The PostgreSQL Project thanks Jacob Champion for reporting this problem. (CVE-2024-10977)

  • Fix unintended interactions between SET SESSION AUTHORIZATION and SET ROLE (Tom Lane)

The SQL standard mandates that SET SESSION AUTHORIZATION have a side-effect of doing SET ROLE NONE. Our implementation of that was flawed, creating more interaction between the two settings than intended. Notably, rolling back a transaction that had done SET SESSION AUTHORIZATION would revert ROLE to NONE even if that had not been the previous state, so that the effective user ID might now be different from what it had been before the transaction. Transiently setting session_authorization in a function SET clause had a similar effect. A related bug was that if a parallel worker inspected current_setting('role'), it saw none even when it should see something else.

The PostgreSQL Project thanks Tom Lane for reporting this problem. (CVE-2024-10978)

  • Prevent trusted PL/Perl code from changing environment variables (Andrew Dunstan, Noah Misch)

The ability to manipulate process environment variables such as PATH gives an attacker opportunities to execute arbitrary code. Therefore, “trusted” PLs must not offer the ability to do that. To fix plperl, replace %ENV with a tied hash that rejects any modification attempt with a warning. Untrusted plperlu retains the ability to change the environment.

The PostgreSQL Project thanks Coby Abrams for reporting this problem. (CVE-2024-10979)

  • Fix updates of catalog state for foreign-key constraints when attaching or detaching table partitions (Jehan-Guillaume de Rorthais, Tender Wang, Álvaro Herrera)

If the referenced table is partitioned, then different catalog entries are needed for a referencing table that is stand-alone versus one that is a partition. ATTACH/DETACH PARTITION commands failed to perform this conversion correctly. In particular, after DETACH the now stand-alone table would be missing foreign-key enforcement triggers, which could result in the table later containing rows that fail the foreign-key constraint. A subsequent re-ATTACH could fail with surprising errors, too.

The way to fix this is to do ALTER TABLE DROP CONSTRAINT on the now stand-alone table for each faulty constraint, and then re-add the constraint. If re-adding the constraint fails, then some erroneous data has crept in. You will need to manually re-establish consistency between the referencing and referenced tables, then re-add the constraint.

This query can be used to identify broken constraints and construct the commands needed to recreate them:

  SELECT conrelid::pg_catalog.regclass AS "constrained table",
         conname AS constraint,
         confrelid::pg_catalog.regclass AS "references",
         pg_catalog.format('ALTER TABLE %s DROP CONSTRAINT %I;',
                           conrelid::pg_catalog.regclass, conname) AS "drop",
         pg_catalog.format('ALTER TABLE %s ADD CONSTRAINT %I %s;',
                           conrelid::pg_catalog.regclass, conname,
                           pg_catalog.pg_get_constraintdef(oid)) AS "add"
  FROM pg_catalog.pg_constraint c
  WHERE contype = 'f' AND conparentid = 0 AND
     (SELECT count(*) FROM pg_catalog.pg_constraint c2
      WHERE c2.conparentid = c.oid) <>
     ((SELECT count(*) FROM pg_catalog.pg_inherits i
      WHERE (i.inhparent = c.conrelid OR i.inhparent = c.confrelid) AND
        EXISTS (SELECT 1 FROM pg_catalog.pg_partitioned_table
                WHERE partrelid = i.inhparent)) +
      CASE WHEN pg_catalog.pg_partition_root(conrelid) = confrelid THEN
                (SELECT count(*) FROM pg_catalog.pg_partition_tree(confrelid)
                  WHERE level = 1)
           ELSE 0 END);

Since it is possible that one or more of the ADD CONSTRAINT steps will fail, you should save the query's output in a file and then attempt to perform each step.

  • Fix test for C locale when LC_COLLATE is different from LC_CTYPE (Jeff Davis)

When using libc as the default collation provider, the test to see if C locale is in use for collation accidentally checked LC_CTYPE not LC_COLLATE. This has no impact in the typical case where those settings are the same, nor if both are not C (nor its alias POSIX). However, if LC_CTYPE is C while LC_COLLATE is some other locale, wrong query answers could ensue, and corruption of indexes on strings was possible. Users of databases with such settings should reindex affected indexes after installing this update. The converse case with LC_COLLATE being C while LC_CTYPE is some other locale would cause performance degradation, but no actual errors.

  • Don't use partitionwise joins or grouping if the query's collation for the key column doesn't match the partition key's collation (Jian He, Webbo Han)

Such plans could produce incorrect results.

  • Avoid planner failure after converting an IS NULL test on a NOT NULL column to constant FALSE (Richard Guo)

This bug typically led to errors such as “variable not found in subplan target lists”.

  • Avoid possible planner crash while inlining a SQL function whose arguments contain certain array-related constructs (Tom Lane, Nathan Bossart)

  • Fix possible wrong answers or “wrong varnullingrels” planner errors for MERGE ... WHEN NOT MATCHED BY SOURCE actions (Dean Rasheed)

  • Fix possible “could not find pathkey item to sort” error when the output of a UNION ALL member query needs to be sorted, and the sort column is an expression (Andrei Lepikhov, Tom Lane)

  • Fix edge case in B-tree ScalarArrayOp index scans (Peter Geoghegan)

When a scrollable cursor with a plan of this kind was backed up to its starting point and then run forward again, wrong answers were possible.

  • Fix assertion failure or confusing error message for COPY (query) TO ..., when the \<query> is rewritten by a DO INSTEAD NOTIFY rule (Tender Wang, Tom Lane)

  • Fix validation of COPY's FORCE_NOT_NULL and FORCE_NULL options (Joel Jacobson)

Some incorrect usages are now rejected as they should be.

  • Fix server crash when a json_objectagg() call contains a volatile function (Amit Langote)

  • Fix detection of skewed data during parallel hash join (Thomas Munro)

After repartitioning the inner side of a hash join because one partition has accumulated too many tuples, we check to see if all the partition's tuples went into the same child partition, which suggests that they all have the same hash value and further repartitioning cannot improve matters. This check malfunctioned in some cases, allowing repeated futile repartitioning which would eventually end in a resource-exhaustion error.

  • Avoid crash when ALTER DATABASE SET is used to set a server parameter that requires search-path-based lookup, such as default_text_search_config (Jeff Davis)

  • Avoid repeated lookups of opclasses and collations while creating a new index on a partitioned table (Tom Lane)

This was problematic mainly because some of the lookups would be done with a restricted search_path, leading to unexpected failures if the CREATE INDEX command referenced objects outside pg_catalog.

This fix also prevents comments on the parent partitioned index from being copied to child indexes.

  • Add missing dependency from a partitioned table to a non-built-in access method specified in CREATE TABLE ... USING (Michael Paquier)

Dropping the access method should be blocked when a table exists that depends on it, but it was not, allowing subsequent odd behavior. Note that this fix only prevents problems for partitioned tables created after this update.

  • Disallow locale names containing non-ASCII characters (Thomas Munro)

This is only an issue on Windows, as such locale names are not used elsewhere. They are problematic because it's quite unclear what encoding such names are represented in (since the locale itself defines the encoding to use). In recent PostgreSQL releases, an abort in the Windows runtime library could occur because of confusion about that.

Anyone who encounters the new error message should either create a new duplicated locale with an ASCII-only name using Windows Locale Builder, or consider using BCP 47-compliant locale names like tr-TR.

  • Fix race condition in committing a serializable transaction (Heikki Linnakangas)

Mis-processing of a recently committed transaction could lead to an assertion failure or a “could not access status of transaction” error.

  • Fix race condition in COMMIT PREPARED that resulted in orphaned 2PC files (wuchengwen)

A concurrent PREPARE TRANSACTION could cause COMMIT PREPARED to not remove the on-disk two-phase state file for the completed transaction. There was no immediate ill effect, but a subsequent crash-and-recovery could fail with “could not access status of transaction”, requiring manual removal of the orphaned file to restore service.

  • Avoid invalid memory accesses after skipping an invalid toast index during VACUUM FULL (Tender Wang)

A list tracking yet-to-be-rebuilt indexes was not properly updated in this code path, risking assertion failures or crashes later on.

  • Fix ways in which an “in place” catalog update could be lost (Noah Misch)

Normal row updates write a new version of the row to preserve rollback-ability of the transaction. However, certain system catalog updates are intentionally non-transactional and are done with an in-place update of the row. These patches fix race conditions that could cause the effects of an in-place update to be lost. As an example, it was possible to forget having set pg_class.relhasindex to true, preventing updates of the new index and thus causing index corruption.

  • Reset catalog caches at end of recovery (Noah Misch)

This prevents scenarios wherein an in-place catalog update could be lost due to using stale data from a catalog cache.

  • Avoid using parallel query while holding off interrupts (Francesco Degrassi, Noah Misch, Tom Lane)

This situation cannot arise normally, but it can be reached with test scenarios such as using a SQL-language function as B-tree support (which would be far too slow for production usage). If it did occur it would result in an indefinite wait.

  • Ignore not-yet-defined Portals in the pg_cursors view (Tom Lane)

It is possible for user-defined code that inspects this view to be called while a new cursor is being set up, and if that happens a null pointer dereference would ensue. Avoid the problem by defining the view to exclude incompletely-set-up cursors.

  • Avoid “unexpected table_index_fetch_tuple call during logical decoding” error while decoding a transaction involving insertion of a column default value (Takeshi Ideriha, Hou Zhijie)

  • Reduce memory consumption of logical decoding (Masahiko Sawada)

Use a smaller default block size to store tuple data received during logical replication. This reduces memory wastage, which has been reported to be severe while processing long-running transactions, even leading to out-of-memory failures.

  • Fix behavior of stable functions called from a CALL statement's argument list, when the CALL is within a PL/pgSQL EXCEPTION block (Tom Lane)

As with a similar fix in our previous quarterly releases, this case allowed such functions to be passed the wrong snapshot, causing them to see stale values of rows modified since the start of the outer transaction.

  • Parse libpq's keepalives connection option in the same way as other integer-valued options (Yuto Sasaki)

The coding used here rejected trailing whitespace in the option value, unlike other cases. This turns out to be problematic in ecpg's usage, for example.

  • In ecpglib, fix out-of-bounds read when parsing incorrect datetime input (Bruce Momjian, Pavel Nekrasov)

It was possible to try to read the location just before the start of a constant array. Real-world consequences seem minimal, though.

  • Fix psql's describe commands to again work with pre-9.4 servers (Tom Lane)

Commands involving display of an ACL (permissions) column failed with very old PostgreSQL servers, due to use of a function not present in those versions.

  • Avoid hanging if an interval less than 1ms is specified in psql's \watch command (Andrey Borodin, Michael Paquier)

Instead, treat this the same as an interval of zero (no wait between executions).

  • Fix failure to find replication password in ~/.pgpass (Tom Lane)

pg_basebackup and pg_receivewal failed to match an entry in ~/.pgpass that had replication in the database name field, if no -d or --dbname switch was supplied. This resulted in an unexpected prompt for password.

  • In pg_combinebackup, throw an error if an incremental backup file is present in a directory that is supposed to contain a full backup (Robert Haas)

  • In pg_combinebackup, don't construct filenames containing double slashes (Robert Haas)

This caused no functional problems, but the duplicate slashes were visible in error messages, which could create confusion.

  • Avoid trying to reindex temporary tables and indexes in vacuumdb and in parallel reindexdb (VaibhaveS, Michael Paquier, Fujii Masao, Nathan Bossart)

Reindexing other sessions' temporary tables cannot work, but the check to skip them was missing in some code paths, leading to unwanted failures.

  • Fix incorrect LLVM-generated code on ARM64 platforms (Thomas Munro, Anthonin Bonnefoy)

When using JIT compilation on ARM platforms, the generated code could not support relocation distances exceeding 32 bits, allowing unlucky placement of generated code to cause server crashes on large-memory systems.

  • Fix a few places that assumed that process start time (represented as a time_t) will fit into a long value (Max Johnson, Nathan Bossart)

On platforms where long is 32 bits (notably Windows), this coding would fail after Y2038. Most of the failures appear only cosmetic, but notably pg_ctl start would hang.

  • Update time zone data files to tzdata release 2024b (Tom Lane)

This tzdata release changes the old System-V-compatibility zone names to duplicate the corresponding geographic zones; for example PST8PDT is now an alias for America/Los_Angeles. The main visible consequence is that for timestamps before the introduction of standardized time zones, the zone is considered to represent local mean solar time for the named location. For example, in PST8PDT, timestamptz input such as 1801-01-01 00:00 would previously have been rendered as 1801-01-01 00:00:00-08, but now it is rendered as 1801-01-01 00:00:00-07:52:58.

Also, historical corrections for Mexico, Mongolia, and Portugal. Notably, Asia/Choibalsan is now an alias for Asia/Ulaanbaatar rather than being a separate zone, mainly because the differences between those zones were found to be based on untrustworthy data.

Release 17#

Release date:

2024-09-26

Overview#

PostgreSQL 17 contains many new features and enhancements, including:

  • New memory management system for VACUUM, which reduces memory consumption and can improve overall vacuuming performance.

  • New SQL/JSON capabilities, including constructors, identity functions, and the JSON_TABLE() function, which converts JSON data into a table representation.

  • Various query performance improvements, including for sequential reads using streaming I/O, write throughput under high concurrency, and searches over multiple values in a btree index.

  • Logical replication enhancements, including:

  • Failover control

  • pg_createsubscriber, a utility that creates logical replicas from physical standbys

  • pg_upgrade now preserves logical replication slots on publishers and full subscription state on subscribers. This will allow upgrades to future major versions to continue logical replication without requiring copy to resynchronize.

  • New client-side connection option, sslnegotiation=direct, that performs a direct TLS handshake to avoid a round-trip negotiation.

  • pg_basebackup now supports incremental backup.

  • COPY adds a new option, ON_ERROR ignore, that allows a copy operation to continue in the event of an error.

The above items and other new features of PostgreSQL 17 are explained in more detail in the sections below.

Migration to Version 17#

A dump/restore using ??? or use of ??? or logical replication is required for those wishing to migrate data from any previous release. See ??? for general information on migrating to new major releases.

Version 17 contains a number of changes that may affect compatibility with previous releases. Observe the following incompatibilities:

  • Change functions to use a safe ??? during maintenance operations (Jeff Davis)

This prevents maintenance operations (ANALYZE, CLUSTER, CREATE INDEX, CREATE MATERIALIZED VIEW, REFRESH MATERIALIZED VIEW, REINDEX, or VACUUM) from performing unsafe access. Functions used by expression indexes and materialized views that need to reference non-default schemas must specify a search path during function creation.

  • Restrict ago to only appear at the end in interval values (Joseph Koshakow)

Also, prevent empty interval units from appearing multiple times.

  • Remove server variable old_snapshot_threshold (Thomas Munro)

This variable allowed vacuum to remove rows that potentially could be still visible to running transactions, causing "snapshot too old" errors later if accessed. This feature might be re-added to PostgreSQL later if an improved implementation is found.

The new behavior is based on the session user's superuser status at the time the SET SESSION AUTHORIZATION command is issued, rather than their superuser status at connection time.

  • Remove feature which simulated per-database users (Nathan Bossart)

The feature, db_user_namespace, was rarely used.

  • Remove adminpack contrib extension (Daniel Gustafsson)

This was used by now end-of-life pgAdmin III.

  • Remove ??? value fsync_writethrough on Windows (Thomas Munro)

This value was the same as fsync on Windows.

  • Change file boundary handling of two WAL file name functions (Kyotaro Horiguchi, Andres Freund, Bruce Momjian)

The functions pg_walfile_name() and pg_walfile_name_offset() used to report the previous LSN segment number when the LSN was on a file segment boundary; it now returns the current LSN segment.

  • Remove server variable trace_recovery_messages since it is no longer needed (Bharath Rupireddy)

  • Remove information schema column element_types.domain_default (Peter Eisentraut)

  • Change ??? lock mode output labels (Bruce Momjian)

  • Remove buffers_backend and buffers_backend_fsync from pg_stat_bgwriter (Bharath Rupireddy)

These fields are considered redundant to similar columns in pg_stat_io.

  • Rename I/O block read/write timing statistics columns of ??? (Nazir Bilal Yavuz)

This renames blk_read_time to shared_blk_read_time, and blk_write_time to shared_blk_write_time.

The column names accepted by pg_stat_reset_slru() are also changed.

Changes#

Below you will find a detailed account of the changes between PostgreSQL 17 and the previous major release.

Server#

Optimizer#

  • Allow the optimizer to improve CTE plans by considering the statistics and sort order of columns referenced in earlier row output clauses (Jian Guo, Richard Guo, Tom Lane)

  • Improve optimization of IS NOT NULL and IS NULL query restrictions (David Rowley, Richard Guo, Andy Fan)

Remove IS NOT NULL restrictions from queries on NOT NULL columns and eliminate scans on NOT NULL columns if IS NULL is specified.

  • Allow partition pruning on boolean columns on IS [NOT] UNKNOWN conditionals (David Rowley)

  • Improve optimization of range values when using containment operators \<@ and @> (Kim Johan Andersson, Jian He)

  • Allow correlated IN subqueries to be transformed into joins (Andy Fan, Tom Lane)

  • Improve optimization of the LIMIT clause on partitioned tables, inheritance parents, and UNION ALL queries (Andy Fan, David Rowley)

  • Allow query nodes to be run in parallel in more cases (Tom Lane)

  • Allow GROUP BY columns to be internally ordered to match ORDER BY (Andrei Lepikhov, Teodor Sigaev)

This can be disabled using server variable ???.

  • Allow UNION (without ALL) to use MergeAppend (David Rowley)

  • Fix MergeAppend plans to more accurately compute the number of rows that need to be sorted (Alexander Kuzmenkov)

  • Allow GiST and SP-GiST indexes to be part of incremental sorts (Miroslav Bendik)

This is particularly useful for ORDER BY clauses where the first column has a GiST and SP-GiST index, and other columns do not.

  • Add columns to pg_stats to report range-type histogram information (Egor Rogov, Soumyadeep Chakraborty)

Indexes#

  • Allow btree indexes to more efficiently find a set of values, such as those supplied by IN clauses using constants (Peter Geoghegan, Matthias van de Meent)

  • Allow BRIN indexes to be created using parallel workers (Tomas Vondra, Matthias van de Meent)

General Performance#

  • Allow vacuum to more efficiently remove and freeze tuples (Melanie Plageman, Heikki Linnakangas)

WAL traffic caused by vacuum is also more compact.

  • Allow vacuum to more efficiently store tuple references (Masahiko Sawada, John Naylor)

Additionally, vacuum is no longer silently limited to one gigabyte of memory when ??? or ??? are higher.

  • Optimize vacuuming of relations with no indexes (Melanie Plageman)

  • Increase default ??? to 2MB (Thomas Munro)

  • Improve performance when checking roles with many memberships (Nathan Bossart)

  • Improve performance of heavily-contended WAL writes (Bharath Rupireddy)

  • Improve performance when transferring large blocks of data to a client (Melih Mutlu)

  • Allow the grouping of file system reads with the new system variable ??? (Thomas Munro, Andres Freund, Melanie Plageman, Nazir Bilal Yavuz)

Monitoring#

  • Create system view pg_stat_checkpointer (Bharath Rupireddy, Anton A. Melnikov, Alexander Korotkov)

Relevant columns have been removed from pg_stat_bgwriter and added to this new system view.

  • Improve control over resetting statistics (Atsushi Torikoshi, Bharath Rupireddy)

Allow pg_stat_reset_shared() (with no arguments) and pg_stat_reset_shared(NULL) to reset all shared statistics. Allow pg_stat_reset_shared('slru') and pg_stat_reset_slru() (with no arguments) to reset SLRU statistics, which was already possible with pg_stat_reset_slru(NULL).

  • Add log messages related to WAL recovery from backups (Andres Freund)

  • Add ??? log line for trust connections (Jacob Champion)

  • Add log message to report walsender acquisition and release of replication slots (Bharath Rupireddy)

This is enabled by the server variable ???.

  • Add system view pg_wait_events that reports wait event types (Bertrand Drouvot)

This is useful for adding descriptions to wait events reported in pg_stat_activity.

  • Add wait events for checkpoint delays (Thomas Munro)

  • Allow vacuum to report the progress of index processing (Sami Imseih)

This appears in system view pg_stat_progress_vacuum columns indexes_total and indexes_processed.

Privileges#

  • Allow granting the right to perform maintenance operations (Nathan Bossart)

The permission can be granted on a per-table basis using the MAINTAIN privilege and on a per-role basis via the pg_maintain predefined role. Permitted operations are VACUUM, ANALYZE, REINDEX, REFRESH MATERIALIZED VIEW, CLUSTER, and LOCK TABLE.

Server Configuration#

  • Add system variable ??? to disallow ALTER SYSTEM (Jelte Fennema-Nio, Gabriele Bartolini)

  • Allow ALTER SYSTEM to set unrecognized custom server variables (Tom Lane)

This is also possible with GRANT ON PARAMETER.

  • Add server variable ??? to restrict the duration of transactions (Andrey Borodin, Japin Li, Junwang Zhao, Alexander Korotkov)

  • Add a builtin platform-independent collation provider (Jeff Davis)

This supports C and C.UTF-8 collations.

  • Add server variable ??? to report the use of huge pages by Postgres (Justin Pryzby)

This is useful when ??? is set to try.

  • Add server variable to disable event triggers (Daniel Gustafsson)

The setting, ???, allows for the temporary disabling of event triggers for debugging.

  • Allow the SLRU cache sizes to be configured (Andrey Borodin, Dilip Kumar, Alvaro Herrera)

The new server variables are ???, ???, ???, ???, ???, ???, and ???. ???, ???, and ??? scale up automatically with ???.

Streaming Replication and Recovery#

  • Add support for incremental file system backup (Robert Haas, Jakub Wartak, Tomas Vondra)

Incremental backups can be created using pg_basebackup's new --incremental option. The new application pg_combinebackup allows manipulation of base and incremental file system backups.

  • Allow the creation of WAL summarization files (Robert Haas, Nathan Bossart, Hubert Depesz Lubaczewski)

These files record the block numbers that have changed within an LSN range and are useful for incremental file system backups. This is controlled by the server variables ??? and ???, and introspected with pg_available_wal_summaries(), pg_wal_summary_contents(), and pg_get_wal_summarizer_state().

  • Add the system identifier to file system backup manifest files (Amul Sul)

This helps detect invalid WAL usage.

Logical Replication#

  • Add application pg_createsubscriber to create a logical replica from a physical standby server (Euler Taveira)

  • Have pg_upgrade migrate valid logical slots and subscriptions (Hayato Kuroda, Hou Zhijie, Vignesh C, Julien Rouhaud, Shlok Kyal)

This allows logical replication to continue quickly after the upgrade. This only works for old PostgreSQL clusters that are version 17 or later.

  • Enable the failover of logical slots (Hou Zhijie, Shveta Malik, Ajin Cherian)

This is controlled by an optional fifth argument to pg_create_logical_replication_slot().

  • Add server variable ??? to enable failover logical slot synchronization (Shveta Malik, Hou Zhijie, Peter Smith)

  • Add logical replication failover control to CREATE/ALTER SUBSCRIPTION (Shveta Malik, Hou Zhijie, Ajin Cherian)

  • Allow the application of logical replication changes to use hash indexes on the subscriber (Hayato Kuroda)

Previously only btree indexes could be used for this purpose.

  • Improve logical decoding performance in cases where there are many subtransactions (Masahiko Sawada)

  • Restart apply workers if subscription owner's superuser privileges are revoked (Vignesh C)

This forces reauthentication.

This makes the message durable.

  • Allow specification of physical standbys that must be synchronized before they are visible to subscribers (Hou Zhijie, Shveta Malik)

The new server variable is ???.

Utility Commands#

  • Add new COPY option ON_ERROR ignore to discard error rows (Damir Belyalov, Atsushi Torikoshi, Alex Shulgin, Jian He, Yugo Nagata)

The default behavior is ON_ERROR stop.

  • Add new COPY option LOG_VERBOSITY which reports COPY FROM ignored error rows (Bharath Rupireddy)

  • Allow COPY FROM to report the number of skipped rows during processing (Atsushi Torikoshi)

This appears in system view column pg_stat_progress_copy.tuples_skipped.

  • In COPY FROM, allow easy specification that all columns should be forced null or not null (Zhang Mingli)

  • Allow partitioned tables to have identity columns (Ashutosh Bapat)

  • Allow exclusion constraints on partitioned tables (Paul A. Jungwirth)

As long as exclusion constraints compare partition key columns for equality, other columns can use exclusion constraint-specific comparisons.

  • Add clearer ALTER TABLE method to set a column to the default statistics target (Peter Eisentraut)

The new syntax is ALTER TABLE ... SET STATISTICS DEFAULT; using SET STATISTICS -1 is still supported.

  • Allow ALTER TABLE to change a column's generation expression (Amul Sul)

The syntax is ALTER TABLE ... ALTER COLUMN ... SET EXPRESSION.

  • Allow specification of table access methods on partitioned tables (Justin Pryzby, Soumyadeep Chakraborty, Michael Paquier)

  • Add DEFAULT setting for ALTER TABLE .. SET ACCESS METHOD (Michael Paquier)

  • Add support for event triggers that fire at connection time (Konstantin Knizhnik, Mikhail Gribkov)

  • Add event trigger support for REINDEX (Garrett Thornburg, Jian He)

  • Allow parenthesized syntax for CLUSTER options if a table name is not specified (Nathan Bossart)

EXPLAIN#

  • Allow EXPLAIN to report optimizer memory usage (Ashutosh Bapat)

The option is called MEMORY.

  • Add EXPLAIN option SERIALIZE to report the cost of converting data for network transmission (Stepan Rutz, Matthias van de Meent)

  • Add local I/O block read/write timing statistics to EXPLAIN's BUFFERS output (Nazir Bilal Yavuz)

  • Improve EXPLAIN's display of SubPlan nodes and output parameters (Tom Lane, Dean Rasheed)

  • Add JIT deform_counter details to EXPLAIN (Dmitry Dolgov)

Data Types#

  • Allow the interval data type to support +/-infinity values (Joseph Koshakow, Jian He, Ashutosh Bapat)

  • Allow the use of an ENUM added via ALTER TYPE if the type was created in the same transaction (Tom Lane)

This was previously disallowed.

MERGE#

  • Allow MERGE to modify updatable views (Dean Rasheed)

  • Add WHEN NOT MATCHED BY SOURCE to MERGE (Dean Rasheed)

WHEN NOT MATCHED on target rows was already supported.

  • Allow MERGE to use the RETURNING clause (Dean Rasheed)

The new RETURNING function merge_action() reports on the DML that generated the row.

Functions#

  • Add function JSON_TABLE() to convert JSON data to a table representation (Nikita Glukhov, Teodor Sigaev, Oleg Bartunov, Alexander Korotkov, Andrew Dunstan, Amit Langote, Jian He)

This function can be used in the FROM clause of SELECT queries as a tuple source.

  • Add SQL/JSON constructor functions JSON(), JSON_SCALAR(), and JSON_SERIALIZE() (Nikita Glukhov, Teodor Sigaev, Oleg Bartunov, Alexander Korotkov, Andrew Dunstan, Amit Langote)

  • Add SQL/JSON query functions JSON_EXISTS(), JSON_QUERY(), and JSON_VALUE() (Nikita Glukhov, Teodor Sigaev, Oleg Bartunov, Alexander Korotkov, Andrew Dunstan, Amit Langote, Peter Eisentraut, Jian He)

  • Add jsonpath methods to convert JSON values to other JSON data types (Jeevan Chalke)

The jsonpath methods are .bigint(), .boolean(), .date(), .decimal([precision [, scale]]), .integer(), .number(), .string(), .time(), .time_tz(), .timestamp(), and .timestamp_tz().

TZ accepts time zone abbreviations or numeric offsets, while OF accepts only numeric offsets.

  • Allow the session time zone to be specified by AT LOCAL (Vik Fearing)

This is useful when converting adding and removing time zones from time stamps values, rather than specifying the literal session time zone.

  • Add functions uuid_extract_timestamp() and uuid_extract_version() to return UUID information (Andrey Borodin)

  • Add functions to generate random numbers in a specified range (Dean Rasheed)

The functions are random(min, max) and they take values of type integer, bigint, and numeric.

  • Add functions to convert integers to binary and octal strings (Eric Radman, Nathan Bossart)

The functions are to_bin() and to_oct().

  • Add Unicode informational functions (Jeff Davis)

Function unicode_version() returns the Unicode version, icu_unicode_version() returns the ICU version, and unicode_assigned() returns if the characters are assigned Unicode codepoints.

  • Add function xmltext() to convert text to a single XML text node (Jim Jones)

  • Add function to_regtypemod() to return the type modifier of a type specification (David Wheeler, Erik Wienhold)

  • Add pg_basetype() function to return a domain's base type (Steve Chavez)

  • Add function pg_column_toast_chunk_id() to return a value's TOAST identifier (Yugo Nagata)

This returns NULL if the value is not stored in TOAST.

PL/pgSQL#

  • Allow plpgsql %TYPE and %ROWTYPE specifications to represent arrays of non-array types (Quan Zongliang, Pavel Stehule)

  • Allow plpgsql %TYPE specification to reference composite column (Tom Lane)

libpq#

  • Add libpq function to change role passwords (Joe Conway)

The new function, PQchangePassword(), hashes the new password before sending it to the server.

  • Add libpq functions to close portals and prepared statements (Jelte Fennema-Nio)

The functions are PQclosePrepared(), PQclosePortal(), PQsendClosePrepared(), and PQsendClosePortal().

  • Add libpq API which allows for blocking and non-blocking cancel requests, with encryption if already in use (Jelte Fennema-Nio)

Previously only blocking, unencrypted cancel requests were supported.

  • Add libpq function PQsocketPoll() to allow polling of network sockets (Tristan Partin, Tom Lane)

  • Add libpq function PQsendPipelineSync() to send a pipeline synchronization point (Anton Kirilov)

This is similar to PQpipelineSync() but it does not flush to the server unless the size threshold of the output buffer is reached.

  • Add libpq function PQsetChunkedRowsMode() to allow retrieval of results in chunks (Daniel Vrit)

  • Allow TLS connections without requiring a network round-trip negotiation (Greg Stark, Heikki Linnakangas, Peter Eisentraut, Michael Paquier, Daniel Gustafsson)

This is enabled with the client-side option sslnegotiation=direct, requires ALPN, and only works on PostgreSQL 17 and later servers.

???#

  • Improve psql display of default and empty privileges (Erik Wienhold, Laurenz Albe)

Command \dp now displays (none) for empty privileges; default still displays as empty.

  • Have backslash commands honor \pset null (Erik Wienhold, Laurenz Albe)

Previously \pset null was ignored.

  • Allow psql's \watch to stop after a minimum number of rows returned (Greg Sabino Mullane)

The parameter is min_rows.

  • Allow psql connection attempts to be canceled with control-C (Tristan Partin)

  • Allow psql to honor FETCH_COUNT for non-SELECT queries (Daniel Vrit)

  • Improve psql tab completion (Dagfinn Ilmari Mannsker, Gilles Darold, Christoph Heiss, Steve Chavez, Vignesh C, Pavel Borisov, Jian He)

Server Applications#

  • Add application pg_walsummary to dump WAL summary files (Robert Haas)

  • Allow pg_dump's large objects to be restorable in batches (Tom Lane)

This allows the restoration of many large objects to avoid transaction limits and to be restored in parallel.

  • Add pg_dump option --exclude-extension (Ayush Vatsa)

  • Allow pg_dump, pg_dumpall, and pg_restore to specify include/exclude objects in a file (Pavel Stehule, Daniel Gustafsson)

The option is called --filter.

  • Add the --sync-method parameter to several client applications (Justin Pryzby, Nathan Bossart)

The applications are initdb, pg_basebackup, pg_checksums, pg_dump, pg_rewind, and pg_upgrade.

  • Add pg_restore option --transaction-size to allow object restores in transaction batches (Tom Lane)

This allows the performance benefits of transaction batches without the problems of excessively large transaction blocks.

  • Change pgbench debug mode option from -d to --debug (Greg Sabino Mullane)

Option -d is now used for the database name, and the new --dbname option can be used as well.

  • Add pgbench option --exit-on-abort to exit after any client aborts (Yugo Nagata)

  • Add pgbench command \syncpipeline to allow sending of sync messages (Anthonin Bonnefoy)

  • Allow pg_archivecleanup to remove backup history files (Atsushi Torikoshi)

The option is --clean-backup-history.

  • Add some long options to pg_archivecleanup (Atsushi Torikoshi)

The long options are --debug, --dry-run, and --strip-extension.

This is useful for connection poolers that are sensitive to the database name.

  • Add pg_upgrade option --copy-file-range (Thomas Munro)

This is supported on Linux and FreeBSD.

  • Allow reindexdb --index to process indexes from different tables in parallel (Maxim Orlov, Svetlana Derevyanko, Alexander Korotkov)

  • Allow reindexdb, vacuumdb, and clusterdb to process objects in all databases matching a pattern (Nathan Bossart)

The new option --all controls this behavior.

Source Code#

  • Remove support for OpenSSL 1.0.1 (Michael Paquier)

  • Allow tests to pass in OpenSSL FIPS mode (Peter Eisentraut)

  • Use CPU AVX-512 instructions for bit counting (Paul Amonson, Nathan Bossart, Ants Aasma)

  • Require LLVM version 10 or later (Thomas Munro)

  • Use native CRC instructions on 64-bit LoongArch CPUs (Xudong Yang)

  • Remove AIX support (Heikki Linnakangas)

  • Remove the Microsoft Visual Studio-specific PostgreSQL build option (Michael Paquier)

Meson is now the only available method for Visual Studio builds.

  • Remove configure option --disable-thread-safety (Thomas Munro, Heikki Linnakangas)

We now assume all supported platforms have sufficient thread support.

  • Remove configure option --with-CC (Heikki Linnakangas)

Setting the CC environment variable is now the only supported method for specifying the compiler.

  • User-defined data type receive functions will no longer receive their data null-terminated (David Rowley)

  • Add incremental JSON parser for use with huge JSON documents (Andrew Dunstan)

  • Convert top-level README file to Markdown (Nathan Bossart)

  • Remove no longer needed top-level INSTALL file (Tom Lane)

  • Remove make's distprep option (Peter Eisentraut)

  • Add make support for Android shared libraries (Peter Eisentraut)

  • Add backend support for injection points (Michael Paquier)

This is used for server debugging and they must be enabled at server compile time.

  • Add dynamic shared memory registry (Nathan Bossart)

This allows shared libraries which are not initialized at startup to coordinate dynamic shared memory access.

  • Fix emit_log_hook to use the same time value as other log records for the same query (Kambam Vinay, Michael Paquier)

  • Improve documentation for using jsonpath for predicate checks (David Wheeler)

Additional Modules#

  • Allow joins with non-join qualifications to be pushed down to foreign servers and custom scans (Richard Guo, Etsuro Fujita)

Foreign data wrappers and custom scans will need to be modified to handle these cases.

  • Allow pushdown of EXISTS and IN subqueries to ??? foreign servers (Alexander Pyhalov)

  • Increase the default foreign data wrapper tuple cost (David Rowley, Umair Shahid)

This value is used by the optimizer.

  • Allow dblink database operations to be interrupted (Noah Misch)

  • Allow the creation of hash indexes on ??? columns (Tommy Pavlicek)

This also enables hash join and hash aggregation on ltree columns.

  • Allow ??? character translation rules to contain whitespace and quotes (Michael Paquier)

The syntax for the unaccent.rules file has changed.

  • Allow ??? to check for unique constraint violations using new option --checkunique (Anastasia Lubennikova, Pavel Borisov, Maxim Orlov)

  • Allow ??? tests to pass in OpenSSL FIPS mode (Peter Eisentraut)

  • Allow ??? tests to pass in OpenSSL FIPS mode (Peter Eisentraut)

  • Remove some unused SPI macros (Bharath Rupireddy)

  • Allow ALTER OPERATOR to set more optimization attributes (Tommy Pavlicek)

This is useful for extensions.

Custom wait events have been added to ??? and ???.

  • Add ??? function pg_buffercache_evict() to allow shared buffer eviction (Palak Chaturvedi, Thomas Munro)

This is useful for testing.

pg_stat_statements#

  • Replace CALL parameters in pg_stat_statements with placeholders (Sami Imseih)

  • Replace savepoint names stored in pg_stat_statements with placeholders (Greg Sabino Mullane)

This greatly reduces the number of entries needed to record SAVEPOINT, RELEASE SAVEPOINT, and ROLLBACK TO SAVEPOINT commands.

  • Replace the two-phase commit GIDs stored in pg_stat_statements with placeholders (Michael Paquier)

This greatly reduces the number of entries needed to record PREPARE TRANSACTION, COMMIT PREPARED, and ROLLBACK PREPARED.

  • Track DEALLOCATE in pg_stat_statements (Dagfinn Ilmari Mannsker, Michael Paquier)

DEALLOCATE names are stored in pg_stat_statements as placeholders.

  • Add local I/O block read/write timing statistics columns of pg_stat_statements (Nazir Bilal Yavuz)

The new columns are local_blk_read_time and local_blk_write_time.

  • Add JIT deform_counter details to pg_stat_statements (Dmitry Dolgov)

  • Add optional fourth argument (minmax_only) to pg_stat_statements_reset() to allow for the resetting of only min/max statistics (Andrei Zubkov)

This argument defaults to false.

  • Add pg_stat_statements columns stats_since and minmax_stats_since to track entry creation time and last min/max reset time (Andrei Zubkov)

Acknowledgments#

The following individuals (in alphabetical order) have contributed to this release as patch authors, committers, reviewers, testers, or reporters of issues.

Abhijit Menon-Sen

Adnan Dautovic

Aidar Imamov

Ajin Cherian

Akash Shankaran

Akshat Jaimini

Alaa Attya

Aleksander Alekseev

Aleksej Orlov

Alena Rybakina

Alex Hsieh

Alex Malek

Alex Shulgin

Alex Work

Alexander Korotkov

Alexander Kozhemyakin

Alexander Kuzmenkov

Alexander Lakhin

Alexander Pyhalov

Alexey Palazhchenko

Alfons Kemper

Álvaro Herrera

Amadeo Gallardo

Amit Kapila

Amit Langote

Amul Sul

Anastasia Lubennikova

Anatoly Zaretsky

Andreas Karlsson

Andreas Ulbrich

Andrei Lepikhov

Andrei Zubkov

Andres Freund

Andrew Alsup

Andrew Atkinson

Andrew Bille

Andrew Dunstan

Andrew Kane

Andrey Borodin

Andrey Rachitskiy

Andrey Sokolov

Andy Fan

Anthonin Bonnefoy

Anthony Hsu

Anton Kirilov

Anton Melnikov

Anton Voloshin

Antonin Houska

Ants Aasma

Antti Lampinen

Aramaki Zyake

Artem Anisimov

Artur Zakirov

Ashutosh Bapat

Ashutosh Sharma

Atsushi Torikoshi

Attila Gulyás

Ayush Tiwari

Ayush Vatsa

Bartosz Chrol

Benoît Ryder

Bernd Helmle

Bertrand Drouvot

Bharath Rupireddy

Bo Andreson

Boshomi Phenix

Bowen Shi

Boyu Yang

Bruce Momjian

Cameron Vogt

Cary Huang

Cédric Villemain

Changhong Fei

Chantal Keller

Chapman Flack

Chengxi Sun

Chris Travers

Christian Maurer

Christian Stork

Christoph Berg

Christoph Heiss

Christophe Courtois

Christopher Kline

Claudio Freire

Colin Caine

Corey Huinker

Curt Kolovson

Dag Lem

Dagfinn Ilmari Mannsåker

Damir Belyalov

Daniel Fredouille

Daniel Gustafsson

Daniel Shelepanov

Daniel Vérité

Daniel Westermann

Darren Rush

Dave Cramer

Dave Page

David Christensen

David Cook

David G. Johnston

David Geier

David Hillman

David Perez

David Rowley

David Steele

David Wheeler

David Zhang

Dean Rasheed

Denis Erokhin

Denis Laxalde

Devrim Gündüz

Dilip Kumar

Dimitrios Apostolou

Dmitry Dolgov

Dmitry Koval

Dmitry Vasiliev

Dominique Devienne

Dong Wook Lee

Donghang Lin

Dongming Liu

Drew Callahan

Drew Kimball

Dzmitry Jachnik

Egor Chindyaskin

Egor Rogov

Ekaterina Kiryanova

Elena Indrupskaya

Elizabeth Christensen

Emre Hasegeli

Eric Cyr

Eric Mutta

Eric Radman

Eric Ridge

Erik Rijkers

Erik Wienhold

Erki Eessaar

Ethan Mertz

Etsuro Fujita

Eugen Konkov

Euler Taveira

Evan Macbeth

Evgeny Morozov

Fabien Coelho

Fabrízio de Royes Mello

Farias de Oliveira

Feliphe Pozzer

Fire Emerald

Flavien Guedez

Floris Van Nee

Francesco Degrassi

Frank Streitzig

Gabriele Bartolini

Garrett Thornburg

Gavin Flower

Gavin Panella

Gilles Darold

Gilles Parc

Grant Gryczan

Greg Nancarrow

Greg Sabino Mullane

Greg Stark

Gurjeet Singh

Haiying Tang

Hajime Matsunaga

Hal Takahara

Hanefi Onaldi

Hannu Krosing

Hans Buschmann

Hao Wu

Hao Zhang

Hayato Kuroda

Heikki Linnakangas

Hemanth Sandrana

Himanshu Upadhyaya

Hironobu Suzuki

Holger Reise

Hongxu Ma

Hongyu Song

Horst Reiterer

Hubert Lubaczewski

Hywel Carver

Ian Barwick

Ian Ilyasov

Ilya Nenashev

Isaac Morland

Israel Barth Rubio

Ivan Kartyshov

Ivan Kolombet

Ivan Lazarev

Ivan Panchenko

Ivan Trofimov

Jacob Champion

Jacob Speidel

Jacques Combrink

Jaime Casanova

Jakub Wartak

James Coleman

James Pang

Jani Rahkola

Japin Li

Jeevan Chalke

Jeff Davis

Jeff Janes

Jelte Fennema-Nio

Jeremy Schneider

Jian Guo

Jian He

Jim Jones

Jim Keener

Jim Nasby

Jingtang Zhang

Jingxian Li

Jingzhou Fu

Joe Conway

Joel Jacobson

John Ekins

John Hsu

John Morris

John Naylor

John Russell

Jonathan Katz

Jordi Gutiérrez

Joseph Koshakow

Josh Kupershmidt

Joshua D. Drake

Joshua Uyehara

Jubilee Young

Julien Rouhaud

Junwang Zhao

Justin Pryzby

Kaido Vaikla

Kambam Vinay

Karen Talarico

Karina Litskevich

Karl O. Pinc

Kashif Zeeshan

Kim Johan Andersson

Kirill Reshke

Kirk Parker

Kirk Wolak

Kisoon Kwon

Koen De Groote

Kohei KaiGai

Kong Man

Konstantin Knizhnik

Kouhei Sutou

Krishnakumar R

Kuntal Ghosh

Kurt Roeckx

Kyotaro Horiguchi

Lang Liu

Lars Kanis

Laurenz Albe

Lauri Laanmets

Legs Mansion

Lukas Fittl

Magnus Hagander

Mahendrakar Srinivasarao

Maiquel Grassi

Manos Emmanouilidis

Marcel Hofstetter

Marcos Pegoraro

Marian Krucina

Marina Polyakova

Mark Dilger

Mark Guertin

Mark Sloan

Markus Winand

Marlene Reiterer

Martín Marqués

Martin Nash

Martin Schlossarek

Masahiko Sawada

Masahiro Ikeda

Masaki Kuwamura

Masao Fujii

Mason Sharp

Matheus Alcantara

Mats Kindahl

Matthias Kuhn

Matthias van de Meent

Maxim Boguk

Maxim Orlov

Maxim Yablokov

Maxime Boyer

Melanie Plageman

Melih Mutlu

Merlin Moncure

Micah Gate

Michael Banck

Michael Bondarenko

Michael Paquier

Michael Wang

Michael Zhilin

Michail Nikolaev

Michal Bartak

Michal Kleczek

Mikhail Gribkov

Mingli Zhang

Miroslav Bendik

Mitsuru Hinata

Moaaz Assali

Muralikrishna Bandaru

Nathan Bossart

Nazir Bilal Yavuz

Neil Tiffin

Ngigi Waithaka

Nikhil Benesch

Nikhil Raj

Nikita Glukhov

Nikita Kalinin

Nikita Malakhov

Nikolay Samokhvalov

Nikolay Shaplov

Nisha Moond

Nishant Sharma

Nitin Jadhav

Noah Misch

Noriyoshi Shinoda

Ole Peder Brandtzæg

Oleg Bartunov

Oleg Sibiryakov

Oleg Tselebrovskiy

Olleg Samoylov

Onder Kalaci

Ondrej Navratil

Pablo Kharo

Palak Chaturvedi

Pantelis Theodosiou

Paul Amonson

Paul Jungwirth

Pavel Borisov

Pavel Kulakov

Pavel Luzanov

Pavel Stehule

Pavlo Golub

Pedro Gallegos

Pete Storer

Peter Eisentraut

Peter Geoghegan

Peter Smith

Philip Warner

Philipp Salvisberg

Pierre Ducroquet

Pierre Fortin

Przemyslaw Sztoch

Quynh Tran

Raghuveer Devulapalli

Ranier Vilela

Reid Thompson

Rian McGuire

Richard Guo

Richard Vesely

Ridvan Korkmaz

Robert Haas

Robert Scott

Robert Treat

Roberto Mello

Robins Tharakan

Roman Lozko

Ronan Dunklau

Rui Zhao

Ryo Matsumura

Ryoga Yoshida

Sameer Kumar

Sami Imseih

Samuel Dussault

Sanjay Minni

Satoru Koizumi

Sebastian Skalacki

Sergei Glukhov

Sergei Kornilov

Sergey Prokhorenko

Sergey Sargsyan

Sergey Shinderuk

Shaozhong Shi

Shaun Thomas

Shay Rojansky

Shihao Zhong

Shinya Kato

Shlok Kyal

Shruthi Gowda

Shubham Khanna

Shulin Zhou

Shveta Malik

Simon Riggs

Soumyadeep Chakraborty

Sravan Velagandula

Stan Hu

Stepan Neretin

Stepan Rutz

Stéphane Schildknecht

Stephane Tachoires

Stephen Frost

Steve Atkins

Steve Chavez

Suraj Khamkar

Suraj Kharage

Svante Richter

Svetlana Derevyanko

Sylvain Frandaz

Takayuki Tsunakawa

Tatsuo Ishii

Tatsuro Yamada

Tender Wang

Teodor Sigaev

Thom Brown

Thomas Munro

Tim Carey-Smith

Tim Needham

Tim Palmer

Tobias Bussmann

Tom Lane

Tomas Vondra

Tommy Pavlicek

Tomonari Katsumata

Tristan Partin

Tristen Raab

Tung Nguyen

Umair Shahid

Uwe Binder

Valerie Woolard

Vallimaharajan G

Vasya Boytsov

Victor Wagner

Victor Yegorov

Victoria Shepard

Vidushi Gupta

Vignesh C

Vik Fearing

Viktor Leis

Vinayak Pokale

Vitaly Burovoy

Vojtech Benes

Wei Sun

Wei Wang

Wenjiang Zhang

Will Mortensen

Willi Mann

Wolfgang Walther

Xiang Liu

Xiaoran Wang

Xing Guo

Xudong Yang

Yahor Yuzefovich

Yajun Hu

Yaroslav Saburov

Yong Li

Yongtao Huang

Yugo Nagata

Yuhang Qiu

Yuki Seino

Yura Sokolov

Yurii Rashkovskii

Yuuki Fujii

Yuya Watari

Yves Colin

Zhihong Yu

Zhijie Hou

Zongliang Quan

Zubeyr Eryilmaz

Zuming Jiang