diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 5dea1aa986e..32328de46d5 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -1007,16 +1007,23 @@ repeat('Pg', 4) PgPgPgPg double precision - Exponentiation (unlike typical mathematical practice, multiple uses of - ^ will associate left to right) + Exponentiation 2 ^ 3 8 + + Unlike typical mathematical practice, multiple uses of + ^ will associate left to right by default: + 2 ^ 3 ^ 3 512 + + + 2 ^ (3 ^ 3) + 134217728