From: Tom Lane Date: Mon, 28 Dec 2015 17:09:00 +0000 (-0500) Subject: Document the exponentiation operator as associating left to right. X-Git-Tag: REL9_1_20~30 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4388895a65aa71961e885d8a292e95b70fd57ad8;p=postgresql 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. --- diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 6058bdd5ae..389ba9ee76 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -505,7 +505,7 @@ ^ - exponentiation + exponentiation (associates left to right) 2.0 ^ 3.0 8