From: Bruce Momjian Date: Wed, 5 Oct 2011 02:39:29 +0000 (-0400) Subject: Change wording for COALESCE docs to use "otherwise". X-Git-Tag: REL9_2_BETA1~1031 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3919ad864d7040361fd4b44719acaa1ec0f87bbd;p=postgresql Change wording for COALESCE docs to use "otherwise". Per Tom --- diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 2f307c2b12..bedd8ba7f5 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -10015,8 +10015,8 @@ SELECT ... WHERE CASE WHEN x <> 0 THEN y/x > 1.5 ELSE false END; SELECT COALESCE(description, short_description, '(none)') ... - This returns description if it is not null, or - short_description if it is not null, or (none). + This returns description if it is not null, otherwise + short_description if it is not null, otherwise (none).