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 ****
Several postgresql.conf logging parameters
! have been renamed and improved.
--- 168,174 ----
Several postgresql.conf logging parameters
! have been renamed.
***************
*** 182,195 ****
INSERT statements with column lists must
! specify all values; e.g., INSERT INTO tab (col1, col2)
! VALUES ('val1') is now invalid.
! An index is now not automatically created for serial columns.
--- 182,198 ----
INSERT statements with column lists must
! specify a value for each specified column. For example,
! INSERT INTO tab (col1, col2) VALUES ('val1')
! is now invalid.
! serial columns are no longer automatically
! UNIQUE>; thus, an index will not automatically be
! created.
***************
*** 222,227 ****
--- 225,237 ----
constraints, and foreign keys. See the directory
contrib/adddepend/ for a detailed
description and a script that will add the such dependencies.
+
+
+
+
+
+ When casting a textual value to an integer, an empty string
+ ('') now produces an error, rather than 0.