@@ -1472,7 +1472,7 @@ _outConvertRowtypeExpr(StringInfo str, const ConvertRowtypeExpr *node)
1472
1472
static void
1473
1473
_outCollateExpr (StringInfo str , const CollateExpr * node )
1474
1474
{
1475
- WRITE_NODE_TYPE ("COLLATE " );
1475
+ WRITE_NODE_TYPE ("COLLATEEXPR " );
1476
1476
1477
1477
WRITE_NODE_FIELD (arg );
1478
1478
WRITE_OID_FIELD (collOid );
@@ -1482,7 +1482,7 @@ _outCollateExpr(StringInfo str, const CollateExpr *node)
1482
1482
static void
1483
1483
_outCaseExpr (StringInfo str , const CaseExpr * node )
1484
1484
{
1485
- WRITE_NODE_TYPE ("CASE " );
1485
+ WRITE_NODE_TYPE ("CASEEXPR " );
1486
1486
1487
1487
WRITE_OID_FIELD (casetype );
1488
1488
WRITE_OID_FIELD (casecollid );
@@ -1495,7 +1495,7 @@ _outCaseExpr(StringInfo str, const CaseExpr *node)
1495
1495
static void
1496
1496
_outCaseWhen (StringInfo str , const CaseWhen * node )
1497
1497
{
1498
- WRITE_NODE_TYPE ("WHEN " );
1498
+ WRITE_NODE_TYPE ("CASEWHEN " );
1499
1499
1500
1500
WRITE_NODE_FIELD (expr );
1501
1501
WRITE_NODE_FIELD (result );
@@ -1515,7 +1515,7 @@ _outCaseTestExpr(StringInfo str, const CaseTestExpr *node)
1515
1515
static void
1516
1516
_outArrayExpr (StringInfo str , const ArrayExpr * node )
1517
1517
{
1518
- WRITE_NODE_TYPE ("ARRAY " );
1518
+ WRITE_NODE_TYPE ("ARRAYEXPR " );
1519
1519
1520
1520
WRITE_OID_FIELD (array_typeid );
1521
1521
WRITE_OID_FIELD (array_collid );
@@ -1528,7 +1528,7 @@ _outArrayExpr(StringInfo str, const ArrayExpr *node)
1528
1528
static void
1529
1529
_outRowExpr (StringInfo str , const RowExpr * node )
1530
1530
{
1531
- WRITE_NODE_TYPE ("ROW " );
1531
+ WRITE_NODE_TYPE ("ROWEXPR " );
1532
1532
1533
1533
WRITE_NODE_FIELD (args );
1534
1534
WRITE_OID_FIELD (row_typeid );
@@ -1540,7 +1540,7 @@ _outRowExpr(StringInfo str, const RowExpr *node)
1540
1540
static void
1541
1541
_outRowCompareExpr (StringInfo str , const RowCompareExpr * node )
1542
1542
{
1543
- WRITE_NODE_TYPE ("ROWCOMPARE " );
1543
+ WRITE_NODE_TYPE ("ROWCOMPAREEXPR " );
1544
1544
1545
1545
WRITE_ENUM_FIELD (rctype , RowCompareType );
1546
1546
WRITE_NODE_FIELD (opnos );
@@ -1553,7 +1553,7 @@ _outRowCompareExpr(StringInfo str, const RowCompareExpr *node)
1553
1553
static void
1554
1554
_outCoalesceExpr (StringInfo str , const CoalesceExpr * node )
1555
1555
{
1556
- WRITE_NODE_TYPE ("COALESCE " );
1556
+ WRITE_NODE_TYPE ("COALESCEEXPR " );
1557
1557
1558
1558
WRITE_OID_FIELD (coalescetype );
1559
1559
WRITE_OID_FIELD (coalescecollid );
@@ -1564,7 +1564,7 @@ _outCoalesceExpr(StringInfo str, const CoalesceExpr *node)
1564
1564
static void
1565
1565
_outMinMaxExpr (StringInfo str , const MinMaxExpr * node )
1566
1566
{
1567
- WRITE_NODE_TYPE ("MINMAX " );
1567
+ WRITE_NODE_TYPE ("MINMAXEXPR " );
1568
1568
1569
1569
WRITE_OID_FIELD (minmaxtype );
1570
1570
WRITE_OID_FIELD (minmaxcollid );
@@ -2807,7 +2807,7 @@ _outAlterStatsStmt(StringInfo str, const AlterStatsStmt *node)
2807
2807
static void
2808
2808
_outNotifyStmt (StringInfo str , const NotifyStmt * node )
2809
2809
{
2810
- WRITE_NODE_TYPE ("NOTIFY " );
2810
+ WRITE_NODE_TYPE ("NOTIFYSTMT " );
2811
2811
2812
2812
WRITE_STRING_FIELD (conditionname );
2813
2813
WRITE_STRING_FIELD (payload );
@@ -2816,7 +2816,7 @@ _outNotifyStmt(StringInfo str, const NotifyStmt *node)
2816
2816
static void
2817
2817
_outDeclareCursorStmt (StringInfo str , const DeclareCursorStmt * node )
2818
2818
{
2819
- WRITE_NODE_TYPE ("DECLARECURSOR " );
2819
+ WRITE_NODE_TYPE ("DECLARECURSORSTMT " );
2820
2820
2821
2821
WRITE_STRING_FIELD (portalname );
2822
2822
WRITE_INT_FIELD (options );
@@ -3238,7 +3238,7 @@ _outSetOperationStmt(StringInfo str, const SetOperationStmt *node)
3238
3238
static void
3239
3239
_outRangeTblEntry (StringInfo str , const RangeTblEntry * node )
3240
3240
{
3241
- WRITE_NODE_TYPE ("RTE " );
3241
+ WRITE_NODE_TYPE ("RANGETBLENTRY " );
3242
3242
3243
3243
/* put alias + eref first to make dump more legible */
3244
3244
WRITE_NODE_FIELD (alias );
0 commit comments