diff --git a/doc/src/sgml/release-8.4.sgml b/doc/src/sgml/release-8.4.sgml index f426023..f76c446 100644 *** a/doc/src/sgml/release-8.4.sgml --- b/doc/src/sgml/release-8.4.sgml *************** WITH w AS (SELECT * FROM foo) SELECT * F *** 2556,2561 **** --- 2556,2576 ---- + + + The following deprecated functions have been removed: + istrue(), isfalse(), + isnottrue(), isnotfalse(), + nullvalue(), nonnullvalue(). (Peter Eisentraut) + + + + If your client code depends on these functions, you can either implement + trivial replacements with SQL-language functions, or change your client + code to use IS TRUE, IS FALSE, + IS NULL, IS NOT NULL, etc. + +