pgsql: Tweak our special-case logic for the IANA "Factory" timezone. - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Tweak our special-case logic for the IANA "Factory" timezone.
Date
Msg-id E1hr3gv-0004vf-4Z@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Tweak our special-case logic for the IANA "Factory" timezone.

pg_timezone_names() tries to avoid showing the "Factory" zone in
the view, mainly because that has traditionally had a very long
"abbreviation" such as "Local time zone must be set--see zic manual page",
so that showing it messes up psql's formatting of the whole view.
Since tzdb version 2016g, IANA instead uses the abbreviation "-00",
which is sane enough that there's no reason to discriminate against it.

On the other hand, it emerges that FreeBSD and possibly other packagers
are so wedded to backwards compatibility that they hack the IANA data
to keep the old spelling --- and not just that old spelling, but even
older spellings that IANA used back in the stone age.  This caused the
filter logic to fail to suppress "Factory" at all on such platforms,
though the formatting problem is definitely real in that case.

To solve both problems, get rid of the hard-wired assumption about
exactly what Factory's abbreviation is, and instead reject abbreviations
exceeding 31 characters.  This will allow Factory to appear in the view
if and only if it's using the modern abbreviation.

In passing, simplify the code we add to zic.c to support "zic -P"
to remove its now-obsolete hacks to not print the Factory zone's
abbreviation.  Unlike pg_timezone_names(), there's no reason for
that code to support old/nonstandard timezone data.

Since we generally prefer to keep timezone-related behavior the
same in all branches, and since this is arguably a bug fix,
back-patch to all supported branches.

Discussion: https://postgr.es/m/3961.1564086915@sss.pgh.pa.us

Branch
------
REL9_6_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/f6c7c64e9fc8cdc8217fbc46a00e94b4e33856d2

Modified Files
--------------
src/backend/utils/adt/datetime.c | 17 ++++++++---------
src/timezone/zic.c               | 22 ++++++++--------------
2 files changed, 16 insertions(+), 23 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Fix loss of fractional digits for large values incash_numeric()
Next
From: Tom Lane
Date:
Subject: pgsql: Fix possible lockup in pgbench with -R.