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:24 -0500 |
commit | 3558f120f8697e63d97145706151778bb176ba7b (patch) | |
tree | 3afb6cec210f3658b9dde571c32310d406545409 /doc/src | |
parent | b2caf7c0e1ebada614b6aa3004d826080a07e7e4 (diff) | |
download | postgresql-3558f120f8697e63d97145706151778bb176ba7b.tar.gz postgresql-3558f120f8697e63d97145706151778bb176ba7b.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
Diffstat (limited to 'doc/src')
-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 37817d06384..4dfbbd08626 100644 --- a/doc/src/sgml/syntax.sgml +++ b/doc/src/sgml/syntax.sgml @@ -1066,6 +1066,18 @@ CAST ( '<replaceable>string</replaceable>' AS <replaceable>type</replaceable> ) </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>, <literal>AT LOCAL</literal></entry> + </row> + + <row> <entry><token>^</token></entry> <entry>left</entry> <entry>exponentiation</entry> |