From: Magnus Hagander Date: Tue, 11 Dec 2007 18:30:20 +0000 (+0000) Subject: Typo pointed out by Erwin Brandstetter. Remove the whole makes it even X-Git-Tag: REL8_3_RC1~100 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3a7211aaf782ce56082720b741440e345cb711c6;p=postgresql Typo pointed out by Erwin Brandstetter. Remove the whole makes it even better, per JD. --- diff --git a/doc/src/sgml/syntax.sgml b/doc/src/sgml/syntax.sgml index a869cd440a..c49d81b7f9 100644 --- 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.)