Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitc4314e1

Browse files
committed
Update release notes for 9.0 beta 3.
1 parent4b7f50e commitc4314e1

File tree

1 file changed

+103
-18
lines changed

1 file changed

+103
-18
lines changed

‎doc/src/sgml/release-9.0.sgml

Lines changed: 103 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/release-9.0.sgml,v 2.38 2010/07/01 02:33:21 momjian Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/release-9.0.sgml,v 2.39 2010/07/08 22:26:14 momjian Exp $ -->
22

33
<sect1 id="release-9-0">
44
<title>Release 9.0</title>
@@ -132,7 +132,7 @@
132132
<sect2>
133133

134134
<title>Migration to Version 9.0</title>
135-
<para>CURRENT AS OF 2010-06-03</para>
135+
<para>CURRENT AS OF 2010-07-08</para>
136136

137137
<para>
138138
A dump/restore using <application>pg_dump</application>
@@ -179,6 +179,14 @@
179179
</para>
180180
</listitem>
181181

182+
<listitem>
183+
<para>
184+
Adjust <link
185+
linkend="guc-log-temp-files"><varname>log_temp_files</></link> to
186+
use default file sizes units of kilobytes (Robert Haas)
187+
</para>
188+
</listitem>
189+
182190
</itemizedlist>
183191

184192
</sect3>
@@ -359,18 +367,19 @@
359367
<title>Other Incompatibilities</title>
360368
<itemizedlist>
361369
<listitem>
362-
<para>
363-
Remove support for platforms that don't have a working 64-bit
364-
integer data type (Tom Lane)
365-
</para>
370+
<para>
371+
Remove support for platforms that don't have a working 64-bit
372+
integer data type (Tom Lane)
373+
</para>
366374

367-
<para>
368-
It is believed all still-supported platforms have working 64-bit
369-
integer data types.
370-
</para>
371-
</listitem>
372-
</itemizedlist>
373-
</sect3>
375+
<para>
376+
It is believed all still-supported platforms have working 64-bit
377+
integer data types.
378+
</para>
379+
</listitem>
380+
381+
</itemizedlist>
382+
</sect3>
374383
</sect2>
375384

376385
<sect2>
@@ -569,7 +578,9 @@
569578
</para>
570579

571580
<para>
572-
This is particularly useful for partitioned tables.
581+
This is particularly useful for partitioned tables. However,
582+
autovacuum does not yet properly analyze parent tables based on
583+
child table changes.
573584
</para>
574585
</listitem>
575586

@@ -773,7 +784,6 @@
773784
<link linkend="guc-search-path"><varname>search_path</varname></link>.
774785
</para>
775786

776-
777787
</listitem>
778788

779789
<listitem>
@@ -829,6 +839,19 @@
829839
</para>
830840
</listitem>
831841

842+
<listitem>
843+
<para>
844+
Adjust <link
845+
linkend="guc-log-temp-files"><varname>log_temp_files</></link> to
846+
use default file sizes units of kilobytes (Robert Haas)
847+
</para>
848+
849+
<para>
850+
Previously this setting defaulted to bytes if no units were
851+
specified.
852+
</para>
853+
</listitem>
854+
832855
</itemizedlist>
833856

834857
</sect4>
@@ -1926,7 +1949,9 @@
19261949

19271950
<para>
19281951
The new server-side language is called <link
1929-
linkend="plpython-python23"><literal>plpython3u</></link>.
1952+
linkend="plpython-python23"><literal>plpython3u</></link>. This
1953+
cannot be used in the same backend with the usual
1954+
<application>Python</> 2 server-side language.
19301955
</para>
19311956
</listitem>
19321957

@@ -2207,6 +2232,18 @@
22072232
</para>
22082233
</listitem>
22092234

2235+
<listitem>
2236+
<para>
2237+
Add <link linkend="libpq-keepalives">keepalive settings</link>
2238+
in libpq (Tollef Fog Heen, Fujii Masao, Robert Haas)
2239+
</para>
2240+
2241+
<para>
2242+
Keepalive settings were already supported on the server end of
2243+
TCP connections.
2244+
</para>
2245+
</listitem>
2246+
22102247
<listitem>
22112248
<para>
22122249
Properly report an error if the specified <application>libpq</> service
@@ -2224,7 +2261,7 @@
22242261

22252262
<listitem>
22262263
<para>
2227-
Load SSL certificatechain (Tom Lane)
2264+
Load SSL certificatechains (Tom Lane)
22282265
</para>
22292266

22302267
<para>
@@ -2423,6 +2460,20 @@
24232460
</para>
24242461
</listitem>
24252462

2463+
<listitem>
2464+
<para>
2465+
Add a Makefile rule to build documentation as a single text file
2466+
(Bruce Momjian)
2467+
</para>
2468+
</listitem>
2469+
2470+
<listitem>
2471+
<para>
2472+
Restructure use of <literal>LDFLAGS</> to be more consistent
2473+
across platforms (Tom Lane)
2474+
</para>
2475+
</listitem>
2476+
24262477
</itemizedlist>
24272478

24282479
</sect4>
@@ -2609,6 +2660,14 @@
26092660
</para>
26102661
</listitem>
26112662

2663+
<listitem>
2664+
<para>
2665+
New documentation <link linkend="non-durability">section</link>
2666+
about running <productname>PostgreSQL</> in non-durable mode,
2667+
to improve performance (Bruce Momjian)
2668+
</para>
2669+
</listitem>
2670+
26122671
</itemizedlist>
26132672

26142673
<sect4>
@@ -2732,7 +2791,7 @@
27322791
<listitem>
27332792
<para>
27342793
Add <link linkend="pgupgrade"><filename>/contrib/pg_upgrade</></link>
2735-
to support in-place upgrades (Bruce)
2794+
to support in-place upgrades (Bruce Momjian)
27362795
</para>
27372796

27382797
<para>
@@ -2843,6 +2902,19 @@
28432902
</para>
28442903
</listitem>
28452904

2905+
<listitem>
2906+
<para>
2907+
Improve <filename>/contrib/dblink</>s handling of dropped columns
2908+
(Tom Lane)
2909+
</para>
2910+
2911+
<para>
2912+
This affects <link
2913+
linkend="CONTRIB-DBLINK-BUILD-SQL-INSERT"><function>dblink_build_sql_insert()</></link>
2914+
and related functions.
2915+
</para>
2916+
</listitem>
2917+
28462918
<listitem>
28472919
<para>
28482920
Greatly increase <link
@@ -2872,6 +2944,19 @@
28722944
</para>
28732945
</listitem>
28742946

2947+
<listitem>
2948+
<para>
2949+
Add <link
2950+
linkend="pgarchivecleanup"><filename>/contrib/pg_archivecleanup</></link>
2951+
tool (Simon Riggs)
2952+
</para>
2953+
2954+
<para>
2955+
This is designed to be used by the <literal>archive_cleanup_command</literal>
2956+
setting to remove unnecessary archive files.
2957+
</para>
2958+
</listitem>
2959+
28752960
<listitem>
28762961
<para>
28772962
Add query text to <link

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp