]> granicus.if.org Git - postgresql/blob - src/backend/nodes/outfuncs.c
Modify processing of DECLARE CURSOR and EXPLAIN so that they can resolve the
[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.306 2007/04/27 22:05:47 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(best_innerpath);
1444 }
1445
1446 static void
1447 _outOuterJoinInfo(StringInfo str, OuterJoinInfo *node)
1448 {
1449         WRITE_NODE_TYPE("OUTERJOININFO");
1450
1451         WRITE_BITMAPSET_FIELD(min_lefthand);
1452         WRITE_BITMAPSET_FIELD(min_righthand);
1453         WRITE_BOOL_FIELD(is_full_join);
1454         WRITE_BOOL_FIELD(lhs_strict);
1455 }
1456
1457 static void
1458 _outInClauseInfo(StringInfo str, InClauseInfo *node)
1459 {
1460         WRITE_NODE_TYPE("INCLAUSEINFO");
1461
1462         WRITE_BITMAPSET_FIELD(lefthand);
1463         WRITE_BITMAPSET_FIELD(righthand);
1464         WRITE_NODE_FIELD(sub_targetlist);
1465         WRITE_NODE_FIELD(in_operators);
1466 }
1467
1468 static void
1469 _outAppendRelInfo(StringInfo str, AppendRelInfo *node)
1470 {
1471         WRITE_NODE_TYPE("APPENDRELINFO");
1472
1473         WRITE_UINT_FIELD(parent_relid);
1474         WRITE_UINT_FIELD(child_relid);
1475         WRITE_OID_FIELD(parent_reltype);
1476         WRITE_OID_FIELD(child_reltype);
1477         WRITE_NODE_FIELD(col_mappings);
1478         WRITE_NODE_FIELD(translated_vars);
1479         WRITE_OID_FIELD(parent_reloid);
1480 }
1481
1482 static void
1483 _outPlannerParamItem(StringInfo str, PlannerParamItem *node)
1484 {
1485         WRITE_NODE_TYPE("PLANNERPARAMITEM");
1486
1487         WRITE_NODE_FIELD(item);
1488         WRITE_UINT_FIELD(abslevel);
1489 }
1490
1491 /*****************************************************************************
1492  *
1493  *      Stuff from parsenodes.h.
1494  *
1495  *****************************************************************************/
1496
1497 static void
1498 _outCreateStmt(StringInfo str, CreateStmt *node)
1499 {
1500         WRITE_NODE_TYPE("CREATESTMT");
1501
1502         WRITE_NODE_FIELD(relation);
1503         WRITE_NODE_FIELD(tableElts);
1504         WRITE_NODE_FIELD(inhRelations);
1505         WRITE_NODE_FIELD(constraints);
1506         WRITE_NODE_FIELD(options);
1507         WRITE_ENUM_FIELD(oncommit, OnCommitAction);
1508         WRITE_STRING_FIELD(tablespacename);
1509 }
1510
1511 static void
1512 _outIndexStmt(StringInfo str, IndexStmt *node)
1513 {
1514         WRITE_NODE_TYPE("INDEXSTMT");
1515
1516         WRITE_STRING_FIELD(idxname);
1517         WRITE_NODE_FIELD(relation);
1518         WRITE_STRING_FIELD(accessMethod);
1519         WRITE_STRING_FIELD(tableSpace);
1520         WRITE_NODE_FIELD(indexParams);
1521         WRITE_NODE_FIELD(options);
1522         WRITE_NODE_FIELD(whereClause);
1523         WRITE_BOOL_FIELD(unique);
1524         WRITE_BOOL_FIELD(primary);
1525         WRITE_BOOL_FIELD(isconstraint);
1526         WRITE_BOOL_FIELD(concurrent);
1527 }
1528
1529 static void
1530 _outNotifyStmt(StringInfo str, NotifyStmt *node)
1531 {
1532         WRITE_NODE_TYPE("NOTIFY");
1533
1534         WRITE_NODE_FIELD(relation);
1535 }
1536
1537 static void
1538 _outDeclareCursorStmt(StringInfo str, DeclareCursorStmt *node)
1539 {
1540         WRITE_NODE_TYPE("DECLARECURSOR");
1541
1542         WRITE_STRING_FIELD(portalname);
1543         WRITE_INT_FIELD(options);
1544         WRITE_NODE_FIELD(query);
1545 }
1546
1547 static void
1548 _outSelectStmt(StringInfo str, SelectStmt *node)
1549 {
1550         WRITE_NODE_TYPE("SELECT");
1551
1552         WRITE_NODE_FIELD(distinctClause);
1553         WRITE_NODE_FIELD(intoClause);
1554         WRITE_NODE_FIELD(targetList);
1555         WRITE_NODE_FIELD(fromClause);
1556         WRITE_NODE_FIELD(whereClause);
1557         WRITE_NODE_FIELD(groupClause);
1558         WRITE_NODE_FIELD(havingClause);
1559         WRITE_NODE_FIELD(valuesLists);
1560         WRITE_NODE_FIELD(sortClause);
1561         WRITE_NODE_FIELD(limitOffset);
1562         WRITE_NODE_FIELD(limitCount);
1563         WRITE_NODE_FIELD(lockingClause);
1564         WRITE_ENUM_FIELD(op, SetOperation);
1565         WRITE_BOOL_FIELD(all);
1566         WRITE_NODE_FIELD(larg);
1567         WRITE_NODE_FIELD(rarg);
1568 }
1569
1570 static void
1571 _outFuncCall(StringInfo str, FuncCall *node)
1572 {
1573         WRITE_NODE_TYPE("FUNCCALL");
1574
1575         WRITE_NODE_FIELD(funcname);
1576         WRITE_NODE_FIELD(args);
1577         WRITE_BOOL_FIELD(agg_star);
1578         WRITE_BOOL_FIELD(agg_distinct);
1579         WRITE_INT_FIELD(location);
1580 }
1581
1582 static void
1583 _outDefElem(StringInfo str, DefElem *node)
1584 {
1585         WRITE_NODE_TYPE("DEFELEM");
1586
1587         WRITE_STRING_FIELD(defname);
1588         WRITE_NODE_FIELD(arg);
1589 }
1590
1591 static void
1592 _outLockingClause(StringInfo str, LockingClause *node)
1593 {
1594         WRITE_NODE_TYPE("LOCKINGCLAUSE");
1595
1596         WRITE_NODE_FIELD(lockedRels);
1597         WRITE_BOOL_FIELD(forUpdate);
1598         WRITE_BOOL_FIELD(noWait);
1599 }
1600
1601 static void
1602 _outXmlSerialize(StringInfo str, XmlSerialize *node)
1603 {
1604         WRITE_NODE_TYPE("XMLSERIALIZE");
1605
1606         WRITE_ENUM_FIELD(xmloption, XmlOptionType);
1607         WRITE_NODE_FIELD(expr);
1608         WRITE_NODE_FIELD(typename);
1609 }
1610
1611 static void
1612 _outColumnDef(StringInfo str, ColumnDef *node)
1613 {
1614         WRITE_NODE_TYPE("COLUMNDEF");
1615
1616         WRITE_STRING_FIELD(colname);
1617         WRITE_NODE_FIELD(typename);
1618         WRITE_INT_FIELD(inhcount);
1619         WRITE_BOOL_FIELD(is_local);
1620         WRITE_BOOL_FIELD(is_not_null);
1621         WRITE_NODE_FIELD(raw_default);
1622         WRITE_STRING_FIELD(cooked_default);
1623         WRITE_NODE_FIELD(constraints);
1624 }
1625
1626 static void
1627 _outTypeName(StringInfo str, TypeName *node)
1628 {
1629         WRITE_NODE_TYPE("TYPENAME");
1630
1631         WRITE_NODE_FIELD(names);
1632         WRITE_OID_FIELD(typeid);
1633         WRITE_BOOL_FIELD(timezone);
1634         WRITE_BOOL_FIELD(setof);
1635         WRITE_BOOL_FIELD(pct_type);
1636         WRITE_NODE_FIELD(typmods);
1637         WRITE_INT_FIELD(typemod);
1638         WRITE_NODE_FIELD(arrayBounds);
1639         WRITE_INT_FIELD(location);
1640 }
1641
1642 static void
1643 _outTypeCast(StringInfo str, TypeCast *node)
1644 {
1645         WRITE_NODE_TYPE("TYPECAST");
1646
1647         WRITE_NODE_FIELD(arg);
1648         WRITE_NODE_FIELD(typename);
1649 }
1650
1651 static void
1652 _outIndexElem(StringInfo str, IndexElem *node)
1653 {
1654         WRITE_NODE_TYPE("INDEXELEM");
1655
1656         WRITE_STRING_FIELD(name);
1657         WRITE_NODE_FIELD(expr);
1658         WRITE_NODE_FIELD(opclass);
1659         WRITE_ENUM_FIELD(ordering, SortByDir);
1660         WRITE_ENUM_FIELD(nulls_ordering, SortByNulls);
1661 }
1662
1663 static void
1664 _outQuery(StringInfo str, Query *node)
1665 {
1666         WRITE_NODE_TYPE("QUERY");
1667
1668         WRITE_ENUM_FIELD(commandType, CmdType);
1669         WRITE_ENUM_FIELD(querySource, QuerySource);
1670         WRITE_BOOL_FIELD(canSetTag);
1671
1672         /*
1673          * Hack to work around missing outfuncs routines for a lot of the
1674          * utility-statement node types.  (The only one we actually *need* for
1675          * rules support is NotifyStmt.)  Someday we ought to support 'em all, but
1676          * for the meantime do this to avoid getting lots of warnings when running
1677          * with debug_print_parse on.
1678          */
1679         if (node->utilityStmt)
1680         {
1681                 switch (nodeTag(node->utilityStmt))
1682                 {
1683                         case T_CreateStmt:
1684                         case T_IndexStmt:
1685                         case T_NotifyStmt:
1686                         case T_DeclareCursorStmt:
1687                                 WRITE_NODE_FIELD(utilityStmt);
1688                                 break;
1689                         default:
1690                                 appendStringInfo(str, " :utilityStmt ?");
1691                                 break;
1692                 }
1693         }
1694         else
1695                 appendStringInfo(str, " :utilityStmt <>");
1696
1697         WRITE_INT_FIELD(resultRelation);
1698         WRITE_NODE_FIELD(intoClause);
1699         WRITE_BOOL_FIELD(hasAggs);
1700         WRITE_BOOL_FIELD(hasSubLinks);
1701         WRITE_NODE_FIELD(rtable);
1702         WRITE_NODE_FIELD(jointree);
1703         WRITE_NODE_FIELD(targetList);
1704         WRITE_NODE_FIELD(returningList);
1705         WRITE_NODE_FIELD(groupClause);
1706         WRITE_NODE_FIELD(havingQual);
1707         WRITE_NODE_FIELD(distinctClause);
1708         WRITE_NODE_FIELD(sortClause);
1709         WRITE_NODE_FIELD(limitOffset);
1710         WRITE_NODE_FIELD(limitCount);
1711         WRITE_NODE_FIELD(rowMarks);
1712         WRITE_NODE_FIELD(setOperations);
1713 }
1714
1715 static void
1716 _outSortClause(StringInfo str, SortClause *node)
1717 {
1718         WRITE_NODE_TYPE("SORTCLAUSE");
1719
1720         WRITE_UINT_FIELD(tleSortGroupRef);
1721         WRITE_OID_FIELD(sortop);
1722         WRITE_BOOL_FIELD(nulls_first);
1723 }
1724
1725 static void
1726 _outGroupClause(StringInfo str, GroupClause *node)
1727 {
1728         WRITE_NODE_TYPE("GROUPCLAUSE");
1729
1730         WRITE_UINT_FIELD(tleSortGroupRef);
1731         WRITE_OID_FIELD(sortop);
1732         WRITE_BOOL_FIELD(nulls_first);
1733 }
1734
1735 static void
1736 _outRowMarkClause(StringInfo str, RowMarkClause *node)
1737 {
1738         WRITE_NODE_TYPE("ROWMARKCLAUSE");
1739
1740         WRITE_UINT_FIELD(rti);
1741         WRITE_BOOL_FIELD(forUpdate);
1742         WRITE_BOOL_FIELD(noWait);
1743 }
1744
1745 static void
1746 _outSetOperationStmt(StringInfo str, SetOperationStmt *node)
1747 {
1748         WRITE_NODE_TYPE("SETOPERATIONSTMT");
1749
1750         WRITE_ENUM_FIELD(op, SetOperation);
1751         WRITE_BOOL_FIELD(all);
1752         WRITE_NODE_FIELD(larg);
1753         WRITE_NODE_FIELD(rarg);
1754         WRITE_NODE_FIELD(colTypes);
1755         WRITE_NODE_FIELD(colTypmods);
1756 }
1757
1758 static void
1759 _outRangeTblEntry(StringInfo str, RangeTblEntry *node)
1760 {
1761         WRITE_NODE_TYPE("RTE");
1762
1763         /* put alias + eref first to make dump more legible */
1764         WRITE_NODE_FIELD(alias);
1765         WRITE_NODE_FIELD(eref);
1766         WRITE_ENUM_FIELD(rtekind, RTEKind);
1767
1768         switch (node->rtekind)
1769         {
1770                 case RTE_RELATION:
1771                 case RTE_SPECIAL:
1772                         WRITE_OID_FIELD(relid);
1773                         break;
1774                 case RTE_SUBQUERY:
1775                         WRITE_NODE_FIELD(subquery);
1776                         break;
1777                 case RTE_FUNCTION:
1778                         WRITE_NODE_FIELD(funcexpr);
1779                         WRITE_NODE_FIELD(funccoltypes);
1780                         WRITE_NODE_FIELD(funccoltypmods);
1781                         break;
1782                 case RTE_VALUES:
1783                         WRITE_NODE_FIELD(values_lists);
1784                         break;
1785                 case RTE_JOIN:
1786                         WRITE_ENUM_FIELD(jointype, JoinType);
1787                         WRITE_NODE_FIELD(joinaliasvars);
1788                         break;
1789                 default:
1790                         elog(ERROR, "unrecognized RTE kind: %d", (int) node->rtekind);
1791                         break;
1792         }
1793
1794         WRITE_BOOL_FIELD(inh);
1795         WRITE_BOOL_FIELD(inFromCl);
1796         WRITE_UINT_FIELD(requiredPerms);
1797         WRITE_OID_FIELD(checkAsUser);
1798 }
1799
1800 static void
1801 _outAExpr(StringInfo str, A_Expr *node)
1802 {
1803         WRITE_NODE_TYPE("AEXPR");
1804
1805         switch (node->kind)
1806         {
1807                 case AEXPR_OP:
1808                         appendStringInfo(str, " ");
1809                         WRITE_NODE_FIELD(name);
1810                         break;
1811                 case AEXPR_AND:
1812                         appendStringInfo(str, " AND");
1813                         break;
1814                 case AEXPR_OR:
1815                         appendStringInfo(str, " OR");
1816                         break;
1817                 case AEXPR_NOT:
1818                         appendStringInfo(str, " NOT");
1819                         break;
1820                 case AEXPR_OP_ANY:
1821                         appendStringInfo(str, " ");
1822                         WRITE_NODE_FIELD(name);
1823                         appendStringInfo(str, " ANY ");
1824                         break;
1825                 case AEXPR_OP_ALL:
1826                         appendStringInfo(str, " ");
1827                         WRITE_NODE_FIELD(name);
1828                         appendStringInfo(str, " ALL ");
1829                         break;
1830                 case AEXPR_DISTINCT:
1831                         appendStringInfo(str, " DISTINCT ");
1832                         WRITE_NODE_FIELD(name);
1833                         break;
1834                 case AEXPR_NULLIF:
1835                         appendStringInfo(str, " NULLIF ");
1836                         WRITE_NODE_FIELD(name);
1837                         break;
1838                 case AEXPR_OF:
1839                         appendStringInfo(str, " OF ");
1840                         WRITE_NODE_FIELD(name);
1841                         break;
1842                 case AEXPR_IN:
1843                         appendStringInfo(str, " IN ");
1844                         WRITE_NODE_FIELD(name);
1845                         break;
1846                 default:
1847                         appendStringInfo(str, " ??");
1848                         break;
1849         }
1850
1851         WRITE_NODE_FIELD(lexpr);
1852         WRITE_NODE_FIELD(rexpr);
1853         WRITE_INT_FIELD(location);
1854 }
1855
1856 static void
1857 _outValue(StringInfo str, Value *value)
1858 {
1859         switch (value->type)
1860         {
1861                 case T_Integer:
1862                         appendStringInfo(str, "%ld", value->val.ival);
1863                         break;
1864                 case T_Float:
1865
1866                         /*
1867                          * We assume the value is a valid numeric literal and so does not
1868                          * need quoting.
1869                          */
1870                         appendStringInfoString(str, value->val.str);
1871                         break;
1872                 case T_String:
1873                         appendStringInfoChar(str, '"');
1874                         _outToken(str, value->val.str);
1875                         appendStringInfoChar(str, '"');
1876                         break;
1877                 case T_BitString:
1878                         /* internal representation already has leading 'b' */
1879                         appendStringInfoString(str, value->val.str);
1880                         break;
1881                 default:
1882                         elog(ERROR, "unrecognized node type: %d", (int) value->type);
1883                         break;
1884         }
1885 }
1886
1887 static void
1888 _outColumnRef(StringInfo str, ColumnRef *node)
1889 {
1890         WRITE_NODE_TYPE("COLUMNREF");
1891
1892         WRITE_NODE_FIELD(fields);
1893         WRITE_INT_FIELD(location);
1894 }
1895
1896 static void
1897 _outParamRef(StringInfo str, ParamRef *node)
1898 {
1899         WRITE_NODE_TYPE("PARAMREF");
1900
1901         WRITE_INT_FIELD(number);
1902 }
1903
1904 static void
1905 _outAConst(StringInfo str, A_Const *node)
1906 {
1907         WRITE_NODE_TYPE("A_CONST");
1908
1909         appendStringInfo(str, " :val ");
1910         _outValue(str, &(node->val));
1911         WRITE_NODE_FIELD(typename);
1912 }
1913
1914 static void
1915 _outA_Indices(StringInfo str, A_Indices *node)
1916 {
1917         WRITE_NODE_TYPE("A_INDICES");
1918
1919         WRITE_NODE_FIELD(lidx);
1920         WRITE_NODE_FIELD(uidx);
1921 }
1922
1923 static void
1924 _outA_Indirection(StringInfo str, A_Indirection *node)
1925 {
1926         WRITE_NODE_TYPE("A_INDIRECTION");
1927
1928         WRITE_NODE_FIELD(arg);
1929         WRITE_NODE_FIELD(indirection);
1930 }
1931
1932 static void
1933 _outResTarget(StringInfo str, ResTarget *node)
1934 {
1935         WRITE_NODE_TYPE("RESTARGET");
1936
1937         WRITE_STRING_FIELD(name);
1938         WRITE_NODE_FIELD(indirection);
1939         WRITE_NODE_FIELD(val);
1940         WRITE_INT_FIELD(location);
1941 }
1942
1943 static void
1944 _outConstraint(StringInfo str, Constraint *node)
1945 {
1946         WRITE_NODE_TYPE("CONSTRAINT");
1947
1948         WRITE_STRING_FIELD(name);
1949
1950         appendStringInfo(str, " :contype ");
1951         switch (node->contype)
1952         {
1953                 case CONSTR_PRIMARY:
1954                         appendStringInfo(str, "PRIMARY_KEY");
1955                         WRITE_NODE_FIELD(keys);
1956                         WRITE_NODE_FIELD(options);
1957                         WRITE_STRING_FIELD(indexspace);
1958                         break;
1959
1960                 case CONSTR_UNIQUE:
1961                         appendStringInfo(str, "UNIQUE");
1962                         WRITE_NODE_FIELD(keys);
1963                         WRITE_NODE_FIELD(options);
1964                         WRITE_STRING_FIELD(indexspace);
1965                         break;
1966
1967                 case CONSTR_CHECK:
1968                         appendStringInfo(str, "CHECK");
1969                         WRITE_NODE_FIELD(raw_expr);
1970                         WRITE_STRING_FIELD(cooked_expr);
1971                         break;
1972
1973                 case CONSTR_DEFAULT:
1974                         appendStringInfo(str, "DEFAULT");
1975                         WRITE_NODE_FIELD(raw_expr);
1976                         WRITE_STRING_FIELD(cooked_expr);
1977                         break;
1978
1979                 case CONSTR_NOTNULL:
1980                         appendStringInfo(str, "NOT_NULL");
1981                         break;
1982
1983                 default:
1984                         appendStringInfo(str, "<unrecognized_constraint>");
1985                         break;
1986         }
1987 }
1988
1989 static void
1990 _outFkConstraint(StringInfo str, FkConstraint *node)
1991 {
1992         WRITE_NODE_TYPE("FKCONSTRAINT");
1993
1994         WRITE_STRING_FIELD(constr_name);
1995         WRITE_NODE_FIELD(pktable);
1996         WRITE_NODE_FIELD(fk_attrs);
1997         WRITE_NODE_FIELD(pk_attrs);
1998         WRITE_CHAR_FIELD(fk_matchtype);
1999         WRITE_CHAR_FIELD(fk_upd_action);
2000         WRITE_CHAR_FIELD(fk_del_action);
2001         WRITE_BOOL_FIELD(deferrable);
2002         WRITE_BOOL_FIELD(initdeferred);
2003         WRITE_BOOL_FIELD(skip_validation);
2004 }
2005
2006
2007 /*
2008  * _outNode -
2009  *        converts a Node into ascii string and append it to 'str'
2010  */
2011 static void
2012 _outNode(StringInfo str, void *obj)
2013 {
2014         if (obj == NULL)
2015                 appendStringInfo(str, "<>");
2016         else if (IsA(obj, List) ||IsA(obj, IntList) || IsA(obj, OidList))
2017                 _outList(str, obj);
2018         else if (IsA(obj, Integer) ||
2019                          IsA(obj, Float) ||
2020                          IsA(obj, String) ||
2021                          IsA(obj, BitString))
2022         {
2023                 /* nodeRead does not want to see { } around these! */
2024                 _outValue(str, obj);
2025         }
2026         else
2027         {
2028                 appendStringInfoChar(str, '{');
2029                 switch (nodeTag(obj))
2030                 {
2031                         case T_PlannedStmt:
2032                                 _outPlannedStmt(str, obj);
2033                                 break;
2034                         case T_Plan:
2035                                 _outPlan(str, obj);
2036                                 break;
2037                         case T_Result:
2038                                 _outResult(str, obj);
2039                                 break;
2040                         case T_Append:
2041                                 _outAppend(str, obj);
2042                                 break;
2043                         case T_BitmapAnd:
2044                                 _outBitmapAnd(str, obj);
2045                                 break;
2046                         case T_BitmapOr:
2047                                 _outBitmapOr(str, obj);
2048                                 break;
2049                         case T_Scan:
2050                                 _outScan(str, obj);
2051                                 break;
2052                         case T_SeqScan:
2053                                 _outSeqScan(str, obj);
2054                                 break;
2055                         case T_IndexScan:
2056                                 _outIndexScan(str, obj);
2057                                 break;
2058                         case T_BitmapIndexScan:
2059                                 _outBitmapIndexScan(str, obj);
2060                                 break;
2061                         case T_BitmapHeapScan:
2062                                 _outBitmapHeapScan(str, obj);
2063                                 break;
2064                         case T_TidScan:
2065                                 _outTidScan(str, obj);
2066                                 break;
2067                         case T_SubqueryScan:
2068                                 _outSubqueryScan(str, obj);
2069                                 break;
2070                         case T_FunctionScan:
2071                                 _outFunctionScan(str, obj);
2072                                 break;
2073                         case T_ValuesScan:
2074                                 _outValuesScan(str, obj);
2075                                 break;
2076                         case T_Join:
2077                                 _outJoin(str, obj);
2078                                 break;
2079                         case T_NestLoop:
2080                                 _outNestLoop(str, obj);
2081                                 break;
2082                         case T_MergeJoin:
2083                                 _outMergeJoin(str, obj);
2084                                 break;
2085                         case T_HashJoin:
2086                                 _outHashJoin(str, obj);
2087                                 break;
2088                         case T_Agg:
2089                                 _outAgg(str, obj);
2090                                 break;
2091                         case T_Group:
2092                                 _outGroup(str, obj);
2093                                 break;
2094                         case T_Material:
2095                                 _outMaterial(str, obj);
2096                                 break;
2097                         case T_Sort:
2098                                 _outSort(str, obj);
2099                                 break;
2100                         case T_Unique:
2101                                 _outUnique(str, obj);
2102                                 break;
2103                         case T_SetOp:
2104                                 _outSetOp(str, obj);
2105                                 break;
2106                         case T_Limit:
2107                                 _outLimit(str, obj);
2108                                 break;
2109                         case T_Hash:
2110                                 _outHash(str, obj);
2111                                 break;
2112                         case T_Alias:
2113                                 _outAlias(str, obj);
2114                                 break;
2115                         case T_RangeVar:
2116                                 _outRangeVar(str, obj);
2117                                 break;
2118                         case T_IntoClause:
2119                                 _outIntoClause(str, obj);
2120                                 break;
2121                         case T_Var:
2122                                 _outVar(str, obj);
2123                                 break;
2124                         case T_Const:
2125                                 _outConst(str, obj);
2126                                 break;
2127                         case T_Param:
2128                                 _outParam(str, obj);
2129                                 break;
2130                         case T_Aggref:
2131                                 _outAggref(str, obj);
2132                                 break;
2133                         case T_ArrayRef:
2134                                 _outArrayRef(str, obj);
2135                                 break;
2136                         case T_FuncExpr:
2137                                 _outFuncExpr(str, obj);
2138                                 break;
2139                         case T_OpExpr:
2140                                 _outOpExpr(str, obj);
2141                                 break;
2142                         case T_DistinctExpr:
2143                                 _outDistinctExpr(str, obj);
2144                                 break;
2145                         case T_ScalarArrayOpExpr:
2146                                 _outScalarArrayOpExpr(str, obj);
2147                                 break;
2148                         case T_BoolExpr:
2149                                 _outBoolExpr(str, obj);
2150                                 break;
2151                         case T_SubLink:
2152                                 _outSubLink(str, obj);
2153                                 break;
2154                         case T_SubPlan:
2155                                 _outSubPlan(str, obj);
2156                                 break;
2157                         case T_FieldSelect:
2158                                 _outFieldSelect(str, obj);
2159                                 break;
2160                         case T_FieldStore:
2161                                 _outFieldStore(str, obj);
2162                                 break;
2163                         case T_RelabelType:
2164                                 _outRelabelType(str, obj);
2165                                 break;
2166                         case T_ArrayCoerceExpr:
2167                                 _outArrayCoerceExpr(str, obj);
2168                                 break;
2169                         case T_ConvertRowtypeExpr:
2170                                 _outConvertRowtypeExpr(str, obj);
2171                                 break;
2172                         case T_CaseExpr:
2173                                 _outCaseExpr(str, obj);
2174                                 break;
2175                         case T_CaseWhen:
2176                                 _outCaseWhen(str, obj);
2177                                 break;
2178                         case T_CaseTestExpr:
2179                                 _outCaseTestExpr(str, obj);
2180                                 break;
2181                         case T_ArrayExpr:
2182                                 _outArrayExpr(str, obj);
2183                                 break;
2184                         case T_RowExpr:
2185                                 _outRowExpr(str, obj);
2186                                 break;
2187                         case T_RowCompareExpr:
2188                                 _outRowCompareExpr(str, obj);
2189                                 break;
2190                         case T_CoalesceExpr:
2191                                 _outCoalesceExpr(str, obj);
2192                                 break;
2193                         case T_MinMaxExpr:
2194                                 _outMinMaxExpr(str, obj);
2195                                 break;
2196                         case T_XmlExpr:
2197                                 _outXmlExpr(str, obj);
2198                                 break;
2199                         case T_NullIfExpr:
2200                                 _outNullIfExpr(str, obj);
2201                                 break;
2202                         case T_NullTest:
2203                                 _outNullTest(str, obj);
2204                                 break;
2205                         case T_BooleanTest:
2206                                 _outBooleanTest(str, obj);
2207                                 break;
2208                         case T_CoerceToDomain:
2209                                 _outCoerceToDomain(str, obj);
2210                                 break;
2211                         case T_CoerceToDomainValue:
2212                                 _outCoerceToDomainValue(str, obj);
2213                                 break;
2214                         case T_SetToDefault:
2215                                 _outSetToDefault(str, obj);
2216                                 break;
2217                         case T_TargetEntry:
2218                                 _outTargetEntry(str, obj);
2219                                 break;
2220                         case T_RangeTblRef:
2221                                 _outRangeTblRef(str, obj);
2222                                 break;
2223                         case T_JoinExpr:
2224                                 _outJoinExpr(str, obj);
2225                                 break;
2226                         case T_FromExpr:
2227                                 _outFromExpr(str, obj);
2228                                 break;
2229
2230                         case T_Path:
2231                                 _outPath(str, obj);
2232                                 break;
2233                         case T_IndexPath:
2234                                 _outIndexPath(str, obj);
2235                                 break;
2236                         case T_BitmapHeapPath:
2237                                 _outBitmapHeapPath(str, obj);
2238                                 break;
2239                         case T_BitmapAndPath:
2240                                 _outBitmapAndPath(str, obj);
2241                                 break;
2242                         case T_BitmapOrPath:
2243                                 _outBitmapOrPath(str, obj);
2244                                 break;
2245                         case T_TidPath:
2246                                 _outTidPath(str, obj);
2247                                 break;
2248                         case T_AppendPath:
2249                                 _outAppendPath(str, obj);
2250                                 break;
2251                         case T_ResultPath:
2252                                 _outResultPath(str, obj);
2253                                 break;
2254                         case T_MaterialPath:
2255                                 _outMaterialPath(str, obj);
2256                                 break;
2257                         case T_UniquePath:
2258                                 _outUniquePath(str, obj);
2259                                 break;
2260                         case T_NestPath:
2261                                 _outNestPath(str, obj);
2262                                 break;
2263                         case T_MergePath:
2264                                 _outMergePath(str, obj);
2265                                 break;
2266                         case T_HashPath:
2267                                 _outHashPath(str, obj);
2268                                 break;
2269                         case T_PlannerGlobal:
2270                                 _outPlannerGlobal(str, obj);
2271                                 break;
2272                         case T_PlannerInfo:
2273                                 _outPlannerInfo(str, obj);
2274                                 break;
2275                         case T_RelOptInfo:
2276                                 _outRelOptInfo(str, obj);
2277                                 break;
2278                         case T_IndexOptInfo:
2279                                 _outIndexOptInfo(str, obj);
2280                                 break;
2281                         case T_EquivalenceClass:
2282                                 _outEquivalenceClass(str, obj);
2283                                 break;
2284                         case T_EquivalenceMember:
2285                                 _outEquivalenceMember(str, obj);
2286                                 break;
2287                         case T_PathKey:
2288                                 _outPathKey(str, obj);
2289                                 break;
2290                         case T_RestrictInfo:
2291                                 _outRestrictInfo(str, obj);
2292                                 break;
2293                         case T_InnerIndexscanInfo:
2294                                 _outInnerIndexscanInfo(str, obj);
2295                                 break;
2296                         case T_OuterJoinInfo:
2297                                 _outOuterJoinInfo(str, obj);
2298                                 break;
2299                         case T_InClauseInfo:
2300                                 _outInClauseInfo(str, obj);
2301                                 break;
2302                         case T_AppendRelInfo:
2303                                 _outAppendRelInfo(str, obj);
2304                                 break;
2305                         case T_PlannerParamItem:
2306                                 _outPlannerParamItem(str, obj);
2307                                 break;
2308
2309                         case T_CreateStmt:
2310                                 _outCreateStmt(str, obj);
2311                                 break;
2312                         case T_IndexStmt:
2313                                 _outIndexStmt(str, obj);
2314                                 break;
2315                         case T_NotifyStmt:
2316                                 _outNotifyStmt(str, obj);
2317                                 break;
2318                         case T_DeclareCursorStmt:
2319                                 _outDeclareCursorStmt(str, obj);
2320                                 break;
2321                         case T_SelectStmt:
2322                                 _outSelectStmt(str, obj);
2323                                 break;
2324                         case T_ColumnDef:
2325                                 _outColumnDef(str, obj);
2326                                 break;
2327                         case T_TypeName:
2328                                 _outTypeName(str, obj);
2329                                 break;
2330                         case T_TypeCast:
2331                                 _outTypeCast(str, obj);
2332                                 break;
2333                         case T_IndexElem:
2334                                 _outIndexElem(str, obj);
2335                                 break;
2336                         case T_Query:
2337                                 _outQuery(str, obj);
2338                                 break;
2339                         case T_SortClause:
2340                                 _outSortClause(str, obj);
2341                                 break;
2342                         case T_GroupClause:
2343                                 _outGroupClause(str, obj);
2344                                 break;
2345                         case T_RowMarkClause:
2346                                 _outRowMarkClause(str, obj);
2347                                 break;
2348                         case T_SetOperationStmt:
2349                                 _outSetOperationStmt(str, obj);
2350                                 break;
2351                         case T_RangeTblEntry:
2352                                 _outRangeTblEntry(str, obj);
2353                                 break;
2354                         case T_A_Expr:
2355                                 _outAExpr(str, obj);
2356                                 break;
2357                         case T_ColumnRef:
2358                                 _outColumnRef(str, obj);
2359                                 break;
2360                         case T_ParamRef:
2361                                 _outParamRef(str, obj);
2362                                 break;
2363                         case T_A_Const:
2364                                 _outAConst(str, obj);
2365                                 break;
2366                         case T_A_Indices:
2367                                 _outA_Indices(str, obj);
2368                                 break;
2369                         case T_A_Indirection:
2370                                 _outA_Indirection(str, obj);
2371                                 break;
2372                         case T_ResTarget:
2373                                 _outResTarget(str, obj);
2374                                 break;
2375                         case T_Constraint:
2376                                 _outConstraint(str, obj);
2377                                 break;
2378                         case T_FkConstraint:
2379                                 _outFkConstraint(str, obj);
2380                                 break;
2381                         case T_FuncCall:
2382                                 _outFuncCall(str, obj);
2383                                 break;
2384                         case T_DefElem:
2385                                 _outDefElem(str, obj);
2386                                 break;
2387                         case T_LockingClause:
2388                                 _outLockingClause(str, obj);
2389                                 break;
2390                         case T_XmlSerialize:
2391                                 _outXmlSerialize(str, obj);
2392                                 break;
2393
2394                         default:
2395
2396                                 /*
2397                                  * This should be an ERROR, but it's too useful to be able to
2398                                  * dump structures that _outNode only understands part of.
2399                                  */
2400                                 elog(WARNING, "could not dump unrecognized node type: %d",
2401                                          (int) nodeTag(obj));
2402                                 break;
2403                 }
2404                 appendStringInfoChar(str, '}');
2405         }
2406 }
2407
2408 /*
2409  * nodeToString -
2410  *         returns the ascii representation of the Node as a palloc'd string
2411  */
2412 char *
2413 nodeToString(void *obj)
2414 {
2415         StringInfoData str;
2416
2417         /* see stringinfo.h for an explanation of this maneuver */
2418         initStringInfo(&str);
2419         _outNode(&str, obj);
2420         return str.data;
2421 }