|
7 | 7 | *
|
8 | 8 | *
|
9 | 9 | * IDENTIFICATION
|
10 |
| - * $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.19 1998/01/07 05:54:11 momjian Exp $ |
| 10 | + * $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.20 1998/01/07 15:32:25 momjian Exp $ |
11 | 11 | *
|
12 | 12 | * NOTES
|
13 | 13 | * Every (plan) node in POSTGRES has an associated "out" routine which
|
@@ -282,7 +282,7 @@ _outPlanInfo(StringInfo str, Plan *node)
|
282 | 282 | sprintf(buf, " :width %d ", node->plan_width);
|
283 | 283 | appendStringInfo(str, buf);
|
284 | 284 | appendStringInfo(str, " :state ");
|
285 |
| - appendStringInfo(str, node->state ? "not-NULL" : "\"\""); |
| 285 | + appendStringInfo(str, node->state ? "not-NULL" : "<>"); |
286 | 286 | appendStringInfo(str, " :qptargetlist ");
|
287 | 287 | _outNode(str, node->targetlist);
|
288 | 288 | appendStringInfo(str, " :qpqual ");
|
@@ -727,7 +727,7 @@ _outConst(StringInfo str, Const *node)
|
727 | 727 | appendStringInfo(str, " :constvalue ");
|
728 | 728 | if (node->constisnull)
|
729 | 729 | {
|
730 |
| - appendStringInfo(str, "\"\""); |
| 730 | + appendStringInfo(str, "<>"); |
731 | 731 | }
|
732 | 732 | else
|
733 | 733 | {
|
@@ -1538,7 +1538,7 @@ _outNode(StringInfo str, void *obj)
|
1538 | 1538 | {
|
1539 | 1539 | if (obj == NULL)
|
1540 | 1540 | {
|
1541 |
| - appendStringInfo(str, "\"\""); |
| 1541 | + appendStringInfo(str, "<>"); |
1542 | 1542 | return;
|
1543 | 1543 | }
|
1544 | 1544 |
|
|
0 commit comments