1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-24 14:22:24 +03:00

Add docs about left-associativity of operators.

This commit is contained in:
Bruce Momjian
1999-03-17 21:27:02 +00:00
parent 259ca6df22
commit ddc8899e6b

View File

@ -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;=".