Re: BUG #16571: "time with time zone" type can input '00:00:00+1559'::time with time zone

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: BUG #16571: "time with time zone" type can input '00:00:00+1559'::time with time zone
Дата
Msg-id 2329418.1596464280@sss.pgh.pa.us
обсуждение исходный текст
Ответ на BUG #16571: "time with time zone" type can input '00:00:00+1559'::time with time zone  (PG Bug reporting form <noreply@postgresql.org>)
Список 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 по дате отправления:

Предыдущее
От: PG Bug reporting form
Дата:
Сообщение: BUG #16571: "time with time zone" type can input '00:00:00+1559'::time with time zone
Следующее
От: "Daniel Verite"
Дата:
Сообщение: Re: BUG #16570: Collation not working