mirror of
https://github.com/postgres/postgres.git
synced 2025-05-22 00:02:02 -04:00
Cleanup of outnode stuff.
This commit is contained in:
parent
1b9ab297f3
commit
a552a894eb
@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.16 1998/01/06 23:19:47 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.17 1998/01/07 05:42:47 momjian Exp $
|
||||
*
|
||||
* NOTES
|
||||
* Every (plan) node in POSTGRES has an associated "out" routine which
|
||||
@ -528,7 +528,6 @@ _outGroup(StringInfo str, Group *node)
|
||||
appendStringInfo(str, buf);
|
||||
appendStringInfo(str, " :tuplePerGroup ");
|
||||
appendStringInfo(str, node->tuplePerGroup ? "true" : "false");
|
||||
appendStringInfo(str, buf);
|
||||
}
|
||||
|
||||
|
||||
@ -616,7 +615,6 @@ _outResdom(StringInfo str, Resdom *node)
|
||||
appendStringInfo(str, buf);
|
||||
appendStringInfo(str, " :resname ");
|
||||
appendStringInfo(str, node->resname);
|
||||
appendStringInfo(str, buf);
|
||||
sprintf(buf, " :reskey %d ", node->reskey);
|
||||
appendStringInfo(str, buf);
|
||||
sprintf(buf, " :reskeyop %u ", node->reskeyop);
|
||||
@ -639,7 +637,6 @@ _outFjoin(StringInfo str, Fjoin *node)
|
||||
appendStringInfo(str, buf);
|
||||
|
||||
appendStringInfo(str, " :innerNode ");
|
||||
appendStringInfo(str, buf);
|
||||
_outNode(str, node->fj_innerNode);
|
||||
|
||||
sprintf(buf, " :results @ 0x%x ", (int) (node->fj_results));
|
||||
@ -751,7 +748,6 @@ _outAggreg(StringInfo str, Aggreg *node)
|
||||
appendStringInfo(str, "AGGREG");
|
||||
appendStringInfo(str, " :aggname ");
|
||||
appendStringInfo(str, (char *) node->aggname);
|
||||
appendStringInfo(str, buf);
|
||||
sprintf(buf, " :basetype %u ", node->basetype);
|
||||
appendStringInfo(str, buf);
|
||||
sprintf(buf, " :aggtype %u ", node->aggtype);
|
||||
@ -1012,7 +1008,7 @@ _outRangeTblEntry(StringInfo str, RangeTblEntry *node)
|
||||
appendStringInfo(str, node->relname);
|
||||
|
||||
sprintf(buf, " :inh %d ", node->inh);
|
||||
appendStringInfo(str, buf);
|
||||
appendStringInfo(str, node->inh ? "true" : "false");
|
||||
|
||||
appendStringInfo(str, " :refname ");
|
||||
appendStringInfo(str, node->refname);
|
||||
|
Loading…
x
Reference in New Issue
Block a user