diff --git a/doc/src/sgml/release-11.sgml b/doc/src/sgml/release-11.sgml index 6bde17eecc..4b31b46b98 100644 --- a/doc/src/sgml/release-11.sgml +++ b/doc/src/sgml/release-11.sgml @@ -249,7 +249,7 @@ Cause large object permission checks to happen on large object open, lo_open(), not - read/write (Tom Lane) + read/write (Tom Lane, Michael Paquier) @@ -321,6 +321,18 @@ PostgreSQL has long supported a more standard-compliant syntax for this capability. + + + + + + + Consistently return NaN for + NaN inputs to power() + on older platforms (Dang Minh Huong) + @@ -711,8 +723,8 @@ same commits as above - Previously each hash index entry has to be locked and scanned - separately. + Previously for each hash index entry, we need to refind the scan + position within the page. This cuts down on lock/unlock traffic. @@ -1057,7 +1069,7 @@ same commits as above Add information_schema columns related to table constraints and - triggers (Michael Paquier) + triggers (Peter Eisentraut) @@ -1091,22 +1103,17 @@ same commits as above Add libpq option to support channel binding when using SCRAM - authentication (Michael Paquier) + authentication (Peter Eisentraut) - Channel binding requires the server end - of the TLS connection to - prove that it knows the password. The options are SCRAM always prevents the + replay of transmitted hashed passwords in a later + session, SCRAM with channel binding + also prevents man-in-the-middle attacks. The options are and . - - - WHAT DOES THIS DOC TEXT MEAN? "An empty value specifies that - the client will not use channel binding. The default value - is tls-unique." - @@ -1196,7 +1203,7 @@ same commits as above Allow access to file system functions to be controlled by GRANT/REVOKE permissions, - rather than super-user checks (Michael Paquier) + rather than super-user checks (Stephen Frost) @@ -1218,7 +1225,7 @@ same commits as above Use GRANT/REVOKE to control access to lo_import() - and lo_export() (Michael Paquier) + and lo_export() (Michael Paquier, Tom Lane) @@ -1420,11 +1427,13 @@ same commits as above - Exclude unlogged and temporary tables from streaming base backups - (David Steele) + Exclude unlogged, temporary tables, and + pg_internal.init files from streaming base + backups (David Steele) @@ -1468,7 +1477,7 @@ same commits as above Add timeline information to the backup_label - file (Simon Riggs) + file (Michael Paquier) @@ -1489,18 +1498,6 @@ same commits as above - - - - - Document that pg_internal.init files do not - need to be included in the base backup (David Steele) - - - - @@ -1546,8 +1543,9 @@ same commits as above --> - Allow ALTER TABLE to add a non-null default - column without a table rewrite (Andrew Dunstan, Serge Rielau) + Allow ALTER TABLE to add a column with + a non-null default without a table rewrite (Andrew Dunstan, + Serge Rielau) @@ -1881,22 +1879,6 @@ same commits as above - - - Add libpq parameter to allow physical and logical replication - connections (Michael Paquier) - - - - The libpq connection parameter is called . - - - - - @@ -2022,14 +2004,14 @@ same commits as above --> - Have psql \d+ show a partition count - of zero (Amit Langote) + Have psql \d+ always show the partition information (Amit Langote, + Ashutosh Bapat) - Previously no partition information would be displayed for such - tables. Also indicate which partitions are themselves partitioned. - ACCURATE? + Previously partition information would not be displayed for a + partitioned table if it had no partitions. Also indicate which + partitions are themselves partitioned. @@ -2330,7 +2312,7 @@ same commits as above Add pg_receivewal option to prevent synchronous - WAL writes (Michael Paquier) + WAL writes, for testing (Michael Paquier) @@ -2382,7 +2364,7 @@ same commits as above Prevent pg_rewind from running as - root (Magnus Hagander) + root (Michael Paquier)