diff options
author | Pavan Deolasee | 2016-02-16 18:34:41 +0000 |
---|---|---|
committer | Pavan Deolasee | 2016-10-18 09:58:31 +0000 |
commit | 44949dab842ca32607e7159ab51b0736e920dfda (patch) | |
tree | 233b7c6051dfbee48ff821fa27558258d822733e | |
parent | e11dcb4feb26cafd3bedd411ae8cb02bce517a09 (diff) |
Add a missing value for "%s" placeholder in an elog message
-rw-r--r-- | src/backend/utils/mmgr/portalmem.c | 3 |
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) { |