diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2020-08-03 13:11:16 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2020-08-03 13:11:16 -0400 |
commit | eeb01e3122bb0acb6f8575d352e8e63101662ae7 (patch) | |
tree | ea0d0d35ee7478b50434c653eeb18bd0d4ea74c0 | |
parent | 5f28b21eb3c5c2fb72c24608bc686acd7c9b113c (diff) | |
download | postgresql-eeb01e3122bb0acb6f8575d352e8e63101662ae7.tar.gz postgresql-eeb01e3122bb0acb6f8575d352e8e63101662ae7.zip |
Doc: fix obsolete info about allowed range of TZ offsets in timetz.
We've allowed UTC offsets up to +/- 15:59 since commit cd0ff9c0f, but
that commit forgot to fix the documentation about timetz.
Per bug #16571 from osdba.
Discussion: https://postgr.es/m/16571-eb7501598de78c8a@postgresql.org
-rw-r--r-- | doc/src/sgml/datatype.sgml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/src/sgml/datatype.sgml b/doc/src/sgml/datatype.sgml index 50e370cae44..fdc8715a0d1 100644 --- a/doc/src/sgml/datatype.sgml +++ b/doc/src/sgml/datatype.sgml @@ -1727,8 +1727,9 @@ SELECT 'abc \153\154\155 \052\251\124'::bytea; <entry><type>time [ (<replaceable>p</replaceable>) ] with time zone</type></entry> <entry>12 bytes</entry> <entry>time of day (no date), with time zone</entry> - <entry>00:00:00+1459</entry> - <entry>24:00:00-1459</entry> + <!-- see MAX_TZDISP_HOUR in datatype/timestamp.h --> + <entry>00:00:00+1559</entry> + <entry>24:00:00-1559</entry> <entry>1 microsecond</entry> </row> <row> |