@@ -119,13 +119,13 @@ _equalRangeVar(const RangeVar *a, const RangeVar *b)
119
119
static bool
120
120
_equalTableFunc (const TableFunc * a , const TableFunc * b )
121
121
{
122
- COMPARE_NODE_FIELD (ns_names );
123
122
COMPARE_NODE_FIELD (ns_uris );
123
+ COMPARE_NODE_FIELD (ns_names );
124
124
COMPARE_NODE_FIELD (docexpr );
125
125
COMPARE_NODE_FIELD (rowexpr );
126
126
COMPARE_NODE_FIELD (colnames );
127
127
COMPARE_NODE_FIELD (coltypes );
128
- COMPARE_NODE_FIELD (coltypes );
128
+ COMPARE_NODE_FIELD (coltypmods );
129
129
COMPARE_NODE_FIELD (colcollations );
130
130
COMPARE_NODE_FIELD (colexprs );
131
131
COMPARE_NODE_FIELD (coldefexprs );
@@ -1231,8 +1231,8 @@ _equalCreateStmt(const CreateStmt *a, const CreateStmt *b)
1231
1231
COMPARE_NODE_FIELD (relation );
1232
1232
COMPARE_NODE_FIELD (tableElts );
1233
1233
COMPARE_NODE_FIELD (inhRelations );
1234
- COMPARE_NODE_FIELD (partspec );
1235
1234
COMPARE_NODE_FIELD (partbound );
1235
+ COMPARE_NODE_FIELD (partspec );
1236
1236
COMPARE_NODE_FIELD (ofTypename );
1237
1237
COMPARE_NODE_FIELD (constraints );
1238
1238
COMPARE_NODE_FIELD (options );
@@ -1869,8 +1869,8 @@ _equalCreateForeignServerStmt(const CreateForeignServerStmt *a, const CreateFore
1869
1869
COMPARE_STRING_FIELD (servertype );
1870
1870
COMPARE_STRING_FIELD (version );
1871
1871
COMPARE_STRING_FIELD (fdwname );
1872
- COMPARE_NODE_FIELD (options );
1873
1872
COMPARE_SCALAR_FIELD (if_not_exists );
1873
+ COMPARE_NODE_FIELD (options );
1874
1874
1875
1875
return true;
1876
1876
}
@@ -1891,8 +1891,8 @@ _equalCreateUserMappingStmt(const CreateUserMappingStmt *a, const CreateUserMapp
1891
1891
{
1892
1892
COMPARE_NODE_FIELD (user );
1893
1893
COMPARE_STRING_FIELD (servername );
1894
- COMPARE_NODE_FIELD (options );
1895
1894
COMPARE_SCALAR_FIELD (if_not_exists );
1895
+ COMPARE_NODE_FIELD (options );
1896
1896
1897
1897
return true;
1898
1898
}
@@ -2507,7 +2507,6 @@ _equalRangeTableFuncCol(const RangeTableFuncCol *a, const RangeTableFuncCol *b)
2507
2507
COMPARE_STRING_FIELD (colname );
2508
2508
COMPARE_NODE_FIELD (typeName );
2509
2509
COMPARE_SCALAR_FIELD (for_ordinality );
2510
- COMPARE_NODE_FIELD (typeName );
2511
2510
COMPARE_SCALAR_FIELD (is_not_null );
2512
2511
COMPARE_NODE_FIELD (colexpr );
2513
2512
COMPARE_NODE_FIELD (coldefexpr );
@@ -2605,7 +2604,6 @@ _equalLockingClause(const LockingClause *a, const LockingClause *b)
2605
2604
COMPARE_NODE_FIELD (lockedRels );
2606
2605
COMPARE_SCALAR_FIELD (strength );
2607
2606
COMPARE_SCALAR_FIELD (waitPolicy );
2608
- COMPARE_LOCATION_FIELD (location );
2609
2607
2610
2608
return true;
2611
2609
}
@@ -2622,8 +2620,8 @@ _equalRangeTblEntry(const RangeTblEntry *a, const RangeTblEntry *b)
2622
2620
COMPARE_SCALAR_FIELD (jointype );
2623
2621
COMPARE_NODE_FIELD (joinaliasvars );
2624
2622
COMPARE_NODE_FIELD (functions );
2625
- COMPARE_NODE_FIELD (tablefunc );
2626
2623
COMPARE_SCALAR_FIELD (funcordinality );
2624
+ COMPARE_NODE_FIELD (tablefunc );
2627
2625
COMPARE_NODE_FIELD (values_lists );
2628
2626
COMPARE_STRING_FIELD (ctename );
2629
2627
COMPARE_SCALAR_FIELD (ctelevelsup );
0 commit comments