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, 18 Oct 2016 09:58:31 +0000 (15:28 +0530)
src/backend/utils/mmgr/portalmem.c

index 621cbcbc526f3334391e6b7e257858b5e8506498..bb045fc113149e8418972acbfe02d5322ed81343 100644 (file)
@@ -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)
        {