Index: doc/src/sgml/release.sgml
===================================================================
RCS file: /var/lib/cvs/pgsql-server/doc/src/sgml/release.sgml,v
retrieving revision 1.163.2.2
diff -c -r1.163.2.2 release.sgml
*** doc/src/sgml/release.sgml	11 Nov 2002 20:02:06 -0000	1.163.2.2
--- doc/src/sgml/release.sgml	22 Nov 2002 19:58:04 -0000
***************
*** 168,174 ****
       <listitem>
        <para>
         Several <filename>postgresql.conf</filename> logging parameters
!        have been renamed and improved.
        </para>
       </listitem>
  
--- 168,174 ----
       <listitem>
        <para>
         Several <filename>postgresql.conf</filename> logging parameters
!        have been renamed.
        </para>
       </listitem>
  
***************
*** 182,195 ****
       <listitem>
        <para>
         <command>INSERT</command> statements with column lists must
!        specify all values; e.g., <literal>INSERT INTO tab (col1, col2)
!        VALUES ('val1')</literal> is now invalid.
        </para>
       </listitem>
  
       <listitem>
        <para>
!        An index is now not automatically created for <type>serial</type> columns.
        </para>
       </listitem>
  
--- 182,198 ----
       <listitem>
        <para>
         <command>INSERT</command> statements with column lists must
!        specify a value for each specified column. For example,
!        <literal>INSERT INTO tab (col1, col2) VALUES ('val1')</literal>
!        is now invalid.
        </para>
       </listitem>
  
       <listitem>
        <para>
!        <type>serial</type> columns are no longer automatically
!        <literal>UNIQUE</>; thus, an index will not automatically be
!        created.
        </para>
       </listitem>
  
***************
*** 222,227 ****
--- 225,237 ----
         constraints, and foreign keys. See the directory
         <filename>contrib/adddepend/</filename> for a detailed
         description and a script that will add the such dependencies.
+       </para>
+      </listitem>
+ 
+      <listitem>
+       <para>
+        When casting a textual value to an integer, an empty string
+        (<literal>''</literal>) now produces an error, rather than 0.
        </para>
       </listitem>
  
