pgsql: Another zic portability fix.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Another zic portability fix.
Дата
Msg-id E1alizd-0003AV-Tl@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Another zic portability fix.

I should have remembered that we can't use INT64_MODIFIER with sscanf():
configure chooses that to work with snprintf(), but it might be for our
src/port/snprintf.c implementation and so not compatible with the
platform's sscanf().  This appears to be the explanation for buildfarm
member frogmouth's continuing unhappiness with the tzcode update.

Fortunately, in all of the places where zic is attempting to read into
an int64 variable, it's reading a year which certainly will fit just fine
into an int.  So make it read into an int with %d, and then cast or copy
as necessary.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/c202ecf9023ac3571709c274b326038ae39e90a7

Modified Files
--------------
src/timezone/zic.c | 31 ++++++++++++++++++++-----------
1 file changed, 20 insertions(+), 11 deletions(-)


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

Предыдущее
От: Alvaro Herrera
Дата:
Сообщение: pgsql: Fix recovery_min_apply_delay test
Следующее
От: Michael Paquier
Дата:
Сообщение: Re: pgsql: Enable logical slots to follow timeline switches