diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2023-11-26 16:40:22 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2023-11-26 16:40:22 -0500 |
commit | 450ad6585ac55d0cf7e32bda238db409321f4923 (patch) | |
tree | ef728d4168bd55fa36b79f71d91a0739b36cc37d | |
parent | 18fad508b783654e516898d2246a8ac3c98e47e0 (diff) | |
download | postgresql-450ad6585ac55d0cf7e32bda238db409321f4923.tar.gz postgresql-450ad6585ac55d0cf7e32bda238db409321f4923.zip |
Doc: list AT TIME ZONE and COLLATE in operator precedence table.
These constructs have precedence, but we forgot to list them.
In HEAD, mention AT LOCAL as well as AT TIME ZONE.
Per gripe from Shay Rojansky.
Discussion: https://postgr.es/m/CADT4RqBPdbsZW7HS1jJP319TMRHs1hzUiP=iRJYR6UqgHCrgNQ@mail.gmail.com
-rw-r--r-- | doc/src/sgml/syntax.sgml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/src/sgml/syntax.sgml b/doc/src/sgml/syntax.sgml index 2c9907ab8bd..bcdb6f4a0f2 100644 --- a/doc/src/sgml/syntax.sgml +++ b/doc/src/sgml/syntax.sgml @@ -1046,6 +1046,18 @@ SELECT (5 !) - 6; </row> <row> + <entry><token>COLLATE</token></entry> + <entry>left</entry> + <entry>collation selection</entry> + </row> + + <row> + <entry><token>AT</token></entry> + <entry>left</entry> + <entry><literal>AT TIME ZONE</literal></entry> + </row> + + <row> <entry><token>^</token></entry> <entry>left</entry> <entry>exponentiation</entry> |