|
1 | 1 | <!-- doc/src/sgml/release-8.3.sgml -->
|
2 | 2 | <!-- See header comment in release.sgml about typical markup -->
|
3 | 3 |
|
| 4 | + <sect1 id="release-8-3-15"> |
| 5 | + <title>Release 8.3.15</title> |
| 6 | + |
| 7 | + <note> |
| 8 | + <title>Release Date</title> |
| 9 | + <simpara>2011-04-18</simpara> |
| 10 | + </note> |
| 11 | + |
| 12 | + <para> |
| 13 | + This release contains a variety of fixes from 8.3.14. |
| 14 | + For information about new features in the 8.3 major release, see |
| 15 | + <xref linkend="release-8-3">. |
| 16 | + </para> |
| 17 | + |
| 18 | + <sect2> |
| 19 | + <title>Migration to Version 8.3.15</title> |
| 20 | + |
| 21 | + <para> |
| 22 | + A dump/restore is not required for those running 8.3.X. |
| 23 | + However, if you are upgrading from a version earlier than 8.3.8, |
| 24 | + see the release notes for 8.3.8. |
| 25 | + </para> |
| 26 | + |
| 27 | + </sect2> |
| 28 | + |
| 29 | + <sect2> |
| 30 | + <title>Changes</title> |
| 31 | + |
| 32 | + <itemizedlist> |
| 33 | + |
| 34 | + <listitem> |
| 35 | + <para> |
| 36 | + Disallow including a composite type in itself (Tom Lane) |
| 37 | + </para> |
| 38 | + |
| 39 | + <para> |
| 40 | + This prevents scenarios wherein the server could recurse infinitely |
| 41 | + while processing the composite type. While there are some possible |
| 42 | + uses for such a structure, they don't seem compelling enough to |
| 43 | + justify the effort required to make sure it always works safely. |
| 44 | + </para> |
| 45 | + </listitem> |
| 46 | + |
| 47 | + <listitem> |
| 48 | + <para> |
| 49 | + Avoid potential deadlock during catalog cache initialization |
| 50 | + (Nikhil Sontakke) |
| 51 | + </para> |
| 52 | + |
| 53 | + <para> |
| 54 | + In some cases the cache loading code would acquire share lock on a |
| 55 | + system index before locking the index's catalog. This could deadlock |
| 56 | + against processes trying to acquire exclusive locks in the other, |
| 57 | + more standard order. |
| 58 | + </para> |
| 59 | + </listitem> |
| 60 | + |
| 61 | + <listitem> |
| 62 | + <para> |
| 63 | + Fix dangling-pointer problem in <literal>BEFORE ROW UPDATE</> trigger |
| 64 | + handling when there was a concurrent update to the target tuple |
| 65 | + (Tom Lane) |
| 66 | + </para> |
| 67 | + |
| 68 | + <para> |
| 69 | + This bug has been observed to result in intermittent <quote>cannot |
| 70 | + extract system attribute from virtual tuple</> failures while trying to |
| 71 | + do <literal>UPDATE RETURNING ctid</>. There is a very small probability |
| 72 | + of more serious errors, such as generating incorrect index entries for |
| 73 | + the updated tuple. |
| 74 | + </para> |
| 75 | + </listitem> |
| 76 | + |
| 77 | + <listitem> |
| 78 | + <para> |
| 79 | + Disallow <command>DROP TABLE</> when there are pending deferred trigger |
| 80 | + events for the table (Tom Lane) |
| 81 | + </para> |
| 82 | + |
| 83 | + <para> |
| 84 | + Formerly the <command>DROP</> would go through, leading to |
| 85 | + <quote>could not open relation with OID nnn</> errors when the |
| 86 | + triggers were eventually fired. |
| 87 | + </para> |
| 88 | + </listitem> |
| 89 | + |
| 90 | + <listitem> |
| 91 | + <para> |
| 92 | + Fix PL/Python memory leak involving array slices (Daniel Popowich) |
| 93 | + </para> |
| 94 | + </listitem> |
| 95 | + |
| 96 | + <listitem> |
| 97 | + <para> |
| 98 | + Fix <application>pg_restore</> to cope with long lines (over 1KB) in |
| 99 | + TOC files (Tom Lane) |
| 100 | + </para> |
| 101 | + </listitem> |
| 102 | + |
| 103 | + <listitem> |
| 104 | + <para> |
| 105 | + Put in more safeguards against crashing due to division-by-zero |
| 106 | + with overly enthusiastic compiler optimization (Aurelien Jarno) |
| 107 | + </para> |
| 108 | + </listitem> |
| 109 | + |
| 110 | + <listitem> |
| 111 | + <para> |
| 112 | + Support use of dlopen() in FreeBSD and OpenBSD on MIPS (Tom Lane) |
| 113 | + </para> |
| 114 | + |
| 115 | + <para> |
| 116 | + There was a hard-wired assumption that this system function was not |
| 117 | + available on MIPS hardware on these systems. Use a compile-time test |
| 118 | + instead, since more recent versions have it. |
| 119 | + </para> |
| 120 | + </listitem> |
| 121 | + |
| 122 | + <listitem> |
| 123 | + <para> |
| 124 | + Fix compilation failures on HP-UX (Heikki Linnakangas) |
| 125 | + </para> |
| 126 | + </listitem> |
| 127 | + |
| 128 | + <listitem> |
| 129 | + <para> |
| 130 | + Fix version-incompatibility problem with <application>libintl</> on |
| 131 | + Windows (Hiroshi Inoue) |
| 132 | + </para> |
| 133 | + </listitem> |
| 134 | + |
| 135 | + <listitem> |
| 136 | + <para> |
| 137 | + Fix usage of <application>xcopy</> in Windows build scripts to |
| 138 | + work correctly under Windows 7 (Andrew Dunstan) |
| 139 | + </para> |
| 140 | + |
| 141 | + <para> |
| 142 | + This affects the build scripts only, not installation or usage. |
| 143 | + </para> |
| 144 | + </listitem> |
| 145 | + |
| 146 | + <listitem> |
| 147 | + <para> |
| 148 | + Fix path separator used by <application>pg_regress</> on Cygwin |
| 149 | + (Andrew Dunstan) |
| 150 | + </para> |
| 151 | + </listitem> |
| 152 | + |
| 153 | + <listitem> |
| 154 | + <para> |
| 155 | + Update time zone data files to <application>tzdata</> release 2011f |
| 156 | + for DST law changes in Chile, Cuba, Falkland Islands, Morocco, Samoa, |
| 157 | + and Turkey; also historical corrections for South Australia, Alaska, |
| 158 | + and Hawaii. |
| 159 | + </para> |
| 160 | + </listitem> |
| 161 | + |
| 162 | + </itemizedlist> |
| 163 | + |
| 164 | + </sect2> |
| 165 | + </sect1> |
| 166 | + |
4 | 167 | <sect1 id="release-8-3-14">
|
5 | 168 | <title>Release 8.3.14</title>
|
6 | 169 |
|
|
0 commit comments