Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
proc
/
self
/
root
/
opt
/
postgresql-11
/
doc
/
html
/
//proc/self/root/opt/postgresql-11/doc/html/release-8-2-22.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.207. Release 8.2.22</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-8-2-23.html" title="E.206. Release 8.2.23" /><link rel="next" href="release-8-2-21.html" title="E.208. Release 8.2.21" /></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.207. Release 8.2.22</th></tr><tr><td width="10%" align="left"><a accesskey="p" href="release-8-2-23.html" title="E.206. Release 8.2.23">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-8-2-21.html" title="E.208. Release 8.2.21">Next</a></td></tr></table><hr></hr></div><div class="sect1" id="RELEASE-8-2-22"><div class="titlepage"><div><div><h2 class="title" style="clear: both">E.207. Release 8.2.22</h2></div></div></div><div class="toc"><dl class="toc"><dt><span class="sect2"><a href="release-8-2-22.html#id-1.11.6.211.5">E.207.1. Migration to Version 8.2.22</a></span></dt><dt><span class="sect2"><a href="release-8-2-22.html#id-1.11.6.211.6">E.207.2. Changes</a></span></dt></dl></div><p><strong>Release date: </strong>2011-09-26</p><p> This release contains a variety of fixes from 8.2.21. For information about new features in the 8.2 major release, see <a class="xref" href="release-8-2.html" title="E.229. Release 8.2">Section E.229</a>. </p><p> The <span class="productname">PostgreSQL</span> community will stop releasing updates for the 8.2.X release series in December 2011. Users are encouraged to update to a newer release branch soon. </p><div class="sect2" id="id-1.11.6.211.5"><div class="titlepage"><div><div><h3 class="title">E.207.1. Migration to Version 8.2.22</h3></div></div></div><p> A dump/restore is not required for those running 8.2.X. However, if you are upgrading from a version earlier than 8.2.14, see <a class="xref" href="release-8-2-14.html" title="E.215. Release 8.2.14">Section E.215</a>. </p></div><div class="sect2" id="id-1.11.6.211.6"><div class="titlepage"><div><div><h3 class="title">E.207.2. Changes</h3></div></div></div><div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "><li class="listitem"><p> Fix multiple bugs in GiST index page split processing (Heikki Linnakangas) </p><p> The probability of occurrence was low, but these could lead to index corruption. </p></li><li class="listitem"><p> Avoid possibly accessing off the end of memory in <code class="command">ANALYZE</code> (Noah Misch) </p><p> This fixes a very-low-probability server crash scenario. </p></li><li class="listitem"><p> Fix race condition in relcache init file invalidation (Tom Lane) </p><p> There was a window wherein a new backend process could read a stale init file but miss the inval messages that would tell it the data is stale. The result would be bizarre failures in catalog accesses, typically <span class="quote">“<span class="quote">could not read block 0 in file ...</span>”</span> later during startup. </p></li><li class="listitem"><p> Fix memory leak at end of a GiST index scan (Tom Lane) </p><p> Commands that perform many separate GiST index scans, such as verification of a new GiST-based exclusion constraint on a table already containing many rows, could transiently require large amounts of memory due to this leak. </p></li><li class="listitem"><p> Fix performance problem when constructing a large, lossy bitmap (Tom Lane) </p></li><li class="listitem"><p> Fix array- and path-creating functions to ensure padding bytes are zeroes (Tom Lane) </p><p> This avoids some situations where the planner will think that semantically-equal constants are not equal, resulting in poor optimization. </p></li><li class="listitem"><p> Work around gcc 4.6.0 bug that breaks WAL replay (Tom Lane) </p><p> This could lead to loss of committed transactions after a server crash. </p></li><li class="listitem"><p> Fix dump bug for <code class="literal">VALUES</code> in a view (Tom Lane) </p></li><li class="listitem"><p> Disallow <code class="literal">SELECT FOR UPDATE/SHARE</code> on sequences (Tom Lane) </p><p> This operation doesn't work as expected and can lead to failures. </p></li><li class="listitem"><p> Defend against integer overflow when computing size of a hash table (Tom Lane) </p></li><li class="listitem"><p> Fix portability bugs in use of credentials control messages for <span class="quote">“<span class="quote">peer</span>”</span> authentication (Tom Lane) </p></li><li class="listitem"><p> Fix typo in <code class="function">pg_srand48</code> seed initialization (Andres Freund) </p><p> This led to failure to use all bits of the provided seed. This function is not used on most platforms (only those without <code class="function">srandom</code>), and the potential security exposure from a less-random-than-expected seed seems minimal in any case. </p></li><li class="listitem"><p> Avoid integer overflow when the sum of <code class="literal">LIMIT</code> and <code class="literal">OFFSET</code> values exceeds 2^63 (Heikki Linnakangas) </p></li><li class="listitem"><p> Add overflow checks to <code class="type">int4</code> and <code class="type">int8</code> versions of <code class="function">generate_series()</code> (Robert Haas) </p></li><li class="listitem"><p> Fix trailing-zero removal in <code class="function">to_char()</code> (Marti Raudsepp) </p><p> In a format with <code class="literal">FM</code> and no digit positions after the decimal point, zeroes to the left of the decimal point could be removed incorrectly. </p></li><li class="listitem"><p> Fix <code class="function">pg_size_pretty()</code> to avoid overflow for inputs close to 2^63 (Tom Lane) </p></li><li class="listitem"><p> Fix <span class="application">psql</span>'s counting of script file line numbers during <code class="literal">COPY</code> from a different file (Tom Lane) </p></li><li class="listitem"><p> Fix <span class="application">pg_restore</span>'s direct-to-database mode for <code class="varname">standard_conforming_strings</code> (Tom Lane) </p><p> <span class="application">pg_restore</span> could emit incorrect commands when restoring directly to a database server from an archive file that had been made with <code class="varname">standard_conforming_strings</code> set to <code class="literal">on</code>. </p></li><li class="listitem"><p> Fix write-past-buffer-end and memory leak in <span class="application">libpq</span>'s LDAP service lookup code (Albe Laurenz) </p></li><li class="listitem"><p> In <span class="application">libpq</span>, avoid failures when using nonblocking I/O and an SSL connection (Martin Pihlak, Tom Lane) </p></li><li class="listitem"><p> Improve libpq's handling of failures during connection startup (Tom Lane) </p><p> In particular, the response to a server report of <code class="function">fork()</code> failure during SSL connection startup is now saner. </p></li><li class="listitem"><p> Make <span class="application">ecpglib</span> write <code class="type">double</code> values with 15 digits precision (Akira Kurosawa) </p></li><li class="listitem"><p> Apply upstream fix for blowfish signed-character bug (CVE-2011-2483) (Tom Lane) </p><p> <code class="filename">contrib/pg_crypto</code>'s blowfish encryption code could give wrong results on platforms where char is signed (which is most), leading to encrypted passwords being weaker than they should be. </p></li><li class="listitem"><p> Fix memory leak in <code class="filename">contrib/seg</code> (Heikki Linnakangas) </p></li><li class="listitem"><p> Fix <code class="function">pgstatindex()</code> to give consistent results for empty indexes (Tom Lane) </p></li><li class="listitem"><p> Allow building with perl 5.14 (Alex Hunsaker) </p></li><li class="listitem"><p> Update configure script's method for probing existence of system functions (Tom Lane) </p><p> The version of autoconf we used in 8.3 and 8.2 could be fooled by compilers that perform link-time optimization. </p></li><li class="listitem"><p> Fix assorted issues with build and install file paths containing spaces (Tom Lane) </p></li><li class="listitem"><p> Update time zone data files to <span class="application">tzdata</span> release 2011i for DST law changes in Canada, Egypt, Russia, Samoa, and South Sudan. </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-8-2-23.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-8-2-21.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">E.206. Release 8.2.23 </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> E.208. Release 8.2.21</td></tr></table></div></body></html>