Skip to content

Commit 64a6285

Browse files
committed
Cannot rely on %z printf length modifier.
Before version 9.4, we didn't require sprintf to support the %z length modifier. Use %lu instead. Reported by Peter Eisentraut. Apply to 9.3 and earlier.
1 parent b6391f5 commit 64a6285

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/backend/access/gist/gist.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -961,8 +961,9 @@ gistSplit(Relation r,
961961
if (len == 1)
962962
ereport(ERROR,
963963
(errcode(ERRCODE_PROGRAM_LIMIT_EXCEEDED),
964-
errmsg("index row size %zu exceeds maximum %zu for index \"%s\"",
965-
IndexTupleSize(itup[0]), GiSTPageSize,
964+
errmsg("index row size %lu exceeds maximum %lu for index \"%s\"",
965+
(unsigned long) IndexTupleSize(itup[0]),
966+
(unsigned long) GiSTPageSize,
966967
RelationGetRelationName(r))));
967968

968969
memset(v.spl_lisnull, TRUE, sizeof(bool) * giststate->tupdesc->natts);

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy