pgsql: Another zic portability fix. - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Another zic portability fix.
Date
Msg-id E1alizd-0003AV-Tl@gemulon.postgresql.org
Whole thread Raw
List 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 by date:

Previous
From: Alvaro Herrera
Date:
Subject: pgsql: Fix recovery_min_apply_delay test
Next
From: Michael Paquier
Date:
Subject: Re: pgsql: Enable logical slots to follow timeline switches