pgsql: Make timetz_zone() stable, and correct a bug for DYNTZ abbreviat

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Make timetz_zone() stable, and correct a bug for DYNTZ abbreviat
Дата
Msg-id E1mNGAJ-0002aB-Dd@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Make timetz_zone() stable, and correct a bug for DYNTZ abbreviations.

Historically, timetz_zone() has used time(NULL) as the reference point
for deciding whether DST is active.  That means its result can change
intra-statement, requiring it to be marked VOLATILE (cf. 35979e6c3).
But that definition is pretty inconsistent with the way we deal with
timestamps elsewhere.  Let's make it use the transaction start time
("now()") as the reference point instead.  That lets it be marked
STABLE, and also saves a kernel call per invocation.

While at it, remove the function's use of pg_time_t and pg_localtime.
Those are inconsistent with the other code in this area, which indeed
created a bug: timetz_zone() delivered completely wrong answers if
the zone was specified by a dynamic TZ abbreviation.  (We need to do
something about that in the back branches, but the fix will look
different from this.)

Aleksander Alekseev and Tom Lane

Discussion: https://postgr.es/m/CAJ7c6TOMG8zSNEZtCn5SPe+cCk3Lfxb71ZaQwT2F4T7PJ_t=KA@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/388e71af880d579212c2489686903c2cfdea9032

Modified Files
--------------
src/backend/utils/adt/date.c     | 28 ++++++++++++++--------------
src/include/catalog/catversion.h |  2 +-
src/include/catalog/pg_proc.dat  |  2 +-
3 files changed, 16 insertions(+), 16 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Amit Langote
Дата:
Сообщение: Re: pgsql: Fix segfault during EvalPlanQual with mix of local and foreign p
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Fix bogus timetz_zone() results for DYNTZ abbreviations.