From efcc302218184e561ad2929b65895ce4aa23ceca Mon Sep 17 00:00:00 2001 From: Pavan Deolasee Date: Wed, 17 Feb 2016 00:04:41 +0530 Subject: [PATCH] Add a missing value for "%s" placeholder in an elog message --- src/backend/utils/mmgr/portalmem.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) { -- 2.39.5