File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* 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 $
11
11
*
12
12
* NOTES
13
13
* Every (plan) node in POSTGRES has an associated "out" routine which
@@ -1007,8 +1007,7 @@ _outRangeTblEntry(StringInfo str, RangeTblEntry *node)
1007
1007
appendStringInfo (str , " :relname " );
1008
1008
appendStringInfo (str , node -> relname );
1009
1009
1010
- sprintf (buf , " :inh %d " , node -> inh );
1011
- appendStringInfo (str , buf );
1010
+ appendStringInfo (str , " :inh " );
1012
1011
appendStringInfo (str , node -> inh ? "true" : "false" );
1013
1012
1014
1013
appendStringInfo (str , " :refname " );
You can’t perform that action at this time.
0 commit comments