Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 5646604

Browse files
committed
Cleanup of outnode stuff.
1 parent c9d9fe7 commit 5646604

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/backend/nodes/outfuncs.c

+2-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.18 1998/01/07 05:50:41 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.19 1998/01/07 05:54:11 momjian Exp $
1111
*
1212
* NOTES
1313
* Every (plan) node in POSTGRES has an associated "out" routine which
@@ -1007,8 +1007,7 @@ _outRangeTblEntry(StringInfo str, RangeTblEntry *node)
10071007
appendStringInfo(str, " :relname ");
10081008
appendStringInfo(str, node->relname);
10091009

1010-
sprintf(buf, " :inh %d ", node->inh);
1011-
appendStringInfo(str, buf);
1010+
appendStringInfo(str, " :inh ");
10121011
appendStringInfo(str, node->inh ? "true" : "false");
10131012

10141013
appendStringInfo(str, " :refname ");

0 commit comments

Comments
 (0)