diff options
author | Robert Haas <rhaas@postgresql.org> | 2011-03-08 23:59:52 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2011-03-09 00:00:03 -0500 |
commit | f14ae5f905282109c9a2571c2048c564004f24c5 (patch) | |
tree | 352e07bbc285d955d438ebb57cacb91ee6d02c95 | |
parent | c0dc44ebba0bbce430e71adb195ceec66417d40b (diff) | |
download | postgresql-f14ae5f905282109c9a2571c2048c564004f24c5.tar.gz postgresql-f14ae5f905282109c9a2571c2048c564004f24c5.zip |
Update alpha release notes for latest commits.
-rw-r--r-- | doc/src/sgml/release-9.1.sgml | 49 |
1 files changed, 32 insertions, 17 deletions
diff --git a/doc/src/sgml/release-9.1.sgml b/doc/src/sgml/release-9.1.sgml index 2ea0fd7e21a..d14a2dce560 100644 --- a/doc/src/sgml/release-9.1.sgml +++ b/doc/src/sgml/release-9.1.sgml @@ -1,6 +1,6 @@ <!-- doc/src/sgml/release-9.1.sgml --> -<!-- This is (hopefully) up-to-date with commits through 2011-03-05 --> +<!-- This is (hopefully) up-to-date with commits through 2011-03-08 --> <sect1 id="release-9-1-alpha"> <title>Release 9.1alpha4</title> @@ -122,6 +122,24 @@ </para> </listitem> + <listitem> + <para> + <emphasis>Synchronous replication</emphasis> + </para> + <para> + When enabled, transaction commit will wait for WAL records to be + replicated before informing the client that a transaction has + successfully committed. + </para> + </listitem> + + <listitem> + <para> + <emphasis>When recovery_target_timelines='latest', periodically + rescan the archive for new timelines</emphasis> + </para> + </listitem> + </itemizedlist> </sect3> @@ -1011,15 +1029,14 @@ <listitem> <para> - <emphasis>Skip dropped attributes when converting Python objects to - tuples</emphasis> + <emphasis>Make plpy.Fatal() raise FATAL, rather than ERROR</emphasis> </para> </listitem> <listitem> <para> - <emphasis>Improve messages for errors in compiling anonymous - PL/Python blocks</emphasis> + <emphasis>Skip dropped attributes when converting Python objects to + tuples</emphasis> </para> </listitem> @@ -1043,11 +1060,17 @@ <listitem> <para> - <emphasis>Do not prefix error messages with the string - "PL/Python: "</emphasis> + <emphasis>Improve error reporting</emphasis> </para> - <para> - It is redundant, given the error context. + <para>Better error messages for errors in compiling anonymous + PL/Python blocks. Avoid prefixing error messages with the string + "PL/Python: ", which is redundant, given the error + context. Provide a separate exception class for each error code + the backend defines, and make it possible to get the SQLSTATE from + the exception object. Report Python errors from iterators + using PLy_elog, so that the Python exception is included in the + exception, and to avoid setting the errcode to + ERRCODE_DATA_EXCEPTION. </para> </listitem> @@ -1097,14 +1120,6 @@ <listitem> <para> - <emphasis>Provide a separate exception class for each error code - the backend defines, and make it possible to get the SQLSTATE from - the exception object</emphasis> - </para> - </listitem> - - <listitem> - <para> <emphasis>Assorted code cleanup</emphasis> </para> <para> |