diff --git a/doc/src/sgml/release-10.sgml b/doc/src/sgml/release-10.sgml index cbb432fa00c..7b521e7ef7f 100644 --- a/doc/src/sgml/release-10.sgml +++ b/doc/src/sgml/release-10.sgml @@ -83,6 +83,44 @@ Karlsson) + + + +Rename pg_xlog to pg_wal (Michael Paquier) + + + +This prevents the write-ahead log directory from being confused as +containing server activity logs, and erroneously truncated. + + + + + + +Rename SQL functions, tools, and options that reference xlog to wal +(Robert Haas) + + + +For example, pg_switch_xlog() becomes pg_switch_wal(), pg_receivexlog +becomes pg_receivewal, and + + + +Allow COALESCE and CASE to return multiple rows when evaluating +set-returning functions (Andres Freund). + + + +This also prevents conditionals like CASE from controlling the +execution of set-returning functions because set-returning functions +are now executed earlier. + + + + +Remove pg_dump/pg_dumpall support for dumping from pre-8.0 servers (Tom +Lane) + + + +Users needing dump support for pre-8.0 servers need to use dump binaries +from Postgres 9.6. + + + - -Rename pg_xlog to pg_wal (Michael Paquier) - - - -This prevents the write-ahead log directory from being confused as -containing server activity logs, and erroneously truncated. - - - - - - -Rename SQL functions, tools, and options that reference xlog to wal -(Robert Haas) - - - -For example, pg_switch_xlog() becomes pg_switch_wal(), pg_receivexlog -becomes pg_receivewal, and - - - - - -Allow COALESCE and CASE to return multiple rows when evaluating -set-returning functions (Andres Freund). - - - -This also prevents conditionals like CASE from controlling the -execution of set-returning functions because set-returning functions -are now executed earlier. - - - - - - -Remove pg_dump/pg_dumpall support for dumping from pre-8.0 servers (Tom -Lane) - - - -Users needing dump support for pre-8.0 servers need to use dump binaries -from Postgres 9.6. - @@ -797,8 +797,8 @@ Author: Peter Eisentraut 2016-12-20 [1753b1b02] Add pg_sequence system catalog --> -Create a pg_sequence system catalog to store sequence metadata (Andreas -Karlsson) +Create a pg_sequence system catalog to store sequence metadata +(Peter Eisentraut)