projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3bf66d6
)
Typo pointed out by Erwin Brandstetter. Remove the whole makes it even
author
Magnus Hagander
Tue, 11 Dec 2007 18:30:20 +0000
(18:30 +0000)
committer
Magnus Hagander
Tue, 11 Dec 2007 18:30:20 +0000
(18:30 +0000)
better, per JD.
doc/src/sgml/syntax.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/syntax.sgml
b/doc/src/sgml/syntax.sgml
index a869cd440aa849a945c982ccd80a0edabc831274..c49d81b7f90935827ac9121dff21fb8979884200 100644
(file)
--- a/
doc/src/sgml/syntax.sgml
+++ b/
doc/src/sgml/syntax.sgml
@@
-1,4
+1,4
@@
-
+
SQL Syntax
@@
-1748,7
+1748,7
@@
SELECT ... WHERE CASE WHEN x <> 0 THEN y/x > 1.5 ELSE false END;
A
CASE> construct used in this fashion will defeat optimization
attempts, so it should only be done when necessary. (In this particular
- example, it would
doubtless
be best to sidestep the problem by writing
+ example, it would be best to sidestep the problem by writing
y > 1.5*x> instead.)