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 | d809d99cd4dba1e42d4f330289664453889900a5 (patch) | |
tree | 318105922b642ae838b352ac97677d6cdc72b111 | |
parent | c4a13b361f0852fe408ba150741722c29ebc0176 (diff) | |
download | postgresql-d809d99cd4dba1e42d4f330289664453889900a5.tar.gz postgresql-d809d99cd4dba1e42d4f330289664453889900a5.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 b7310101914..72ffc4bc60a 100644 --- a/doc/src/sgml/datatype.sgml +++ b/doc/src/sgml/datatype.sgml @@ -1597,8 +1597,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>times of day only, 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 / 14 digits</entry> </row> <row> |