mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Cleanup of outnode stuff.
This commit is contained in:
		@@ -7,7 +7,7 @@
 | 
				
			|||||||
 *
 | 
					 *
 | 
				
			||||||
 *
 | 
					 *
 | 
				
			||||||
 * IDENTIFICATION
 | 
					 * IDENTIFICATION
 | 
				
			||||||
 *	  $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.18 1998/01/07 05:50:41 momjian Exp $
 | 
					 *	  $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.19 1998/01/07 05:54:11 momjian Exp $
 | 
				
			||||||
 *
 | 
					 *
 | 
				
			||||||
 * NOTES
 | 
					 * NOTES
 | 
				
			||||||
 *	  Every (plan) node in POSTGRES has an associated "out" routine which
 | 
					 *	  Every (plan) node in POSTGRES has an associated "out" routine which
 | 
				
			||||||
@@ -1007,8 +1007,7 @@ _outRangeTblEntry(StringInfo str, RangeTblEntry *node)
 | 
				
			|||||||
	appendStringInfo(str, " :relname ");
 | 
						appendStringInfo(str, " :relname ");
 | 
				
			||||||
	appendStringInfo(str, node->relname);
 | 
						appendStringInfo(str, node->relname);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	sprintf(buf, " :inh %d ", node->inh);
 | 
						appendStringInfo(str, " :inh ");
 | 
				
			||||||
	appendStringInfo(str, buf);
 | 
					 | 
				
			||||||
	appendStringInfo(str, node->inh ? "true" : "false");
 | 
						appendStringInfo(str, node->inh ? "true" : "false");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	appendStringInfo(str, " :refname ");
 | 
						appendStringInfo(str, " :refname ");
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user