summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2015-12-28 12:09:00 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2015-12-28 12:09:18 -0500
commit3b3e8fc9cf395400fb9108b4e384ab9b6bf2ec14 (patch)
treef754aabdc253c428df6cb7ea4a8853133cc6aef2
parentaba82401dd04387bf17968b839039fe7cbec8f4e (diff)
downloadpostgresql-3b3e8fc9cf395400fb9108b4e384ab9b6bf2ec14.tar.gz
Document the exponentiation operator as associating left to right.
Common mathematical convention is that exponentiation associates right to left. We aren't going to change the parser for this, but we could note it in the operator's description. (It's already noted in the operator precedence/associativity table, but users might not look there.) Per bug #13829 from Henrik Pauli.
-rw-r--r--doc/src/sgml/func.sgml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml
index e1edbb34f5..3828023199 100644
--- a/doc/src/sgml/func.sgml
+++ b/doc/src/sgml/func.sgml
@@ -505,7 +505,7 @@
<row>
<entry> <literal>^</literal> </entry>
- <entry>exponentiation</entry>
+ <entry>exponentiation (associates left to right)</entry>
<entry><literal>2.0 ^ 3.0</literal></entry>
<entry><literal>8</literal></entry>
</row>