Use of PRId64 with PostgreSQL functions

From: "Paragon Corporation" <lr(at)pcorp(dot)us>
To: <pgsql-hackers(at)postgresql(dot)org>
Subject: Use of PRId64 with PostgreSQL functions
Date: 2015-07-31 19:43:07
Message-ID: 000001d0cbc9$200d9350$6028b9f0$@pcorp.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

I've been currently suffering an issue in mingw64 with changes made in
PostGIS topology code base. Sadly it only happens to me (compiling in
mingw64)

Issue is when code like this was introduced

appendStringInfo(str, "%s%" PRId64, sep, edge->start_node);

Which uses a PostgreSQL function appendStringInfo - as noted here:
https://trac.osgeo.org/postgis/ticket/3206

AFAICS -- the printf function works fine with the PRId64 so guessing it must
be something special about appenStringInfo

I noticed a thread in March on pgsql-hackers that discussed int limits

http://www.postgresql.org/message-id/20150331141423.GK4878@alap3.anarazel.de

in PostgreSQL and Andres Freund made this comment which stuck in my head:

" for another we'd need some uglyness to determine the
correct printf modifier for int64_t (can't use PRId64 etc afaics)."

What exactly did he mean by can't use PRId64?

Thanks,
Regina Obe

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Alvaro Herrera 2015-07-31 19:45:24 Re: brin index vacuum versus transaction snapshots
Previous Message Alvaro Herrera 2015-07-31 19:29:39 Re: [PROPOSAL] VACUUM Progress Checker.