Updated release notes for recent array syntax changes.
authorJoe Conway
Sun, 8 Aug 2004 05:46:40 +0000 (05:46 +0000)
committerJoe Conway
Sun, 8 Aug 2004 05:46:40 +0000 (05:46 +0000)
doc/src/sgml/release.sgml

index 1bd20134dd25bd8ba7c36b7eaa175eaba59f4af1..ab99f88c1ddfa0c96989b08c1fa9d830c1e40351 100644 (file)
@@ -1,5 +1,5 @@
 
 
 
@@ -311,6 +311,16 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.278 2004/08/06 23:33:48 tgl Exp
        removed.
       
      
+
+     
+      
+       Syntax checking of array input processing has been tighened up
+       considerably. Junk that was previously allowed in odd places with
+       odd results now causes an ERROR. Also changed behavior with respect
+       to whitespace; trailing whitespace is now ignored as well as leading
+       whitespace (which has always been ignored).
+      
+     
     
    
   
@@ -1114,6 +1124,27 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.278 2004/08/06 23:33:48 tgl Exp
      
     
 
+    
+      
+       Syntax checking of array input processing considerably tighened up (Joe)
+      
+     
+       Junk that was previously allowed in odd places with odd results now
+       causes an ERROR.
+      
+    
+
+    
+      
+       Array element trailing whitespace is now ignored (Joe)
+      
+     
+       Formerly leading whitespace was ignored, but trailing whitespace
+       between an element and the delimiter or right brace was significant.
+       Now trailing whitespace is also ignored.
+      
+    
+
     
      
       Emit array literals with explicit array bounds when lower bound is not one