From 32fe2e3194c7198ca4afdb6bea4ffa12466612b1 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 21 May 2019 16:14:33 -0400 Subject: [PATCH] doc: adjustments for PG 12 release notes Mostly commit messages, attribution, and text, all suggested by Andres Freund. Discussion: https://postgr.es/m/20190520221719.pqgld3krjc2docr5@alap3.anarazel.de --- doc/src/sgml/release-12.sgml | 36 +++++++++++++++++++++++------------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/doc/src/sgml/release-12.sgml b/doc/src/sgml/release-12.sgml index b55bc6d667..00acd9fa4f 100644 --- a/doc/src/sgml/release-12.sgml +++ b/doc/src/sgml/release-12.sgml @@ -982,8 +982,6 @@ Author: Bruce Momjian @@ -1517,7 +1515,7 @@ Author: Michael Paquier Prevent from requesting a lock on - tables for which it lacks permission (Michaël Paquier) + tables for which the user lacks permission (Michaël Paquier) @@ -1882,9 +1880,10 @@ Author: Peter Eisentraut - Rather than storing a value only at row creation time, generated - columns are also modified during updates, and can reference other - table columns. + The content of generated columns are computed from expressions + (including references to other columns in the same table) + rather than being specified by INSERT or + UPDATE commands. @@ -2061,7 +2060,7 @@ Author: Peter Eisentraut --> - Allow modifications of system tables using (Peter Eisentraut) @@ -2595,8 +2594,8 @@ Author: Tom Lane --> - Compute behavior based on pgbench's - value more precisely (Tom Lane) + Improve precision of pgbench's + option (Tom Lane) @@ -2816,11 +2815,12 @@ Author: Thomas Munro --> - Allow restoration of an INSERT-statement dump - to skip rows which would cause conflicts (Surafel Temesgen) + Allow pg_dump to emit INSERT ... ON CONFLICT DO + NOTHING (Surafel Temesgen) + This avoids conflict failures during restore. The pg_dump option is . @@ -2875,6 +2875,8 @@ Author: Andrew Dunstan Add command to create - new table types (Haribabu Kommi, Andres Freund, Álvaro Herrera, - Dimitri Dolgov) + new table types (Andres Freund, Haribabu Kommi, Álvaro Herrera, + Alexander Korotkov, Dimitri Golgov) + + + + This enables the development of new table + access methods, which can optimize storage for different + use-cases. The existing heap access method + remains the default.