From 44949dab842ca32607e7159ab51b0736e920dfda Mon Sep 17 00:00:00 2001 From: Pavan Deolasee Date: Wed, 17 Feb 2016 00:04:41 +0530 Subject: 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(-) (limited to 'src') diff --git a/src/backend/utils/mmgr/portalmem.c b/src/backend/utils/mmgr/portalmem.c index 621cbcbc52..bb045fc113 100644 --- a/src/backend/utils/mmgr/portalmem.c +++ b/src/backend/utils/mmgr/portalmem.c @@ -265,7 +265,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) { -- cgit v1.2.3