projects
/
postgres-xl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e11dcb4
)
Add a missing value for "%s" placeholder in an elog message
author
Pavan Deolasee
<
[email protected]
>
Tue, 16 Feb 2016 18:34:41 +0000
(
00:04
+0530)
committer
Pavan Deolasee
<
[email protected]
>
Tue, 18 Oct 2016 09:58:31 +0000
(15:28 +0530)
src/backend/utils/mmgr/portalmem.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/utils/mmgr/portalmem.c
b/src/backend/utils/mmgr/portalmem.c
index 621cbcbc526f3334391e6b7e257858b5e8506498..bb045fc113149e8418972acbfe02d5322ed81343 100644
(file)
--- 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)
{