Re: pgsql: Fix unportable printf format introduced in commit 9290ad198.

2019-11-26 Thread Amit Kapila
On Mon, Nov 25, 2019 at 9:18 PM Tom Lane wrote: > > Fix unportable printf format introduced in commit 9290ad198. > Thanks for fixing this. -- With Regards, Amit Kapila. EnterpriseDB: http://www.enterprisedb.com

pgsql: Fix unportable printf format introduced in commit 9290ad198.

2019-11-25 Thread Tom Lane
Fix unportable printf format introduced in commit 9290ad198. "%ld" is not an acceptable format spec for int64 variables, though it accidentally works on most non-Windows 64-bit platforms. Follow the lead of commit 6a1cd8b92, and use "%lld" with an explicit cast to long long. Per buildfarm. Bran