OSDN Git Service

Fix all known problems with pg_dump's handling of serial sequences
[pg-rex/syncrep.git] / src / backend / nodes / equalfuncs.c
1 /*-------------------------------------------------------------------------
2  *
3  * equalfuncs.c
4  *        Equality functions to compare node trees.
5  *
6  * NOTE: we currently support comparing all node types found in parse
7  * trees.  We do not support comparing executor state trees; there
8  * is no need for that, and no point in maintaining all the code that
9  * would be needed.  We also do not support comparing Path trees, mainly
10  * because the circular linkages between RelOptInfo and Path nodes can't
11  * be handled easily in a simple depth-first traversal.
12  *
13  * Currently, in fact, equal() doesn't know how to compare Plan trees
14  * either.      This might need to be fixed someday.
15  *
16  *
17  * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
18  * Portions Copyright (c) 1994, Regents of the University of California
19  *
20  * IDENTIFICATION
21  *        $PostgreSQL: pgsql/src/backend/nodes/equalfuncs.c,v 1.282 2006/08/21 00:57:24 tgl Exp $
22  *
23  *-------------------------------------------------------------------------
24  */
25
26 #include "postgres.h"
27
28 #include "nodes/relation.h"
29 #include "utils/datum.h"
30
31
32 /*
33  * Macros to simplify comparison of different kinds of fields.  Use these
34  * wherever possible to reduce the chance for silly typos.      Note that these
35  * hard-wire the convention that the local variables in an Equal routine are
36  * named 'a' and 'b'.
37  */
38
39 /* Compare a simple scalar field (int, float, bool, enum, etc) */
40 #define COMPARE_SCALAR_FIELD(fldname) \
41         do { \
42                 if (a->fldname != b->fldname) \
43                         return false; \
44         } while (0)
45
46 /* Compare a field that is a pointer to some kind of Node or Node tree */
47 #define COMPARE_NODE_FIELD(fldname) \
48         do { \
49                 if (!equal(a->fldname, b->fldname)) \
50                         return false; \
51         } while (0)
52
53 /* Compare a field that is a pointer to a Bitmapset */
54 #define COMPARE_BITMAPSET_FIELD(fldname) \
55         do { \
56                 if (!bms_equal(a->fldname, b->fldname)) \
57                         return false; \
58         } while (0)
59
60 /* Compare a field that is a pointer to a C string, or perhaps NULL */
61 #define COMPARE_STRING_FIELD(fldname) \
62         do { \
63                 if (!equalstr(a->fldname, b->fldname)) \
64                         return false; \
65         } while (0)
66
67 /* Macro for comparing string fields that might be NULL */
68 #define equalstr(a, b)  \
69         (((a) != NULL && (b) != NULL) ? (strcmp(a, b) == 0) : (a) == (b))
70
71 /* Compare a field that is a pointer to a simple palloc'd object of size sz */
72 #define COMPARE_POINTER_FIELD(fldname, sz) \
73         do { \
74                 if (memcmp(a->fldname, b->fldname, (sz)) != 0) \
75                         return false; \
76         } while (0)
77
78
79 /*
80  *      Stuff from primnodes.h
81  */
82
83 static bool
84 _equalAlias(Alias *a, Alias *b)
85 {
86         COMPARE_STRING_FIELD(aliasname);
87         COMPARE_NODE_FIELD(colnames);
88
89         return true;
90 }
91
92 static bool
93 _equalRangeVar(RangeVar *a, RangeVar *b)
94 {
95         COMPARE_STRING_FIELD(catalogname);
96         COMPARE_STRING_FIELD(schemaname);
97         COMPARE_STRING_FIELD(relname);
98         COMPARE_SCALAR_FIELD(inhOpt);
99         COMPARE_SCALAR_FIELD(istemp);
100         COMPARE_NODE_FIELD(alias);
101
102         return true;
103 }
104
105 /*
106  * We don't need an _equalExpr because Expr is an abstract supertype which
107  * should never actually get instantiated.      Also, since it has no common
108  * fields except NodeTag, there's no need for a helper routine to factor
109  * out comparing the common fields...
110  */
111
112 static bool
113 _equalVar(Var *a, Var *b)
114 {
115         COMPARE_SCALAR_FIELD(varno);
116         COMPARE_SCALAR_FIELD(varattno);
117         COMPARE_SCALAR_FIELD(vartype);
118         COMPARE_SCALAR_FIELD(vartypmod);
119         COMPARE_SCALAR_FIELD(varlevelsup);
120         COMPARE_SCALAR_FIELD(varnoold);
121         COMPARE_SCALAR_FIELD(varoattno);
122
123         return true;
124 }
125
126 static bool
127 _equalConst(Const *a, Const *b)
128 {
129         COMPARE_SCALAR_FIELD(consttype);
130         COMPARE_SCALAR_FIELD(constlen);
131         COMPARE_SCALAR_FIELD(constisnull);
132         COMPARE_SCALAR_FIELD(constbyval);
133
134         /*
135          * We treat all NULL constants of the same type as equal. Someday this
136          * might need to change?  But datumIsEqual doesn't work on nulls, so...
137          */
138         if (a->constisnull)
139                 return true;
140         return datumIsEqual(a->constvalue, b->constvalue,
141                                                 a->constbyval, a->constlen);
142 }
143
144 static bool
145 _equalParam(Param *a, Param *b)
146 {
147         COMPARE_SCALAR_FIELD(paramkind);
148         COMPARE_SCALAR_FIELD(paramid);
149         COMPARE_SCALAR_FIELD(paramtype);
150
151         return true;
152 }
153
154 static bool
155 _equalAggref(Aggref *a, Aggref *b)
156 {
157         COMPARE_SCALAR_FIELD(aggfnoid);
158         COMPARE_SCALAR_FIELD(aggtype);
159         COMPARE_NODE_FIELD(args);
160         COMPARE_SCALAR_FIELD(agglevelsup);
161         COMPARE_SCALAR_FIELD(aggstar);
162         COMPARE_SCALAR_FIELD(aggdistinct);
163
164         return true;
165 }
166
167 static bool
168 _equalArrayRef(ArrayRef *a, ArrayRef *b)
169 {
170         COMPARE_SCALAR_FIELD(refrestype);
171         COMPARE_SCALAR_FIELD(refarraytype);
172         COMPARE_SCALAR_FIELD(refelemtype);
173         COMPARE_NODE_FIELD(refupperindexpr);
174         COMPARE_NODE_FIELD(reflowerindexpr);
175         COMPARE_NODE_FIELD(refexpr);
176         COMPARE_NODE_FIELD(refassgnexpr);
177
178         return true;
179 }
180
181 static bool
182 _equalFuncExpr(FuncExpr *a, FuncExpr *b)
183 {
184         COMPARE_SCALAR_FIELD(funcid);
185         COMPARE_SCALAR_FIELD(funcresulttype);
186         COMPARE_SCALAR_FIELD(funcretset);
187
188         /*
189          * Special-case COERCE_DONTCARE, so that planner can build coercion nodes
190          * that are equal() to both explicit and implicit coercions.
191          */
192         if (a->funcformat != b->funcformat &&
193                 a->funcformat != COERCE_DONTCARE &&
194                 b->funcformat != COERCE_DONTCARE)
195                 return false;
196
197         COMPARE_NODE_FIELD(args);
198
199         return true;
200 }
201
202 static bool
203 _equalOpExpr(OpExpr *a, OpExpr *b)
204 {
205         COMPARE_SCALAR_FIELD(opno);
206
207         /*
208          * Special-case opfuncid: it is allowable for it to differ if one node
209          * contains zero and the other doesn't.  This just means that the one node
210          * isn't as far along in the parse/plan pipeline and hasn't had the
211          * opfuncid cache filled yet.
212          */
213         if (a->opfuncid != b->opfuncid &&
214                 a->opfuncid != 0 &&
215                 b->opfuncid != 0)
216                 return false;
217
218         COMPARE_SCALAR_FIELD(opresulttype);
219         COMPARE_SCALAR_FIELD(opretset);
220         COMPARE_NODE_FIELD(args);
221
222         return true;
223 }
224
225 static bool
226 _equalDistinctExpr(DistinctExpr *a, DistinctExpr *b)
227 {
228         COMPARE_SCALAR_FIELD(opno);
229
230         /*
231          * Special-case opfuncid: it is allowable for it to differ if one node
232          * contains zero and the other doesn't.  This just means that the one node
233          * isn't as far along in the parse/plan pipeline and hasn't had the
234          * opfuncid cache filled yet.
235          */
236         if (a->opfuncid != b->opfuncid &&
237                 a->opfuncid != 0 &&
238                 b->opfuncid != 0)
239                 return false;
240
241         COMPARE_SCALAR_FIELD(opresulttype);
242         COMPARE_SCALAR_FIELD(opretset);
243         COMPARE_NODE_FIELD(args);
244
245         return true;
246 }
247
248 static bool
249 _equalScalarArrayOpExpr(ScalarArrayOpExpr *a, ScalarArrayOpExpr *b)
250 {
251         COMPARE_SCALAR_FIELD(opno);
252
253         /*
254          * Special-case opfuncid: it is allowable for it to differ if one node
255          * contains zero and the other doesn't.  This just means that the one node
256          * isn't as far along in the parse/plan pipeline and hasn't had the
257          * opfuncid cache filled yet.
258          */
259         if (a->opfuncid != b->opfuncid &&
260                 a->opfuncid != 0 &&
261                 b->opfuncid != 0)
262                 return false;
263
264         COMPARE_SCALAR_FIELD(useOr);
265         COMPARE_NODE_FIELD(args);
266
267         return true;
268 }
269
270 static bool
271 _equalBoolExpr(BoolExpr *a, BoolExpr *b)
272 {
273         COMPARE_SCALAR_FIELD(boolop);
274         COMPARE_NODE_FIELD(args);
275
276         return true;
277 }
278
279 static bool
280 _equalSubLink(SubLink *a, SubLink *b)
281 {
282         COMPARE_SCALAR_FIELD(subLinkType);
283         COMPARE_NODE_FIELD(testexpr);
284         COMPARE_NODE_FIELD(operName);
285         COMPARE_NODE_FIELD(subselect);
286
287         return true;
288 }
289
290 static bool
291 _equalSubPlan(SubPlan *a, SubPlan *b)
292 {
293         COMPARE_SCALAR_FIELD(subLinkType);
294         COMPARE_NODE_FIELD(testexpr);
295         COMPARE_NODE_FIELD(paramIds);
296         /* should compare plans, but have to settle for comparing plan IDs */
297         COMPARE_SCALAR_FIELD(plan_id);
298         COMPARE_NODE_FIELD(rtable);
299         COMPARE_SCALAR_FIELD(useHashTable);
300         COMPARE_SCALAR_FIELD(unknownEqFalse);
301         COMPARE_NODE_FIELD(setParam);
302         COMPARE_NODE_FIELD(parParam);
303         COMPARE_NODE_FIELD(args);
304
305         return true;
306 }
307
308 static bool
309 _equalFieldSelect(FieldSelect *a, FieldSelect *b)
310 {
311         COMPARE_NODE_FIELD(arg);
312         COMPARE_SCALAR_FIELD(fieldnum);
313         COMPARE_SCALAR_FIELD(resulttype);
314         COMPARE_SCALAR_FIELD(resulttypmod);
315
316         return true;
317 }
318
319 static bool
320 _equalFieldStore(FieldStore *a, FieldStore *b)
321 {
322         COMPARE_NODE_FIELD(arg);
323         COMPARE_NODE_FIELD(newvals);
324         COMPARE_NODE_FIELD(fieldnums);
325         COMPARE_SCALAR_FIELD(resulttype);
326
327         return true;
328 }
329
330 static bool
331 _equalRelabelType(RelabelType *a, RelabelType *b)
332 {
333         COMPARE_NODE_FIELD(arg);
334         COMPARE_SCALAR_FIELD(resulttype);
335         COMPARE_SCALAR_FIELD(resulttypmod);
336
337         /*
338          * Special-case COERCE_DONTCARE, so that planner can build coercion nodes
339          * that are equal() to both explicit and implicit coercions.
340          */
341         if (a->relabelformat != b->relabelformat &&
342                 a->relabelformat != COERCE_DONTCARE &&
343                 b->relabelformat != COERCE_DONTCARE)
344                 return false;
345
346         return true;
347 }
348
349 static bool
350 _equalConvertRowtypeExpr(ConvertRowtypeExpr *a, ConvertRowtypeExpr *b)
351 {
352         COMPARE_NODE_FIELD(arg);
353         COMPARE_SCALAR_FIELD(resulttype);
354
355         /*
356          * Special-case COERCE_DONTCARE, so that planner can build coercion nodes
357          * that are equal() to both explicit and implicit coercions.
358          */
359         if (a->convertformat != b->convertformat &&
360                 a->convertformat != COERCE_DONTCARE &&
361                 b->convertformat != COERCE_DONTCARE)
362                 return false;
363
364         return true;
365 }
366
367 static bool
368 _equalCaseExpr(CaseExpr *a, CaseExpr *b)
369 {
370         COMPARE_SCALAR_FIELD(casetype);
371         COMPARE_NODE_FIELD(arg);
372         COMPARE_NODE_FIELD(args);
373         COMPARE_NODE_FIELD(defresult);
374
375         return true;
376 }
377
378 static bool
379 _equalCaseWhen(CaseWhen *a, CaseWhen *b)
380 {
381         COMPARE_NODE_FIELD(expr);
382         COMPARE_NODE_FIELD(result);
383
384         return true;
385 }
386
387 static bool
388 _equalCaseTestExpr(CaseTestExpr *a, CaseTestExpr *b)
389 {
390         COMPARE_SCALAR_FIELD(typeId);
391         COMPARE_SCALAR_FIELD(typeMod);
392
393         return true;
394 }
395
396 static bool
397 _equalArrayExpr(ArrayExpr *a, ArrayExpr *b)
398 {
399         COMPARE_SCALAR_FIELD(array_typeid);
400         COMPARE_SCALAR_FIELD(element_typeid);
401         COMPARE_NODE_FIELD(elements);
402         COMPARE_SCALAR_FIELD(multidims);
403
404         return true;
405 }
406
407 static bool
408 _equalRowExpr(RowExpr *a, RowExpr *b)
409 {
410         COMPARE_NODE_FIELD(args);
411         COMPARE_SCALAR_FIELD(row_typeid);
412
413         /*
414          * Special-case COERCE_DONTCARE, so that planner can build coercion nodes
415          * that are equal() to both explicit and implicit coercions.
416          */
417         if (a->row_format != b->row_format &&
418                 a->row_format != COERCE_DONTCARE &&
419                 b->row_format != COERCE_DONTCARE)
420                 return false;
421
422         return true;
423 }
424
425 static bool
426 _equalRowCompareExpr(RowCompareExpr *a, RowCompareExpr *b)
427 {
428         COMPARE_SCALAR_FIELD(rctype);
429         COMPARE_NODE_FIELD(opnos);
430         COMPARE_NODE_FIELD(opclasses);
431         COMPARE_NODE_FIELD(largs);
432         COMPARE_NODE_FIELD(rargs);
433
434         return true;
435 }
436
437 static bool
438 _equalCoalesceExpr(CoalesceExpr *a, CoalesceExpr *b)
439 {
440         COMPARE_SCALAR_FIELD(coalescetype);
441         COMPARE_NODE_FIELD(args);
442
443         return true;
444 }
445
446 static bool
447 _equalMinMaxExpr(MinMaxExpr *a, MinMaxExpr *b)
448 {
449         COMPARE_SCALAR_FIELD(minmaxtype);
450         COMPARE_SCALAR_FIELD(op);
451         COMPARE_NODE_FIELD(args);
452
453         return true;
454 }
455
456 static bool
457 _equalNullIfExpr(NullIfExpr *a, NullIfExpr *b)
458 {
459         COMPARE_SCALAR_FIELD(opno);
460
461         /*
462          * Special-case opfuncid: it is allowable for it to differ if one node
463          * contains zero and the other doesn't.  This just means that the one node
464          * isn't as far along in the parse/plan pipeline and hasn't had the
465          * opfuncid cache filled yet.
466          */
467         if (a->opfuncid != b->opfuncid &&
468                 a->opfuncid != 0 &&
469                 b->opfuncid != 0)
470                 return false;
471
472         COMPARE_SCALAR_FIELD(opresulttype);
473         COMPARE_SCALAR_FIELD(opretset);
474         COMPARE_NODE_FIELD(args);
475
476         return true;
477 }
478
479 static bool
480 _equalNullTest(NullTest *a, NullTest *b)
481 {
482         COMPARE_NODE_FIELD(arg);
483         COMPARE_SCALAR_FIELD(nulltesttype);
484
485         return true;
486 }
487
488 static bool
489 _equalBooleanTest(BooleanTest *a, BooleanTest *b)
490 {
491         COMPARE_NODE_FIELD(arg);
492         COMPARE_SCALAR_FIELD(booltesttype);
493
494         return true;
495 }
496
497 static bool
498 _equalCoerceToDomain(CoerceToDomain *a, CoerceToDomain *b)
499 {
500         COMPARE_NODE_FIELD(arg);
501         COMPARE_SCALAR_FIELD(resulttype);
502         COMPARE_SCALAR_FIELD(resulttypmod);
503
504         /*
505          * Special-case COERCE_DONTCARE, so that planner can build coercion nodes
506          * that are equal() to both explicit and implicit coercions.
507          */
508         if (a->coercionformat != b->coercionformat &&
509                 a->coercionformat != COERCE_DONTCARE &&
510                 b->coercionformat != COERCE_DONTCARE)
511                 return false;
512
513         return true;
514 }
515
516 static bool
517 _equalCoerceToDomainValue(CoerceToDomainValue *a, CoerceToDomainValue *b)
518 {
519         COMPARE_SCALAR_FIELD(typeId);
520         COMPARE_SCALAR_FIELD(typeMod);
521
522         return true;
523 }
524
525 static bool
526 _equalSetToDefault(SetToDefault *a, SetToDefault *b)
527 {
528         COMPARE_SCALAR_FIELD(typeId);
529         COMPARE_SCALAR_FIELD(typeMod);
530
531         return true;
532 }
533
534 static bool
535 _equalTargetEntry(TargetEntry *a, TargetEntry *b)
536 {
537         COMPARE_NODE_FIELD(expr);
538         COMPARE_SCALAR_FIELD(resno);
539         COMPARE_STRING_FIELD(resname);
540         COMPARE_SCALAR_FIELD(ressortgroupref);
541         COMPARE_SCALAR_FIELD(resorigtbl);
542         COMPARE_SCALAR_FIELD(resorigcol);
543         COMPARE_SCALAR_FIELD(resjunk);
544
545         return true;
546 }
547
548 static bool
549 _equalRangeTblRef(RangeTblRef *a, RangeTblRef *b)
550 {
551         COMPARE_SCALAR_FIELD(rtindex);
552
553         return true;
554 }
555
556 static bool
557 _equalJoinExpr(JoinExpr *a, JoinExpr *b)
558 {
559         COMPARE_SCALAR_FIELD(jointype);
560         COMPARE_SCALAR_FIELD(isNatural);
561         COMPARE_NODE_FIELD(larg);
562         COMPARE_NODE_FIELD(rarg);
563         COMPARE_NODE_FIELD(using);
564         COMPARE_NODE_FIELD(quals);
565         COMPARE_NODE_FIELD(alias);
566         COMPARE_SCALAR_FIELD(rtindex);
567
568         return true;
569 }
570
571 static bool
572 _equalFromExpr(FromExpr *a, FromExpr *b)
573 {
574         COMPARE_NODE_FIELD(fromlist);
575         COMPARE_NODE_FIELD(quals);
576
577         return true;
578 }
579
580
581 /*
582  * Stuff from relation.h
583  */
584
585 static bool
586 _equalPathKeyItem(PathKeyItem *a, PathKeyItem *b)
587 {
588         COMPARE_NODE_FIELD(key);
589         COMPARE_SCALAR_FIELD(sortop);
590
591         return true;
592 }
593
594 static bool
595 _equalRestrictInfo(RestrictInfo *a, RestrictInfo *b)
596 {
597         COMPARE_NODE_FIELD(clause);
598         COMPARE_SCALAR_FIELD(is_pushed_down);
599         COMPARE_SCALAR_FIELD(outerjoin_delayed);
600         COMPARE_BITMAPSET_FIELD(required_relids);
601
602         /*
603          * We ignore all the remaining fields, since they may not be set yet, and
604          * should be derivable from the clause anyway.
605          */
606
607         return true;
608 }
609
610 static bool
611 _equalOuterJoinInfo(OuterJoinInfo *a, OuterJoinInfo *b)
612 {
613         COMPARE_BITMAPSET_FIELD(min_lefthand);
614         COMPARE_BITMAPSET_FIELD(min_righthand);
615         COMPARE_SCALAR_FIELD(is_full_join);
616         COMPARE_SCALAR_FIELD(lhs_strict);
617
618         return true;
619 }
620
621 static bool
622 _equalInClauseInfo(InClauseInfo *a, InClauseInfo *b)
623 {
624         COMPARE_BITMAPSET_FIELD(lefthand);
625         COMPARE_BITMAPSET_FIELD(righthand);
626         COMPARE_NODE_FIELD(sub_targetlist);
627
628         return true;
629 }
630
631 static bool
632 _equalAppendRelInfo(AppendRelInfo *a, AppendRelInfo *b)
633 {
634         COMPARE_SCALAR_FIELD(parent_relid);
635         COMPARE_SCALAR_FIELD(child_relid);
636         COMPARE_SCALAR_FIELD(parent_reltype);
637         COMPARE_SCALAR_FIELD(child_reltype);
638         COMPARE_NODE_FIELD(col_mappings);
639         COMPARE_NODE_FIELD(translated_vars);
640         COMPARE_SCALAR_FIELD(parent_reloid);
641
642         return true;
643 }
644
645
646 /*
647  * Stuff from parsenodes.h
648  */
649
650 static bool
651 _equalQuery(Query *a, Query *b)
652 {
653         COMPARE_SCALAR_FIELD(commandType);
654         COMPARE_SCALAR_FIELD(querySource);
655         COMPARE_SCALAR_FIELD(canSetTag);
656         COMPARE_NODE_FIELD(utilityStmt);
657         COMPARE_SCALAR_FIELD(resultRelation);
658         COMPARE_NODE_FIELD(into);
659         COMPARE_NODE_FIELD(intoOptions);
660         COMPARE_SCALAR_FIELD(intoOnCommit);
661         COMPARE_STRING_FIELD(intoTableSpaceName);
662         COMPARE_SCALAR_FIELD(hasAggs);
663         COMPARE_SCALAR_FIELD(hasSubLinks);
664         COMPARE_NODE_FIELD(rtable);
665         COMPARE_NODE_FIELD(jointree);
666         COMPARE_NODE_FIELD(targetList);
667         COMPARE_NODE_FIELD(returningList);
668         COMPARE_NODE_FIELD(groupClause);
669         COMPARE_NODE_FIELD(havingQual);
670         COMPARE_NODE_FIELD(distinctClause);
671         COMPARE_NODE_FIELD(sortClause);
672         COMPARE_NODE_FIELD(limitOffset);
673         COMPARE_NODE_FIELD(limitCount);
674         COMPARE_NODE_FIELD(rowMarks);
675         COMPARE_NODE_FIELD(setOperations);
676         COMPARE_NODE_FIELD(resultRelations);
677         COMPARE_NODE_FIELD(returningLists);
678
679         return true;
680 }
681
682 static bool
683 _equalInsertStmt(InsertStmt *a, InsertStmt *b)
684 {
685         COMPARE_NODE_FIELD(relation);
686         COMPARE_NODE_FIELD(cols);
687         COMPARE_NODE_FIELD(selectStmt);
688         COMPARE_NODE_FIELD(returningList);
689
690         return true;
691 }
692
693 static bool
694 _equalDeleteStmt(DeleteStmt *a, DeleteStmt *b)
695 {
696         COMPARE_NODE_FIELD(relation);
697         COMPARE_NODE_FIELD(usingClause);
698         COMPARE_NODE_FIELD(whereClause);
699         COMPARE_NODE_FIELD(returningList);
700
701         return true;
702 }
703
704 static bool
705 _equalUpdateStmt(UpdateStmt *a, UpdateStmt *b)
706 {
707         COMPARE_NODE_FIELD(relation);
708         COMPARE_NODE_FIELD(targetList);
709         COMPARE_NODE_FIELD(whereClause);
710         COMPARE_NODE_FIELD(fromClause);
711         COMPARE_NODE_FIELD(returningList);
712
713         return true;
714 }
715
716 static bool
717 _equalSelectStmt(SelectStmt *a, SelectStmt *b)
718 {
719         COMPARE_NODE_FIELD(distinctClause);
720         COMPARE_NODE_FIELD(into);
721         COMPARE_NODE_FIELD(intoColNames);
722         COMPARE_NODE_FIELD(intoOptions);
723         COMPARE_SCALAR_FIELD(intoOnCommit);
724         COMPARE_STRING_FIELD(intoTableSpaceName);
725         COMPARE_NODE_FIELD(targetList);
726         COMPARE_NODE_FIELD(fromClause);
727         COMPARE_NODE_FIELD(whereClause);
728         COMPARE_NODE_FIELD(groupClause);
729         COMPARE_NODE_FIELD(havingClause);
730         COMPARE_NODE_FIELD(valuesLists);
731         COMPARE_NODE_FIELD(sortClause);
732         COMPARE_NODE_FIELD(limitOffset);
733         COMPARE_NODE_FIELD(limitCount);
734         COMPARE_NODE_FIELD(lockingClause);
735         COMPARE_SCALAR_FIELD(op);
736         COMPARE_SCALAR_FIELD(all);
737         COMPARE_NODE_FIELD(larg);
738         COMPARE_NODE_FIELD(rarg);
739
740         return true;
741 }
742
743 static bool
744 _equalSetOperationStmt(SetOperationStmt *a, SetOperationStmt *b)
745 {
746         COMPARE_SCALAR_FIELD(op);
747         COMPARE_SCALAR_FIELD(all);
748         COMPARE_NODE_FIELD(larg);
749         COMPARE_NODE_FIELD(rarg);
750         COMPARE_NODE_FIELD(colTypes);
751         COMPARE_NODE_FIELD(colTypmods);
752
753         return true;
754 }
755
756 static bool
757 _equalAlterTableStmt(AlterTableStmt *a, AlterTableStmt *b)
758 {
759         COMPARE_NODE_FIELD(relation);
760         COMPARE_NODE_FIELD(cmds);
761         COMPARE_SCALAR_FIELD(relkind);
762
763         return true;
764 }
765
766 static bool
767 _equalAlterTableCmd(AlterTableCmd *a, AlterTableCmd *b)
768 {
769         COMPARE_SCALAR_FIELD(subtype);
770         COMPARE_STRING_FIELD(name);
771         COMPARE_NODE_FIELD(parent);
772         COMPARE_NODE_FIELD(def);
773         COMPARE_NODE_FIELD(transform);
774         COMPARE_SCALAR_FIELD(behavior);
775
776         return true;
777 }
778
779 static bool
780 _equalAlterDomainStmt(AlterDomainStmt *a, AlterDomainStmt *b)
781 {
782         COMPARE_SCALAR_FIELD(subtype);
783         COMPARE_NODE_FIELD(typename);
784         COMPARE_STRING_FIELD(name);
785         COMPARE_NODE_FIELD(def);
786         COMPARE_SCALAR_FIELD(behavior);
787
788         return true;
789 }
790
791 static bool
792 _equalGrantStmt(GrantStmt *a, GrantStmt *b)
793 {
794         COMPARE_SCALAR_FIELD(is_grant);
795         COMPARE_SCALAR_FIELD(objtype);
796         COMPARE_NODE_FIELD(objects);
797         COMPARE_NODE_FIELD(privileges);
798         COMPARE_NODE_FIELD(grantees);
799         COMPARE_SCALAR_FIELD(grant_option);
800         COMPARE_SCALAR_FIELD(behavior);
801
802         return true;
803 }
804
805 static bool
806 _equalPrivGrantee(PrivGrantee *a, PrivGrantee *b)
807 {
808         COMPARE_STRING_FIELD(rolname);
809
810         return true;
811 }
812
813 static bool
814 _equalFuncWithArgs(FuncWithArgs *a, FuncWithArgs *b)
815 {
816         COMPARE_NODE_FIELD(funcname);
817         COMPARE_NODE_FIELD(funcargs);
818
819         return true;
820 }
821
822 static bool
823 _equalGrantRoleStmt(GrantRoleStmt *a, GrantRoleStmt *b)
824 {
825         COMPARE_NODE_FIELD(granted_roles);
826         COMPARE_NODE_FIELD(grantee_roles);
827         COMPARE_SCALAR_FIELD(is_grant);
828         COMPARE_SCALAR_FIELD(admin_opt);
829         COMPARE_STRING_FIELD(grantor);
830         COMPARE_SCALAR_FIELD(behavior);
831
832         return true;
833 }
834
835 static bool
836 _equalDeclareCursorStmt(DeclareCursorStmt *a, DeclareCursorStmt *b)
837 {
838         COMPARE_STRING_FIELD(portalname);
839         COMPARE_SCALAR_FIELD(options);
840         COMPARE_NODE_FIELD(query);
841
842         return true;
843 }
844
845 static bool
846 _equalClosePortalStmt(ClosePortalStmt *a, ClosePortalStmt *b)
847 {
848         COMPARE_STRING_FIELD(portalname);
849
850         return true;
851 }
852
853 static bool
854 _equalClusterStmt(ClusterStmt *a, ClusterStmt *b)
855 {
856         COMPARE_NODE_FIELD(relation);
857         COMPARE_STRING_FIELD(indexname);
858
859         return true;
860 }
861
862 static bool
863 _equalCopyStmt(CopyStmt *a, CopyStmt *b)
864 {
865         COMPARE_NODE_FIELD(relation);
866         COMPARE_NODE_FIELD(attlist);
867         COMPARE_SCALAR_FIELD(is_from);
868         COMPARE_STRING_FIELD(filename);
869         COMPARE_NODE_FIELD(options);
870
871         return true;
872 }
873
874 static bool
875 _equalCreateStmt(CreateStmt *a, CreateStmt *b)
876 {
877         COMPARE_NODE_FIELD(relation);
878         COMPARE_NODE_FIELD(tableElts);
879         COMPARE_NODE_FIELD(inhRelations);
880         COMPARE_NODE_FIELD(constraints);
881         COMPARE_NODE_FIELD(options);
882         COMPARE_SCALAR_FIELD(oncommit);
883         COMPARE_STRING_FIELD(tablespacename);
884
885         return true;
886 }
887
888 static bool
889 _equalInhRelation(InhRelation *a, InhRelation *b)
890 {
891         COMPARE_NODE_FIELD(relation);
892         COMPARE_NODE_FIELD(options);
893
894         return true;
895 }
896
897 static bool
898 _equalDefineStmt(DefineStmt *a, DefineStmt *b)
899 {
900         COMPARE_SCALAR_FIELD(kind);
901         COMPARE_SCALAR_FIELD(oldstyle);
902         COMPARE_NODE_FIELD(defnames);
903         COMPARE_NODE_FIELD(args);
904         COMPARE_NODE_FIELD(definition);
905
906         return true;
907 }
908
909 static bool
910 _equalDropStmt(DropStmt *a, DropStmt *b)
911 {
912         COMPARE_NODE_FIELD(objects);
913         COMPARE_SCALAR_FIELD(removeType);
914         COMPARE_SCALAR_FIELD(behavior);
915         COMPARE_SCALAR_FIELD(missing_ok);
916
917         return true;
918 }
919
920 static bool
921 _equalTruncateStmt(TruncateStmt *a, TruncateStmt *b)
922 {
923         COMPARE_NODE_FIELD(relations);
924         COMPARE_SCALAR_FIELD(behavior);
925
926         return true;
927 }
928
929 static bool
930 _equalCommentStmt(CommentStmt *a, CommentStmt *b)
931 {
932         COMPARE_SCALAR_FIELD(objtype);
933         COMPARE_NODE_FIELD(objname);
934         COMPARE_NODE_FIELD(objargs);
935         COMPARE_STRING_FIELD(comment);
936
937         return true;
938 }
939
940 static bool
941 _equalFetchStmt(FetchStmt *a, FetchStmt *b)
942 {
943         COMPARE_SCALAR_FIELD(direction);
944         COMPARE_SCALAR_FIELD(howMany);
945         COMPARE_STRING_FIELD(portalname);
946         COMPARE_SCALAR_FIELD(ismove);
947
948         return true;
949 }
950
951 static bool
952 _equalIndexStmt(IndexStmt *a, IndexStmt *b)
953 {
954         COMPARE_STRING_FIELD(idxname);
955         COMPARE_NODE_FIELD(relation);
956         COMPARE_STRING_FIELD(accessMethod);
957         COMPARE_STRING_FIELD(tableSpace);
958         COMPARE_NODE_FIELD(indexParams);
959         COMPARE_NODE_FIELD(options);
960         COMPARE_NODE_FIELD(whereClause);
961         COMPARE_NODE_FIELD(rangetable);
962         COMPARE_SCALAR_FIELD(unique);
963         COMPARE_SCALAR_FIELD(primary);
964         COMPARE_SCALAR_FIELD(isconstraint);
965
966         return true;
967 }
968
969 static bool
970 _equalCreateFunctionStmt(CreateFunctionStmt *a, CreateFunctionStmt *b)
971 {
972         COMPARE_SCALAR_FIELD(replace);
973         COMPARE_NODE_FIELD(funcname);
974         COMPARE_NODE_FIELD(parameters);
975         COMPARE_NODE_FIELD(returnType);
976         COMPARE_NODE_FIELD(options);
977         COMPARE_NODE_FIELD(withClause);
978
979         return true;
980 }
981
982 static bool
983 _equalFunctionParameter(FunctionParameter *a, FunctionParameter *b)
984 {
985         COMPARE_STRING_FIELD(name);
986         COMPARE_NODE_FIELD(argType);
987         COMPARE_SCALAR_FIELD(mode);
988
989         return true;
990 }
991
992 static bool
993 _equalAlterFunctionStmt(AlterFunctionStmt *a, AlterFunctionStmt *b)
994 {
995         COMPARE_NODE_FIELD(func);
996         COMPARE_NODE_FIELD(actions);
997
998         return true;
999 }
1000
1001 static bool
1002 _equalRemoveFuncStmt(RemoveFuncStmt *a, RemoveFuncStmt *b)
1003 {
1004         COMPARE_SCALAR_FIELD(kind);
1005         COMPARE_NODE_FIELD(name);
1006         COMPARE_NODE_FIELD(args);
1007         COMPARE_SCALAR_FIELD(behavior);
1008         COMPARE_SCALAR_FIELD(missing_ok);
1009
1010         return true;
1011 }
1012
1013 static bool
1014 _equalRemoveOpClassStmt(RemoveOpClassStmt *a, RemoveOpClassStmt *b)
1015 {
1016         COMPARE_NODE_FIELD(opclassname);
1017         COMPARE_STRING_FIELD(amname);
1018         COMPARE_SCALAR_FIELD(behavior);
1019         COMPARE_SCALAR_FIELD(missing_ok);
1020
1021         return true;
1022 }
1023
1024 static bool
1025 _equalRenameStmt(RenameStmt *a, RenameStmt *b)
1026 {
1027         COMPARE_SCALAR_FIELD(renameType);
1028         COMPARE_NODE_FIELD(relation);
1029         COMPARE_NODE_FIELD(object);
1030         COMPARE_NODE_FIELD(objarg);
1031         COMPARE_STRING_FIELD(subname);
1032         COMPARE_STRING_FIELD(newname);
1033
1034         return true;
1035 }
1036
1037 static bool
1038 _equalAlterObjectSchemaStmt(AlterObjectSchemaStmt *a, AlterObjectSchemaStmt *b)
1039 {
1040         COMPARE_SCALAR_FIELD(objectType);
1041         COMPARE_NODE_FIELD(relation);
1042         COMPARE_NODE_FIELD(object);
1043         COMPARE_NODE_FIELD(objarg);
1044         COMPARE_STRING_FIELD(addname);
1045         COMPARE_STRING_FIELD(newschema);
1046
1047         return true;
1048 }
1049
1050 static bool
1051 _equalAlterOwnerStmt(AlterOwnerStmt *a, AlterOwnerStmt *b)
1052 {
1053         COMPARE_SCALAR_FIELD(objectType);
1054         COMPARE_NODE_FIELD(relation);
1055         COMPARE_NODE_FIELD(object);
1056         COMPARE_NODE_FIELD(objarg);
1057         COMPARE_STRING_FIELD(addname);
1058         COMPARE_STRING_FIELD(newowner);
1059
1060         return true;
1061 }
1062
1063 static bool
1064 _equalRuleStmt(RuleStmt *a, RuleStmt *b)
1065 {
1066         COMPARE_NODE_FIELD(relation);
1067         COMPARE_STRING_FIELD(rulename);
1068         COMPARE_NODE_FIELD(whereClause);
1069         COMPARE_SCALAR_FIELD(event);
1070         COMPARE_SCALAR_FIELD(instead);
1071         COMPARE_NODE_FIELD(actions);
1072         COMPARE_SCALAR_FIELD(replace);
1073
1074         return true;
1075 }
1076
1077 static bool
1078 _equalNotifyStmt(NotifyStmt *a, NotifyStmt *b)
1079 {
1080         COMPARE_NODE_FIELD(relation);
1081
1082         return true;
1083 }
1084
1085 static bool
1086 _equalListenStmt(ListenStmt *a, ListenStmt *b)
1087 {
1088         COMPARE_NODE_FIELD(relation);
1089
1090         return true;
1091 }
1092
1093 static bool
1094 _equalUnlistenStmt(UnlistenStmt *a, UnlistenStmt *b)
1095 {
1096         COMPARE_NODE_FIELD(relation);
1097
1098         return true;
1099 }
1100
1101 static bool
1102 _equalTransactionStmt(TransactionStmt *a, TransactionStmt *b)
1103 {
1104         COMPARE_SCALAR_FIELD(kind);
1105         COMPARE_NODE_FIELD(options);
1106         COMPARE_STRING_FIELD(gid);
1107
1108         return true;
1109 }
1110
1111 static bool
1112 _equalCompositeTypeStmt(CompositeTypeStmt *a, CompositeTypeStmt *b)
1113 {
1114         COMPARE_NODE_FIELD(typevar);
1115         COMPARE_NODE_FIELD(coldeflist);
1116
1117         return true;
1118 }
1119
1120 static bool
1121 _equalViewStmt(ViewStmt *a, ViewStmt *b)
1122 {
1123         COMPARE_NODE_FIELD(view);
1124         COMPARE_NODE_FIELD(aliases);
1125         COMPARE_NODE_FIELD(query);
1126         COMPARE_SCALAR_FIELD(replace);
1127
1128         return true;
1129 }
1130
1131 static bool
1132 _equalLoadStmt(LoadStmt *a, LoadStmt *b)
1133 {
1134         COMPARE_STRING_FIELD(filename);
1135
1136         return true;
1137 }
1138
1139 static bool
1140 _equalCreateDomainStmt(CreateDomainStmt *a, CreateDomainStmt *b)
1141 {
1142         COMPARE_NODE_FIELD(domainname);
1143         COMPARE_NODE_FIELD(typename);
1144         COMPARE_NODE_FIELD(constraints);
1145
1146         return true;
1147 }
1148
1149 static bool
1150 _equalCreateOpClassStmt(CreateOpClassStmt *a, CreateOpClassStmt *b)
1151 {
1152         COMPARE_NODE_FIELD(opclassname);
1153         COMPARE_STRING_FIELD(amname);
1154         COMPARE_NODE_FIELD(datatype);
1155         COMPARE_NODE_FIELD(items);
1156         COMPARE_SCALAR_FIELD(isDefault);
1157
1158         return true;
1159 }
1160
1161 static bool
1162 _equalCreateOpClassItem(CreateOpClassItem *a, CreateOpClassItem *b)
1163 {
1164         COMPARE_SCALAR_FIELD(itemtype);
1165         COMPARE_NODE_FIELD(name);
1166         COMPARE_NODE_FIELD(args);
1167         COMPARE_SCALAR_FIELD(number);
1168         COMPARE_SCALAR_FIELD(recheck);
1169         COMPARE_NODE_FIELD(storedtype);
1170
1171         return true;
1172 }
1173
1174 static bool
1175 _equalCreatedbStmt(CreatedbStmt *a, CreatedbStmt *b)
1176 {
1177         COMPARE_STRING_FIELD(dbname);
1178         COMPARE_NODE_FIELD(options);
1179
1180         return true;
1181 }
1182
1183 static bool
1184 _equalAlterDatabaseStmt(AlterDatabaseStmt *a, AlterDatabaseStmt *b)
1185 {
1186         COMPARE_STRING_FIELD(dbname);
1187         COMPARE_NODE_FIELD(options);
1188
1189         return true;
1190 }
1191
1192 static bool
1193 _equalAlterDatabaseSetStmt(AlterDatabaseSetStmt *a, AlterDatabaseSetStmt *b)
1194 {
1195         COMPARE_STRING_FIELD(dbname);
1196         COMPARE_STRING_FIELD(variable);
1197         COMPARE_NODE_FIELD(value);
1198
1199         return true;
1200 }
1201
1202 static bool
1203 _equalDropdbStmt(DropdbStmt *a, DropdbStmt *b)
1204 {
1205         COMPARE_STRING_FIELD(dbname);
1206         COMPARE_SCALAR_FIELD(missing_ok);
1207
1208         return true;
1209 }
1210
1211 static bool
1212 _equalVacuumStmt(VacuumStmt *a, VacuumStmt *b)
1213 {
1214         COMPARE_SCALAR_FIELD(vacuum);
1215         COMPARE_SCALAR_FIELD(full);
1216         COMPARE_SCALAR_FIELD(analyze);
1217         COMPARE_SCALAR_FIELD(freeze);
1218         COMPARE_SCALAR_FIELD(verbose);
1219         COMPARE_NODE_FIELD(relation);
1220         COMPARE_NODE_FIELD(va_cols);
1221
1222         return true;
1223 }
1224
1225 static bool
1226 _equalExplainStmt(ExplainStmt *a, ExplainStmt *b)
1227 {
1228         COMPARE_NODE_FIELD(query);
1229         COMPARE_SCALAR_FIELD(verbose);
1230         COMPARE_SCALAR_FIELD(analyze);
1231
1232         return true;
1233 }
1234
1235 static bool
1236 _equalCreateSeqStmt(CreateSeqStmt *a, CreateSeqStmt *b)
1237 {
1238         COMPARE_NODE_FIELD(sequence);
1239         COMPARE_NODE_FIELD(options);
1240
1241         return true;
1242 }
1243
1244 static bool
1245 _equalAlterSeqStmt(AlterSeqStmt *a, AlterSeqStmt *b)
1246 {
1247         COMPARE_NODE_FIELD(sequence);
1248         COMPARE_NODE_FIELD(options);
1249
1250         return true;
1251 }
1252
1253 static bool
1254 _equalVariableSetStmt(VariableSetStmt *a, VariableSetStmt *b)
1255 {
1256         COMPARE_STRING_FIELD(name);
1257         COMPARE_NODE_FIELD(args);
1258         COMPARE_SCALAR_FIELD(is_local);
1259
1260         return true;
1261 }
1262
1263 static bool
1264 _equalVariableShowStmt(VariableShowStmt *a, VariableShowStmt *b)
1265 {
1266         COMPARE_STRING_FIELD(name);
1267
1268         return true;
1269 }
1270
1271 static bool
1272 _equalVariableResetStmt(VariableResetStmt *a, VariableResetStmt *b)
1273 {
1274         COMPARE_STRING_FIELD(name);
1275
1276         return true;
1277 }
1278
1279 static bool
1280 _equalCreateTableSpaceStmt(CreateTableSpaceStmt *a, CreateTableSpaceStmt *b)
1281 {
1282         COMPARE_STRING_FIELD(tablespacename);
1283         COMPARE_STRING_FIELD(owner);
1284         COMPARE_STRING_FIELD(location);
1285
1286         return true;
1287 }
1288
1289 static bool
1290 _equalDropTableSpaceStmt(DropTableSpaceStmt *a, DropTableSpaceStmt *b)
1291 {
1292         COMPARE_STRING_FIELD(tablespacename);
1293         COMPARE_SCALAR_FIELD(missing_ok);
1294
1295         return true;
1296 }
1297
1298 static bool
1299 _equalCreateTrigStmt(CreateTrigStmt *a, CreateTrigStmt *b)
1300 {
1301         COMPARE_STRING_FIELD(trigname);
1302         COMPARE_NODE_FIELD(relation);
1303         COMPARE_NODE_FIELD(funcname);
1304         COMPARE_NODE_FIELD(args);
1305         COMPARE_SCALAR_FIELD(before);
1306         COMPARE_SCALAR_FIELD(row);
1307         if (strcmp(a->actions, b->actions) != 0)        /* in-line string field */
1308                 return false;
1309         COMPARE_SCALAR_FIELD(isconstraint);
1310         COMPARE_SCALAR_FIELD(deferrable);
1311         COMPARE_SCALAR_FIELD(initdeferred);
1312         COMPARE_NODE_FIELD(constrrel);
1313
1314         return true;
1315 }
1316
1317 static bool
1318 _equalDropPropertyStmt(DropPropertyStmt *a, DropPropertyStmt *b)
1319 {
1320         COMPARE_NODE_FIELD(relation);
1321         COMPARE_STRING_FIELD(property);
1322         COMPARE_SCALAR_FIELD(removeType);
1323         COMPARE_SCALAR_FIELD(behavior);
1324         COMPARE_SCALAR_FIELD(missing_ok);
1325
1326         return true;
1327 }
1328
1329 static bool
1330 _equalCreatePLangStmt(CreatePLangStmt *a, CreatePLangStmt *b)
1331 {
1332         COMPARE_STRING_FIELD(plname);
1333         COMPARE_NODE_FIELD(plhandler);
1334         COMPARE_NODE_FIELD(plvalidator);
1335         COMPARE_SCALAR_FIELD(pltrusted);
1336
1337         return true;
1338 }
1339
1340 static bool
1341 _equalDropPLangStmt(DropPLangStmt *a, DropPLangStmt *b)
1342 {
1343         COMPARE_STRING_FIELD(plname);
1344         COMPARE_SCALAR_FIELD(behavior);
1345         COMPARE_SCALAR_FIELD(missing_ok);
1346
1347         return true;
1348 }
1349
1350 static bool
1351 _equalCreateRoleStmt(CreateRoleStmt *a, CreateRoleStmt *b)
1352 {
1353         COMPARE_SCALAR_FIELD(stmt_type);
1354         COMPARE_STRING_FIELD(role);
1355         COMPARE_NODE_FIELD(options);
1356
1357         return true;
1358 }
1359
1360 static bool
1361 _equalAlterRoleStmt(AlterRoleStmt *a, AlterRoleStmt *b)
1362 {
1363         COMPARE_STRING_FIELD(role);
1364         COMPARE_NODE_FIELD(options);
1365         COMPARE_SCALAR_FIELD(action);
1366
1367         return true;
1368 }
1369
1370 static bool
1371 _equalAlterRoleSetStmt(AlterRoleSetStmt *a, AlterRoleSetStmt *b)
1372 {
1373         COMPARE_STRING_FIELD(role);
1374         COMPARE_STRING_FIELD(variable);
1375         COMPARE_NODE_FIELD(value);
1376
1377         return true;
1378 }
1379
1380 static bool
1381 _equalDropRoleStmt(DropRoleStmt *a, DropRoleStmt *b)
1382 {
1383         COMPARE_NODE_FIELD(roles);
1384         COMPARE_SCALAR_FIELD(missing_ok);
1385
1386         return true;
1387 }
1388
1389 static bool
1390 _equalLockStmt(LockStmt *a, LockStmt *b)
1391 {
1392         COMPARE_NODE_FIELD(relations);
1393         COMPARE_SCALAR_FIELD(mode);
1394         COMPARE_SCALAR_FIELD(nowait);
1395
1396         return true;
1397 }
1398
1399 static bool
1400 _equalConstraintsSetStmt(ConstraintsSetStmt *a, ConstraintsSetStmt *b)
1401 {
1402         COMPARE_NODE_FIELD(constraints);
1403         COMPARE_SCALAR_FIELD(deferred);
1404
1405         return true;
1406 }
1407
1408 static bool
1409 _equalReindexStmt(ReindexStmt *a, ReindexStmt *b)
1410 {
1411         COMPARE_SCALAR_FIELD(kind);
1412         COMPARE_NODE_FIELD(relation);
1413         COMPARE_STRING_FIELD(name);
1414         COMPARE_SCALAR_FIELD(do_system);
1415         COMPARE_SCALAR_FIELD(do_user);
1416
1417         return true;
1418 }
1419
1420 static bool
1421 _equalCreateSchemaStmt(CreateSchemaStmt *a, CreateSchemaStmt *b)
1422 {
1423         COMPARE_STRING_FIELD(schemaname);
1424         COMPARE_STRING_FIELD(authid);
1425         COMPARE_NODE_FIELD(schemaElts);
1426
1427         return true;
1428 }
1429
1430 static bool
1431 _equalCreateConversionStmt(CreateConversionStmt *a, CreateConversionStmt *b)
1432 {
1433         COMPARE_NODE_FIELD(conversion_name);
1434         COMPARE_STRING_FIELD(for_encoding_name);
1435         COMPARE_STRING_FIELD(to_encoding_name);
1436         COMPARE_NODE_FIELD(func_name);
1437         COMPARE_SCALAR_FIELD(def);
1438
1439         return true;
1440 }
1441
1442 static bool
1443 _equalCreateCastStmt(CreateCastStmt *a, CreateCastStmt *b)
1444 {
1445         COMPARE_NODE_FIELD(sourcetype);
1446         COMPARE_NODE_FIELD(targettype);
1447         COMPARE_NODE_FIELD(func);
1448         COMPARE_SCALAR_FIELD(context);
1449
1450         return true;
1451 }
1452
1453 static bool
1454 _equalDropCastStmt(DropCastStmt *a, DropCastStmt *b)
1455 {
1456         COMPARE_NODE_FIELD(sourcetype);
1457         COMPARE_NODE_FIELD(targettype);
1458         COMPARE_SCALAR_FIELD(behavior);
1459         COMPARE_SCALAR_FIELD(missing_ok);
1460
1461         return true;
1462 }
1463
1464 static bool
1465 _equalPrepareStmt(PrepareStmt *a, PrepareStmt *b)
1466 {
1467         COMPARE_STRING_FIELD(name);
1468         COMPARE_NODE_FIELD(argtypes);
1469         COMPARE_NODE_FIELD(argtype_oids);
1470         COMPARE_NODE_FIELD(query);
1471
1472         return true;
1473 }
1474
1475 static bool
1476 _equalExecuteStmt(ExecuteStmt *a, ExecuteStmt *b)
1477 {
1478         COMPARE_STRING_FIELD(name);
1479         COMPARE_NODE_FIELD(into);
1480         COMPARE_NODE_FIELD(intoOptions);
1481         COMPARE_SCALAR_FIELD(into_on_commit);
1482         COMPARE_STRING_FIELD(into_tbl_space);
1483         COMPARE_NODE_FIELD(params);
1484
1485         return true;
1486 }
1487
1488 static bool
1489 _equalDeallocateStmt(DeallocateStmt *a, DeallocateStmt *b)
1490 {
1491         COMPARE_STRING_FIELD(name);
1492
1493         return true;
1494 }
1495
1496 static bool
1497 _equalDropOwnedStmt(DropOwnedStmt * a, DropOwnedStmt * b)
1498 {
1499         COMPARE_NODE_FIELD(roles);
1500         COMPARE_SCALAR_FIELD(behavior);
1501
1502         return true;
1503 }
1504
1505 static bool
1506 _equalReassignOwnedStmt(ReassignOwnedStmt * a, ReassignOwnedStmt * b)
1507 {
1508         COMPARE_NODE_FIELD(roles);
1509         COMPARE_NODE_FIELD(newrole);
1510
1511         return true;
1512 }
1513
1514 static bool
1515 _equalAExpr(A_Expr *a, A_Expr *b)
1516 {
1517         COMPARE_SCALAR_FIELD(kind);
1518         COMPARE_NODE_FIELD(name);
1519         COMPARE_NODE_FIELD(lexpr);
1520         COMPARE_NODE_FIELD(rexpr);
1521         COMPARE_SCALAR_FIELD(location);
1522
1523         return true;
1524 }
1525
1526 static bool
1527 _equalColumnRef(ColumnRef *a, ColumnRef *b)
1528 {
1529         COMPARE_NODE_FIELD(fields);
1530         COMPARE_SCALAR_FIELD(location);
1531
1532         return true;
1533 }
1534
1535 static bool
1536 _equalParamRef(ParamRef *a, ParamRef *b)
1537 {
1538         COMPARE_SCALAR_FIELD(number);
1539
1540         return true;
1541 }
1542
1543 static bool
1544 _equalAConst(A_Const *a, A_Const *b)
1545 {
1546         if (!equal(&a->val, &b->val))           /* hack for in-line Value field */
1547                 return false;
1548         COMPARE_NODE_FIELD(typename);
1549
1550         return true;
1551 }
1552
1553 static bool
1554 _equalFuncCall(FuncCall *a, FuncCall *b)
1555 {
1556         COMPARE_NODE_FIELD(funcname);
1557         COMPARE_NODE_FIELD(args);
1558         COMPARE_SCALAR_FIELD(agg_star);
1559         COMPARE_SCALAR_FIELD(agg_distinct);
1560         COMPARE_SCALAR_FIELD(location);
1561
1562         return true;
1563 }
1564
1565 static bool
1566 _equalAIndices(A_Indices *a, A_Indices *b)
1567 {
1568         COMPARE_NODE_FIELD(lidx);
1569         COMPARE_NODE_FIELD(uidx);
1570
1571         return true;
1572 }
1573
1574 static bool
1575 _equalA_Indirection(A_Indirection *a, A_Indirection *b)
1576 {
1577         COMPARE_NODE_FIELD(arg);
1578         COMPARE_NODE_FIELD(indirection);
1579
1580         return true;
1581 }
1582
1583 static bool
1584 _equalResTarget(ResTarget *a, ResTarget *b)
1585 {
1586         COMPARE_STRING_FIELD(name);
1587         COMPARE_NODE_FIELD(indirection);
1588         COMPARE_NODE_FIELD(val);
1589         COMPARE_SCALAR_FIELD(location);
1590
1591         return true;
1592 }
1593
1594 static bool
1595 _equalTypeName(TypeName *a, TypeName *b)
1596 {
1597         COMPARE_NODE_FIELD(names);
1598         COMPARE_SCALAR_FIELD(typeid);
1599         COMPARE_SCALAR_FIELD(timezone);
1600         COMPARE_SCALAR_FIELD(setof);
1601         COMPARE_SCALAR_FIELD(pct_type);
1602         COMPARE_SCALAR_FIELD(typmod);
1603         COMPARE_NODE_FIELD(arrayBounds);
1604         COMPARE_SCALAR_FIELD(location);
1605
1606         return true;
1607 }
1608
1609 static bool
1610 _equalTypeCast(TypeCast *a, TypeCast *b)
1611 {
1612         COMPARE_NODE_FIELD(arg);
1613         COMPARE_NODE_FIELD(typename);
1614
1615         return true;
1616 }
1617
1618 static bool
1619 _equalSortBy(SortBy *a, SortBy *b)
1620 {
1621         COMPARE_SCALAR_FIELD(sortby_kind);
1622         COMPARE_NODE_FIELD(useOp);
1623         COMPARE_NODE_FIELD(node);
1624
1625         return true;
1626 }
1627
1628 static bool
1629 _equalRangeSubselect(RangeSubselect *a, RangeSubselect *b)
1630 {
1631         COMPARE_NODE_FIELD(subquery);
1632         COMPARE_NODE_FIELD(alias);
1633
1634         return true;
1635 }
1636
1637 static bool
1638 _equalRangeFunction(RangeFunction *a, RangeFunction *b)
1639 {
1640         COMPARE_NODE_FIELD(funccallnode);
1641         COMPARE_NODE_FIELD(alias);
1642         COMPARE_NODE_FIELD(coldeflist);
1643
1644         return true;
1645 }
1646
1647 static bool
1648 _equalIndexElem(IndexElem *a, IndexElem *b)
1649 {
1650         COMPARE_STRING_FIELD(name);
1651         COMPARE_NODE_FIELD(expr);
1652         COMPARE_NODE_FIELD(opclass);
1653
1654         return true;
1655 }
1656
1657 static bool
1658 _equalColumnDef(ColumnDef *a, ColumnDef *b)
1659 {
1660         COMPARE_STRING_FIELD(colname);
1661         COMPARE_NODE_FIELD(typename);
1662         COMPARE_SCALAR_FIELD(inhcount);
1663         COMPARE_SCALAR_FIELD(is_local);
1664         COMPARE_SCALAR_FIELD(is_not_null);
1665         COMPARE_NODE_FIELD(raw_default);
1666         COMPARE_STRING_FIELD(cooked_default);
1667         COMPARE_NODE_FIELD(constraints);
1668
1669         return true;
1670 }
1671
1672 static bool
1673 _equalConstraint(Constraint *a, Constraint *b)
1674 {
1675         COMPARE_SCALAR_FIELD(contype);
1676         COMPARE_STRING_FIELD(name);
1677         COMPARE_NODE_FIELD(raw_expr);
1678         COMPARE_STRING_FIELD(cooked_expr);
1679         COMPARE_NODE_FIELD(keys);
1680         COMPARE_NODE_FIELD(options);
1681         COMPARE_STRING_FIELD(indexspace);
1682
1683         return true;
1684 }
1685
1686 static bool
1687 _equalDefElem(DefElem *a, DefElem *b)
1688 {
1689         COMPARE_STRING_FIELD(defname);
1690         COMPARE_NODE_FIELD(arg);
1691
1692         return true;
1693 }
1694
1695 static bool
1696 _equalLockingClause(LockingClause *a, LockingClause *b)
1697 {
1698         COMPARE_NODE_FIELD(lockedRels);
1699         COMPARE_SCALAR_FIELD(forUpdate);
1700         COMPARE_SCALAR_FIELD(noWait);
1701
1702         return true;
1703 }
1704
1705 static bool
1706 _equalRangeTblEntry(RangeTblEntry *a, RangeTblEntry *b)
1707 {
1708         COMPARE_SCALAR_FIELD(rtekind);
1709         COMPARE_SCALAR_FIELD(relid);
1710         COMPARE_NODE_FIELD(subquery);
1711         COMPARE_NODE_FIELD(funcexpr);
1712         COMPARE_NODE_FIELD(funccoltypes);
1713         COMPARE_NODE_FIELD(funccoltypmods);
1714         COMPARE_NODE_FIELD(values_lists);
1715         COMPARE_SCALAR_FIELD(jointype);
1716         COMPARE_NODE_FIELD(joinaliasvars);
1717         COMPARE_NODE_FIELD(alias);
1718         COMPARE_NODE_FIELD(eref);
1719         COMPARE_SCALAR_FIELD(inh);
1720         COMPARE_SCALAR_FIELD(inFromCl);
1721         COMPARE_SCALAR_FIELD(requiredPerms);
1722         COMPARE_SCALAR_FIELD(checkAsUser);
1723
1724         return true;
1725 }
1726
1727 static bool
1728 _equalSortClause(SortClause *a, SortClause *b)
1729 {
1730         COMPARE_SCALAR_FIELD(tleSortGroupRef);
1731         COMPARE_SCALAR_FIELD(sortop);
1732
1733         return true;
1734 }
1735
1736 static bool
1737 _equalRowMarkClause(RowMarkClause *a, RowMarkClause *b)
1738 {
1739         COMPARE_SCALAR_FIELD(rti);
1740         COMPARE_SCALAR_FIELD(forUpdate);
1741         COMPARE_SCALAR_FIELD(noWait);
1742
1743         return true;
1744 }
1745
1746 static bool
1747 _equalFkConstraint(FkConstraint *a, FkConstraint *b)
1748 {
1749         COMPARE_STRING_FIELD(constr_name);
1750         COMPARE_NODE_FIELD(pktable);
1751         COMPARE_NODE_FIELD(fk_attrs);
1752         COMPARE_NODE_FIELD(pk_attrs);
1753         COMPARE_SCALAR_FIELD(fk_matchtype);
1754         COMPARE_SCALAR_FIELD(fk_upd_action);
1755         COMPARE_SCALAR_FIELD(fk_del_action);
1756         COMPARE_SCALAR_FIELD(deferrable);
1757         COMPARE_SCALAR_FIELD(initdeferred);
1758         COMPARE_SCALAR_FIELD(skip_validation);
1759
1760         return true;
1761 }
1762
1763
1764 /*
1765  * Stuff from pg_list.h
1766  */
1767
1768 static bool
1769 _equalList(List *a, List *b)
1770 {
1771         ListCell   *item_a;
1772         ListCell   *item_b;
1773
1774         /*
1775          * Try to reject by simple scalar checks before grovelling through all the
1776          * list elements...
1777          */
1778         COMPARE_SCALAR_FIELD(type);
1779         COMPARE_SCALAR_FIELD(length);
1780
1781         /*
1782          * We place the switch outside the loop for the sake of efficiency; this
1783          * may not be worth doing...
1784          */
1785         switch (a->type)
1786         {
1787                 case T_List:
1788                         forboth(item_a, a, item_b, b)
1789                         {
1790                                 if (!equal(lfirst(item_a), lfirst(item_b)))
1791                                         return false;
1792                         }
1793                         break;
1794                 case T_IntList:
1795                         forboth(item_a, a, item_b, b)
1796                         {
1797                                 if (lfirst_int(item_a) != lfirst_int(item_b))
1798                                         return false;
1799                         }
1800                         break;
1801                 case T_OidList:
1802                         forboth(item_a, a, item_b, b)
1803                         {
1804                                 if (lfirst_oid(item_a) != lfirst_oid(item_b))
1805                                         return false;
1806                         }
1807                         break;
1808                 default:
1809                         elog(ERROR, "unrecognized list node type: %d",
1810                                  (int) a->type);
1811                         return false;           /* keep compiler quiet */
1812         }
1813
1814         /*
1815          * If we got here, we should have run out of elements of both lists
1816          */
1817         Assert(item_a == NULL);
1818         Assert(item_b == NULL);
1819
1820         return true;
1821 }
1822
1823 /*
1824  * Stuff from value.h
1825  */
1826
1827 static bool
1828 _equalValue(Value *a, Value *b)
1829 {
1830         COMPARE_SCALAR_FIELD(type);
1831
1832         switch (a->type)
1833         {
1834                 case T_Integer:
1835                         COMPARE_SCALAR_FIELD(val.ival);
1836                         break;
1837                 case T_Float:
1838                 case T_String:
1839                 case T_BitString:
1840                         COMPARE_STRING_FIELD(val.str);
1841                         break;
1842                 case T_Null:
1843                         /* nothing to do */
1844                         break;
1845                 default:
1846                         elog(ERROR, "unrecognized node type: %d", (int) a->type);
1847                         break;
1848         }
1849
1850         return true;
1851 }
1852
1853 /*
1854  * equal
1855  *        returns whether two nodes are equal
1856  */
1857 bool
1858 equal(void *a, void *b)
1859 {
1860         bool            retval;
1861
1862         if (a == b)
1863                 return true;
1864
1865         /*
1866          * note that a!=b, so only one of them can be NULL
1867          */
1868         if (a == NULL || b == NULL)
1869                 return false;
1870
1871         /*
1872          * are they the same type of nodes?
1873          */
1874         if (nodeTag(a) != nodeTag(b))
1875                 return false;
1876
1877         switch (nodeTag(a))
1878         {
1879                         /*
1880                          * PRIMITIVE NODES
1881                          */
1882                 case T_Alias:
1883                         retval = _equalAlias(a, b);
1884                         break;
1885                 case T_RangeVar:
1886                         retval = _equalRangeVar(a, b);
1887                         break;
1888                 case T_Var:
1889                         retval = _equalVar(a, b);
1890                         break;
1891                 case T_Const:
1892                         retval = _equalConst(a, b);
1893                         break;
1894                 case T_Param:
1895                         retval = _equalParam(a, b);
1896                         break;
1897                 case T_Aggref:
1898                         retval = _equalAggref(a, b);
1899                         break;
1900                 case T_ArrayRef:
1901                         retval = _equalArrayRef(a, b);
1902                         break;
1903                 case T_FuncExpr:
1904                         retval = _equalFuncExpr(a, b);
1905                         break;
1906                 case T_OpExpr:
1907                         retval = _equalOpExpr(a, b);
1908                         break;
1909                 case T_DistinctExpr:
1910                         retval = _equalDistinctExpr(a, b);
1911                         break;
1912                 case T_ScalarArrayOpExpr:
1913                         retval = _equalScalarArrayOpExpr(a, b);
1914                         break;
1915                 case T_BoolExpr:
1916                         retval = _equalBoolExpr(a, b);
1917                         break;
1918                 case T_SubLink:
1919                         retval = _equalSubLink(a, b);
1920                         break;
1921                 case T_SubPlan:
1922                         retval = _equalSubPlan(a, b);
1923                         break;
1924                 case T_FieldSelect:
1925                         retval = _equalFieldSelect(a, b);
1926                         break;
1927                 case T_FieldStore:
1928                         retval = _equalFieldStore(a, b);
1929                         break;
1930                 case T_RelabelType:
1931                         retval = _equalRelabelType(a, b);
1932                         break;
1933                 case T_ConvertRowtypeExpr:
1934                         retval = _equalConvertRowtypeExpr(a, b);
1935                         break;
1936                 case T_CaseExpr:
1937                         retval = _equalCaseExpr(a, b);
1938                         break;
1939                 case T_CaseWhen:
1940                         retval = _equalCaseWhen(a, b);
1941                         break;
1942                 case T_CaseTestExpr:
1943                         retval = _equalCaseTestExpr(a, b);
1944                         break;
1945                 case T_ArrayExpr:
1946                         retval = _equalArrayExpr(a, b);
1947                         break;
1948                 case T_RowExpr:
1949                         retval = _equalRowExpr(a, b);
1950                         break;
1951                 case T_RowCompareExpr:
1952                         retval = _equalRowCompareExpr(a, b);
1953                         break;
1954                 case T_CoalesceExpr:
1955                         retval = _equalCoalesceExpr(a, b);
1956                         break;
1957                 case T_MinMaxExpr:
1958                         retval = _equalMinMaxExpr(a, b);
1959                         break;
1960                 case T_NullIfExpr:
1961                         retval = _equalNullIfExpr(a, b);
1962                         break;
1963                 case T_NullTest:
1964                         retval = _equalNullTest(a, b);
1965                         break;
1966                 case T_BooleanTest:
1967                         retval = _equalBooleanTest(a, b);
1968                         break;
1969                 case T_CoerceToDomain:
1970                         retval = _equalCoerceToDomain(a, b);
1971                         break;
1972                 case T_CoerceToDomainValue:
1973                         retval = _equalCoerceToDomainValue(a, b);
1974                         break;
1975                 case T_SetToDefault:
1976                         retval = _equalSetToDefault(a, b);
1977                         break;
1978                 case T_TargetEntry:
1979                         retval = _equalTargetEntry(a, b);
1980                         break;
1981                 case T_RangeTblRef:
1982                         retval = _equalRangeTblRef(a, b);
1983                         break;
1984                 case T_FromExpr:
1985                         retval = _equalFromExpr(a, b);
1986                         break;
1987                 case T_JoinExpr:
1988                         retval = _equalJoinExpr(a, b);
1989                         break;
1990
1991                         /*
1992                          * RELATION NODES
1993                          */
1994                 case T_PathKeyItem:
1995                         retval = _equalPathKeyItem(a, b);
1996                         break;
1997                 case T_RestrictInfo:
1998                         retval = _equalRestrictInfo(a, b);
1999                         break;
2000                 case T_OuterJoinInfo:
2001                         retval = _equalOuterJoinInfo(a, b);
2002                         break;
2003                 case T_InClauseInfo:
2004                         retval = _equalInClauseInfo(a, b);
2005                         break;
2006                 case T_AppendRelInfo:
2007                         retval = _equalAppendRelInfo(a, b);
2008                         break;
2009                 case T_List:
2010                 case T_IntList:
2011                 case T_OidList:
2012                         retval = _equalList(a, b);
2013                         break;
2014
2015                 case T_Integer:
2016                 case T_Float:
2017                 case T_String:
2018                 case T_BitString:
2019                 case T_Null:
2020                         retval = _equalValue(a, b);
2021                         break;
2022
2023                         /*
2024                          * PARSE NODES
2025                          */
2026                 case T_Query:
2027                         retval = _equalQuery(a, b);
2028                         break;
2029                 case T_InsertStmt:
2030                         retval = _equalInsertStmt(a, b);
2031                         break;
2032                 case T_DeleteStmt:
2033                         retval = _equalDeleteStmt(a, b);
2034                         break;
2035                 case T_UpdateStmt:
2036                         retval = _equalUpdateStmt(a, b);
2037                         break;
2038                 case T_SelectStmt:
2039                         retval = _equalSelectStmt(a, b);
2040                         break;
2041                 case T_SetOperationStmt:
2042                         retval = _equalSetOperationStmt(a, b);
2043                         break;
2044                 case T_AlterTableStmt:
2045                         retval = _equalAlterTableStmt(a, b);
2046                         break;
2047                 case T_AlterTableCmd:
2048                         retval = _equalAlterTableCmd(a, b);
2049                         break;
2050                 case T_AlterDomainStmt:
2051                         retval = _equalAlterDomainStmt(a, b);
2052                         break;
2053                 case T_GrantStmt:
2054                         retval = _equalGrantStmt(a, b);
2055                         break;
2056                 case T_GrantRoleStmt:
2057                         retval = _equalGrantRoleStmt(a, b);
2058                         break;
2059                 case T_DeclareCursorStmt:
2060                         retval = _equalDeclareCursorStmt(a, b);
2061                         break;
2062                 case T_ClosePortalStmt:
2063                         retval = _equalClosePortalStmt(a, b);
2064                         break;
2065                 case T_ClusterStmt:
2066                         retval = _equalClusterStmt(a, b);
2067                         break;
2068                 case T_CopyStmt:
2069                         retval = _equalCopyStmt(a, b);
2070                         break;
2071                 case T_CreateStmt:
2072                         retval = _equalCreateStmt(a, b);
2073                         break;
2074                 case T_InhRelation:
2075                         retval = _equalInhRelation(a, b);
2076                         break;
2077                 case T_DefineStmt:
2078                         retval = _equalDefineStmt(a, b);
2079                         break;
2080                 case T_DropStmt:
2081                         retval = _equalDropStmt(a, b);
2082                         break;
2083                 case T_TruncateStmt:
2084                         retval = _equalTruncateStmt(a, b);
2085                         break;
2086                 case T_CommentStmt:
2087                         retval = _equalCommentStmt(a, b);
2088                         break;
2089                 case T_FetchStmt:
2090                         retval = _equalFetchStmt(a, b);
2091                         break;
2092                 case T_IndexStmt:
2093                         retval = _equalIndexStmt(a, b);
2094                         break;
2095                 case T_CreateFunctionStmt:
2096                         retval = _equalCreateFunctionStmt(a, b);
2097                         break;
2098                 case T_FunctionParameter:
2099                         retval = _equalFunctionParameter(a, b);
2100                         break;
2101                 case T_AlterFunctionStmt:
2102                         retval = _equalAlterFunctionStmt(a, b);
2103                         break;
2104                 case T_RemoveFuncStmt:
2105                         retval = _equalRemoveFuncStmt(a, b);
2106                         break;
2107                 case T_RemoveOpClassStmt:
2108                         retval = _equalRemoveOpClassStmt(a, b);
2109                         break;
2110                 case T_RenameStmt:
2111                         retval = _equalRenameStmt(a, b);
2112                         break;
2113                 case T_AlterObjectSchemaStmt:
2114                         retval = _equalAlterObjectSchemaStmt(a, b);
2115                         break;
2116                 case T_AlterOwnerStmt:
2117                         retval = _equalAlterOwnerStmt(a, b);
2118                         break;
2119                 case T_RuleStmt:
2120                         retval = _equalRuleStmt(a, b);
2121                         break;
2122                 case T_NotifyStmt:
2123                         retval = _equalNotifyStmt(a, b);
2124                         break;
2125                 case T_ListenStmt:
2126                         retval = _equalListenStmt(a, b);
2127                         break;
2128                 case T_UnlistenStmt:
2129                         retval = _equalUnlistenStmt(a, b);
2130                         break;
2131                 case T_TransactionStmt:
2132                         retval = _equalTransactionStmt(a, b);
2133                         break;
2134                 case T_CompositeTypeStmt:
2135                         retval = _equalCompositeTypeStmt(a, b);
2136                         break;
2137                 case T_ViewStmt:
2138                         retval = _equalViewStmt(a, b);
2139                         break;
2140                 case T_LoadStmt:
2141                         retval = _equalLoadStmt(a, b);
2142                         break;
2143                 case T_CreateDomainStmt:
2144                         retval = _equalCreateDomainStmt(a, b);
2145                         break;
2146                 case T_CreateOpClassStmt:
2147                         retval = _equalCreateOpClassStmt(a, b);
2148                         break;
2149                 case T_CreateOpClassItem:
2150                         retval = _equalCreateOpClassItem(a, b);
2151                         break;
2152                 case T_CreatedbStmt:
2153                         retval = _equalCreatedbStmt(a, b);
2154                         break;
2155                 case T_AlterDatabaseStmt:
2156                         retval = _equalAlterDatabaseStmt(a, b);
2157                         break;
2158                 case T_AlterDatabaseSetStmt:
2159                         retval = _equalAlterDatabaseSetStmt(a, b);
2160                         break;
2161                 case T_DropdbStmt:
2162                         retval = _equalDropdbStmt(a, b);
2163                         break;
2164                 case T_VacuumStmt:
2165                         retval = _equalVacuumStmt(a, b);
2166                         break;
2167                 case T_ExplainStmt:
2168                         retval = _equalExplainStmt(a, b);
2169                         break;
2170                 case T_CreateSeqStmt:
2171                         retval = _equalCreateSeqStmt(a, b);
2172                         break;
2173                 case T_AlterSeqStmt:
2174                         retval = _equalAlterSeqStmt(a, b);
2175                         break;
2176                 case T_VariableSetStmt:
2177                         retval = _equalVariableSetStmt(a, b);
2178                         break;
2179                 case T_VariableShowStmt:
2180                         retval = _equalVariableShowStmt(a, b);
2181                         break;
2182                 case T_VariableResetStmt:
2183                         retval = _equalVariableResetStmt(a, b);
2184                         break;
2185                 case T_CreateTableSpaceStmt:
2186                         retval = _equalCreateTableSpaceStmt(a, b);
2187                         break;
2188                 case T_DropTableSpaceStmt:
2189                         retval = _equalDropTableSpaceStmt(a, b);
2190                         break;
2191                 case T_CreateTrigStmt:
2192                         retval = _equalCreateTrigStmt(a, b);
2193                         break;
2194                 case T_DropPropertyStmt:
2195                         retval = _equalDropPropertyStmt(a, b);
2196                         break;
2197                 case T_CreatePLangStmt:
2198                         retval = _equalCreatePLangStmt(a, b);
2199                         break;
2200                 case T_DropPLangStmt:
2201                         retval = _equalDropPLangStmt(a, b);
2202                         break;
2203                 case T_CreateRoleStmt:
2204                         retval = _equalCreateRoleStmt(a, b);
2205                         break;
2206                 case T_AlterRoleStmt:
2207                         retval = _equalAlterRoleStmt(a, b);
2208                         break;
2209                 case T_AlterRoleSetStmt:
2210                         retval = _equalAlterRoleSetStmt(a, b);
2211                         break;
2212                 case T_DropRoleStmt:
2213                         retval = _equalDropRoleStmt(a, b);
2214                         break;
2215                 case T_LockStmt:
2216                         retval = _equalLockStmt(a, b);
2217                         break;
2218                 case T_ConstraintsSetStmt:
2219                         retval = _equalConstraintsSetStmt(a, b);
2220                         break;
2221                 case T_ReindexStmt:
2222                         retval = _equalReindexStmt(a, b);
2223                         break;
2224                 case T_CheckPointStmt:
2225                         retval = true;
2226                         break;
2227                 case T_CreateSchemaStmt:
2228                         retval = _equalCreateSchemaStmt(a, b);
2229                         break;
2230                 case T_CreateConversionStmt:
2231                         retval = _equalCreateConversionStmt(a, b);
2232                         break;
2233                 case T_CreateCastStmt:
2234                         retval = _equalCreateCastStmt(a, b);
2235                         break;
2236                 case T_DropCastStmt:
2237                         retval = _equalDropCastStmt(a, b);
2238                         break;
2239                 case T_PrepareStmt:
2240                         retval = _equalPrepareStmt(a, b);
2241                         break;
2242                 case T_ExecuteStmt:
2243                         retval = _equalExecuteStmt(a, b);
2244                         break;
2245                 case T_DeallocateStmt:
2246                         retval = _equalDeallocateStmt(a, b);
2247                         break;
2248                 case T_DropOwnedStmt:
2249                         retval = _equalDropOwnedStmt(a, b);
2250                         break;
2251
2252                 case T_ReassignOwnedStmt:
2253                         retval = _equalReassignOwnedStmt(a, b);
2254                         break;
2255
2256                 case T_A_Expr:
2257                         retval = _equalAExpr(a, b);
2258                         break;
2259                 case T_ColumnRef:
2260                         retval = _equalColumnRef(a, b);
2261                         break;
2262                 case T_ParamRef:
2263                         retval = _equalParamRef(a, b);
2264                         break;
2265                 case T_A_Const:
2266                         retval = _equalAConst(a, b);
2267                         break;
2268                 case T_FuncCall:
2269                         retval = _equalFuncCall(a, b);
2270                         break;
2271                 case T_A_Indices:
2272                         retval = _equalAIndices(a, b);
2273                         break;
2274                 case T_A_Indirection:
2275                         retval = _equalA_Indirection(a, b);
2276                         break;
2277                 case T_ResTarget:
2278                         retval = _equalResTarget(a, b);
2279                         break;
2280                 case T_TypeCast:
2281                         retval = _equalTypeCast(a, b);
2282                         break;
2283                 case T_SortBy:
2284                         retval = _equalSortBy(a, b);
2285                         break;
2286                 case T_RangeSubselect:
2287                         retval = _equalRangeSubselect(a, b);
2288                         break;
2289                 case T_RangeFunction:
2290                         retval = _equalRangeFunction(a, b);
2291                         break;
2292                 case T_TypeName:
2293                         retval = _equalTypeName(a, b);
2294                         break;
2295                 case T_IndexElem:
2296                         retval = _equalIndexElem(a, b);
2297                         break;
2298                 case T_ColumnDef:
2299                         retval = _equalColumnDef(a, b);
2300                         break;
2301                 case T_Constraint:
2302                         retval = _equalConstraint(a, b);
2303                         break;
2304                 case T_DefElem:
2305                         retval = _equalDefElem(a, b);
2306                         break;
2307                 case T_LockingClause:
2308                         retval = _equalLockingClause(a, b);
2309                         break;
2310                 case T_RangeTblEntry:
2311                         retval = _equalRangeTblEntry(a, b);
2312                         break;
2313                 case T_SortClause:
2314                         retval = _equalSortClause(a, b);
2315                         break;
2316                 case T_GroupClause:
2317                         /* GroupClause is equivalent to SortClause */
2318                         retval = _equalSortClause(a, b);
2319                         break;
2320                 case T_RowMarkClause:
2321                         retval = _equalRowMarkClause(a, b);
2322                         break;
2323                 case T_FkConstraint:
2324                         retval = _equalFkConstraint(a, b);
2325                         break;
2326                 case T_PrivGrantee:
2327                         retval = _equalPrivGrantee(a, b);
2328                         break;
2329                 case T_FuncWithArgs:
2330                         retval = _equalFuncWithArgs(a, b);
2331                         break;
2332
2333                 default:
2334                         elog(ERROR, "unrecognized node type: %d",
2335                                  (int) nodeTag(a));
2336                         retval = false;         /* keep compiler quiet */
2337                         break;
2338         }
2339
2340         return retval;
2341 }