We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a552a89 commit c9d9fe7Copy full SHA for c9d9fe7
src/backend/nodes/outfuncs.c
@@ -7,7 +7,7 @@
7
*
8
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.17 1998/01/07 05:42:47 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.18 1998/01/07 05:50:41 momjian Exp $
11
12
* NOTES
13
* Every (plan) node in POSTGRES has an associated "out" routine which
@@ -1008,6 +1008,7 @@ _outRangeTblEntry(StringInfo str, RangeTblEntry *node)
1008
appendStringInfo(str, node->relname);
1009
1010
sprintf(buf, " :inh %d ", node->inh);
1011
+ appendStringInfo(str, buf);
1012
appendStringInfo(str, node->inh ? "true" : "false");
1013
1014
appendStringInfo(str, " :refname ");
0 commit comments