Re: BUG #16571: "time with time zone" type can input '00:00:00+1559'::time with time zone - Mailing list pgsql-bugs

From Tom Lane
Subject Re: BUG #16571: "time with time zone" type can input '00:00:00+1559'::time with time zone
Date
Msg-id 2329418.1596464280@sss.pgh.pa.us
Whole thread Raw
In response to BUG #16571: "time with time zone" type can input '00:00:00+1559'::time with time zone  (PG Bug reporting form <noreply@postgresql.org>)
List pgsql-bugs
PG Bug reporting form <noreply@postgresql.org> writes:
> In Document(https://www.postgresql.org/docs/current/datatype-datetime.html),
> "time with time zone" range is:  00:00:00+1459 to 24:00:00-1459
> but you can input:
> osdba=# select '00:00:00+1559'::time with time zone;
>      timetz
> ----------------
>  00:00:00+15:59
> (1 row)

Hmm, the code is quite clear about it:

/*
 * We allow numeric timezone offsets up to 15:59:59 either way from Greenwich.
 * Currently, the record holders for wackiest offsets in actual use are zones
 * Asia/Manila, at -15:56:00 until 1844, and America/Metlakatla, at +15:13:42
 * until 1867.  If we were to reject such values we would fail to dump and
 * restore old timestamptz values with these zone settings.
 */
#define MAX_TZDISP_HOUR        15    /* maximum allowed hour part */

Apparently this documentation reference got overlooked the last time
we changed that :-(.  Will fix, thanks for the report!

            regards, tom lane



pgsql-bugs by date:

Previous
From: PG Bug reporting form
Date:
Subject: BUG #16571: "time with time zone" type can input '00:00:00+1559'::time with time zone
Next
From: "Daniel Verite"
Date:
Subject: Re: BUG #16570: Collation not working