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:
0314007
)
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, 16 Feb 2016 18:34:41 +0000
(
00:04
+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 abdd9b52f5b832368b36c04bb9350a9394d7e03e..8954790e5a835b68f1cd4b50082cea11c57aa883 100644
(file)
--- a/
src/backend/utils/mmgr/portalmem.c
+++ b/
src/backend/utils/mmgr/portalmem.c
@@
-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)
{