]> granicus.if.org Git - postgresql/blob - src/backend/nodes/outfuncs.c
Fix best_inner_indexscan to return both the cheapest-total-cost and
[postgresql] / src / backend / nodes / outfuncs.c
1 /*-------------------------------------------------------------------------
2  *
3  * outfuncs.c
4  *        Output functions for Postgres tree nodes.
5  *
6  * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
7  * Portions Copyright (c) 1994, Regents of the University of California
8  *
9  *
10  * IDENTIFICATION
11  *        $PostgreSQL: pgsql/src/backend/nodes/outfuncs.c,v 1.307 2007/05/22 01:40:33 tgl Exp $
12  *
13  * NOTES
14  *        Every node type that can appear in stored rules' parsetrees *must*
15  *        have an output function defined here (as well as an input function
16  *        in readfuncs.c).      For use in debugging, we also provide output
17  *        functions for nodes that appear in raw parsetrees, path, and plan trees.
18  *        These nodes however need not have input functions.
19  *
20  *-------------------------------------------------------------------------
21  */
22 #include "postgres.h"
23
24 #include <ctype.h>
25
26 #include "lib/stringinfo.h"
27 #include "nodes/plannodes.h"
28 #include "nodes/relation.h"
29 #include "utils/datum.h"
30
31
32 /*
33  * Macros to simplify output of different kinds of fields.      Use these
34  * wherever possible to reduce the chance for silly typos.      Note that these
35  * hard-wire conventions about the names of the local variables in an Out
36  * routine.
37  */
38
39 /* Write the label for the node type */
40 #define WRITE_NODE_TYPE(nodelabel) \
41         appendStringInfoString(str, nodelabel)
42
43 /* Write an integer field (anything written as ":fldname %d") */
44 #define WRITE_INT_FIELD(fldname) \
45         appendStringInfo(str, " :" CppAsString(fldname) " %d", node->fldname)
46
47 /* Write an unsigned integer field (anything written as ":fldname %u") */
48 #define WRITE_UINT_FIELD(fldname) \
49         appendStringInfo(str, " :" CppAsString(fldname) " %u", node->fldname)
50
51 /* Write an OID field (don't hard-wire assumption that OID is same as uint) */
52 #define WRITE_OID_FIELD(fldname) \
53         appendStringInfo(str, " :" CppAsString(fldname) " %u", node->fldname)
54
55 /* Write a long-integer field */
56 #define WRITE_LONG_FIELD(fldname) \
57         appendStringInfo(str, " :" CppAsString(fldname) " %ld", node->fldname)
58
59 /* Write a char field (ie, one ascii character) */
60 #define WRITE_CHAR_FIELD(fldname) \
61         appendStringInfo(str, " :" CppAsString(fldname) " %c", node->fldname)
62
63 /* Write an enumerated-type field as an integer code */
64 #define WRITE_ENUM_FIELD(fldname, enumtype) \
65         appendStringInfo(str, " :" CppAsString(fldname) " %d", \
66                                          (int) node->fldname)
67
68 /* Write a float field --- caller must give format to define precision */
69 #define WRITE_FLOAT_FIELD(fldname,format) \
70         appendStringInfo(str, " :" CppAsString(fldname) " " format, node->fldname)
71
72 /* Write a boolean field */
73 #define WRITE_BOOL_FIELD(fldname) \
74         appendStringInfo(str, " :" CppAsString(fldname) " %s", \
75                                          booltostr(node->fldname))
76
77 /* Write a character-string (possibly NULL) field */
78 #define WRITE_STRING_FIELD(fldname) \
79         (appendStringInfo(str, " :" CppAsString(fldname) " "), \
80          _outToken(str, node->fldname))
81
82 /* Write a Node field */
83 #define WRITE_NODE_FIELD(fldname) \
84         (appendStringInfo(str, " :" CppAsString(fldname) " "), \
85          _outNode(str, node->fldname))
86
87 /* Write a bitmapset field */
88 #define WRITE_BITMAPSET_FIELD(fldname) \
89         (appendStringInfo(str, " :" CppAsString(fldname) " "), \
90          _outBitmapset(str, node->fldname))
91
92
93 #define booltostr(x)  ((x) ? "true" : "false")
94
95 static void _outNode(StringInfo str, void *obj);
96
97
98 /*
99  * _outToken
100  *        Convert an ordinary string (eg, an identifier) into a form that
101  *        will be decoded back to a plain token by read.c's functions.
102  *
103  *        If a null or empty string is given, it is encoded as "<>".
104  */
105 static void
106 _outToken(StringInfo str, char *s)
107 {
108         if (s == NULL || *s == '\0')
109         {
110                 appendStringInfo(str, "<>");
111                 return;
112         }
113
114         /*
115          * Look for characters or patterns that are treated specially by read.c
116          * (either in pg_strtok() or in nodeRead()), and therefore need a
117          * protective backslash.
118          */
119         /* These characters only need to be quoted at the start of the string */
120         if (*s == '<' ||
121                 *s == '\"' ||
122                 isdigit((unsigned char) *s) ||
123                 ((*s == '+' || *s == '-') &&
124                  (isdigit((unsigned char) s[1]) || s[1] == '.')))
125                 appendStringInfoChar(str, '\\');
126         while (*s)
127         {
128                 /* These chars must be backslashed anywhere in the string */
129                 if (*s == ' ' || *s == '\n' || *s == '\t' ||
130                         *s == '(' || *s == ')' || *s == '{' || *s == '}' ||
131                         *s == '\\')
132                         appendStringInfoChar(str, '\\');
133                 appendStringInfoChar(str, *s++);
134         }
135 }
136
137 static void
138 _outList(StringInfo str, List *node)
139 {
140         ListCell   *lc;
141
142         appendStringInfoChar(str, '(');
143
144         if (IsA(node, IntList))
145                 appendStringInfoChar(str, 'i');
146         else if (IsA(node, OidList))
147                 appendStringInfoChar(str, 'o');
148
149         foreach(lc, node)
150         {
151                 /*
152                  * For the sake of backward compatibility, we emit a slightly
153                  * different whitespace format for lists of nodes vs. other types of
154                  * lists. XXX: is this necessary?
155                  */
156                 if (IsA(node, List))
157                 {
158                         _outNode(str, lfirst(lc));
159                         if (lnext(lc))
160                                 appendStringInfoChar(str, ' ');
161                 }
162                 else if (IsA(node, IntList))
163                         appendStringInfo(str, " %d", lfirst_int(lc));
164                 else if (IsA(node, OidList))
165                         appendStringInfo(str, " %u", lfirst_oid(lc));
166                 else
167                         elog(ERROR, "unrecognized list node type: %d",
168                                  (int) node->type);
169         }
170
171         appendStringInfoChar(str, ')');
172 }
173
174 /*
175  * _outBitmapset -
176  *         converts a bitmap set of integers
177  *
178  * Note: the output format is "(b int int ...)", similar to an integer List.
179  * Currently bitmapsets do not appear in any node type that is stored in
180  * rules, so there is no support in readfuncs.c for reading this format.
181  */
182 static void
183 _outBitmapset(StringInfo str, Bitmapset *bms)
184 {
185         Bitmapset  *tmpset;
186         int                     x;
187
188         appendStringInfoChar(str, '(');
189         appendStringInfoChar(str, 'b');
190         tmpset = bms_copy(bms);
191         while ((x = bms_first_member(tmpset)) >= 0)
192                 appendStringInfo(str, " %d", x);
193         bms_free(tmpset);
194         appendStringInfoChar(str, ')');
195 }
196
197 /*
198  * Print the value of a Datum given its type.
199  */
200 static void
201 _outDatum(StringInfo str, Datum value, int typlen, bool typbyval)
202 {
203         Size            length,
204                                 i;
205         char       *s;
206
207         length = datumGetSize(value, typbyval, typlen);
208
209         if (typbyval)
210         {
211                 s = (char *) (&value);
212                 appendStringInfo(str, "%u [ ", (unsigned int) length);
213                 for (i = 0; i < (Size) sizeof(Datum); i++)
214                         appendStringInfo(str, "%d ", (int) (s[i]));
215                 appendStringInfo(str, "]");
216         }
217         else
218         {
219                 s = (char *) DatumGetPointer(value);
220                 if (!PointerIsValid(s))
221                         appendStringInfo(str, "0 [ ]");
222                 else
223                 {
224                         appendStringInfo(str, "%u [ ", (unsigned int) length);
225                         for (i = 0; i < length; i++)
226                                 appendStringInfo(str, "%d ", (int) (s[i]));
227                         appendStringInfo(str, "]");
228                 }
229         }
230 }
231
232
233 /*
234  *      Stuff from plannodes.h
235  */
236
237 static void
238 _outPlannedStmt(StringInfo str, PlannedStmt *node)
239 {
240         WRITE_NODE_TYPE("PLANNEDSTMT");
241
242         WRITE_ENUM_FIELD(commandType, CmdType);
243         WRITE_BOOL_FIELD(canSetTag);
244         WRITE_NODE_FIELD(planTree);
245         WRITE_NODE_FIELD(rtable);
246         WRITE_NODE_FIELD(resultRelations);
247         WRITE_NODE_FIELD(utilityStmt);
248         WRITE_NODE_FIELD(intoClause);
249         WRITE_NODE_FIELD(subplans);
250         WRITE_BITMAPSET_FIELD(rewindPlanIDs);
251         WRITE_NODE_FIELD(returningLists);
252         WRITE_NODE_FIELD(rowMarks);
253         WRITE_INT_FIELD(nParamExec);
254 }
255
256 /*
257  * print the basic stuff of all nodes that inherit from Plan
258  */
259 static void
260 _outPlanInfo(StringInfo str, Plan *node)
261 {
262         WRITE_FLOAT_FIELD(startup_cost, "%.2f");
263         WRITE_FLOAT_FIELD(total_cost, "%.2f");
264         WRITE_FLOAT_FIELD(plan_rows, "%.0f");
265         WRITE_INT_FIELD(plan_width);
266         WRITE_NODE_FIELD(targetlist);
267         WRITE_NODE_FIELD(qual);
268         WRITE_NODE_FIELD(lefttree);
269         WRITE_NODE_FIELD(righttree);
270         WRITE_NODE_FIELD(initPlan);
271         WRITE_BITMAPSET_FIELD(extParam);
272         WRITE_BITMAPSET_FIELD(allParam);
273 }
274
275 /*
276  * print the basic stuff of all nodes that inherit from Scan
277  */
278 static void
279 _outScanInfo(StringInfo str, Scan *node)
280 {
281         _outPlanInfo(str, (Plan *) node);
282
283         WRITE_UINT_FIELD(scanrelid);
284 }
285
286 /*
287  * print the basic stuff of all nodes that inherit from Join
288  */
289 static void
290 _outJoinPlanInfo(StringInfo str, Join *node)
291 {
292         _outPlanInfo(str, (Plan *) node);
293
294         WRITE_ENUM_FIELD(jointype, JoinType);
295         WRITE_NODE_FIELD(joinqual);
296 }
297
298
299 static void
300 _outPlan(StringInfo str, Plan *node)
301 {
302         WRITE_NODE_TYPE("PLAN");
303
304         _outPlanInfo(str, (Plan *) node);
305 }
306
307 static void
308 _outResult(StringInfo str, Result *node)
309 {
310         WRITE_NODE_TYPE("RESULT");
311
312         _outPlanInfo(str, (Plan *) node);
313
314         WRITE_NODE_FIELD(resconstantqual);
315 }
316
317 static void
318 _outAppend(StringInfo str, Append *node)
319 {
320         WRITE_NODE_TYPE("APPEND");
321
322         _outPlanInfo(str, (Plan *) node);
323
324         WRITE_NODE_FIELD(appendplans);
325         WRITE_BOOL_FIELD(isTarget);
326 }
327
328 static void
329 _outBitmapAnd(StringInfo str, BitmapAnd *node)
330 {
331         WRITE_NODE_TYPE("BITMAPAND");
332
333         _outPlanInfo(str, (Plan *) node);
334
335         WRITE_NODE_FIELD(bitmapplans);
336 }
337
338 static void
339 _outBitmapOr(StringInfo str, BitmapOr *node)
340 {
341         WRITE_NODE_TYPE("BITMAPOR");
342
343         _outPlanInfo(str, (Plan *) node);
344
345         WRITE_NODE_FIELD(bitmapplans);
346 }
347
348 static void
349 _outScan(StringInfo str, Scan *node)
350 {
351         WRITE_NODE_TYPE("SCAN");
352
353         _outScanInfo(str, (Scan *) node);
354 }
355
356 static void
357 _outSeqScan(StringInfo str, SeqScan *node)
358 {
359         WRITE_NODE_TYPE("SEQSCAN");
360
361         _outScanInfo(str, (Scan *) node);
362 }
363
364 static void
365 _outIndexScan(StringInfo str, IndexScan *node)
366 {
367         WRITE_NODE_TYPE("INDEXSCAN");
368
369         _outScanInfo(str, (Scan *) node);
370
371         WRITE_OID_FIELD(indexid);
372         WRITE_NODE_FIELD(indexqual);
373         WRITE_NODE_FIELD(indexqualorig);
374         WRITE_NODE_FIELD(indexstrategy);
375         WRITE_NODE_FIELD(indexsubtype);
376         WRITE_ENUM_FIELD(indexorderdir, ScanDirection);
377 }
378
379 static void
380 _outBitmapIndexScan(StringInfo str, BitmapIndexScan *node)
381 {
382         WRITE_NODE_TYPE("BITMAPINDEXSCAN");
383
384         _outScanInfo(str, (Scan *) node);
385
386         WRITE_OID_FIELD(indexid);
387         WRITE_NODE_FIELD(indexqual);
388         WRITE_NODE_FIELD(indexqualorig);
389         WRITE_NODE_FIELD(indexstrategy);
390         WRITE_NODE_FIELD(indexsubtype);
391 }
392
393 static void
394 _outBitmapHeapScan(StringInfo str, BitmapHeapScan *node)
395 {
396         WRITE_NODE_TYPE("BITMAPHEAPSCAN");
397
398         _outScanInfo(str, (Scan *) node);
399
400         WRITE_NODE_FIELD(bitmapqualorig);
401 }
402
403 static void
404 _outTidScan(StringInfo str, TidScan *node)
405 {
406         WRITE_NODE_TYPE("TIDSCAN");
407
408         _outScanInfo(str, (Scan *) node);
409
410         WRITE_NODE_FIELD(tidquals);
411 }
412
413 static void
414 _outSubqueryScan(StringInfo str, SubqueryScan *node)
415 {
416         WRITE_NODE_TYPE("SUBQUERYSCAN");
417
418         _outScanInfo(str, (Scan *) node);
419
420         WRITE_NODE_FIELD(subplan);
421         WRITE_NODE_FIELD(subrtable);
422 }
423
424 static void
425 _outFunctionScan(StringInfo str, FunctionScan *node)
426 {
427         WRITE_NODE_TYPE("FUNCTIONSCAN");
428
429         _outScanInfo(str, (Scan *) node);
430
431         WRITE_NODE_FIELD(funcexpr);
432         WRITE_NODE_FIELD(funccolnames);
433         WRITE_NODE_FIELD(funccoltypes);
434         WRITE_NODE_FIELD(funccoltypmods);
435 }
436
437 static void
438 _outValuesScan(StringInfo str, ValuesScan *node)
439 {
440         WRITE_NODE_TYPE("VALUESSCAN");
441
442         _outScanInfo(str, (Scan *) node);
443
444         WRITE_NODE_FIELD(values_lists);
445 }
446
447 static void
448 _outJoin(StringInfo str, Join *node)
449 {
450         WRITE_NODE_TYPE("JOIN");
451
452         _outJoinPlanInfo(str, (Join *) node);
453 }
454
455 static void
456 _outNestLoop(StringInfo str, NestLoop *node)
457 {
458         WRITE_NODE_TYPE("NESTLOOP");
459
460         _outJoinPlanInfo(str, (Join *) node);
461 }
462
463 static void
464 _outMergeJoin(StringInfo str, MergeJoin *node)
465 {
466         int                     numCols;
467         int                     i;
468
469         WRITE_NODE_TYPE("MERGEJOIN");
470
471         _outJoinPlanInfo(str, (Join *) node);
472
473         WRITE_NODE_FIELD(mergeclauses);
474
475         numCols = list_length(node->mergeclauses);
476
477         appendStringInfo(str, " :mergeFamilies");
478         for (i = 0; i < numCols; i++)
479                 appendStringInfo(str, " %u", node->mergeFamilies[i]);
480
481         appendStringInfo(str, " :mergeStrategies");
482         for (i = 0; i < numCols; i++)
483                 appendStringInfo(str, " %d", node->mergeStrategies[i]);
484
485         appendStringInfo(str, " :mergeNullsFirst");
486         for (i = 0; i < numCols; i++)
487                 appendStringInfo(str, " %d", (int) node->mergeNullsFirst[i]);
488 }
489
490 static void
491 _outHashJoin(StringInfo str, HashJoin *node)
492 {
493         WRITE_NODE_TYPE("HASHJOIN");
494
495         _outJoinPlanInfo(str, (Join *) node);
496
497         WRITE_NODE_FIELD(hashclauses);
498 }
499
500 static void
501 _outAgg(StringInfo str, Agg *node)
502 {
503         WRITE_NODE_TYPE("AGG");
504
505         _outPlanInfo(str, (Plan *) node);
506
507         WRITE_ENUM_FIELD(aggstrategy, AggStrategy);
508         WRITE_INT_FIELD(numCols);
509         WRITE_LONG_FIELD(numGroups);
510 }
511
512 static void
513 _outGroup(StringInfo str, Group *node)
514 {
515         int                     i;
516
517         WRITE_NODE_TYPE("GROUP");
518
519         _outPlanInfo(str, (Plan *) node);
520
521         WRITE_INT_FIELD(numCols);
522
523         appendStringInfo(str, " :grpColIdx");
524         for (i = 0; i < node->numCols; i++)
525                 appendStringInfo(str, " %d", node->grpColIdx[i]);
526
527         appendStringInfo(str, " :grpOperators");
528         for (i = 0; i < node->numCols; i++)
529                 appendStringInfo(str, " %u", node->grpOperators[i]);
530 }
531
532 static void
533 _outMaterial(StringInfo str, Material *node)
534 {
535         WRITE_NODE_TYPE("MATERIAL");
536
537         _outPlanInfo(str, (Plan *) node);
538 }
539
540 static void
541 _outSort(StringInfo str, Sort *node)
542 {
543         int                     i;
544
545         WRITE_NODE_TYPE("SORT");
546
547         _outPlanInfo(str, (Plan *) node);
548
549         WRITE_INT_FIELD(numCols);
550
551         appendStringInfo(str, " :sortColIdx");
552         for (i = 0; i < node->numCols; i++)
553                 appendStringInfo(str, " %d", node->sortColIdx[i]);
554
555         appendStringInfo(str, " :sortOperators");
556         for (i = 0; i < node->numCols; i++)
557                 appendStringInfo(str, " %u", node->sortOperators[i]);
558
559         appendStringInfo(str, " :nullsFirst");
560         for (i = 0; i < node->numCols; i++)
561                 appendStringInfo(str, " %s", booltostr(node->nullsFirst[i]));
562 }
563
564 static void
565 _outUnique(StringInfo str, Unique *node)
566 {
567         int                     i;
568
569         WRITE_NODE_TYPE("UNIQUE");
570
571         _outPlanInfo(str, (Plan *) node);
572
573         WRITE_INT_FIELD(numCols);
574
575         appendStringInfo(str, " :uniqColIdx");
576         for (i = 0; i < node->numCols; i++)
577                 appendStringInfo(str, " %d", node->uniqColIdx[i]);
578
579         appendStringInfo(str, " :uniqOperators");
580         for (i = 0; i < node->numCols; i++)
581                 appendStringInfo(str, " %u", node->uniqOperators[i]);
582 }
583
584 static void
585 _outSetOp(StringInfo str, SetOp *node)
586 {
587         int                     i;
588
589         WRITE_NODE_TYPE("SETOP");
590
591         _outPlanInfo(str, (Plan *) node);
592
593         WRITE_ENUM_FIELD(cmd, SetOpCmd);
594         WRITE_INT_FIELD(numCols);
595
596         appendStringInfo(str, " :dupColIdx");
597         for (i = 0; i < node->numCols; i++)
598                 appendStringInfo(str, " %d", node->dupColIdx[i]);
599
600         appendStringInfo(str, " :dupOperators");
601         for (i = 0; i < node->numCols; i++)
602                 appendStringInfo(str, " %d", node->dupOperators[i]);
603
604         WRITE_INT_FIELD(flagColIdx);
605 }
606
607 static void
608 _outLimit(StringInfo str, Limit *node)
609 {
610         WRITE_NODE_TYPE("LIMIT");
611
612         _outPlanInfo(str, (Plan *) node);
613
614         WRITE_NODE_FIELD(limitOffset);
615         WRITE_NODE_FIELD(limitCount);
616 }
617
618 static void
619 _outHash(StringInfo str, Hash *node)
620 {
621         WRITE_NODE_TYPE("HASH");
622
623         _outPlanInfo(str, (Plan *) node);
624 }
625
626 /*****************************************************************************
627  *
628  *      Stuff from primnodes.h.
629  *
630  *****************************************************************************/
631
632 static void
633 _outAlias(StringInfo str, Alias *node)
634 {
635         WRITE_NODE_TYPE("ALIAS");
636
637         WRITE_STRING_FIELD(aliasname);
638         WRITE_NODE_FIELD(colnames);
639 }
640
641 static void
642 _outRangeVar(StringInfo str, RangeVar *node)
643 {
644         WRITE_NODE_TYPE("RANGEVAR");
645
646         /*
647          * we deliberately ignore catalogname here, since it is presently not
648          * semantically meaningful
649          */
650         WRITE_STRING_FIELD(schemaname);
651         WRITE_STRING_FIELD(relname);
652         WRITE_ENUM_FIELD(inhOpt, InhOption);
653         WRITE_BOOL_FIELD(istemp);
654         WRITE_NODE_FIELD(alias);
655 }
656
657 static void
658 _outIntoClause(StringInfo str, IntoClause *node)
659 {
660         WRITE_NODE_TYPE("INTOCLAUSE");
661
662         WRITE_NODE_FIELD(rel);
663         WRITE_NODE_FIELD(colNames);
664         WRITE_NODE_FIELD(options);
665         WRITE_ENUM_FIELD(onCommit, OnCommitAction);
666         WRITE_STRING_FIELD(tableSpaceName);
667 }
668
669 static void
670 _outVar(StringInfo str, Var *node)
671 {
672         WRITE_NODE_TYPE("VAR");
673
674         WRITE_UINT_FIELD(varno);
675         WRITE_INT_FIELD(varattno);
676         WRITE_OID_FIELD(vartype);
677         WRITE_INT_FIELD(vartypmod);
678         WRITE_UINT_FIELD(varlevelsup);
679         WRITE_UINT_FIELD(varnoold);
680         WRITE_INT_FIELD(varoattno);
681 }
682
683 static void
684 _outConst(StringInfo str, Const *node)
685 {
686         WRITE_NODE_TYPE("CONST");
687
688         WRITE_OID_FIELD(consttype);
689         WRITE_INT_FIELD(consttypmod);
690         WRITE_INT_FIELD(constlen);
691         WRITE_BOOL_FIELD(constbyval);
692         WRITE_BOOL_FIELD(constisnull);
693
694         appendStringInfo(str, " :constvalue ");
695         if (node->constisnull)
696                 appendStringInfo(str, "<>");
697         else
698                 _outDatum(str, node->constvalue, node->constlen, node->constbyval);
699 }
700
701 static void
702 _outParam(StringInfo str, Param *node)
703 {
704         WRITE_NODE_TYPE("PARAM");
705
706         WRITE_ENUM_FIELD(paramkind, ParamKind);
707         WRITE_INT_FIELD(paramid);
708         WRITE_OID_FIELD(paramtype);
709         WRITE_INT_FIELD(paramtypmod);
710 }
711
712 static void
713 _outAggref(StringInfo str, Aggref *node)
714 {
715         WRITE_NODE_TYPE("AGGREF");
716
717         WRITE_OID_FIELD(aggfnoid);
718         WRITE_OID_FIELD(aggtype);
719         WRITE_NODE_FIELD(args);
720         WRITE_UINT_FIELD(agglevelsup);
721         WRITE_BOOL_FIELD(aggstar);
722         WRITE_BOOL_FIELD(aggdistinct);
723 }
724
725 static void
726 _outArrayRef(StringInfo str, ArrayRef *node)
727 {
728         WRITE_NODE_TYPE("ARRAYREF");
729
730         WRITE_OID_FIELD(refarraytype);
731         WRITE_OID_FIELD(refelemtype);
732         WRITE_INT_FIELD(reftypmod);
733         WRITE_NODE_FIELD(refupperindexpr);
734         WRITE_NODE_FIELD(reflowerindexpr);
735         WRITE_NODE_FIELD(refexpr);
736         WRITE_NODE_FIELD(refassgnexpr);
737 }
738
739 static void
740 _outFuncExpr(StringInfo str, FuncExpr *node)
741 {
742         WRITE_NODE_TYPE("FUNCEXPR");
743
744         WRITE_OID_FIELD(funcid);
745         WRITE_OID_FIELD(funcresulttype);
746         WRITE_BOOL_FIELD(funcretset);
747         WRITE_ENUM_FIELD(funcformat, CoercionForm);
748         WRITE_NODE_FIELD(args);
749 }
750
751 static void
752 _outOpExpr(StringInfo str, OpExpr *node)
753 {
754         WRITE_NODE_TYPE("OPEXPR");
755
756         WRITE_OID_FIELD(opno);
757         WRITE_OID_FIELD(opfuncid);
758         WRITE_OID_FIELD(opresulttype);
759         WRITE_BOOL_FIELD(opretset);
760         WRITE_NODE_FIELD(args);
761 }
762
763 static void
764 _outDistinctExpr(StringInfo str, DistinctExpr *node)
765 {
766         WRITE_NODE_TYPE("DISTINCTEXPR");
767
768         WRITE_OID_FIELD(opno);
769         WRITE_OID_FIELD(opfuncid);
770         WRITE_OID_FIELD(opresulttype);
771         WRITE_BOOL_FIELD(opretset);
772         WRITE_NODE_FIELD(args);
773 }
774
775 static void
776 _outScalarArrayOpExpr(StringInfo str, ScalarArrayOpExpr *node)
777 {
778         WRITE_NODE_TYPE("SCALARARRAYOPEXPR");
779
780         WRITE_OID_FIELD(opno);
781         WRITE_OID_FIELD(opfuncid);
782         WRITE_BOOL_FIELD(useOr);
783         WRITE_NODE_FIELD(args);
784 }
785
786 static void
787 _outBoolExpr(StringInfo str, BoolExpr *node)
788 {
789         char       *opstr = NULL;
790
791         WRITE_NODE_TYPE("BOOLEXPR");
792
793         /* do-it-yourself enum representation */
794         switch (node->boolop)
795         {
796                 case AND_EXPR:
797                         opstr = "and";
798                         break;
799                 case OR_EXPR:
800                         opstr = "or";
801                         break;
802                 case NOT_EXPR:
803                         opstr = "not";
804                         break;
805         }
806         appendStringInfo(str, " :boolop ");
807         _outToken(str, opstr);
808
809         WRITE_NODE_FIELD(args);
810 }
811
812 static void
813 _outSubLink(StringInfo str, SubLink *node)
814 {
815         WRITE_NODE_TYPE("SUBLINK");
816
817         WRITE_ENUM_FIELD(subLinkType, SubLinkType);
818         WRITE_NODE_FIELD(testexpr);
819         WRITE_NODE_FIELD(operName);
820         WRITE_NODE_FIELD(subselect);
821 }
822
823 static void
824 _outSubPlan(StringInfo str, SubPlan *node)
825 {
826         WRITE_NODE_TYPE("SUBPLAN");
827
828         WRITE_ENUM_FIELD(subLinkType, SubLinkType);
829         WRITE_NODE_FIELD(testexpr);
830         WRITE_NODE_FIELD(paramIds);
831         WRITE_INT_FIELD(plan_id);
832         WRITE_OID_FIELD(firstColType);
833         WRITE_BOOL_FIELD(useHashTable);
834         WRITE_BOOL_FIELD(unknownEqFalse);
835         WRITE_NODE_FIELD(setParam);
836         WRITE_NODE_FIELD(parParam);
837         WRITE_NODE_FIELD(args);
838 }
839
840 static void
841 _outFieldSelect(StringInfo str, FieldSelect *node)
842 {
843         WRITE_NODE_TYPE("FIELDSELECT");
844
845         WRITE_NODE_FIELD(arg);
846         WRITE_INT_FIELD(fieldnum);
847         WRITE_OID_FIELD(resulttype);
848         WRITE_INT_FIELD(resulttypmod);
849 }
850
851 static void
852 _outFieldStore(StringInfo str, FieldStore *node)
853 {
854         WRITE_NODE_TYPE("FIELDSTORE");
855
856         WRITE_NODE_FIELD(arg);
857         WRITE_NODE_FIELD(newvals);
858         WRITE_NODE_FIELD(fieldnums);
859         WRITE_OID_FIELD(resulttype);
860 }
861
862 static void
863 _outRelabelType(StringInfo str, RelabelType *node)
864 {
865         WRITE_NODE_TYPE("RELABELTYPE");
866
867         WRITE_NODE_FIELD(arg);
868         WRITE_OID_FIELD(resulttype);
869         WRITE_INT_FIELD(resulttypmod);
870         WRITE_ENUM_FIELD(relabelformat, CoercionForm);
871 }
872
873 static void
874 _outArrayCoerceExpr(StringInfo str, ArrayCoerceExpr *node)
875 {
876         WRITE_NODE_TYPE("ARRAYCOERCEEXPR");
877
878         WRITE_NODE_FIELD(arg);
879         WRITE_OID_FIELD(elemfuncid);
880         WRITE_OID_FIELD(resulttype);
881         WRITE_INT_FIELD(resulttypmod);
882         WRITE_BOOL_FIELD(isExplicit);
883         WRITE_ENUM_FIELD(coerceformat, CoercionForm);
884 }
885
886 static void
887 _outConvertRowtypeExpr(StringInfo str, ConvertRowtypeExpr *node)
888 {
889         WRITE_NODE_TYPE("CONVERTROWTYPEEXPR");
890
891         WRITE_NODE_FIELD(arg);
892         WRITE_OID_FIELD(resulttype);
893         WRITE_ENUM_FIELD(convertformat, CoercionForm);
894 }
895
896 static void
897 _outCaseExpr(StringInfo str, CaseExpr *node)
898 {
899         WRITE_NODE_TYPE("CASE");
900
901         WRITE_OID_FIELD(casetype);
902         WRITE_NODE_FIELD(arg);
903         WRITE_NODE_FIELD(args);
904         WRITE_NODE_FIELD(defresult);
905 }
906
907 static void
908 _outCaseWhen(StringInfo str, CaseWhen *node)
909 {
910         WRITE_NODE_TYPE("WHEN");
911
912         WRITE_NODE_FIELD(expr);
913         WRITE_NODE_FIELD(result);
914 }
915
916 static void
917 _outCaseTestExpr(StringInfo str, CaseTestExpr *node)
918 {
919         WRITE_NODE_TYPE("CASETESTEXPR");
920
921         WRITE_OID_FIELD(typeId);
922         WRITE_INT_FIELD(typeMod);
923 }
924
925 static void
926 _outArrayExpr(StringInfo str, ArrayExpr *node)
927 {
928         WRITE_NODE_TYPE("ARRAY");
929
930         WRITE_OID_FIELD(array_typeid);
931         WRITE_OID_FIELD(element_typeid);
932         WRITE_NODE_FIELD(elements);
933         WRITE_BOOL_FIELD(multidims);
934 }
935
936 static void
937 _outRowExpr(StringInfo str, RowExpr *node)
938 {
939         WRITE_NODE_TYPE("ROW");
940
941         WRITE_NODE_FIELD(args);
942         WRITE_OID_FIELD(row_typeid);
943         WRITE_ENUM_FIELD(row_format, CoercionForm);
944 }
945
946 static void
947 _outRowCompareExpr(StringInfo str, RowCompareExpr *node)
948 {
949         WRITE_NODE_TYPE("ROWCOMPARE");
950
951         WRITE_ENUM_FIELD(rctype, RowCompareType);
952         WRITE_NODE_FIELD(opnos);
953         WRITE_NODE_FIELD(opfamilies);
954         WRITE_NODE_FIELD(largs);
955         WRITE_NODE_FIELD(rargs);
956 }
957
958 static void
959 _outCoalesceExpr(StringInfo str, CoalesceExpr *node)
960 {
961         WRITE_NODE_TYPE("COALESCE");
962
963         WRITE_OID_FIELD(coalescetype);
964         WRITE_NODE_FIELD(args);
965 }
966
967 static void
968 _outMinMaxExpr(StringInfo str, MinMaxExpr *node)
969 {
970         WRITE_NODE_TYPE("MINMAX");
971
972         WRITE_OID_FIELD(minmaxtype);
973         WRITE_ENUM_FIELD(op, MinMaxOp);
974         WRITE_NODE_FIELD(args);
975 }
976
977 static void
978 _outXmlExpr(StringInfo str, XmlExpr *node)
979 {
980         WRITE_NODE_TYPE("XMLEXPR");
981         
982         WRITE_ENUM_FIELD(op, XmlExprOp);
983         WRITE_STRING_FIELD(name);
984         WRITE_NODE_FIELD(named_args);
985         WRITE_NODE_FIELD(arg_names);
986         WRITE_NODE_FIELD(args);
987         WRITE_ENUM_FIELD(xmloption, XmlOptionType);
988         WRITE_OID_FIELD(type);
989         WRITE_INT_FIELD(typmod);
990 }
991
992 static void
993 _outNullIfExpr(StringInfo str, NullIfExpr *node)
994 {
995         WRITE_NODE_TYPE("NULLIFEXPR");
996
997         WRITE_OID_FIELD(opno);
998         WRITE_OID_FIELD(opfuncid);
999         WRITE_OID_FIELD(opresulttype);
1000         WRITE_BOOL_FIELD(opretset);
1001         WRITE_NODE_FIELD(args);
1002 }
1003
1004 static void
1005 _outNullTest(StringInfo str, NullTest *node)
1006 {
1007         WRITE_NODE_TYPE("NULLTEST");
1008
1009         WRITE_NODE_FIELD(arg);
1010         WRITE_ENUM_FIELD(nulltesttype, NullTestType);
1011 }
1012
1013 static void
1014 _outBooleanTest(StringInfo str, BooleanTest *node)
1015 {
1016         WRITE_NODE_TYPE("BOOLEANTEST");
1017
1018         WRITE_NODE_FIELD(arg);
1019         WRITE_ENUM_FIELD(booltesttype, BoolTestType);
1020 }
1021
1022 static void
1023 _outCoerceToDomain(StringInfo str, CoerceToDomain *node)
1024 {
1025         WRITE_NODE_TYPE("COERCETODOMAIN");
1026
1027         WRITE_NODE_FIELD(arg);
1028         WRITE_OID_FIELD(resulttype);
1029         WRITE_INT_FIELD(resulttypmod);
1030         WRITE_ENUM_FIELD(coercionformat, CoercionForm);
1031 }
1032
1033 static void
1034 _outCoerceToDomainValue(StringInfo str, CoerceToDomainValue *node)
1035 {
1036         WRITE_NODE_TYPE("COERCETODOMAINVALUE");
1037
1038         WRITE_OID_FIELD(typeId);
1039         WRITE_INT_FIELD(typeMod);
1040 }
1041
1042 static void
1043 _outSetToDefault(StringInfo str, SetToDefault *node)
1044 {
1045         WRITE_NODE_TYPE("SETTODEFAULT");
1046
1047         WRITE_OID_FIELD(typeId);
1048         WRITE_INT_FIELD(typeMod);
1049 }
1050
1051 static void
1052 _outTargetEntry(StringInfo str, TargetEntry *node)
1053 {
1054         WRITE_NODE_TYPE("TARGETENTRY");
1055
1056         WRITE_NODE_FIELD(expr);
1057         WRITE_INT_FIELD(resno);
1058         WRITE_STRING_FIELD(resname);
1059         WRITE_UINT_FIELD(ressortgroupref);
1060         WRITE_OID_FIELD(resorigtbl);
1061         WRITE_INT_FIELD(resorigcol);
1062         WRITE_BOOL_FIELD(resjunk);
1063 }
1064
1065 static void
1066 _outRangeTblRef(StringInfo str, RangeTblRef *node)
1067 {
1068         WRITE_NODE_TYPE("RANGETBLREF");
1069
1070         WRITE_INT_FIELD(rtindex);
1071 }
1072
1073 static void
1074 _outJoinExpr(StringInfo str, JoinExpr *node)
1075 {
1076         WRITE_NODE_TYPE("JOINEXPR");
1077
1078         WRITE_ENUM_FIELD(jointype, JoinType);
1079         WRITE_BOOL_FIELD(isNatural);
1080         WRITE_NODE_FIELD(larg);
1081         WRITE_NODE_FIELD(rarg);
1082         WRITE_NODE_FIELD(using);
1083         WRITE_NODE_FIELD(quals);
1084         WRITE_NODE_FIELD(alias);
1085         WRITE_INT_FIELD(rtindex);
1086 }
1087
1088 static void
1089 _outFromExpr(StringInfo str, FromExpr *node)
1090 {
1091         WRITE_NODE_TYPE("FROMEXPR");
1092
1093         WRITE_NODE_FIELD(fromlist);
1094         WRITE_NODE_FIELD(quals);
1095 }
1096
1097 /*****************************************************************************
1098  *
1099  *      Stuff from relation.h.
1100  *
1101  *****************************************************************************/
1102
1103 /*
1104  * print the basic stuff of all nodes that inherit from Path
1105  *
1106  * Note we do NOT print the parent, else we'd be in infinite recursion
1107  */
1108 static void
1109 _outPathInfo(StringInfo str, Path *node)
1110 {
1111         WRITE_ENUM_FIELD(pathtype, NodeTag);
1112         WRITE_FLOAT_FIELD(startup_cost, "%.2f");
1113         WRITE_FLOAT_FIELD(total_cost, "%.2f");
1114         WRITE_NODE_FIELD(pathkeys);
1115 }
1116
1117 /*
1118  * print the basic stuff of all nodes that inherit from JoinPath
1119  */
1120 static void
1121 _outJoinPathInfo(StringInfo str, JoinPath *node)
1122 {
1123         _outPathInfo(str, (Path *) node);
1124
1125         WRITE_ENUM_FIELD(jointype, JoinType);
1126         WRITE_NODE_FIELD(outerjoinpath);
1127         WRITE_NODE_FIELD(innerjoinpath);
1128         WRITE_NODE_FIELD(joinrestrictinfo);
1129 }
1130
1131 static void
1132 _outPath(StringInfo str, Path *node)
1133 {
1134         WRITE_NODE_TYPE("PATH");
1135
1136         _outPathInfo(str, (Path *) node);
1137 }
1138
1139 static void
1140 _outIndexPath(StringInfo str, IndexPath *node)
1141 {
1142         WRITE_NODE_TYPE("INDEXPATH");
1143
1144         _outPathInfo(str, (Path *) node);
1145
1146         WRITE_NODE_FIELD(indexinfo);
1147         WRITE_NODE_FIELD(indexclauses);
1148         WRITE_NODE_FIELD(indexquals);
1149         WRITE_BOOL_FIELD(isjoininner);
1150         WRITE_ENUM_FIELD(indexscandir, ScanDirection);
1151         WRITE_FLOAT_FIELD(indextotalcost, "%.2f");
1152         WRITE_FLOAT_FIELD(indexselectivity, "%.4f");
1153         WRITE_FLOAT_FIELD(rows, "%.0f");
1154 }
1155
1156 static void
1157 _outBitmapHeapPath(StringInfo str, BitmapHeapPath *node)
1158 {
1159         WRITE_NODE_TYPE("BITMAPHEAPPATH");
1160
1161         _outPathInfo(str, (Path *) node);
1162
1163         WRITE_NODE_FIELD(bitmapqual);
1164         WRITE_BOOL_FIELD(isjoininner);
1165         WRITE_FLOAT_FIELD(rows, "%.0f");
1166 }
1167
1168 static void
1169 _outBitmapAndPath(StringInfo str, BitmapAndPath *node)
1170 {
1171         WRITE_NODE_TYPE("BITMAPANDPATH");
1172
1173         _outPathInfo(str, (Path *) node);
1174
1175         WRITE_NODE_FIELD(bitmapquals);
1176         WRITE_FLOAT_FIELD(bitmapselectivity, "%.4f");
1177 }
1178
1179 static void
1180 _outBitmapOrPath(StringInfo str, BitmapOrPath *node)
1181 {
1182         WRITE_NODE_TYPE("BITMAPORPATH");
1183
1184         _outPathInfo(str, (Path *) node);
1185
1186         WRITE_NODE_FIELD(bitmapquals);
1187         WRITE_FLOAT_FIELD(bitmapselectivity, "%.4f");
1188 }
1189
1190 static void
1191 _outTidPath(StringInfo str, TidPath *node)
1192 {
1193         WRITE_NODE_TYPE("TIDPATH");
1194
1195         _outPathInfo(str, (Path *) node);
1196
1197         WRITE_NODE_FIELD(tidquals);
1198 }
1199
1200 static void
1201 _outAppendPath(StringInfo str, AppendPath *node)
1202 {
1203         WRITE_NODE_TYPE("APPENDPATH");
1204
1205         _outPathInfo(str, (Path *) node);
1206
1207         WRITE_NODE_FIELD(subpaths);
1208 }
1209
1210 static void
1211 _outResultPath(StringInfo str, ResultPath *node)
1212 {
1213         WRITE_NODE_TYPE("RESULTPATH");
1214
1215         _outPathInfo(str, (Path *) node);
1216
1217         WRITE_NODE_FIELD(quals);
1218 }
1219
1220 static void
1221 _outMaterialPath(StringInfo str, MaterialPath *node)
1222 {
1223         WRITE_NODE_TYPE("MATERIALPATH");
1224
1225         _outPathInfo(str, (Path *) node);
1226
1227         WRITE_NODE_FIELD(subpath);
1228 }
1229
1230 static void
1231 _outUniquePath(StringInfo str, UniquePath *node)
1232 {
1233         WRITE_NODE_TYPE("UNIQUEPATH");
1234
1235         _outPathInfo(str, (Path *) node);
1236
1237         WRITE_NODE_FIELD(subpath);
1238         WRITE_ENUM_FIELD(umethod, UniquePathMethod);
1239         WRITE_FLOAT_FIELD(rows, "%.0f");
1240 }
1241
1242 static void
1243 _outNestPath(StringInfo str, NestPath *node)
1244 {
1245         WRITE_NODE_TYPE("NESTPATH");
1246
1247         _outJoinPathInfo(str, (JoinPath *) node);
1248 }
1249
1250 static void
1251 _outMergePath(StringInfo str, MergePath *node)
1252 {
1253         WRITE_NODE_TYPE("MERGEPATH");
1254
1255         _outJoinPathInfo(str, (JoinPath *) node);
1256
1257         WRITE_NODE_FIELD(path_mergeclauses);
1258         WRITE_NODE_FIELD(outersortkeys);
1259         WRITE_NODE_FIELD(innersortkeys);
1260 }
1261
1262 static void
1263 _outHashPath(StringInfo str, HashPath *node)
1264 {
1265         WRITE_NODE_TYPE("HASHPATH");
1266
1267         _outJoinPathInfo(str, (JoinPath *) node);
1268
1269         WRITE_NODE_FIELD(path_hashclauses);
1270 }
1271
1272 static void
1273 _outPlannerGlobal(StringInfo str, PlannerGlobal *node)
1274 {
1275         WRITE_NODE_TYPE("PLANNERGLOBAL");
1276
1277         /* NB: this isn't a complete set of fields */
1278         WRITE_NODE_FIELD(paramlist);
1279         WRITE_NODE_FIELD(subplans);
1280         WRITE_NODE_FIELD(subrtables);
1281         WRITE_BITMAPSET_FIELD(rewindPlanIDs);
1282         WRITE_NODE_FIELD(finalrtable);
1283 }
1284
1285 static void
1286 _outPlannerInfo(StringInfo str, PlannerInfo *node)
1287 {
1288         WRITE_NODE_TYPE("PLANNERINFO");
1289
1290         /* NB: this isn't a complete set of fields */
1291         WRITE_NODE_FIELD(parse);
1292         WRITE_NODE_FIELD(glob);
1293         WRITE_UINT_FIELD(query_level);
1294         WRITE_NODE_FIELD(join_rel_list);
1295         WRITE_NODE_FIELD(resultRelations);
1296         WRITE_NODE_FIELD(returningLists);
1297         WRITE_NODE_FIELD(init_plans);
1298         WRITE_NODE_FIELD(eq_classes);
1299         WRITE_NODE_FIELD(canon_pathkeys);
1300         WRITE_NODE_FIELD(left_join_clauses);
1301         WRITE_NODE_FIELD(right_join_clauses);
1302         WRITE_NODE_FIELD(full_join_clauses);
1303         WRITE_NODE_FIELD(oj_info_list);
1304         WRITE_NODE_FIELD(in_info_list);
1305         WRITE_NODE_FIELD(append_rel_list);
1306         WRITE_NODE_FIELD(query_pathkeys);
1307         WRITE_NODE_FIELD(group_pathkeys);
1308         WRITE_NODE_FIELD(sort_pathkeys);
1309         WRITE_FLOAT_FIELD(total_table_pages, "%.0f");
1310         WRITE_FLOAT_FIELD(tuple_fraction, "%.4f");
1311         WRITE_BOOL_FIELD(hasJoinRTEs);
1312         WRITE_BOOL_FIELD(hasOuterJoins);
1313         WRITE_BOOL_FIELD(hasHavingQual);
1314         WRITE_BOOL_FIELD(hasPseudoConstantQuals);
1315 }
1316
1317 static void
1318 _outRelOptInfo(StringInfo str, RelOptInfo *node)
1319 {
1320         WRITE_NODE_TYPE("RELOPTINFO");
1321
1322         /* NB: this isn't a complete set of fields */
1323         WRITE_ENUM_FIELD(reloptkind, RelOptKind);
1324         WRITE_BITMAPSET_FIELD(relids);
1325         WRITE_FLOAT_FIELD(rows, "%.0f");
1326         WRITE_INT_FIELD(width);
1327         WRITE_NODE_FIELD(reltargetlist);
1328         WRITE_NODE_FIELD(pathlist);
1329         WRITE_NODE_FIELD(cheapest_startup_path);
1330         WRITE_NODE_FIELD(cheapest_total_path);
1331         WRITE_NODE_FIELD(cheapest_unique_path);
1332         WRITE_UINT_FIELD(relid);
1333         WRITE_ENUM_FIELD(rtekind, RTEKind);
1334         WRITE_INT_FIELD(min_attr);
1335         WRITE_INT_FIELD(max_attr);
1336         WRITE_NODE_FIELD(indexlist);
1337         WRITE_UINT_FIELD(pages);
1338         WRITE_FLOAT_FIELD(tuples, "%.0f");
1339         WRITE_NODE_FIELD(subplan);
1340         WRITE_NODE_FIELD(subrtable);
1341         WRITE_NODE_FIELD(baserestrictinfo);
1342         WRITE_NODE_FIELD(joininfo);
1343         WRITE_BOOL_FIELD(has_eclass_joins);
1344         WRITE_BITMAPSET_FIELD(index_outer_relids);
1345         WRITE_NODE_FIELD(index_inner_paths);
1346 }
1347
1348 static void
1349 _outIndexOptInfo(StringInfo str, IndexOptInfo *node)
1350 {
1351         WRITE_NODE_TYPE("INDEXOPTINFO");
1352
1353         /* NB: this isn't a complete set of fields */
1354         WRITE_OID_FIELD(indexoid);
1355         /* Do NOT print rel field, else infinite recursion */
1356         WRITE_UINT_FIELD(pages);
1357         WRITE_FLOAT_FIELD(tuples, "%.0f");
1358         WRITE_INT_FIELD(ncolumns);
1359         WRITE_NODE_FIELD(indexprs);
1360         WRITE_NODE_FIELD(indpred);
1361         WRITE_BOOL_FIELD(predOK);
1362         WRITE_BOOL_FIELD(unique);
1363 }
1364
1365 static void
1366 _outEquivalenceClass(StringInfo str, EquivalenceClass *node)
1367 {
1368         /*
1369          * To simplify reading, we just chase up to the topmost merged EC and
1370          * print that, without bothering to show the merge-ees separately.
1371          */
1372         while (node->ec_merged)
1373                 node = node->ec_merged;
1374
1375         WRITE_NODE_TYPE("EQUIVALENCECLASS");
1376
1377         WRITE_NODE_FIELD(ec_opfamilies);
1378         WRITE_NODE_FIELD(ec_members);
1379         WRITE_NODE_FIELD(ec_sources);
1380         WRITE_NODE_FIELD(ec_derives);
1381         WRITE_BITMAPSET_FIELD(ec_relids);
1382         WRITE_BOOL_FIELD(ec_has_const);
1383         WRITE_BOOL_FIELD(ec_has_volatile);
1384         WRITE_BOOL_FIELD(ec_below_outer_join);
1385         WRITE_BOOL_FIELD(ec_broken);
1386 }
1387
1388 static void
1389 _outEquivalenceMember(StringInfo str, EquivalenceMember *node)
1390 {
1391         WRITE_NODE_TYPE("EQUIVALENCEMEMBER");
1392
1393         WRITE_NODE_FIELD(em_expr);
1394         WRITE_BITMAPSET_FIELD(em_relids);
1395         WRITE_BOOL_FIELD(em_is_const);
1396         WRITE_BOOL_FIELD(em_is_child);
1397         WRITE_OID_FIELD(em_datatype);
1398 }
1399
1400 static void
1401 _outPathKey(StringInfo str, PathKey *node)
1402 {
1403         WRITE_NODE_TYPE("PATHKEY");
1404
1405         WRITE_NODE_FIELD(pk_eclass);
1406         WRITE_OID_FIELD(pk_opfamily);
1407         WRITE_INT_FIELD(pk_strategy);
1408         WRITE_BOOL_FIELD(pk_nulls_first);
1409 }
1410
1411 static void
1412 _outRestrictInfo(StringInfo str, RestrictInfo *node)
1413 {
1414         WRITE_NODE_TYPE("RESTRICTINFO");
1415
1416         /* NB: this isn't a complete set of fields */
1417         WRITE_NODE_FIELD(clause);
1418         WRITE_BOOL_FIELD(is_pushed_down);
1419         WRITE_BOOL_FIELD(outerjoin_delayed);
1420         WRITE_BOOL_FIELD(can_join);
1421         WRITE_BOOL_FIELD(pseudoconstant);
1422         WRITE_BITMAPSET_FIELD(clause_relids);
1423         WRITE_BITMAPSET_FIELD(required_relids);
1424         WRITE_BITMAPSET_FIELD(left_relids);
1425         WRITE_BITMAPSET_FIELD(right_relids);
1426         WRITE_NODE_FIELD(orclause);
1427         /* don't write parent_ec, leads to infinite recursion in plan tree dump */
1428         WRITE_NODE_FIELD(mergeopfamilies);
1429         /* don't write left_ec, leads to infinite recursion in plan tree dump */
1430         /* don't write right_ec, leads to infinite recursion in plan tree dump */
1431         WRITE_NODE_FIELD(left_em);
1432         WRITE_NODE_FIELD(right_em);
1433         WRITE_BOOL_FIELD(outer_is_left);
1434         WRITE_OID_FIELD(hashjoinoperator);
1435 }
1436
1437 static void
1438 _outInnerIndexscanInfo(StringInfo str, InnerIndexscanInfo *node)
1439 {
1440         WRITE_NODE_TYPE("INNERINDEXSCANINFO");
1441         WRITE_BITMAPSET_FIELD(other_relids);
1442         WRITE_BOOL_FIELD(isouterjoin);
1443         WRITE_NODE_FIELD(cheapest_startup_innerpath);
1444         WRITE_NODE_FIELD(cheapest_total_innerpath);
1445 }
1446
1447 static void
1448 _outOuterJoinInfo(StringInfo str, OuterJoinInfo *node)
1449 {
1450         WRITE_NODE_TYPE("OUTERJOININFO");
1451
1452         WRITE_BITMAPSET_FIELD(min_lefthand);
1453         WRITE_BITMAPSET_FIELD(min_righthand);
1454         WRITE_BOOL_FIELD(is_full_join);
1455         WRITE_BOOL_FIELD(lhs_strict);
1456 }
1457
1458 static void
1459 _outInClauseInfo(StringInfo str, InClauseInfo *node)
1460 {
1461         WRITE_NODE_TYPE("INCLAUSEINFO");
1462
1463         WRITE_BITMAPSET_FIELD(lefthand);
1464         WRITE_BITMAPSET_FIELD(righthand);
1465         WRITE_NODE_FIELD(sub_targetlist);
1466         WRITE_NODE_FIELD(in_operators);
1467 }
1468
1469 static void
1470 _outAppendRelInfo(StringInfo str, AppendRelInfo *node)
1471 {
1472         WRITE_NODE_TYPE("APPENDRELINFO");
1473
1474         WRITE_UINT_FIELD(parent_relid);
1475         WRITE_UINT_FIELD(child_relid);
1476         WRITE_OID_FIELD(parent_reltype);
1477         WRITE_OID_FIELD(child_reltype);
1478         WRITE_NODE_FIELD(col_mappings);
1479         WRITE_NODE_FIELD(translated_vars);
1480         WRITE_OID_FIELD(parent_reloid);
1481 }
1482
1483 static void
1484 _outPlannerParamItem(StringInfo str, PlannerParamItem *node)
1485 {
1486         WRITE_NODE_TYPE("PLANNERPARAMITEM");
1487
1488         WRITE_NODE_FIELD(item);
1489         WRITE_UINT_FIELD(abslevel);
1490 }
1491
1492 /*****************************************************************************
1493  *
1494  *      Stuff from parsenodes.h.
1495  *
1496  *****************************************************************************/
1497
1498 static void
1499 _outCreateStmt(StringInfo str, CreateStmt *node)
1500 {
1501         WRITE_NODE_TYPE("CREATESTMT");
1502
1503         WRITE_NODE_FIELD(relation);
1504         WRITE_NODE_FIELD(tableElts);
1505         WRITE_NODE_FIELD(inhRelations);
1506         WRITE_NODE_FIELD(constraints);
1507         WRITE_NODE_FIELD(options);
1508         WRITE_ENUM_FIELD(oncommit, OnCommitAction);
1509         WRITE_STRING_FIELD(tablespacename);
1510 }
1511
1512 static void
1513 _outIndexStmt(StringInfo str, IndexStmt *node)
1514 {
1515         WRITE_NODE_TYPE("INDEXSTMT");
1516
1517         WRITE_STRING_FIELD(idxname);
1518         WRITE_NODE_FIELD(relation);
1519         WRITE_STRING_FIELD(accessMethod);
1520         WRITE_STRING_FIELD(tableSpace);
1521         WRITE_NODE_FIELD(indexParams);
1522         WRITE_NODE_FIELD(options);
1523         WRITE_NODE_FIELD(whereClause);
1524         WRITE_BOOL_FIELD(unique);
1525         WRITE_BOOL_FIELD(primary);
1526         WRITE_BOOL_FIELD(isconstraint);
1527         WRITE_BOOL_FIELD(concurrent);
1528 }
1529
1530 static void
1531 _outNotifyStmt(StringInfo str, NotifyStmt *node)
1532 {
1533         WRITE_NODE_TYPE("NOTIFY");
1534
1535         WRITE_NODE_FIELD(relation);
1536 }
1537
1538 static void
1539 _outDeclareCursorStmt(StringInfo str, DeclareCursorStmt *node)
1540 {
1541         WRITE_NODE_TYPE("DECLARECURSOR");
1542
1543         WRITE_STRING_FIELD(portalname);
1544         WRITE_INT_FIELD(options);
1545         WRITE_NODE_FIELD(query);
1546 }
1547
1548 static void
1549 _outSelectStmt(StringInfo str, SelectStmt *node)
1550 {
1551         WRITE_NODE_TYPE("SELECT");
1552
1553         WRITE_NODE_FIELD(distinctClause);
1554         WRITE_NODE_FIELD(intoClause);
1555         WRITE_NODE_FIELD(targetList);
1556         WRITE_NODE_FIELD(fromClause);
1557         WRITE_NODE_FIELD(whereClause);
1558         WRITE_NODE_FIELD(groupClause);
1559         WRITE_NODE_FIELD(havingClause);
1560         WRITE_NODE_FIELD(valuesLists);
1561         WRITE_NODE_FIELD(sortClause);
1562         WRITE_NODE_FIELD(limitOffset);
1563         WRITE_NODE_FIELD(limitCount);
1564         WRITE_NODE_FIELD(lockingClause);
1565         WRITE_ENUM_FIELD(op, SetOperation);
1566         WRITE_BOOL_FIELD(all);
1567         WRITE_NODE_FIELD(larg);
1568         WRITE_NODE_FIELD(rarg);
1569 }
1570
1571 static void
1572 _outFuncCall(StringInfo str, FuncCall *node)
1573 {
1574         WRITE_NODE_TYPE("FUNCCALL");
1575
1576         WRITE_NODE_FIELD(funcname);
1577         WRITE_NODE_FIELD(args);
1578         WRITE_BOOL_FIELD(agg_star);
1579         WRITE_BOOL_FIELD(agg_distinct);
1580         WRITE_INT_FIELD(location);
1581 }
1582
1583 static void
1584 _outDefElem(StringInfo str, DefElem *node)
1585 {
1586         WRITE_NODE_TYPE("DEFELEM");
1587
1588         WRITE_STRING_FIELD(defname);
1589         WRITE_NODE_FIELD(arg);
1590 }
1591
1592 static void
1593 _outLockingClause(StringInfo str, LockingClause *node)
1594 {
1595         WRITE_NODE_TYPE("LOCKINGCLAUSE");
1596
1597         WRITE_NODE_FIELD(lockedRels);
1598         WRITE_BOOL_FIELD(forUpdate);
1599         WRITE_BOOL_FIELD(noWait);
1600 }
1601
1602 static void
1603 _outXmlSerialize(StringInfo str, XmlSerialize *node)
1604 {
1605         WRITE_NODE_TYPE("XMLSERIALIZE");
1606
1607         WRITE_ENUM_FIELD(xmloption, XmlOptionType);
1608         WRITE_NODE_FIELD(expr);
1609         WRITE_NODE_FIELD(typename);
1610 }
1611
1612 static void
1613 _outColumnDef(StringInfo str, ColumnDef *node)
1614 {
1615         WRITE_NODE_TYPE("COLUMNDEF");
1616
1617         WRITE_STRING_FIELD(colname);
1618         WRITE_NODE_FIELD(typename);
1619         WRITE_INT_FIELD(inhcount);
1620         WRITE_BOOL_FIELD(is_local);
1621         WRITE_BOOL_FIELD(is_not_null);
1622         WRITE_NODE_FIELD(raw_default);
1623         WRITE_STRING_FIELD(cooked_default);
1624         WRITE_NODE_FIELD(constraints);
1625 }
1626
1627 static void
1628 _outTypeName(StringInfo str, TypeName *node)
1629 {
1630         WRITE_NODE_TYPE("TYPENAME");
1631
1632         WRITE_NODE_FIELD(names);
1633         WRITE_OID_FIELD(typeid);
1634         WRITE_BOOL_FIELD(timezone);
1635         WRITE_BOOL_FIELD(setof);
1636         WRITE_BOOL_FIELD(pct_type);
1637         WRITE_NODE_FIELD(typmods);
1638         WRITE_INT_FIELD(typemod);
1639         WRITE_NODE_FIELD(arrayBounds);
1640         WRITE_INT_FIELD(location);
1641 }
1642
1643 static void
1644 _outTypeCast(StringInfo str, TypeCast *node)
1645 {
1646         WRITE_NODE_TYPE("TYPECAST");
1647
1648         WRITE_NODE_FIELD(arg);
1649         WRITE_NODE_FIELD(typename);
1650 }
1651
1652 static void
1653 _outIndexElem(StringInfo str, IndexElem *node)
1654 {
1655         WRITE_NODE_TYPE("INDEXELEM");
1656
1657         WRITE_STRING_FIELD(name);
1658         WRITE_NODE_FIELD(expr);
1659         WRITE_NODE_FIELD(opclass);
1660         WRITE_ENUM_FIELD(ordering, SortByDir);
1661         WRITE_ENUM_FIELD(nulls_ordering, SortByNulls);
1662 }
1663
1664 static void
1665 _outQuery(StringInfo str, Query *node)
1666 {
1667         WRITE_NODE_TYPE("QUERY");
1668
1669         WRITE_ENUM_FIELD(commandType, CmdType);
1670         WRITE_ENUM_FIELD(querySource, QuerySource);
1671         WRITE_BOOL_FIELD(canSetTag);
1672
1673         /*
1674          * Hack to work around missing outfuncs routines for a lot of the
1675          * utility-statement node types.  (The only one we actually *need* for
1676          * rules support is NotifyStmt.)  Someday we ought to support 'em all, but
1677          * for the meantime do this to avoid getting lots of warnings when running
1678          * with debug_print_parse on.
1679          */
1680         if (node->utilityStmt)
1681         {
1682                 switch (nodeTag(node->utilityStmt))
1683                 {
1684                         case T_CreateStmt:
1685                         case T_IndexStmt:
1686                         case T_NotifyStmt:
1687                         case T_DeclareCursorStmt:
1688                                 WRITE_NODE_FIELD(utilityStmt);
1689                                 break;
1690                         default:
1691                                 appendStringInfo(str, " :utilityStmt ?");
1692                                 break;
1693                 }
1694         }
1695         else
1696                 appendStringInfo(str, " :utilityStmt <>");
1697
1698         WRITE_INT_FIELD(resultRelation);
1699         WRITE_NODE_FIELD(intoClause);
1700         WRITE_BOOL_FIELD(hasAggs);
1701         WRITE_BOOL_FIELD(hasSubLinks);
1702         WRITE_NODE_FIELD(rtable);
1703         WRITE_NODE_FIELD(jointree);
1704         WRITE_NODE_FIELD(targetList);
1705         WRITE_NODE_FIELD(returningList);
1706         WRITE_NODE_FIELD(groupClause);
1707         WRITE_NODE_FIELD(havingQual);
1708         WRITE_NODE_FIELD(distinctClause);
1709         WRITE_NODE_FIELD(sortClause);
1710         WRITE_NODE_FIELD(limitOffset);
1711         WRITE_NODE_FIELD(limitCount);
1712         WRITE_NODE_FIELD(rowMarks);
1713         WRITE_NODE_FIELD(setOperations);
1714 }
1715
1716 static void
1717 _outSortClause(StringInfo str, SortClause *node)
1718 {
1719         WRITE_NODE_TYPE("SORTCLAUSE");
1720
1721         WRITE_UINT_FIELD(tleSortGroupRef);
1722         WRITE_OID_FIELD(sortop);
1723         WRITE_BOOL_FIELD(nulls_first);
1724 }
1725
1726 static void
1727 _outGroupClause(StringInfo str, GroupClause *node)
1728 {
1729         WRITE_NODE_TYPE("GROUPCLAUSE");
1730
1731         WRITE_UINT_FIELD(tleSortGroupRef);
1732         WRITE_OID_FIELD(sortop);
1733         WRITE_BOOL_FIELD(nulls_first);
1734 }
1735
1736 static void
1737 _outRowMarkClause(StringInfo str, RowMarkClause *node)
1738 {
1739         WRITE_NODE_TYPE("ROWMARKCLAUSE");
1740
1741         WRITE_UINT_FIELD(rti);
1742         WRITE_BOOL_FIELD(forUpdate);
1743         WRITE_BOOL_FIELD(noWait);
1744 }
1745
1746 static void
1747 _outSetOperationStmt(StringInfo str, SetOperationStmt *node)
1748 {
1749         WRITE_NODE_TYPE("SETOPERATIONSTMT");
1750
1751         WRITE_ENUM_FIELD(op, SetOperation);
1752         WRITE_BOOL_FIELD(all);
1753         WRITE_NODE_FIELD(larg);
1754         WRITE_NODE_FIELD(rarg);
1755         WRITE_NODE_FIELD(colTypes);
1756         WRITE_NODE_FIELD(colTypmods);
1757 }
1758
1759 static void
1760 _outRangeTblEntry(StringInfo str, RangeTblEntry *node)
1761 {
1762         WRITE_NODE_TYPE("RTE");
1763
1764         /* put alias + eref first to make dump more legible */
1765         WRITE_NODE_FIELD(alias);
1766         WRITE_NODE_FIELD(eref);
1767         WRITE_ENUM_FIELD(rtekind, RTEKind);
1768
1769         switch (node->rtekind)
1770         {
1771                 case RTE_RELATION:
1772                 case RTE_SPECIAL:
1773                         WRITE_OID_FIELD(relid);
1774                         break;
1775                 case RTE_SUBQUERY:
1776                         WRITE_NODE_FIELD(subquery);
1777                         break;
1778                 case RTE_FUNCTION:
1779                         WRITE_NODE_FIELD(funcexpr);
1780                         WRITE_NODE_FIELD(funccoltypes);
1781                         WRITE_NODE_FIELD(funccoltypmods);
1782                         break;
1783                 case RTE_VALUES:
1784                         WRITE_NODE_FIELD(values_lists);
1785                         break;
1786                 case RTE_JOIN:
1787                         WRITE_ENUM_FIELD(jointype, JoinType);
1788                         WRITE_NODE_FIELD(joinaliasvars);
1789                         break;
1790                 default:
1791                         elog(ERROR, "unrecognized RTE kind: %d", (int) node->rtekind);
1792                         break;
1793         }
1794
1795         WRITE_BOOL_FIELD(inh);
1796         WRITE_BOOL_FIELD(inFromCl);
1797         WRITE_UINT_FIELD(requiredPerms);
1798         WRITE_OID_FIELD(checkAsUser);
1799 }
1800
1801 static void
1802 _outAExpr(StringInfo str, A_Expr *node)
1803 {
1804         WRITE_NODE_TYPE("AEXPR");
1805
1806         switch (node->kind)
1807         {
1808                 case AEXPR_OP:
1809                         appendStringInfo(str, " ");
1810                         WRITE_NODE_FIELD(name);
1811                         break;
1812                 case AEXPR_AND:
1813                         appendStringInfo(str, " AND");
1814                         break;
1815                 case AEXPR_OR:
1816                         appendStringInfo(str, " OR");
1817                         break;
1818                 case AEXPR_NOT:
1819                         appendStringInfo(str, " NOT");
1820                         break;
1821                 case AEXPR_OP_ANY:
1822                         appendStringInfo(str, " ");
1823                         WRITE_NODE_FIELD(name);
1824                         appendStringInfo(str, " ANY ");
1825                         break;
1826                 case AEXPR_OP_ALL:
1827                         appendStringInfo(str, " ");
1828                         WRITE_NODE_FIELD(name);
1829                         appendStringInfo(str, " ALL ");
1830                         break;
1831                 case AEXPR_DISTINCT:
1832                         appendStringInfo(str, " DISTINCT ");
1833                         WRITE_NODE_FIELD(name);
1834                         break;
1835                 case AEXPR_NULLIF:
1836                         appendStringInfo(str, " NULLIF ");
1837                         WRITE_NODE_FIELD(name);
1838                         break;
1839                 case AEXPR_OF:
1840                         appendStringInfo(str, " OF ");
1841                         WRITE_NODE_FIELD(name);
1842                         break;
1843                 case AEXPR_IN:
1844                         appendStringInfo(str, " IN ");
1845                         WRITE_NODE_FIELD(name);
1846                         break;
1847                 default:
1848                         appendStringInfo(str, " ??");
1849                         break;
1850         }
1851
1852         WRITE_NODE_FIELD(lexpr);
1853         WRITE_NODE_FIELD(rexpr);
1854         WRITE_INT_FIELD(location);
1855 }
1856
1857 static void
1858 _outValue(StringInfo str, Value *value)
1859 {
1860         switch (value->type)
1861         {
1862                 case T_Integer:
1863                         appendStringInfo(str, "%ld", value->val.ival);
1864                         break;
1865                 case T_Float:
1866
1867                         /*
1868                          * We assume the value is a valid numeric literal and so does not
1869                          * need quoting.
1870                          */
1871                         appendStringInfoString(str, value->val.str);
1872                         break;
1873                 case T_String:
1874                         appendStringInfoChar(str, '"');
1875                         _outToken(str, value->val.str);
1876                         appendStringInfoChar(str, '"');
1877                         break;
1878                 case T_BitString:
1879                         /* internal representation already has leading 'b' */
1880                         appendStringInfoString(str, value->val.str);
1881                         break;
1882                 default:
1883                         elog(ERROR, "unrecognized node type: %d", (int) value->type);
1884                         break;
1885         }
1886 }
1887
1888 static void
1889 _outColumnRef(StringInfo str, ColumnRef *node)
1890 {
1891         WRITE_NODE_TYPE("COLUMNREF");
1892
1893         WRITE_NODE_FIELD(fields);
1894         WRITE_INT_FIELD(location);
1895 }
1896
1897 static void
1898 _outParamRef(StringInfo str, ParamRef *node)
1899 {
1900         WRITE_NODE_TYPE("PARAMREF");
1901
1902         WRITE_INT_FIELD(number);
1903 }
1904
1905 static void
1906 _outAConst(StringInfo str, A_Const *node)
1907 {
1908         WRITE_NODE_TYPE("A_CONST");
1909
1910         appendStringInfo(str, " :val ");
1911         _outValue(str, &(node->val));
1912         WRITE_NODE_FIELD(typename);
1913 }
1914
1915 static void
1916 _outA_Indices(StringInfo str, A_Indices *node)
1917 {
1918         WRITE_NODE_TYPE("A_INDICES");
1919
1920         WRITE_NODE_FIELD(lidx);
1921         WRITE_NODE_FIELD(uidx);
1922 }
1923
1924 static void
1925 _outA_Indirection(StringInfo str, A_Indirection *node)
1926 {
1927         WRITE_NODE_TYPE("A_INDIRECTION");
1928
1929         WRITE_NODE_FIELD(arg);
1930         WRITE_NODE_FIELD(indirection);
1931 }
1932
1933 static void
1934 _outResTarget(StringInfo str, ResTarget *node)
1935 {
1936         WRITE_NODE_TYPE("RESTARGET");
1937
1938         WRITE_STRING_FIELD(name);
1939         WRITE_NODE_FIELD(indirection);
1940         WRITE_NODE_FIELD(val);
1941         WRITE_INT_FIELD(location);
1942 }
1943
1944 static void
1945 _outConstraint(StringInfo str, Constraint *node)
1946 {
1947         WRITE_NODE_TYPE("CONSTRAINT");
1948
1949         WRITE_STRING_FIELD(name);
1950
1951         appendStringInfo(str, " :contype ");
1952         switch (node->contype)
1953         {
1954                 case CONSTR_PRIMARY:
1955                         appendStringInfo(str, "PRIMARY_KEY");
1956                         WRITE_NODE_FIELD(keys);
1957                         WRITE_NODE_FIELD(options);
1958                         WRITE_STRING_FIELD(indexspace);
1959                         break;
1960
1961                 case CONSTR_UNIQUE:
1962                         appendStringInfo(str, "UNIQUE");
1963                         WRITE_NODE_FIELD(keys);
1964                         WRITE_NODE_FIELD(options);
1965                         WRITE_STRING_FIELD(indexspace);
1966                         break;
1967
1968                 case CONSTR_CHECK:
1969                         appendStringInfo(str, "CHECK");
1970                         WRITE_NODE_FIELD(raw_expr);
1971                         WRITE_STRING_FIELD(cooked_expr);
1972                         break;
1973
1974                 case CONSTR_DEFAULT:
1975                         appendStringInfo(str, "DEFAULT");
1976                         WRITE_NODE_FIELD(raw_expr);
1977                         WRITE_STRING_FIELD(cooked_expr);
1978                         break;
1979
1980                 case CONSTR_NOTNULL:
1981                         appendStringInfo(str, "NOT_NULL");
1982                         break;
1983
1984                 default:
1985                         appendStringInfo(str, "<unrecognized_constraint>");
1986                         break;
1987         }
1988 }
1989
1990 static void
1991 _outFkConstraint(StringInfo str, FkConstraint *node)
1992 {
1993         WRITE_NODE_TYPE("FKCONSTRAINT");
1994
1995         WRITE_STRING_FIELD(constr_name);
1996         WRITE_NODE_FIELD(pktable);
1997         WRITE_NODE_FIELD(fk_attrs);
1998         WRITE_NODE_FIELD(pk_attrs);
1999         WRITE_CHAR_FIELD(fk_matchtype);
2000         WRITE_CHAR_FIELD(fk_upd_action);
2001         WRITE_CHAR_FIELD(fk_del_action);
2002         WRITE_BOOL_FIELD(deferrable);
2003         WRITE_BOOL_FIELD(initdeferred);
2004         WRITE_BOOL_FIELD(skip_validation);
2005 }
2006
2007
2008 /*
2009  * _outNode -
2010  *        converts a Node into ascii string and append it to 'str'
2011  */
2012 static void
2013 _outNode(StringInfo str, void *obj)
2014 {
2015         if (obj == NULL)
2016                 appendStringInfo(str, "<>");
2017         else if (IsA(obj, List) ||IsA(obj, IntList) || IsA(obj, OidList))
2018                 _outList(str, obj);
2019         else if (IsA(obj, Integer) ||
2020                          IsA(obj, Float) ||
2021                          IsA(obj, String) ||
2022                          IsA(obj, BitString))
2023         {
2024                 /* nodeRead does not want to see { } around these! */
2025                 _outValue(str, obj);
2026         }
2027         else
2028         {
2029                 appendStringInfoChar(str, '{');
2030                 switch (nodeTag(obj))
2031                 {
2032                         case T_PlannedStmt:
2033                                 _outPlannedStmt(str, obj);
2034                                 break;
2035                         case T_Plan:
2036                                 _outPlan(str, obj);
2037                                 break;
2038                         case T_Result:
2039                                 _outResult(str, obj);
2040                                 break;
2041                         case T_Append:
2042                                 _outAppend(str, obj);
2043                                 break;
2044                         case T_BitmapAnd:
2045                                 _outBitmapAnd(str, obj);
2046                                 break;
2047                         case T_BitmapOr:
2048                                 _outBitmapOr(str, obj);
2049                                 break;
2050                         case T_Scan:
2051                                 _outScan(str, obj);
2052                                 break;
2053                         case T_SeqScan:
2054                                 _outSeqScan(str, obj);
2055                                 break;
2056                         case T_IndexScan:
2057                                 _outIndexScan(str, obj);
2058                                 break;
2059                         case T_BitmapIndexScan:
2060                                 _outBitmapIndexScan(str, obj);
2061                                 break;
2062                         case T_BitmapHeapScan:
2063                                 _outBitmapHeapScan(str, obj);
2064                                 break;
2065                         case T_TidScan:
2066                                 _outTidScan(str, obj);
2067                                 break;
2068                         case T_SubqueryScan:
2069                                 _outSubqueryScan(str, obj);
2070                                 break;
2071                         case T_FunctionScan:
2072                                 _outFunctionScan(str, obj);
2073                                 break;
2074                         case T_ValuesScan:
2075                                 _outValuesScan(str, obj);
2076                                 break;
2077                         case T_Join:
2078                                 _outJoin(str, obj);
2079                                 break;
2080                         case T_NestLoop:
2081                                 _outNestLoop(str, obj);
2082                                 break;
2083                         case T_MergeJoin:
2084                                 _outMergeJoin(str, obj);
2085                                 break;
2086                         case T_HashJoin:
2087                                 _outHashJoin(str, obj);
2088                                 break;
2089                         case T_Agg:
2090                                 _outAgg(str, obj);
2091                                 break;
2092                         case T_Group:
2093                                 _outGroup(str, obj);
2094                                 break;
2095                         case T_Material:
2096                                 _outMaterial(str, obj);
2097                                 break;
2098                         case T_Sort:
2099                                 _outSort(str, obj);
2100                                 break;
2101                         case T_Unique:
2102                                 _outUnique(str, obj);
2103                                 break;
2104                         case T_SetOp:
2105                                 _outSetOp(str, obj);
2106                                 break;
2107                         case T_Limit:
2108                                 _outLimit(str, obj);
2109                                 break;
2110                         case T_Hash:
2111                                 _outHash(str, obj);
2112                                 break;
2113                         case T_Alias:
2114                                 _outAlias(str, obj);
2115                                 break;
2116                         case T_RangeVar:
2117                                 _outRangeVar(str, obj);
2118                                 break;
2119                         case T_IntoClause:
2120                                 _outIntoClause(str, obj);
2121                                 break;
2122                         case T_Var:
2123                                 _outVar(str, obj);
2124                                 break;
2125                         case T_Const:
2126                                 _outConst(str, obj);
2127                                 break;
2128                         case T_Param:
2129                                 _outParam(str, obj);
2130                                 break;
2131                         case T_Aggref:
2132                                 _outAggref(str, obj);
2133                                 break;
2134                         case T_ArrayRef:
2135                                 _outArrayRef(str, obj);
2136                                 break;
2137                         case T_FuncExpr:
2138                                 _outFuncExpr(str, obj);
2139                                 break;
2140                         case T_OpExpr:
2141                                 _outOpExpr(str, obj);
2142                                 break;
2143                         case T_DistinctExpr:
2144                                 _outDistinctExpr(str, obj);
2145                                 break;
2146                         case T_ScalarArrayOpExpr:
2147                                 _outScalarArrayOpExpr(str, obj);
2148                                 break;
2149                         case T_BoolExpr:
2150                                 _outBoolExpr(str, obj);
2151                                 break;
2152                         case T_SubLink:
2153                                 _outSubLink(str, obj);
2154                                 break;
2155                         case T_SubPlan:
2156                                 _outSubPlan(str, obj);
2157                                 break;
2158                         case T_FieldSelect:
2159                                 _outFieldSelect(str, obj);
2160                                 break;
2161                         case T_FieldStore:
2162                                 _outFieldStore(str, obj);
2163                                 break;
2164                         case T_RelabelType:
2165                                 _outRelabelType(str, obj);
2166                                 break;
2167                         case T_ArrayCoerceExpr:
2168                                 _outArrayCoerceExpr(str, obj);
2169                                 break;
2170                         case T_ConvertRowtypeExpr:
2171                                 _outConvertRowtypeExpr(str, obj);
2172                                 break;
2173                         case T_CaseExpr:
2174                                 _outCaseExpr(str, obj);
2175                                 break;
2176                         case T_CaseWhen:
2177                                 _outCaseWhen(str, obj);
2178                                 break;
2179                         case T_CaseTestExpr:
2180                                 _outCaseTestExpr(str, obj);
2181                                 break;
2182                         case T_ArrayExpr:
2183                                 _outArrayExpr(str, obj);
2184                                 break;
2185                         case T_RowExpr:
2186                                 _outRowExpr(str, obj);
2187                                 break;
2188                         case T_RowCompareExpr:
2189                                 _outRowCompareExpr(str, obj);
2190                                 break;
2191                         case T_CoalesceExpr:
2192                                 _outCoalesceExpr(str, obj);
2193                                 break;
2194                         case T_MinMaxExpr:
2195                                 _outMinMaxExpr(str, obj);
2196                                 break;
2197                         case T_XmlExpr:
2198                                 _outXmlExpr(str, obj);
2199                                 break;
2200                         case T_NullIfExpr:
2201                                 _outNullIfExpr(str, obj);
2202                                 break;
2203                         case T_NullTest:
2204                                 _outNullTest(str, obj);
2205                                 break;
2206                         case T_BooleanTest:
2207                                 _outBooleanTest(str, obj);
2208                                 break;
2209                         case T_CoerceToDomain:
2210                                 _outCoerceToDomain(str, obj);
2211                                 break;
2212                         case T_CoerceToDomainValue:
2213                                 _outCoerceToDomainValue(str, obj);
2214                                 break;
2215                         case T_SetToDefault:
2216                                 _outSetToDefault(str, obj);
2217                                 break;
2218                         case T_TargetEntry:
2219                                 _outTargetEntry(str, obj);
2220                                 break;
2221                         case T_RangeTblRef:
2222                                 _outRangeTblRef(str, obj);
2223                                 break;
2224                         case T_JoinExpr:
2225                                 _outJoinExpr(str, obj);
2226                                 break;
2227                         case T_FromExpr:
2228                                 _outFromExpr(str, obj);
2229                                 break;
2230
2231                         case T_Path:
2232                                 _outPath(str, obj);
2233                                 break;
2234                         case T_IndexPath:
2235                                 _outIndexPath(str, obj);
2236                                 break;
2237                         case T_BitmapHeapPath:
2238                                 _outBitmapHeapPath(str, obj);
2239                                 break;
2240                         case T_BitmapAndPath:
2241                                 _outBitmapAndPath(str, obj);
2242                                 break;
2243                         case T_BitmapOrPath:
2244                                 _outBitmapOrPath(str, obj);
2245                                 break;
2246                         case T_TidPath:
2247                                 _outTidPath(str, obj);
2248                                 break;
2249                         case T_AppendPath:
2250                                 _outAppendPath(str, obj);
2251                                 break;
2252                         case T_ResultPath:
2253                                 _outResultPath(str, obj);
2254                                 break;
2255                         case T_MaterialPath:
2256                                 _outMaterialPath(str, obj);
2257                                 break;
2258                         case T_UniquePath:
2259                                 _outUniquePath(str, obj);
2260                                 break;
2261                         case T_NestPath:
2262                                 _outNestPath(str, obj);
2263                                 break;
2264                         case T_MergePath:
2265                                 _outMergePath(str, obj);
2266                                 break;
2267                         case T_HashPath:
2268                                 _outHashPath(str, obj);
2269                                 break;
2270                         case T_PlannerGlobal:
2271                                 _outPlannerGlobal(str, obj);
2272                                 break;
2273                         case T_PlannerInfo:
2274                                 _outPlannerInfo(str, obj);
2275                                 break;
2276                         case T_RelOptInfo:
2277                                 _outRelOptInfo(str, obj);
2278                                 break;
2279                         case T_IndexOptInfo:
2280                                 _outIndexOptInfo(str, obj);
2281                                 break;
2282                         case T_EquivalenceClass:
2283                                 _outEquivalenceClass(str, obj);
2284                                 break;
2285                         case T_EquivalenceMember:
2286                                 _outEquivalenceMember(str, obj);
2287                                 break;
2288                         case T_PathKey:
2289                                 _outPathKey(str, obj);
2290                                 break;
2291                         case T_RestrictInfo:
2292                                 _outRestrictInfo(str, obj);
2293                                 break;
2294                         case T_InnerIndexscanInfo:
2295                                 _outInnerIndexscanInfo(str, obj);
2296                                 break;
2297                         case T_OuterJoinInfo:
2298                                 _outOuterJoinInfo(str, obj);
2299                                 break;
2300                         case T_InClauseInfo:
2301                                 _outInClauseInfo(str, obj);
2302                                 break;
2303                         case T_AppendRelInfo:
2304                                 _outAppendRelInfo(str, obj);
2305                                 break;
2306                         case T_PlannerParamItem:
2307                                 _outPlannerParamItem(str, obj);
2308                                 break;
2309
2310                         case T_CreateStmt:
2311                                 _outCreateStmt(str, obj);
2312                                 break;
2313                         case T_IndexStmt:
2314                                 _outIndexStmt(str, obj);
2315                                 break;
2316                         case T_NotifyStmt:
2317                                 _outNotifyStmt(str, obj);
2318                                 break;
2319                         case T_DeclareCursorStmt:
2320                                 _outDeclareCursorStmt(str, obj);
2321                                 break;
2322                         case T_SelectStmt:
2323                                 _outSelectStmt(str, obj);
2324                                 break;
2325                         case T_ColumnDef:
2326                                 _outColumnDef(str, obj);
2327                                 break;
2328                         case T_TypeName:
2329                                 _outTypeName(str, obj);
2330                                 break;
2331                         case T_TypeCast:
2332                                 _outTypeCast(str, obj);
2333                                 break;
2334                         case T_IndexElem:
2335                                 _outIndexElem(str, obj);
2336                                 break;
2337                         case T_Query:
2338                                 _outQuery(str, obj);
2339                                 break;
2340                         case T_SortClause:
2341                                 _outSortClause(str, obj);
2342                                 break;
2343                         case T_GroupClause:
2344                                 _outGroupClause(str, obj);
2345                                 break;
2346                         case T_RowMarkClause:
2347                                 _outRowMarkClause(str, obj);
2348                                 break;
2349                         case T_SetOperationStmt:
2350                                 _outSetOperationStmt(str, obj);
2351                                 break;
2352                         case T_RangeTblEntry:
2353                                 _outRangeTblEntry(str, obj);
2354                                 break;
2355                         case T_A_Expr:
2356                                 _outAExpr(str, obj);
2357                                 break;
2358                         case T_ColumnRef:
2359                                 _outColumnRef(str, obj);
2360                                 break;
2361                         case T_ParamRef:
2362                                 _outParamRef(str, obj);
2363                                 break;
2364                         case T_A_Const:
2365                                 _outAConst(str, obj);
2366                                 break;
2367                         case T_A_Indices:
2368                                 _outA_Indices(str, obj);
2369                                 break;
2370                         case T_A_Indirection:
2371                                 _outA_Indirection(str, obj);
2372                                 break;
2373                         case T_ResTarget:
2374                                 _outResTarget(str, obj);
2375                                 break;
2376                         case T_Constraint:
2377                                 _outConstraint(str, obj);
2378                                 break;
2379                         case T_FkConstraint:
2380                                 _outFkConstraint(str, obj);
2381                                 break;
2382                         case T_FuncCall:
2383                                 _outFuncCall(str, obj);
2384                                 break;
2385                         case T_DefElem:
2386                                 _outDefElem(str, obj);
2387                                 break;
2388                         case T_LockingClause:
2389                                 _outLockingClause(str, obj);
2390                                 break;
2391                         case T_XmlSerialize:
2392                                 _outXmlSerialize(str, obj);
2393                                 break;
2394
2395                         default:
2396
2397                                 /*
2398                                  * This should be an ERROR, but it's too useful to be able to
2399                                  * dump structures that _outNode only understands part of.
2400                                  */
2401                                 elog(WARNING, "could not dump unrecognized node type: %d",
2402                                          (int) nodeTag(obj));
2403                                 break;
2404                 }
2405                 appendStringInfoChar(str, '}');
2406         }
2407 }
2408
2409 /*
2410  * nodeToString -
2411  *         returns the ascii representation of the Node as a palloc'd string
2412  */
2413 char *
2414 nodeToString(void *obj)
2415 {
2416         StringInfoData str;
2417
2418         /* see stringinfo.h for an explanation of this maneuver */
2419         initStringInfo(&str);
2420         _outNode(&str, obj);
2421         return str.data;
2422 }