diff --git a/doc/src/sgml/syntax.sgml b/doc/src/sgml/syntax.sgml index a869cd440aa..c49d81b7f90 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.)