Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
proc
/
212
/
root
/
opt
/
postgresql-11.1-201812121535
/
doc
/
html
/
//proc/212/root/opt/postgresql-11.1-201812121535/doc/html/release-9-2-3.html
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>E.106. Release 9.2.3</title><link rel="stylesheet" type="text/css" href="stylesheet.css" /><link rev="made" href="pgsql-docs@postgresql.org" /><meta name="generator" content="DocBook XSL Stylesheets V1.79.1" /><link rel="prev" href="release-9-2-4.html" title="E.105. Release 9.2.4" /><link rel="next" href="release-9-2-2.html" title="E.107. Release 9.2.2" /></head><body><div xmlns="http://www.w3.org/TR/xhtml1/transitional" class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="5" align="center">E.106. Release 9.2.3</th></tr><tr><td width="10%" align="left"><a accesskey="p" href="release-9-2-4.html" title="E.105. Release 9.2.4">Prev</a> </td><td width="10%" align="left"><a accesskey="u" href="release.html" title="Appendix E. Release Notes">Up</a></td><th width="60%" align="center">Appendix E. Release Notes</th><td width="10%" align="right"><a accesskey="h" href="index.html" title="PostgreSQL 11.1 Documentation">Home</a></td><td width="10%" align="right"> <a accesskey="n" href="release-9-2-2.html" title="E.107. Release 9.2.2">Next</a></td></tr></table><hr></hr></div><div class="sect1" id="RELEASE-9-2-3"><div class="titlepage"><div><div><h2 class="title" style="clear: both">E.106. Release 9.2.3</h2></div></div></div><div class="toc"><dl class="toc"><dt><span class="sect2"><a href="release-9-2-3.html#id-1.11.6.110.4">E.106.1. Migration to Version 9.2.3</a></span></dt><dt><span class="sect2"><a href="release-9-2-3.html#id-1.11.6.110.5">E.106.2. Changes</a></span></dt></dl></div><p><strong>Release date: </strong>2013-02-07</p><p> This release contains a variety of fixes from 9.2.2. For information about new features in the 9.2 major release, see <a class="xref" href="release-9-2.html" title="E.109. Release 9.2">Section E.109</a>. </p><div class="sect2" id="id-1.11.6.110.4"><div class="titlepage"><div><div><h3 class="title">E.106.1. Migration to Version 9.2.3</h3></div></div></div><p> A dump/restore is not required for those running 9.2.X. </p><p> However, if you are upgrading from a version earlier than 9.2.2, see <a class="xref" href="release-9-2-2.html" title="E.107. Release 9.2.2">Section E.107</a>. </p></div><div class="sect2" id="id-1.11.6.110.5"><div class="titlepage"><div><div><h3 class="title">E.106.2. Changes</h3></div></div></div><div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "><li class="listitem"><p> Prevent execution of <code class="function">enum_recv</code> from SQL (Tom Lane) </p><p> The function was misdeclared, allowing a simple SQL command to crash the server. In principle an attacker might be able to use it to examine the contents of server memory. Our thanks to Sumit Soni (via Secunia SVCRP) for reporting this issue. (CVE-2013-0255) </p></li><li class="listitem"><p> Fix multiple problems in detection of when a consistent database state has been reached during WAL replay (Fujii Masao, Heikki Linnakangas, Simon Riggs, Andres Freund) </p></li><li class="listitem"><p> Fix detection of end-of-backup point when no actual redo work is required (Heikki Linnakangas) </p><p> This mistake could result in incorrect <span class="quote">“<span class="quote">WAL ends before end of online backup</span>”</span> errors. </p></li><li class="listitem"><p> Update minimum recovery point when truncating a relation file (Heikki Linnakangas) </p><p> Once data has been discarded, it's no longer safe to stop recovery at an earlier point in the timeline. </p></li><li class="listitem"><p> Fix recycling of WAL segments after changing recovery target timeline (Heikki Linnakangas) </p></li><li class="listitem"><p> Properly restore timeline history files from archive on cascading standby servers (Heikki Linnakangas) </p></li><li class="listitem"><p> Fix lock conflict detection on hot-standby servers (Andres Freund, Robert Haas) </p></li><li class="listitem"><p> Fix missing cancellations in hot standby mode (Noah Misch, Simon Riggs) </p><p> The need to cancel conflicting hot-standby queries would sometimes be missed, allowing those queries to see inconsistent data. </p></li><li class="listitem"><p> Prevent recovery pause feature from pausing before users can connect (Tom Lane) </p></li><li class="listitem"><p> Fix SQL grammar to allow subscripting or field selection from a sub-SELECT result (Tom Lane) </p></li><li class="listitem"><p> Fix performance problems with autovacuum truncation in busy workloads (Jan Wieck) </p><p> Truncation of empty pages at the end of a table requires exclusive lock, but autovacuum was coded to fail (and release the table lock) when there are conflicting lock requests. Under load, it is easily possible that truncation would never occur, resulting in table bloat. Fix by performing a partial truncation, releasing the lock, then attempting to re-acquire the lock and continue. This fix also greatly reduces the average time before autovacuum releases the lock after a conflicting request arrives. </p></li><li class="listitem"><p> Improve performance of <code class="function">SPI_execute</code> and related functions, thereby improving PL/pgSQL's <code class="literal">EXECUTE</code> (Heikki Linnakangas, Tom Lane) </p><p> Remove some data-copying overhead that was added in 9.2 as a consequence of revisions in the plan caching mechanism. This eliminates a performance regression compared to 9.1, and also saves memory, especially when the query string to be executed contains many SQL statements. </p><p> A side benefit is that multi-statement query strings are now processed fully serially, that is we complete execution of earlier statements before running parse analysis and planning on the following ones. This eliminates a long-standing issue, in that DDL that should affect the behavior of a later statement will now behave as expected. </p></li><li class="listitem"><p> Restore pre-9.2 cost estimates for index usage (Tom Lane) </p><p> An ill-considered change of a fudge factor led to undesirably high cost estimates for use of very large indexes. </p></li><li class="listitem"><p> Fix intermittent crash in <code class="literal">DROP INDEX CONCURRENTLY</code> (Tom Lane) </p></li><li class="listitem"><p> Fix potential corruption of shared-memory lock table during <code class="command">CREATE/DROP INDEX CONCURRENTLY</code> (Tom Lane) </p></li><li class="listitem"><p> Fix <code class="command">COPY</code>'s multiple-tuple-insertion code for the case of a tuple larger than page size minus fillfactor (Heikki Linnakangas) </p><p> The previous coding could get into an infinite loop. </p></li><li class="listitem"><p> Protect against race conditions when scanning <code class="structname">pg_tablespace</code> (Stephen Frost, Tom Lane) </p><p> <code class="command">CREATE DATABASE</code> and <code class="command">DROP DATABASE</code> could misbehave if there were concurrent updates of <code class="structname">pg_tablespace</code> entries. </p></li><li class="listitem"><p> Prevent <code class="command">DROP OWNED</code> from trying to drop whole databases or tablespaces (Álvaro Herrera) </p><p> For safety, ownership of these objects must be reassigned, not dropped. </p></li><li class="listitem"><p> Fix error in <a class="link" href="runtime-config-client.html#GUC-VACUUM-FREEZE-TABLE-AGE"><code class="varname">vacuum_freeze_table_age</code></a> implementation (Andres Freund) </p><p> In installations that have existed for more than <a class="link" href="runtime-config-client.html#GUC-VACUUM-FREEZE-MIN-AGE"><code class="varname">vacuum_freeze_min_age</code></a> transactions, this mistake prevented autovacuum from using partial-table scans, so that a full-table scan would always happen instead. </p></li><li class="listitem"><p> Prevent misbehavior when a <code class="symbol">RowExpr</code> or <code class="symbol">XmlExpr</code> is parse-analyzed twice (Andres Freund, Tom Lane) </p><p> This mistake could be user-visible in contexts such as <code class="literal">CREATE TABLE LIKE INCLUDING INDEXES</code>. </p></li><li class="listitem"><p> Improve defenses against integer overflow in hashtable sizing calculations (Jeff Davis) </p></li><li class="listitem"><p> Fix some bugs associated with privileges on datatypes (Tom Lane) </p><p> There were some issues with default privileges for types, and <span class="application">pg_dump</span> failed to dump such privileges at all. </p></li><li class="listitem"><p> Fix failure to ignore leftover temporary tables after a server crash (Tom Lane) </p></li><li class="listitem"><p> Fix failure to rotate postmaster log files for size reasons on Windows (Jeff Janes, Heikki Linnakangas) </p></li><li class="listitem"><p> Reject out-of-range dates in <code class="function">to_date()</code> (Hitoshi Harada) </p></li><li class="listitem"><p> Fix <code class="function">pg_extension_config_dump()</code> to handle extension-update cases properly (Tom Lane) </p><p> This function will now replace any existing entry for the target table, making it usable in extension update scripts. </p></li><li class="listitem"><p> Fix PL/pgSQL's reporting of plan-time errors in possibly-simple expressions (Tom Lane) </p><p> The previous coding resulted in sometimes omitting the first line in the <code class="literal">CONTEXT</code> traceback for the error. </p></li><li class="listitem"><p> Fix PL/Python's handling of functions used as triggers on multiple tables (Andres Freund) </p></li><li class="listitem"><p> Ensure that non-ASCII prompt strings are translated to the correct code page on Windows (Alexander Law, Noah Misch) </p><p> This bug affected <span class="application">psql</span> and some other client programs. </p></li><li class="listitem"><p> Fix possible crash in <span class="application">psql</span>'s <code class="command">\?</code> command when not connected to a database (Meng Qingzhong) </p></li><li class="listitem"><p> Fix possible error if a relation file is removed while <span class="application">pg_basebackup</span> is running (Heikki Linnakangas) </p></li><li class="listitem"><p> Tolerate timeline switches while <code class="literal">pg_basebackup -X fetch</code> is backing up a standby server (Heikki Linnakangas) </p></li><li class="listitem"><p> Make <span class="application">pg_dump</span> exclude data of unlogged tables when running on a hot-standby server (Magnus Hagander) </p><p> This would fail anyway because the data is not available on the standby server, so it seems most convenient to assume <code class="option">--no-unlogged-table-data</code> automatically. </p></li><li class="listitem"><p> Fix <span class="application">pg_upgrade</span> to deal with invalid indexes safely (Bruce Momjian) </p></li><li class="listitem"><p> Fix <span class="application">pg_upgrade</span>'s -O/-o options (Marti Raudsepp) </p></li><li class="listitem"><p> Fix one-byte buffer overrun in <span class="application">libpq</span>'s <code class="function">PQprintTuples</code> (Xi Wang) </p><p> This ancient function is not used anywhere by <span class="productname">PostgreSQL</span> itself, but it might still be used by some client code. </p></li><li class="listitem"><p> Make <span class="application">ecpglib</span> use translated messages properly (Chen Huajun) </p></li><li class="listitem"><p> Properly install <span class="application">ecpg_compat</span> and <span class="application">pgtypes</span> libraries on MSVC (Jiang Guiqing) </p></li><li class="listitem"><p> Include our version of <code class="function">isinf()</code> in <span class="application">libecpg</span> if it's not provided by the system (Jiang Guiqing) </p></li><li class="listitem"><p> Rearrange configure's tests for supplied functions so it is not fooled by bogus exports from libedit/libreadline (Christoph Berg) </p></li><li class="listitem"><p> Ensure Windows build number increases over time (Magnus Hagander) </p></li><li class="listitem"><p> Make <span class="application">pgxs</span> build executables with the right <code class="literal">.exe</code> suffix when cross-compiling for Windows (Zoltan Boszormenyi) </p></li><li class="listitem"><p> Add new timezone abbreviation <code class="literal">FET</code> (Tom Lane) </p><p> This is now used in some eastern-European time zones. </p></li></ul></div></div></div><div class="navfooter"><hr /><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="release-9-2-4.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="release.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="release-9-2-2.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">E.105. Release 9.2.4 </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> E.107. Release 9.2.2</td></tr></table></div></body></html>