From e513087f6401a64b0d9f0b20cd2a51a7938ac645 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Wed, 14 May 2014 10:07:24 -0400 Subject: [PATCH] doc: auto-updatable view adjustments for 9.4 release notes Report by Dean Rasheed --- doc/src/sgml/release-9.4.sgml | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/doc/src/sgml/release-9.4.sgml b/doc/src/sgml/release-9.4.sgml index cabfbdd1e9..cddd66c6b3 100644 --- a/doc/src/sgml/release-9.4.sgml +++ b/doc/src/sgml/release-9.4.sgml @@ -175,7 +175,7 @@ - Previously, stripped lexemes got a default location and could be + Previously stripped lexemes got a default location and could be considered if mixed with non-stripped lexemes. @@ -268,7 +268,7 @@ - Previously, @@ -1097,22 +1097,25 @@ - Allow the updating of views - where only some columns are auto-updateable (Dean Rasheed) + Allow views to be automatically + updated even if they contain some non-updatable columns + (Dean Rasheed) - Previously the presence of a non-auto-updateable column prevented - all columns from being auto-updated. Deletes are now supported - on suitable views even if no auto-updateable columns are present. + Previously the presence of non-updatable columns such as + expressions, literals, and function cals prevented automatic + updates. Now INSERTs, UPDATEs and + DELETEs are supported, provided that they do not + attempt to assign new values to any of the non-updatable columns. Allow control over whether INSERTs and - UPDATEs can add rows to an auto-updateable view that + UPDATEs can add rows to an auto-updatable view that would no longer appear in the view (Dean Rasheed) @@ -1125,7 +1128,7 @@ Allow security barrier views - to be automatically updateable (Dean Rasheed) + to be automatically updatable (Dean Rasheed)