From 3919ad864d7040361fd4b44719acaa1ec0f87bbd Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 4 Oct 2011 22:39:29 -0400 Subject: [PATCH] Change wording for COALESCE docs to use "otherwise". Per Tom --- doc/src/sgml/func.sgml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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). -- 2.40.0