projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9d23d7c
)
Change wording for COALESCE docs to use "otherwise".
author
Bruce Momjian
Wed, 5 Oct 2011 02:39:29 +0000
(22:39 -0400)
committer
Bruce Momjian
Wed, 5 Oct 2011 02:39:29 +0000
(22:39 -0400)
Per Tom
doc/src/sgml/func.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/func.sgml
b/doc/src/sgml/func.sgml
index 2f307c2b121f6460cd7b275b84bf972711b641eb..bedd8ba7f557ab8eeb7e6127d61b6bd3e0acc79a 100644
(file)
--- 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, o
r
-
short_description> if it is not null, o
r
(none)>.
+ This returns
description> if it is not null, o
therwise
+
short_description> if it is not null, o
therwise
(none)>.