@@ -545,61 +545,58 @@ _outA_Expr(StringInfo str, const A_Expr *node)
545
545
switch (node -> kind )
546
546
{
547
547
case AEXPR_OP :
548
- appendStringInfoChar (str , ' ' );
549
548
WRITE_NODE_FIELD (name );
550
549
break ;
551
550
case AEXPR_OP_ANY :
552
- appendStringInfoChar (str , ' ' );
553
551
WRITE_NODE_FIELD (name );
554
- appendStringInfoString (str , " ANY " );
552
+ appendStringInfoString (str , " ANY" );
555
553
break ;
556
554
case AEXPR_OP_ALL :
557
- appendStringInfoChar (str , ' ' );
558
555
WRITE_NODE_FIELD (name );
559
- appendStringInfoString (str , " ALL " );
556
+ appendStringInfoString (str , " ALL" );
560
557
break ;
561
558
case AEXPR_DISTINCT :
562
- appendStringInfoString (str , " DISTINCT " );
559
+ appendStringInfoString (str , " DISTINCT" );
563
560
WRITE_NODE_FIELD (name );
564
561
break ;
565
562
case AEXPR_NOT_DISTINCT :
566
- appendStringInfoString (str , " NOT_DISTINCT " );
563
+ appendStringInfoString (str , " NOT_DISTINCT" );
567
564
WRITE_NODE_FIELD (name );
568
565
break ;
569
566
case AEXPR_NULLIF :
570
- appendStringInfoString (str , " NULLIF " );
567
+ appendStringInfoString (str , " NULLIF" );
571
568
WRITE_NODE_FIELD (name );
572
569
break ;
573
570
case AEXPR_IN :
574
- appendStringInfoString (str , " IN " );
571
+ appendStringInfoString (str , " IN" );
575
572
WRITE_NODE_FIELD (name );
576
573
break ;
577
574
case AEXPR_LIKE :
578
- appendStringInfoString (str , " LIKE " );
575
+ appendStringInfoString (str , " LIKE" );
579
576
WRITE_NODE_FIELD (name );
580
577
break ;
581
578
case AEXPR_ILIKE :
582
- appendStringInfoString (str , " ILIKE " );
579
+ appendStringInfoString (str , " ILIKE" );
583
580
WRITE_NODE_FIELD (name );
584
581
break ;
585
582
case AEXPR_SIMILAR :
586
- appendStringInfoString (str , " SIMILAR " );
583
+ appendStringInfoString (str , " SIMILAR" );
587
584
WRITE_NODE_FIELD (name );
588
585
break ;
589
586
case AEXPR_BETWEEN :
590
- appendStringInfoString (str , " BETWEEN " );
587
+ appendStringInfoString (str , " BETWEEN" );
591
588
WRITE_NODE_FIELD (name );
592
589
break ;
593
590
case AEXPR_NOT_BETWEEN :
594
- appendStringInfoString (str , " NOT_BETWEEN " );
591
+ appendStringInfoString (str , " NOT_BETWEEN" );
595
592
WRITE_NODE_FIELD (name );
596
593
break ;
597
594
case AEXPR_BETWEEN_SYM :
598
- appendStringInfoString (str , " BETWEEN_SYM " );
595
+ appendStringInfoString (str , " BETWEEN_SYM" );
599
596
WRITE_NODE_FIELD (name );
600
597
break ;
601
598
case AEXPR_NOT_BETWEEN_SYM :
602
- appendStringInfoString (str , " NOT_BETWEEN_SYM " );
599
+ appendStringInfoString (str , " NOT_BETWEEN_SYM" );
603
600
WRITE_NODE_FIELD (name );
604
601
break ;
605
602
default :
0 commit comments