diff options
author | Bruce Momjian <bruce@momjian.us> | 2011-10-04 22:39:29 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2011-10-04 22:39:29 -0400 |
commit | 3919ad864d7040361fd4b44719acaa1ec0f87bbd (patch) | |
tree | 9831fa905a2a5ea9a6f7c705d749b285db5e9ab2 | |
parent | 9d23d7cdafb3540aa2de9310c7f1afee87dfc2f2 (diff) | |
download | postgresql-3919ad864d7040361fd4b44719acaa1ec0f87bbd.tar.gz postgresql-3919ad864d7040361fd4b44719acaa1ec0f87bbd.zip |
Change wording for COALESCE docs to use "otherwise".
Per Tom
-rw-r--r-- | doc/src/sgml/func.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 2f307c2b121..bedd8ba7f55 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; <programlisting> SELECT COALESCE(description, short_description, '(none)') ... </programlisting> - This returns <varname>description</> if it is not null, or - <varname>short_description</> if it is not null, or <literal>(none)</>. + This returns <varname>description</> if it is not null, otherwise + <varname>short_description</> if it is not null, otherwise <literal>(none)</>. </para> <para> |