From: Pavan Deolasee Date: Tue, 16 Feb 2016 18:34:41 +0000 (+0530) Subject: Add a missing value for "%s" placeholder in an elog message X-Git-Tag: XL9_5_R1BETA1~13 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=efcc302218184e561ad2929b65895ce4aa23ceca;p=postgres-xl.git Add a missing value for "%s" placeholder in an elog message --- diff --git a/src/backend/utils/mmgr/portalmem.c b/src/backend/utils/mmgr/portalmem.c index abdd9b52f5..8954790e5a 100644 --- a/src/backend/utils/mmgr/portalmem.c +++ b/src/backend/utils/mmgr/portalmem.c @@ -266,7 +266,8 @@ CreatePortal(const char *name, bool allowDup, bool dupSilent) PortalHashTableInsert(portal, name); #ifdef PGXC - elog(DEBUG3, "Created portal %s and inserted an entry in the has table"); + elog(DEBUG3, "Created portal %s and inserted an entry in the has table", + name); if (PGXCNodeIdentifier == 0) {