summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1999-03-17 21:27:02 +0000
committerBruce Momjian <bruce@momjian.us>1999-03-17 21:27:02 +0000
commitddc8899e6b6388842e86a8c4a664059273e0f321 (patch)
tree1793b8e3314ae4af4f54caa991379c94c91e1811
parent259ca6df222ac6ed33ce58dc3110324fc05e6b8d (diff)
downloadpostgresql-ddc8899e6b6388842e86a8c4a664059273e0f321.tar.gz
Add docs about left-associativity of operators.
-rw-r--r--doc/src/sgml/oper.sgml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/oper.sgml b/doc/src/sgml/oper.sgml
index ac7644dd80..9093650e69 100644
--- a/doc/src/sgml/oper.sgml
+++ b/doc/src/sgml/oper.sgml
@@ -58,7 +58,7 @@ has a command (<Command>\dd</Command>) to show these operators.
<para>
Operators have a precedence which is currently hardcoded into the parser.
-Most operators have the same precedence and are non-associative. This may lead
+Most operators have the same precedence and are left-associative. This may lead
to non-intuitive behavior; for example the boolean operators "&lt;" and "&gt;"
have a different precedence that the boolean operators "&lt;=" and "&gt;=".