Skip to content

Commit c9d9fe7

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

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/backend/nodes/outfuncs.c

Lines changed: 2 additions & 1 deletion
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.17 1998/01/07 05:42:47 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.18 1998/01/07 05:50:41 momjian Exp $
1111
*
1212
* NOTES
1313
* Every (plan) node in POSTGRES has an associated "out" routine which
@@ -1008,6 +1008,7 @@ _outRangeTblEntry(StringInfo str, RangeTblEntry *node)
10081008
appendStringInfo(str, node->relname);
10091009

10101010
sprintf(buf, " :inh %d ", node->inh);
1011+
appendStringInfo(str, buf);
10111012
appendStringInfo(str, node->inh ? "true" : "false");
10121013

10131014
appendStringInfo(str, " :refname ");

0 commit comments

Comments
 (0)