Add a missing value for "%s" placeholder in an elog message
authorPavan Deolasee <[email protected]>
Tue, 16 Feb 2016 18:34:41 +0000 (00:04 +0530)
committerPavan Deolasee <[email protected]>
Tue, 16 Feb 2016 18:34:41 +0000 (00:04 +0530)
src/backend/utils/mmgr/portalmem.c

index abdd9b52f5b832368b36c04bb9350a9394d7e03e..8954790e5a835b68f1cd4b50082cea11c57aa883 100644 (file)
@@ -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)
        {