@@ -3413,20 +3413,20 @@ _outAExpr(StringInfo str, const A_Expr *node)
3413
3413
}
3414
3414
3415
3415
static void
3416
- _outValue (StringInfo str , const Value * value )
3416
+ _outValue (StringInfo str , const Value * node )
3417
3417
{
3418
- switch (value -> type )
3418
+ switch (node -> type )
3419
3419
{
3420
3420
case T_Integer :
3421
- appendStringInfo (str , "%d" , value -> val .ival );
3421
+ appendStringInfo (str , "%d" , node -> val .ival );
3422
3422
break ;
3423
3423
case T_Float :
3424
3424
3425
3425
/*
3426
3426
* We assume the value is a valid numeric literal and so does not
3427
3427
* need quoting.
3428
3428
*/
3429
- appendStringInfoString (str , value -> val .str );
3429
+ appendStringInfoString (str , node -> val .str );
3430
3430
break ;
3431
3431
case T_String :
3432
3432
@@ -3435,20 +3435,20 @@ _outValue(StringInfo str, const Value *value)
3435
3435
* but we don't want it to do anything with an empty string.
3436
3436
*/
3437
3437
appendStringInfoChar (str , '"' );
3438
- if (value -> val .str [0 ] != '\0' )
3439
- outToken (str , value -> val .str );
3438
+ if (node -> val .str [0 ] != '\0' )
3439
+ outToken (str , node -> val .str );
3440
3440
appendStringInfoChar (str , '"' );
3441
3441
break ;
3442
3442
case T_BitString :
3443
3443
/* internal representation already has leading 'b' */
3444
- appendStringInfoString (str , value -> val .str );
3444
+ appendStringInfoString (str , node -> val .str );
3445
3445
break ;
3446
3446
case T_Null :
3447
3447
/* this is seen only within A_Const, not in transformed trees */
3448
3448
appendStringInfoString (str , "NULL" );
3449
3449
break ;
3450
3450
default :
3451
- elog (ERROR , "unrecognized node type: %d" , (int ) value -> type );
3451
+ elog (ERROR , "unrecognized node type: %d" , (int ) node -> type );
3452
3452
break ;
3453
3453
}
3454
3454
}
0 commit comments