summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavan Deolasee2016-02-16 18:34:41 +0000
committerPavan Deolasee2016-10-18 09:58:31 +0000
commit44949dab842ca32607e7159ab51b0736e920dfda (patch)
tree233b7c6051dfbee48ff821fa27558258d822733e
parente11dcb4feb26cafd3bedd411ae8cb02bce517a09 (diff)
Add a missing value for "%s" placeholder in an elog message
-rw-r--r--src/backend/utils/mmgr/portalmem.c3
1 files changed, 2 insertions, 1 deletions
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)
{